diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml deleted file mode 100644 index 2857ab87..00000000 --- a/.github/workflows/labels.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Create Default Labels - -on: - issues: - type: [opened] - -jobs: - labels: - name: Create Default Labels - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: lannonbr/issue-label-manager-action@2.0.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2486702b..3c612342 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,9 +14,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 cache: "npm" - - run: npm install --ignore-scripts --no-audit + - run: npm install --ignore-scripts --no-audit --no-fund - run: npm test publish-npm: @@ -27,9 +26,8 @@ jobs: - uses: actions/setup-node@v4 with: cache: "npm" - node-version: 20 registry-url: https://registry.npmjs.org/ - - run: npm install --ignore-scripts --no-audit + - run: npm install --ignore-scripts --no-audit --no-fund - run: npm run build - run: npm publish env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 63815f99..2a62cedf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,23 +16,32 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + cache: "npm" + - run: npm install --ignore-scripts --no-audit --no-fund - name: Lint JS - run: npx oxlint@latest -D perf + run: npm run lint - test: - name: Unit tests + lint-package: + name: Lint package runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout code + uses: actions/checkout@v4 - name: Use Node.js uses: actions/setup-node@v4 with: cache: "npm" - run: npm install --ignore-scripts --no-audit --no-fund - - run: npm test + - name: Build package + run: npm run build + - name: Lint package + run: npx publint - lint-package: - name: Lint package + code-coverage: + name: Unit tests runs-on: ubuntu-latest steps: - name: Checkout code @@ -46,8 +55,6 @@ jobs: run: npm run build env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - - name: Lint package - run: npx publint - run: npx c8 --reporter=lcov npm test - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 diff --git a/app.d.ts b/app.d.ts new file mode 100644 index 00000000..220da354 --- /dev/null +++ b/app.d.ts @@ -0,0 +1,9 @@ +declare module 'css-tree/parser' { + import { parse } from "css-tree" + export default parse +} + +declare module "css-tree/walker" { + import { walk } from "css-tree" + export default walk +} \ No newline at end of file diff --git a/oxlintrc.json b/oxlintrc.json new file mode 100644 index 00000000..2ed152ba --- /dev/null +++ b/oxlintrc.json @@ -0,0 +1,20 @@ +{ + "$schema": "./node_modules/oxlint/configuration_schema.json", + "plugins": [ + "import", + "typescript", + "oxc" + ], + "env": { + "node": true, + "browser": true, + "es2024": true + }, + "categories": { + "perf": "error", + "correctness": "error", + "pedantic": "error" + }, + "rules": {}, + "overrides": [] +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 197a474e..770202b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,23 +1,26 @@ { "name": "@projectwallace/css-analyzer", - "version": "6.0.0", + "version": "7.0.0-alpha.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@projectwallace/css-analyzer", - "version": "6.0.0", + "version": "7.0.0-alpha.0", "license": "MIT", "dependencies": { "@bramus/specificity": "^2.4.1", - "css-tree": "^2.3.1" + "css-tree": "^3.1.0" }, "devDependencies": { "@codecov/vite-plugin": "^1.9.0", + "@types/css-tree": "^2.3.10", "c8": "^10.1.3", + "oxlint": "^0.15.11", "uvu": "^0.5.6", "vite": "^6.1.1", - "vite-plugin-dts": "^4.5.0" + "vite-plugin-dts": "^4.5.0", + "vitest": "^3.0.6" }, "engines": { "node": ">=18.0.0" @@ -147,25 +150,6 @@ "specificity": "bin/cli.js" } }, - "node_modules/@bramus/specificity/node_modules/css-tree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", - "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", - "license": "MIT", - "dependencies": { - "mdn-data": "2.12.2", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/@bramus/specificity/node_modules/mdn-data": { - "version": "2.12.2", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", - "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", - "license": "CC0-1.0" - }, "node_modules/@codecov/bundler-plugin-core": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/@codecov/bundler-plugin-core/-/bundler-plugin-core-1.9.0.tgz", @@ -1071,6 +1055,118 @@ "@octokit/openapi-types": "^23.0.1" } }, + "node_modules/@oxlint/darwin-arm64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/darwin-arm64/-/darwin-arm64-0.15.11.tgz", + "integrity": "sha512-cSW5LCqoHAp+zvKNUmzvKXzvh90o0J50HOJj7HARXWes/fqKQ2U2NX36Grc19lOxhP5ItoNeZN6x88opPdVtDw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oxlint/darwin-x64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/darwin-x64/-/darwin-x64-0.15.11.tgz", + "integrity": "sha512-6iisoeMdIGBvga+dKe6UnAH8jN58lkbwApQh0IAJzSpkS9B0MPFFy2LjT9qq6J4WyHWh8oYnDJhNOJVBGynApQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oxlint/linux-arm64-gnu": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-arm64-gnu/-/linux-arm64-gnu-0.15.11.tgz", + "integrity": "sha512-3zmkAYm309ZWf0Af3YiQMbx2kV8SKRThyaw32x65NvZje/RfnqDSaUJ/juT32DyWNGgRSI2KaWExbbVKZGj6Bw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxlint/linux-arm64-musl": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-arm64-musl/-/linux-arm64-musl-0.15.11.tgz", + "integrity": "sha512-kj6t4GxNfYvSkC9HbdnQFyK1AXXmWN+d53lyDVWUKByRNAOLn6hBrzl9WByJ6ZGCTwTOyrkqu1Om4itlILqodA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxlint/linux-x64-gnu": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-x64-gnu/-/linux-x64-gnu-0.15.11.tgz", + "integrity": "sha512-1RNUw+nWjv8EXI1wa6A4oc/UXwdCk4l29y3JgCZ7s1aPdZhn3sWLng0SFVruZAf5QFY9bxKS2ffr1s84T1uXhQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxlint/linux-x64-musl": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-x64-musl/-/linux-x64-musl-0.15.11.tgz", + "integrity": "sha512-7uUD13t5WUg7TrZlViW0oYwg2npwoFvzA+1wOPtDu9Kyy24WggUIg8dAExTb5OFkj5jxKKAT17EcvtSNxxLdww==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oxlint/win32-arm64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/win32-arm64/-/win32-arm64-0.15.11.tgz", + "integrity": "sha512-6tMc5UYWGwzxa+AsgNQGFktoqewkdV5pmMXlQboGIOUWYYIQfl2/X7owbv+3y3n7EmO7EBniIB2G/5m8teDzGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@oxlint/win32-x64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/win32-x64/-/win32-x64-0.15.11.tgz", + "integrity": "sha512-etEXnRNT3Lep/jAvBxgFqHGGAZTnjvRNKSOKSQ0jFNTIzAhaqCpJrH25LKuvIqDPTDOPNA5DjmfuT2AFNhAI0g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -1508,6 +1604,13 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/css-tree": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/css-tree/-/css-tree-2.3.10.tgz", + "integrity": "sha512-WcaBazJ84RxABvRttQjjFWgTcHvZR9jGr0Y3hccPkHjFyk/a3N8EuxjKr+QfrwjoM5b1yI1Uj1i7EzOAAwBwag==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", @@ -1534,6 +1637,129 @@ "undici-types": "~5.26.4" } }, + "node_modules/@vitest/expect": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.0.6.tgz", + "integrity": "sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.0.6", + "@vitest/utils": "3.0.6", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.0.6.tgz", + "integrity": "sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.0.6", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0 || ^6.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/mocker/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/@vitest/pretty-format": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.0.6.tgz", + "integrity": "sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.0.6.tgz", + "integrity": "sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "3.0.6", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.0.6.tgz", + "integrity": "sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.0.6", + "magic-string": "^0.30.17", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.0.6.tgz", + "integrity": "sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.0.6.tgz", + "integrity": "sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.0.6", + "loupe": "^3.1.3", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, "node_modules/@volar/language-core": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.11.tgz", @@ -1737,6 +1963,16 @@ "sprintf-js": "~1.0.2" } }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -1860,6 +2096,33 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/chai": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", + "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -1877,6 +2140,16 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -1949,11 +2222,12 @@ } }, "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", + "license": "MIT", "dependencies": { - "mdn-data": "2.0.30", + "mdn-data": "2.12.2", "source-map-js": "^1.0.1" }, "engines": { @@ -1985,6 +2259,16 @@ } } }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/deprecation": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", @@ -2035,6 +2319,13 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/es-module-lexer": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", + "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", + "dev": true, + "license": "MIT" + }, "node_modules/esbuild": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", @@ -2091,6 +2382,16 @@ "dev": true, "license": "MIT" }, + "node_modules/expect-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", + "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -2411,6 +2712,13 @@ "dev": true, "license": "MIT" }, + "node_modules/loupe": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz", + "integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==", + "dev": true, + "license": "MIT" + }, "node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", @@ -2429,9 +2737,10 @@ } }, "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==", + "license": "CC0-1.0" }, "node_modules/minimatch": { "version": "9.0.5", @@ -2523,6 +2832,33 @@ "wrappy": "1" } }, + "node_modules/oxlint": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/oxlint/-/oxlint-0.15.11.tgz", + "integrity": "sha512-SvNbuA5KiGzA1/E5TCzbhC0veVFdJRQW0CfeRCUG2AKzfH2j3KkQMmBA8JwVsdOhfPMCjwomAL1xE6+RglyCCA==", + "dev": true, + "license": "MIT", + "bin": { + "oxc_language_server": "bin/oxc_language_server", + "oxlint": "bin/oxlint" + }, + "engines": { + "node": ">=8.*" + }, + "funding": { + "url": "https://github.com/sponsors/Boshen" + }, + "optionalDependencies": { + "@oxlint/darwin-arm64": "0.15.11", + "@oxlint/darwin-x64": "0.15.11", + "@oxlint/linux-arm64-gnu": "0.15.11", + "@oxlint/linux-arm64-musl": "0.15.11", + "@oxlint/linux-x64-gnu": "0.15.11", + "@oxlint/linux-x64-musl": "0.15.11", + "@oxlint/win32-arm64": "0.15.11", + "@oxlint/win32-x64": "0.15.11" + } + }, "node_modules/package-json-from-dist": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", @@ -2587,6 +2923,16 @@ "dev": true, "license": "MIT" }, + "node_modules/pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -2784,6 +3130,13 @@ "node": ">=8" } }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, "node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", @@ -2822,6 +3175,20 @@ "dev": true, "license": "BSD-3-Clause" }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", + "dev": true, + "license": "MIT" + }, "node_modules/string-argv": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", @@ -2944,6 +3311,50 @@ "node": ">=18" } }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinypool": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", + "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", @@ -3151,6 +3562,29 @@ } } }, + "node_modules/vite-node": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.6.tgz", + "integrity": "sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.4.0", + "es-module-lexer": "^1.6.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, "node_modules/vite-plugin-dts": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/vite-plugin-dts/-/vite-plugin-dts-4.5.0.tgz", @@ -3178,6 +3612,76 @@ } } }, + "node_modules/vitest": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.0.6.tgz", + "integrity": "sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "3.0.6", + "@vitest/mocker": "3.0.6", + "@vitest/pretty-format": "^3.0.6", + "@vitest/runner": "3.0.6", + "@vitest/snapshot": "3.0.6", + "@vitest/spy": "3.0.6", + "@vitest/utils": "3.0.6", + "chai": "^5.2.0", + "debug": "^4.4.0", + "expect-type": "^1.1.0", + "magic-string": "^0.30.17", + "pathe": "^2.0.3", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinypool": "^1.0.2", + "tinyrainbow": "^2.0.0", + "vite": "^5.0.0 || ^6.0.0", + "vite-node": "3.0.6", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/debug": "^4.1.12", + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "@vitest/browser": "3.0.6", + "@vitest/ui": "3.0.6", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/debug": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, "node_modules/vscode-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz", @@ -3208,6 +3712,23 @@ "node": ">= 8" } }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -3411,22 +3932,6 @@ "integrity": "sha512-cI7AmySy3FGIC59YRusPWnscNr2/M60HKTvE2h63EMGZPdB1LLT2G7OE3XB8tajjX7hVBR0YXUVvTEr4JHtLsg==", "requires": { "css-tree": "^3.0.0" - }, - "dependencies": { - "css-tree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", - "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", - "requires": { - "mdn-data": "2.12.2", - "source-map-js": "^1.0.1" - } - }, - "mdn-data": { - "version": "2.12.2", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", - "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==" - } } }, "@codecov/bundler-plugin-core": { @@ -3954,6 +4459,62 @@ "@octokit/openapi-types": "^23.0.1" } }, + "@oxlint/darwin-arm64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/darwin-arm64/-/darwin-arm64-0.15.11.tgz", + "integrity": "sha512-cSW5LCqoHAp+zvKNUmzvKXzvh90o0J50HOJj7HARXWes/fqKQ2U2NX36Grc19lOxhP5ItoNeZN6x88opPdVtDw==", + "dev": true, + "optional": true + }, + "@oxlint/darwin-x64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/darwin-x64/-/darwin-x64-0.15.11.tgz", + "integrity": "sha512-6iisoeMdIGBvga+dKe6UnAH8jN58lkbwApQh0IAJzSpkS9B0MPFFy2LjT9qq6J4WyHWh8oYnDJhNOJVBGynApQ==", + "dev": true, + "optional": true + }, + "@oxlint/linux-arm64-gnu": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-arm64-gnu/-/linux-arm64-gnu-0.15.11.tgz", + "integrity": "sha512-3zmkAYm309ZWf0Af3YiQMbx2kV8SKRThyaw32x65NvZje/RfnqDSaUJ/juT32DyWNGgRSI2KaWExbbVKZGj6Bw==", + "dev": true, + "optional": true + }, + "@oxlint/linux-arm64-musl": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-arm64-musl/-/linux-arm64-musl-0.15.11.tgz", + "integrity": "sha512-kj6t4GxNfYvSkC9HbdnQFyK1AXXmWN+d53lyDVWUKByRNAOLn6hBrzl9WByJ6ZGCTwTOyrkqu1Om4itlILqodA==", + "dev": true, + "optional": true + }, + "@oxlint/linux-x64-gnu": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-x64-gnu/-/linux-x64-gnu-0.15.11.tgz", + "integrity": "sha512-1RNUw+nWjv8EXI1wa6A4oc/UXwdCk4l29y3JgCZ7s1aPdZhn3sWLng0SFVruZAf5QFY9bxKS2ffr1s84T1uXhQ==", + "dev": true, + "optional": true + }, + "@oxlint/linux-x64-musl": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/linux-x64-musl/-/linux-x64-musl-0.15.11.tgz", + "integrity": "sha512-7uUD13t5WUg7TrZlViW0oYwg2npwoFvzA+1wOPtDu9Kyy24WggUIg8dAExTb5OFkj5jxKKAT17EcvtSNxxLdww==", + "dev": true, + "optional": true + }, + "@oxlint/win32-arm64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/win32-arm64/-/win32-arm64-0.15.11.tgz", + "integrity": "sha512-6tMc5UYWGwzxa+AsgNQGFktoqewkdV5pmMXlQboGIOUWYYIQfl2/X7owbv+3y3n7EmO7EBniIB2G/5m8teDzGQ==", + "dev": true, + "optional": true + }, + "@oxlint/win32-x64": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/@oxlint/win32-x64/-/win32-x64-0.15.11.tgz", + "integrity": "sha512-etEXnRNT3Lep/jAvBxgFqHGGAZTnjvRNKSOKSQ0jFNTIzAhaqCpJrH25LKuvIqDPTDOPNA5DjmfuT2AFNhAI0g==", + "dev": true, + "optional": true + }, "@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -4202,6 +4763,12 @@ "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", "dev": true }, + "@types/css-tree": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/css-tree/-/css-tree-2.3.10.tgz", + "integrity": "sha512-WcaBazJ84RxABvRttQjjFWgTcHvZR9jGr0Y3hccPkHjFyk/a3N8EuxjKr+QfrwjoM5b1yI1Uj1i7EzOAAwBwag==", + "dev": true + }, "@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", @@ -4225,6 +4792,90 @@ "undici-types": "~5.26.4" } }, + "@vitest/expect": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.0.6.tgz", + "integrity": "sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==", + "dev": true, + "requires": { + "@vitest/spy": "3.0.6", + "@vitest/utils": "3.0.6", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + } + }, + "@vitest/mocker": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.0.6.tgz", + "integrity": "sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==", + "dev": true, + "requires": { + "@vitest/spy": "3.0.6", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "dependencies": { + "estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "requires": { + "@types/estree": "^1.0.0" + } + } + } + }, + "@vitest/pretty-format": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.0.6.tgz", + "integrity": "sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==", + "dev": true, + "requires": { + "tinyrainbow": "^2.0.0" + } + }, + "@vitest/runner": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.0.6.tgz", + "integrity": "sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==", + "dev": true, + "requires": { + "@vitest/utils": "3.0.6", + "pathe": "^2.0.3" + } + }, + "@vitest/snapshot": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.0.6.tgz", + "integrity": "sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==", + "dev": true, + "requires": { + "@vitest/pretty-format": "3.0.6", + "magic-string": "^0.30.17", + "pathe": "^2.0.3" + } + }, + "@vitest/spy": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.0.6.tgz", + "integrity": "sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==", + "dev": true, + "requires": { + "tinyspy": "^3.0.2" + } + }, + "@vitest/utils": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.0.6.tgz", + "integrity": "sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==", + "dev": true, + "requires": { + "@vitest/pretty-format": "3.0.6", + "loupe": "^3.1.3", + "tinyrainbow": "^2.0.0" + } + }, "@volar/language-core": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.11.tgz", @@ -4370,6 +5021,12 @@ "sprintf-js": "~1.0.2" } }, + "assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true + }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -4449,6 +5106,25 @@ } } }, + "cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true + }, + "chai": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", + "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", + "dev": true, + "requires": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + } + }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -4459,6 +5135,12 @@ "supports-color": "^7.1.0" } }, + "check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true + }, "cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -4515,11 +5197,11 @@ } }, "css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz", + "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==", "requires": { - "mdn-data": "2.0.30", + "mdn-data": "2.12.2", "source-map-js": "^1.0.1" } }, @@ -4538,6 +5220,12 @@ "ms": "^2.1.3" } }, + "deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true + }, "deprecation": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", @@ -4570,6 +5258,12 @@ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true }, + "es-module-lexer": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", + "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", + "dev": true + }, "esbuild": { "version": "0.24.2", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", @@ -4613,6 +5307,12 @@ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true }, + "expect-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", + "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "dev": true + }, "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -4829,6 +5529,12 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "loupe": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz", + "integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==", + "dev": true + }, "lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", @@ -4845,9 +5551,9 @@ } }, "mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + "version": "2.12.2", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz", + "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==" }, "minimatch": { "version": "9.0.5", @@ -4907,6 +5613,22 @@ "wrappy": "1" } }, + "oxlint": { + "version": "0.15.11", + "resolved": "https://registry.npmjs.org/oxlint/-/oxlint-0.15.11.tgz", + "integrity": "sha512-SvNbuA5KiGzA1/E5TCzbhC0veVFdJRQW0CfeRCUG2AKzfH2j3KkQMmBA8JwVsdOhfPMCjwomAL1xE6+RglyCCA==", + "dev": true, + "requires": { + "@oxlint/darwin-arm64": "0.15.11", + "@oxlint/darwin-x64": "0.15.11", + "@oxlint/linux-arm64-gnu": "0.15.11", + "@oxlint/linux-arm64-musl": "0.15.11", + "@oxlint/linux-x64-gnu": "0.15.11", + "@oxlint/linux-x64-musl": "0.15.11", + "@oxlint/win32-arm64": "0.15.11", + "@oxlint/win32-x64": "0.15.11" + } + }, "package-json-from-dist": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", @@ -4953,6 +5675,12 @@ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", "dev": true }, + "pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true + }, "picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -5073,6 +5801,12 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, + "siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true + }, "signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", @@ -5096,6 +5830,18 @@ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, + "stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true + }, + "std-env": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", + "dev": true + }, "string-argv": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", @@ -5174,6 +5920,36 @@ "minimatch": "^9.0.4" } }, + "tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true + }, + "tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true + }, + "tinypool": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", + "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", + "dev": true + }, + "tinyrainbow": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", + "dev": true + }, + "tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true + }, "tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", @@ -5284,6 +6060,19 @@ "rollup": "^4.30.1" } }, + "vite-node": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.6.tgz", + "integrity": "sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==", + "dev": true, + "requires": { + "cac": "^6.7.14", + "debug": "^4.4.0", + "es-module-lexer": "^1.6.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0" + } + }, "vite-plugin-dts": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/vite-plugin-dts/-/vite-plugin-dts-4.5.0.tgz", @@ -5301,6 +6090,34 @@ "magic-string": "^0.30.17" } }, + "vitest": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.0.6.tgz", + "integrity": "sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==", + "dev": true, + "requires": { + "@vitest/expect": "3.0.6", + "@vitest/mocker": "3.0.6", + "@vitest/pretty-format": "^3.0.6", + "@vitest/runner": "3.0.6", + "@vitest/snapshot": "3.0.6", + "@vitest/spy": "3.0.6", + "@vitest/utils": "3.0.6", + "chai": "^5.2.0", + "debug": "^4.4.0", + "expect-type": "^1.1.0", + "magic-string": "^0.30.17", + "pathe": "^2.0.3", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinypool": "^1.0.2", + "tinyrainbow": "^2.0.0", + "vite": "^5.0.0 || ^6.0.0", + "vite-node": "3.0.6", + "why-is-node-running": "^2.3.0" + } + }, "vscode-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz", @@ -5322,6 +6139,16 @@ "isexe": "^2.0.0" } }, + "why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "requires": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + } + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", diff --git a/package.json b/package.json index 5be689df..69a67cdb 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "@projectwallace/css-analyzer", - "version": "6.0.0", + "description": "The best CSS analyzer out there. Check design tokens, complexity, specificity, performance and more.", + "version": "7.0.0-alpha.0", "author": "Bart Veneman", "repository": { "type": "git", "url": "git+https://github.com/projectwallace/css-analyzer.git" }, - "homepage": "https://www.projectwallace.com/oss", + "homepage": "https://github.com/projectwallace/css-analyzer", "issues": "https://github.com/projectwallace/css-analyzer/issues", "license": "MIT", "type": "module", @@ -16,7 +17,6 @@ "source": "./src/index.js", "exports": { "types": "./dist/index.d.ts", - "require": "./dist/analyze-css.umd.cjs", "default": "./dist/analyze-css.js" }, "types": "./dist/index.d.ts", @@ -28,7 +28,9 @@ }, "scripts": { "test": "uvu", - "build": "vite build" + "build": "vite build", + "check": "tsc", + "lint": "oxlint --config oxlintrc.json" }, "keywords": [ "projectwallace", @@ -49,16 +51,19 @@ ], "dependencies": { "@bramus/specificity": "^2.4.1", - "css-tree": "^2.3.1" + "css-tree": "^3.1.0" }, "devDependencies": { "@codecov/vite-plugin": "^1.9.0", + "@types/css-tree": "^2.3.10", "c8": "^10.1.3", + "oxlint": "^0.15.11", "uvu": "^0.5.6", "vite": "^6.1.1", - "vite-plugin-dts": "^4.5.0" + "vite-plugin-dts": "^4.5.0", + "vitest": "^3.0.6" }, "mangle": { "regex": "^_[^_]" } -} \ No newline at end of file +} diff --git a/src/__fixtures__/bol-com-20231008.css b/src/__fixtures__/bol-com-20231008.css deleted file mode 100644 index 0e404f5c..00000000 --- a/src/__fixtures__/bol-com-20231008.css +++ /dev/null @@ -1,29247 +0,0 @@ -@charset "UTF-8"; - -@keyframes popup-bounce { - 0% { - opacity: 0; - transform: scale(.1); - } - - 80% { - opacity: 1; - transform: scale(1.15); - } - - to { - opacity: 1; - transform: scale(1); - } -} - -@keyframes pop-open-bounce { - 0% { - opacity: 0; - transform: scale(.1) rotateX(90deg); - } - - 50% { - transform: rotateX(-2deg); - } - - 70% { - opacity: 1; - transform: rotate(2deg); - } - - to { - transform: scale(1); - } -} - -@keyframes minimize { - 0% { - opacity: 1; - transform: scale(1); - } - - to { - opacity: 0; - transform: scale(.1); - } -} - -@keyframes slide-in-bottom { - 0% { - transform: translateY(100%); - } - - to { - transform: translateY(0); - } -} - -@keyframes slide-in-from-right { - 0% { - right: 100%; - } - - to { - right: 0; - } -} - -@keyframes slide-in-from-left { - 0% { - left: 100%; - } - - to { - left: 0; - } -} - -@keyframes slide-out-to-left { - 0% { - left: 0; - } - - to { - left: 100%; - } -} - -@keyframes animate-in { - 0% { - opacity: 0; - transform: scale(.6) translateY(-8px); - } - - to { - opacity: 1; - } -} - -@keyframes grow-in { - 0% { - transform: scale(0); - } - - to { - transform: scale(1); - } -} - -@keyframes fade-in { - 0% { - opacity: 0; - } - - to { - opacity: 1; - } -} - -@keyframes fade-out { - 0% { - opacity: 1; - } - - to { - opacity: 0; - } -} - -@keyframes load6 { - - 0%, - 5%, - 95%, - to { - box-shadow: 0-2.25em 0-1em, 0-2.25em 0-1.1em, 0-2.25em 0-1.2em, 0-2.25em 0-1.3em, 0-2.25em 0-1.35em; - } - - 10%, - 59% { - box-shadow: 0-2.25em 0-1em, -.6em -2.1em 0-1.1em, -1.05em -1.85em 0-1.2em, -1.35em -1.65em 0-1.3em, -1.5em -1.5em 0-1.35em; - } - - 20% { - box-shadow: 0-2.25em 0-1em, -1.05em -2.1em 0-1.1em, -1.8em -1.65em 0-1.2em, -2.25em -1.15em 0-1.3em, -2.5em -.65em 0-1.35em; - } - - 38% { - box-shadow: 0-2.25em 0-1em, -1.15em -2.05em 0-1.1em, -1.95em -1.45em 0-1.2em, -2.35em -.75em 0-1.3em, -2.5em 0 0-1.35em; - } -} - -@keyframes typing { - - 0%, - 5%, - 95%, - to { - box-shadow: 1.5rem 0 0-.5rem, 2.5rem 0 0-.5rem, 3.5rem 0 0-.5rem; - } - - 10%, - 59% { - box-shadow: 1.5rem 0 0-.35rem, 2.5rem 0 0-.5rem, 3.5rem 0 0-.5rem; - } - - 20% { - box-shadow: 1.5rem 0 0-.5rem, 2.5rem 0 0-.35rem, 3.5rem 0 0-.5rem; - } - - 38% { - box-shadow: 1.5rem 0 0-.5rem, 2.5rem 0 0-.5rem, 3.5rem 0 0-.35rem; - } -} - -@keyframes wiggle { - - 20%, - 70% { - transform: rotate(2deg); - } - - 50% { - transform: rotateX(-2deg); - } -} - -@keyframes chat-loader { - - 30%, - to { - background-position: 14px -30px, -30px -7px, 30px 7px; - } - - 60% { - background-position: -7px -30px, -30px 7px, 30px -7px; - } -} - -@keyframes fadeinloader { - 0% { - opacity: 0; - } - - to { - opacity: 1; - } -} - -@keyframes spin { - 0% { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -@keyframes asyncPlaceholderFadeIn { - 0% { - opacity: 0; - } - - to { - opacity: 1; - } -} - -@keyframes fadeInRegion { - 0% { - opacity: 0; - } - - to { - opacity: 1; - } -} - -@keyframes shimmer { - to { - transform: translateX(100%); - } -} - -@font-face { - font-family: "Produkt"; - font-style: normal; - font-weight: 900; - font-stretch: normal; - src: url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Super-Web.woff2)format("woff2"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Super-Web.woff)format("woff"); - font-display: swap; -} - -@font-face { - font-family: "Produkt"; - font-style: normal; - font-weight: 700; - font-stretch: normal; - src: url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Bold-Web.woff2)format("woff2"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Bold-Web.woff)format("woff"); - font-display: swap; -} - -@font-face { - font-family: "Produkt"; - font-style: normal; - font-weight: 500; - font-stretch: normal; - src: url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Regular-Web.woff2)format("woff2"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Regular-Web.woff)format("woff"); - font-display: swap; -} - -@font-face { - font-family: "Produkt"; - font-style: normal; - font-weight: 300; - font-stretch: normal; - src: url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Light-Web.woff2)format("woff2"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Light-Web.woff)format("woff"); - font-display: swap; -} - -@font-face { - font-family: "Graphik"; - font-style: normal; - font-weight: 600; - font-stretch: normal; - src: url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Semibold-Web.woff2)format("woff2"), url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Semibold-Web.woff)format("woff"); - font-display: swap; -} - -@font-face { - font-family: "Graphik"; - font-style: normal; - font-weight: 400; - font-stretch: normal; - src: url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Regular-Web.woff2)format("woff2"), url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Regular-Web.woff)format("woff"); - font-display: swap; -} - -@font-face { - font-display: fallback; - font-family: "Bol Symbols"; - font-style: normal; - font-weight: 400; - src: url(data:font/woff;charset=utf-8;base64,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)format("woff"); -} - -html { - line-height: 1.15; - min-height: 100%; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -menu, -nav, -section { - display: block; -} - -h1 { - font-size: 2em; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -pre { - font-size: 1em; -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; - text-decoration-skip: objects; -} - -abbr[title] { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - border-bottom: none; -} - -b, -strong { - font-weight: 600; -} - -dfn { - font-style: italic; -} - -mark { - color: #000; - background-color: #ff0; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -audio, -canvas, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -svg:not(:root) { - overflow: hidden; -} - -button, -input, -optgroup, -select, -textarea { - margin: 0; - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button { - appearance: button; -} - -[type=reset], -[type=submit], -html [type=button] { - -webkit-appearance: button; - appearance: button; -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - padding: 0; - border-style: none; -} - -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} - -legend { - box-sizing: border-box; - display: table; - max-width: 100%; - color: inherit; - white-space: normal; -} - -progress { - display: inline-block; - vertical-align: baseline; -} - -textarea { - overflow: auto; -} - -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0; -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; -} - -[type=search] { - -webkit-appearance: textfield; - appearance: textfield; - outline-offset: -2px; -} - -[type=search]::-webkit-search-cancel-button, -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; - appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - appearance: button; - font: inherit; -} - -summary { - display: list-item; -} - -[hidden], -template { - display: none; -} - -dl, -h1, -h2, -h3, -h4, -h5, -p { - margin: 0; -} - -blockquote, -dd, -fieldset, -figure, -h6, -legend, -ol { - padding: 0; - margin: 0; -} - -pre { - padding: 0; -} - -li>ol, -li>ul { - margin-bottom: 0; -} - -table { - border-spacing: 0; - border-collapse: collapse; -} - -fieldset { - min-width: 0; - border: 0; -} - -a:focus, -a:focus-visible, -button:focus, -button:focus-visible { - outline: 2px solid #33f; - outline-offset: 2px; -} - -a:focus:not(:focus-visible), -button:focus:not(:focus-visible) { - outline: 0; -} - -@media (min-width:30em) { - .bi-1x\@screen-medium-up { - font-size: 1em; - } - - .bi-2x\@screen-medium-up { - font-size: 2em; - } - - .bi-3x\@screen-medium-up { - font-size: 3em; - } - - .bi-4x\@screen-medium-up { - font-size: 4em; - } - - .bi-5x\@screen-medium-up { - font-size: 5em; - } - - .bi-6x\@screen-medium-up { - font-size: 6em; - } - - .bi-7x\@screen-medium-up { - font-size: 7em; - } - - .bi-8x\@screen-medium-up { - font-size: 8em; - } - - .bi-9x\@screen-medium-up { - font-size: 9em; - } - - .bi-10x\@screen-medium-up { - font-size: 10em; - } -} - -.h1, -h1 { - padding: 0; - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; - line-height: 1.25; - margin: 0 0 1rem; - font-size: 1.25rem; -} - -.h1, -.h1 .sub-title, -h1, -h1 .sub-title { - color: #03031a; -} - -@media (min-width:48em) { - - .h1, - h1 { - font-size: 1.75rem; - } - - .h1 .sub-title, - h1 .sub-title { - font-size: 1.125rem; - } -} - -.h2, -h2 { - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; - color: #03031a; -} - -.banner__title, -.h2, -h2 { - padding: 0; - line-height: 1.25; - margin: 0 0 .5rem; - font-size: 1.125rem; -} - -.banner__title .sub-title, -.h2 .sub-title, -h2 .sub-title { - color: #03031a; -} - -@media (min-width:48em) { - - .banner__title, - .h2, - h2 { - font-size: 1.25rem; - } -} - -.h3, -h3 { - padding: 0; - margin: 0 0 .5rem; - font-family: graphik, arial, helvetica, sans-serif; - font-weight: 600; - line-height: 1.5; - font-size: 1.125rem; -} - -@media (min-width:48em) { - - .h3, - h3 { - font-size: 1.25rem; - } -} - -.h4, -h4 { - padding: 0; - margin: 0 0 .5rem; - font-family: graphik, arial, helvetica, sans-serif; - font-weight: 600; - line-height: 1.5; - font-size: 1rem; -} - -@media (min-width:48em) { - - .h4, - h4 { - font-size: 1.125rem; - font-weight: 400; - } -} - -.h5, -.notification__title, -h5 { - padding: 0; - margin: 0 0 .5rem; - font-family: graphik, arial, helvetica, sans-serif; - font-weight: 600; - line-height: 1.5; - font-size: 1rem; -} - -.bol_header { - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; -} - -.bol_header__center { - text-align: center; -} - -.sub-title { - display: block; - width: 100%; - font-family: graphik, arial, helvetica, sans-serif; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; -} - -.page-heading { - display: flex; - flex-wrap: wrap; - align-items: center; -} - -.page-heading__label { - padding: .5rem; - margin-right: .5rem; - font-family: graphik, arial, helvetica, sans-serif; - font-size: .75rem; - font-weight: 400; - color: #03031a; -} - -.page-heading__label--secundary { - background-color: #e6e6e8; -} - -.page-heading__tooltip { - display: inline-flex; -} - -.page-heading__tooltip svg { - font-size: 1.5rem; -} - -.split-title { - display: flex; - align-items: center; - justify-content: space-between; -} - -.split-title .c-media { - flex: 1; -} - -@media (min-width:30em) { - .split-title\@screen-small-only { - display: block; - } -} - -dl, -p { - padding: 0; -} - -ol { - padding: 0 0 0 2rem; - list-style-position: outside; -} - -pre, -ul { - margin: 0; -} - -address, -dl, -ol, -p, -ul { - margin: 0 0 1.5rem; -} - -address, -ul { - padding: 0; -} - -ul { - padding: 0 0 1.5rem; - list-style-type: none; -} - -address { - font-style: normal; - -webkit-hyphens: auto; - hyphens: auto; - word-break: break-all; -} - -pre { - font-family: inherit; - white-space: pre-wrap; -} - -.lede { - font-size: .9375rem; -} - -@media (min-width:30em) { - .lede { - font-size: 1rem; - } -} - -@media (min-width:48em) { - .lede { - font-size: 1.0625rem; - } -} - -.mini-text, -.mini_details { - margin-bottom: .25rem; - font-size: .625rem; -} - -.banner__explain, -.c-btn-link--medium, -.c-btn-link--small, -.label--large, -.labels, -.offerlabel, -.price-block__prefix, -.product-delivery__icon, -.product-delivery__icon.info-link, -.product-item .sponsored-label, -.product-prices--list-price-small, -.product-prices__list-price, -.product-subtitle, -.small-text, -.small_details, -.smartbanner__content, -.suggest-group__in-category, -[class*=c-btn-][class*="--medium"], -[class*=c-btn-][class*="--small"] { - margin-bottom: .25rem; -} - -.txt-koboplus, -.txt-select { - font-family: produkt, arial, helvetica, sans-serif; - font-size: 110%; - font-weight: 700; - line-height: initial; - color: #01ac3a; -} - -.txt-koboplus { - color: #0000a4; -} - -.txt-koboplus span { - font-weight: 300; -} - -.list { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; -} - -.list--dropdown__navigation { - top: 100%; - right: calc(100% - 3rem); - white-space: nowrap; -} - -.list--dropdown__scroll { - max-height: calc(100vh - 285px); - overflow-y: scroll; -} - -@media (min-width:37.5em) { - .list--dropdown__scroll { - max-height: calc(100vh - 370px); - } -} - -.list__item { - position: relative; - padding-top: calc(1.5rem - 1px); - padding-right: 1rem; - padding-bottom: 1.5rem; - padding-left: 1rem; - border-top: 1px solid #e6e6e8; -} - -.list__item:first-child { - border-top-color: transparent; -} - -.list--clickable .list__item, -.list--selectable .list__item { - padding-right: 2rem; -} - -.list--clickable .list__item:after, -.list--selectable .list__item:after { - position: absolute; - top: 50%; - right: 0; - display: inline-block; - width: 1.5rem; - height: 1.5rem; - background-repeat: no-repeat; - background-size: 1.5rem; - transform: translateY(-50%); -} - -.list--clickable .list__item.is-disabled, -.list--selectable .list__item.is-disabled { - display: flex; - align-items: center; - padding-right: 0; -} - -.list--clickable .list__item.is-disabled:after, -.list--selectable .list__item.is-disabled:after { - content: normal; -} - -.list--clickable .list__item.is-disabled> :first-child, -.list--selectable .list__item.is-disabled> :first-child { - flex: 1; -} - -.list--clickable .list__item.is-disabled> :first-child, -.list--clickable .list__item.is-disabled> :first-child .h-color-inform-text, -.list--clickable .list__item.is-disabled> :first-child .list__title, -.list--dropdown .list__item.is-disabled .h-color-inform-text, -.list--dropdown .list__item.is-disabled .list__title, -.list--dropdown .list__item.is-disabled> :first-child, -.list--selectable .list__item.is-disabled> :first-child, -.list--selectable .list__item.is-disabled> :first-child .h-color-inform-text, -.list--selectable .list__item.is-disabled> :first-child .list__title { - color: #b3b3ba; -} - -.list--clickable .list__item.is-disabled> :first-child svg, -.list--selectable .list__item.is-disabled> :first-child svg { - filter: grayscale(100); - opacity: .5; -} - -.list--selectable .list__item.is-selected:after { - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C112%2C0%29'%3E%3Cpath fill-rule='evenodd' d='M4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); -} - -.list--clickable .list__item:after { - pointer-events: none; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28104%2C104%2C118%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); -} - -.list--clickable .list__item--no-link:after { - content: normal; -} - -.list--dropdown .list__item { - padding-right: 0; -} - -.list--dropdown .list__item.is-disabled:not(.show-tooltip), -.list--dropdown .list__item.is-disabled:not(.show-tooltip) .h-color-inform-text, -.list--dropdown .list__item.is-disabled:not(.show-tooltip) .list__title { - color: #b3b3ba; -} - -.list--dropdown .list__item.is-disabled:not(.show-tooltip) svg { - filter: grayscale(100); - opacity: .5; -} - -.list--dropdown .list__item .tooltip-link { - padding: .75rem; -} - -.list__title { - margin-bottom: 0; - font-size: 1.0625rem; - font-weight: 400; -} - -.list__ghost-click { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - cursor: pointer; -} - -.list--dropdown .list__ghost-click { - right: 3rem; -} - -.bullet-list { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - margin-bottom: 1.5rem; -} - -.bullet-list>li { - padding-left: 1.5rem; - margin-bottom: .25rem; -} - -.bullet-list>li:before { - display: inline-block; - flex: 0 0 1.5rem; - width: 1.5rem; - height: 1.5rem; - margin-left: -1.5rem; - vertical-align: bottom; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28104%2C104%2C118%29'%3E%3Cpath fill-rule='evenodd' d='M9 7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5rem; -} - -.bullet-list--success>li:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C112%2C0%29'%3E%3Cpath fill-rule='evenodd' d='M4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); -} - -.bullet-list--plus>li:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M7.5 8v3.51A.5.5 0 017 12a.492.492 0 01-.5-.49V8H2.99a.5.5 0 01-.49-.5c0-.276.215-.5.49-.5H6.5V3.49A.5.5 0 017 3c.276 0 .5.215.5.49V7h3.51a.5.5 0 01.49.5c0 .276-.215.5-.49.5H7.5z'/%3E%3C/svg%3E"); - background-size: 1rem; -} - -.dl-flex { - display: flex; - flex-wrap: wrap; - align-items: flex-start; -} - -.dl-flex+.dl-flex { - padding-top: calc(1.5rem - 1px); - border-top: 1px solid #e6e6e8; -} - -.dl-flex dt { - flex: 0 0 35%; - overflow: hidden; - font-weight: 600; -} - -.dl-flex dd { - flex: 65%0 0; - max-width: 65%; - padding-left: 1rem; - margin-left: 0; -} - -.dl-flex--tooltip dt, -.mobile-tooltip .dl-flex dt, -.tooltip .dl-flex dt { - flex: 0 0 50%; -} - -.dl-flex--tooltip dd, -.mobile-tooltip .dl-flex dd, -.tooltip .dl-flex dd { - flex: 50%0 0; - max-width: 50%; -} - -.c-link { - color: #00f; -} - -.c-link, -.c-link--secondary { - position: relative; - display: inline-flex; - align-items: center; - align-self: self-start; - max-width: max-content; - text-decoration: none; - cursor: pointer; -} - -.c-link--secondary:before, -.c-link:before { - opacity: 0; - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; -} - -.c-link:hover { - color: #3c3eff; -} - -.c-link:active { - color: #0000ca; -} - -.c-link--secondary:active, -.c-link--secondary:hover, -.c-link:active, -.c-link:hover { - text-decoration: none; -} - -.c-link--secondary:active:before, -.c-link--secondary:hover:before, -.c-link:active:before, -.c-link:hover:before, -p .c-link--secondary:before, -p .c-link:before { - opacity: 1; -} - -.c-link--secondary:active, -.c-link:active, -.c-link:focus { - color: #0000a4; -} - -.c-link:focus-visible { - color: #00f; -} - -.c-link--secondary:focus-visible:before, -.c-link:focus-visible:before { - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; - opacity: 1; -} - -.c-link--secondary:focus, -.c-link--secondary:focus-visible, -.c-link:focus, -.c-link:focus-visible { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.c-link--secondary:focus:not(:focus-visible), -.c-link:focus:not(:focus-visible), -.o-drop-down__trigger:focus:not(:focus-visible)~.o-drop-down__label { - outline: 0; -} - -.c-link[href*="//"]:not([href*="bol.com"]) svg, -[href*="//"].c-link--secondary:not([href*="bol.com"]) svg { - display: none; -} - -.c-link[href*="//"]:not([href*="bol.com"]):before, -[href*="//"].c-link--secondary:not([href*="bol.com"]):before { - left: 0; - width: calc(100% - 1.75rem); -} - -.c-link[href*="//"]:not([href*="bol.com"]):after, -[href*="//"].c-link--secondary:not([href*="bol.com"]):after { - display: inline-block; - width: 1.5rem; - height: 1.5rem; - margin-left: .25rem; - vertical-align: bottom; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M12.997 1.855a.485.485 0 01.003.05v2.019a.495.495 0 01-.5.498.504.504 0 01-.5-.498V2.707L8.964 5.743l-.707-.707L11.293 2h-1.21a.501.501 0 01-.505-.5c0-.268.226-.5.504-.5h2.408c.28 0 .505.224.506.5l.001.355zM7 2v1H3v8h8V7h1v5H2V2h5z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-size: 1.5rem; -} - -.c-link[href*="//"]:not([href*="bol.com"]):focus:after, -[href*="//"].c-link--secondary:not([href*="bol.com"]):focus:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C164%29'%3E%3Cpath fill-rule='evenodd' d='M12.997 1.855a.485.485 0 01.003.05v2.019a.495.495 0 01-.5.498.504.504 0 01-.5-.498V2.707L8.964 5.743l-.707-.707L11.293 2h-1.21a.501.501 0 01-.505-.5c0-.268.226-.5.504-.5h2.408c.28 0 .505.224.506.5l.001.355zM7 2v1H3v8h8V7h1v5H2V2h5z'/%3E%3C/svg%3E"); -} - -.c-link[href*="//"]:not([href*="bol.com"]):focus-visible:after, -[href*="//"].c-link--secondary:not([href*="bol.com"]):focus-visible:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M12.997 1.855a.485.485 0 01.003.05v2.019a.495.495 0 01-.5.498.504.504 0 01-.5-.498V2.707L8.964 5.743l-.707-.707L11.293 2h-1.21a.501.501 0 01-.505-.5c0-.268.226-.5.504-.5h2.408c.28 0 .505.224.506.5l.001.355zM7 2v1H3v8h8V7h1v5H2V2h5z'/%3E%3C/svg%3E"); -} - -.c-link[href^="tel:"], -[href^="tel:"].c-link--secondary { - margin-left: 2em; -} - -.c-link[href^="tel:"]:after, -[href^="tel:"].c-link--secondary:after { - position: absolute; - top: 50%; - left: -2em; - display: block; - width: 1.5em; - height: 1.5em; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='nonzero' d='M2.167 10.874c-.27-.822-.251-.927.213-1.176.119-.064.131-.071.447-.247.5-.278.766-.414 1.063-.535.226-.092.234-.087.431.245l.106.18c.226.376.42.606.73.775.334.184.706.175 1.1.037.21-.074.417-.18.657-.327.084-.051.378-.238.321-.202a7.908 7.908 0 002.04-1.88c.011-.014.26-.325.346-.44.16-.215.286-.407.382-.6.15-.3.22-.585.178-.868-.06-.401-.221-.645-.551-.981l-.058-.059c-.236-.24-.264-.308-.194-.56.069-.25.155-.474.346-.923.132-.312.172-.41.232-.565-.003.007.107-.282.135-.35.15-.375.194-.411.492-.397.367.019.603.155.868.5.704.919.71 2.256.104 3.545-.809 1.72-2.215 3.387-3.749 4.473-1.145.81-2.45 1.376-3.539 1.474-.866.078-1.871-.425-2.1-1.12zm4.227-1.902c-.186.114-.337.19-.469.237-.15.053-.242.055-.288.03-.114-.062-.21-.176-.352-.412l-.104-.177c-.42-.706-.88-.981-1.669-.66-.344.14-.636.29-1.17.587-.311.173-.323.18-.436.24-.979.526-1.094 1.14-.689 2.37.391 1.189 1.85 1.918 3.14 1.802 1.287-.116 2.75-.75 4.027-1.654 1.674-1.184 3.193-2.986 4.076-4.864.751-1.598.744-3.327-.216-4.578-.435-.567-.934-.857-1.612-.89-.786-.039-1.175.29-1.469 1.021-.032.08-.146.38-.14.365-.054.141-.092.233-.22.534-.207.488-.305.74-.39 1.047-.181.658-.015 1.056.445 1.526l.058.059c.194.198.255.29.276.428.006.045-.017.142-.084.275-.064.13-.16.275-.287.446-.076.1-.32.406-.339.431a6.911 6.911 0 01-1.78 1.642c.043-.027-.235.15-.308.195z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-size: 1.5em; - transform: translateY(-50%); -} - -.c-link[href^="tel:"]:focus:after, -[href^="tel:"].c-link--secondary:focus:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C164%29'%3E%3Cpath fill-rule='nonzero' d='M2.167 10.874c-.27-.822-.251-.927.213-1.176.119-.064.131-.071.447-.247.5-.278.766-.414 1.063-.535.226-.092.234-.087.431.245l.106.18c.226.376.42.606.73.775.334.184.706.175 1.1.037.21-.074.417-.18.657-.327.084-.051.378-.238.321-.202a7.908 7.908 0 002.04-1.88c.011-.014.26-.325.346-.44.16-.215.286-.407.382-.6.15-.3.22-.585.178-.868-.06-.401-.221-.645-.551-.981l-.058-.059c-.236-.24-.264-.308-.194-.56.069-.25.155-.474.346-.923.132-.312.172-.41.232-.565-.003.007.107-.282.135-.35.15-.375.194-.411.492-.397.367.019.603.155.868.5.704.919.71 2.256.104 3.545-.809 1.72-2.215 3.387-3.749 4.473-1.145.81-2.45 1.376-3.539 1.474-.866.078-1.871-.425-2.1-1.12zm4.227-1.902c-.186.114-.337.19-.469.237-.15.053-.242.055-.288.03-.114-.062-.21-.176-.352-.412l-.104-.177c-.42-.706-.88-.981-1.669-.66-.344.14-.636.29-1.17.587-.311.173-.323.18-.436.24-.979.526-1.094 1.14-.689 2.37.391 1.189 1.85 1.918 3.14 1.802 1.287-.116 2.75-.75 4.027-1.654 1.674-1.184 3.193-2.986 4.076-4.864.751-1.598.744-3.327-.216-4.578-.435-.567-.934-.857-1.612-.89-.786-.039-1.175.29-1.469 1.021-.032.08-.146.38-.14.365-.054.141-.092.233-.22.534-.207.488-.305.74-.39 1.047-.181.658-.015 1.056.445 1.526l.058.059c.194.198.255.29.276.428.006.045-.017.142-.084.275-.064.13-.16.275-.287.446-.076.1-.32.406-.339.431a6.911 6.911 0 01-1.78 1.642c.043-.027-.235.15-.308.195z'/%3E%3C/svg%3E"); -} - -.c-link[href^="tel:"]:focus-visible:after, -[href^="tel:"].c-link--secondary:focus-visible:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='nonzero' d='M2.167 10.874c-.27-.822-.251-.927.213-1.176.119-.064.131-.071.447-.247.5-.278.766-.414 1.063-.535.226-.092.234-.087.431.245l.106.18c.226.376.42.606.73.775.334.184.706.175 1.1.037.21-.074.417-.18.657-.327.084-.051.378-.238.321-.202a7.908 7.908 0 002.04-1.88c.011-.014.26-.325.346-.44.16-.215.286-.407.382-.6.15-.3.22-.585.178-.868-.06-.401-.221-.645-.551-.981l-.058-.059c-.236-.24-.264-.308-.194-.56.069-.25.155-.474.346-.923.132-.312.172-.41.232-.565-.003.007.107-.282.135-.35.15-.375.194-.411.492-.397.367.019.603.155.868.5.704.919.71 2.256.104 3.545-.809 1.72-2.215 3.387-3.749 4.473-1.145.81-2.45 1.376-3.539 1.474-.866.078-1.871-.425-2.1-1.12zm4.227-1.902c-.186.114-.337.19-.469.237-.15.053-.242.055-.288.03-.114-.062-.21-.176-.352-.412l-.104-.177c-.42-.706-.88-.981-1.669-.66-.344.14-.636.29-1.17.587-.311.173-.323.18-.436.24-.979.526-1.094 1.14-.689 2.37.391 1.189 1.85 1.918 3.14 1.802 1.287-.116 2.75-.75 4.027-1.654 1.674-1.184 3.193-2.986 4.076-4.864.751-1.598.744-3.327-.216-4.578-.435-.567-.934-.857-1.612-.89-.786-.039-1.175.29-1.469 1.021-.032.08-.146.38-.14.365-.054.141-.092.233-.22.534-.207.488-.305.74-.39 1.047-.181.658-.015 1.056.445 1.526l.058.059c.194.198.255.29.276.428.006.045-.017.142-.084.275-.064.13-.16.275-.287.446-.076.1-.32.406-.339.431a6.911 6.911 0 01-1.78 1.642c.043-.027-.235.15-.308.195z'/%3E%3C/svg%3E"); -} - -.c-link span, -.c-link--secondary span { - pointer-events: none; -} - -p .c-link, -p .c-link--secondary { - max-width: initial; -} - -p .c-link--secondary:active:before, -p .c-link--secondary:hover:before, -p .c-link:active:before, -p .c-link:hover:before { - opacity: 0; -} - -.c-link--icon:before { - right: 0; - left: 1.8125rem; - width: auto; -} - -.c-link--icon:has(.bi-uni):before { - left: 2rem; -} - -.c-link--icon:focus-visible:before { - opacity: 0; -} - -.c-link--icon>span { - position: relative; - display: inline-block; -} - -.c-link--icon .svg-inline--bi { - margin-right: .5rem; -} - -.c-link--icon span+.svg-inline--bi { - margin: 0 0 0 .5rem; -} - -.c-link--secondary-list, -.c-link-list { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; -} - -.c-link--secondary-list__item, -.c-link-list__item { - position: relative; - padding-left: 1.5rem; - margin-bottom: 1.5rem; -} - -.c-link-list--small .c-link--secondary-list__item, -.c-link-list--small .c-link-list__item { - margin-bottom: .5rem; -} - -.c-link--secondary-list__item:last-child, -.c-link-list__item:last-child { - margin-bottom: 0; -} - -.c-link-list__item:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); -} - -.c-link--secondary-list__item:before, -.c-link-list__item:before { - position: absolute; - top: 0; - left: 0; - width: 1.5rem; - height: 1.5rem; - content: ""; - background-repeat: no-repeat; - background-position: center -1px; - background-size: 1.5rem; -} - -.c-link--secondary { - color: currentColor; -} - -.c-link--secondary:focus, -.c-link--secondary:hover { - color: currentColor; -} - -.c-link--secondary:active { - color: #0000ca; -} - -.c-link--secondary:focus-visible { - color: currentColor; -} - -.c-link--secondary[href*="//"]:not([href*="bol.com"]):focus:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C164%29'%3E%3Cpath fill-rule='evenodd' d='M12.997 1.855a.485.485 0 01.003.05v2.019a.495.495 0 01-.5.498.504.504 0 01-.5-.498V2.707L8.964 5.743l-.707-.707L11.293 2h-1.21a.501.501 0 01-.505-.5c0-.268.226-.5.504-.5h2.408c.28 0 .505.224.506.5l.001.355zM7 2v1H3v8h8V7h1v5H2V2h5z'/%3E%3C/svg%3E"); -} - -.c-link--secondary[href*="//"]:not([href*="bol.com"]):after, -.c-link--secondary[href*="//"]:not([href*="bol.com"]):focus-visible:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M12.997 1.855a.485.485 0 01.003.05v2.019a.495.495 0 01-.5.498.504.504 0 01-.5-.498V2.707L8.964 5.743l-.707-.707L11.293 2h-1.21a.501.501 0 01-.505-.5c0-.268.226-.5.504-.5h2.408c.28 0 .505.224.506.5l.001.355zM7 2v1H3v8h8V7h1v5H2V2h5z'/%3E%3C/svg%3E"); -} - -.c-link--secondary[href^="tel:"]:focus:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C164%29'%3E%3Cpath fill-rule='nonzero' d='M2.167 10.874c-.27-.822-.251-.927.213-1.176.119-.064.131-.071.447-.247.5-.278.766-.414 1.063-.535.226-.092.234-.087.431.245l.106.18c.226.376.42.606.73.775.334.184.706.175 1.1.037.21-.074.417-.18.657-.327.084-.051.378-.238.321-.202a7.908 7.908 0 002.04-1.88c.011-.014.26-.325.346-.44.16-.215.286-.407.382-.6.15-.3.22-.585.178-.868-.06-.401-.221-.645-.551-.981l-.058-.059c-.236-.24-.264-.308-.194-.56.069-.25.155-.474.346-.923.132-.312.172-.41.232-.565-.003.007.107-.282.135-.35.15-.375.194-.411.492-.397.367.019.603.155.868.5.704.919.71 2.256.104 3.545-.809 1.72-2.215 3.387-3.749 4.473-1.145.81-2.45 1.376-3.539 1.474-.866.078-1.871-.425-2.1-1.12zm4.227-1.902c-.186.114-.337.19-.469.237-.15.053-.242.055-.288.03-.114-.062-.21-.176-.352-.412l-.104-.177c-.42-.706-.88-.981-1.669-.66-.344.14-.636.29-1.17.587-.311.173-.323.18-.436.24-.979.526-1.094 1.14-.689 2.37.391 1.189 1.85 1.918 3.14 1.802 1.287-.116 2.75-.75 4.027-1.654 1.674-1.184 3.193-2.986 4.076-4.864.751-1.598.744-3.327-.216-4.578-.435-.567-.934-.857-1.612-.89-.786-.039-1.175.29-1.469 1.021-.032.08-.146.38-.14.365-.054.141-.092.233-.22.534-.207.488-.305.74-.39 1.047-.181.658-.015 1.056.445 1.526l.058.059c.194.198.255.29.276.428.006.045-.017.142-.084.275-.064.13-.16.275-.287.446-.076.1-.32.406-.339.431a6.911 6.911 0 01-1.78 1.642c.043-.027-.235.15-.308.195z'/%3E%3C/svg%3E"); -} - -.c-link--secondary[href^="tel:"]:after, -.c-link--secondary[href^="tel:"]:focus-visible:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='nonzero' d='M2.167 10.874c-.27-.822-.251-.927.213-1.176.119-.064.131-.071.447-.247.5-.278.766-.414 1.063-.535.226-.092.234-.087.431.245l.106.18c.226.376.42.606.73.775.334.184.706.175 1.1.037.21-.074.417-.18.657-.327.084-.051.378-.238.321-.202a7.908 7.908 0 002.04-1.88c.011-.014.26-.325.346-.44.16-.215.286-.407.382-.6.15-.3.22-.585.178-.868-.06-.401-.221-.645-.551-.981l-.058-.059c-.236-.24-.264-.308-.194-.56.069-.25.155-.474.346-.923.132-.312.172-.41.232-.565-.003.007.107-.282.135-.35.15-.375.194-.411.492-.397.367.019.603.155.868.5.704.919.71 2.256.104 3.545-.809 1.72-2.215 3.387-3.749 4.473-1.145.81-2.45 1.376-3.539 1.474-.866.078-1.871-.425-2.1-1.12zm4.227-1.902c-.186.114-.337.19-.469.237-.15.053-.242.055-.288.03-.114-.062-.21-.176-.352-.412l-.104-.177c-.42-.706-.88-.981-1.669-.66-.344.14-.636.29-1.17.587-.311.173-.323.18-.436.24-.979.526-1.094 1.14-.689 2.37.391 1.189 1.85 1.918 3.14 1.802 1.287-.116 2.75-.75 4.027-1.654 1.674-1.184 3.193-2.986 4.076-4.864.751-1.598.744-3.327-.216-4.578-.435-.567-.934-.857-1.612-.89-.786-.039-1.175.29-1.469 1.021-.032.08-.146.38-.14.365-.054.141-.092.233-.22.534-.207.488-.305.74-.39 1.047-.181.658-.015 1.056.445 1.526l.058.059c.194.198.255.29.276.428.006.045-.017.142-.084.275-.064.13-.16.275-.287.446-.076.1-.32.406-.339.431a6.911 6.911 0 01-1.78 1.642c.043-.027-.235.15-.308.195z'/%3E%3C/svg%3E"); -} - -.c-link--secondary-list__item:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); -} - -.o-chat__button { - position: fixed; - right: 1.5em; - bottom: 1.5em; - z-index: 115; - display: flex; - align-items: center; - justify-content: center; - width: 4em; - height: 4em; - overflow: visible; - color: #fff; - background-color: #00f; - border: 0; - border-radius: 50%; - box-shadow: 1px 2px 4px 0 rgba(49, 49, 47, .3); -} - -@media (max-width:47.9375em) { - .o-chat__button { - width: 3em; - height: 3em; - } - - .o-chat__button>svg { - font-size: 2em; - } -} - -.o-chat__button[data-count]:after { - position: absolute; - top: -6px; - right: -6px; - min-width: 21px; - height: 21px; - padding: 0 .25em; - font-size: 12px; - line-height: 21px; - color: #fff; - text-align: center; - content: attr(data-count); - background-color: #f91906; - border-radius: 11px; -} - -.o-chat__button[data-count=""]:after { - content: normal; -} - -.o-chat__button.is-hidden { - display: none; -} - -@media (max-width:47.9375em) { - - .o-chat--is-open .o-chat__button, - .o-chat__window.is-active~.o-chat__button { - display: none; - } -} - -.o-drop-down { - position: relative; -} - -.o-drop-down__label { - display: block; - padding: .5rem; - cursor: pointer; -} - -.o-drop-down__label:after { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: -1; - pointer-events: none; - content: ""; -} - -.o-drop-down__navigation { - margin-bottom: 0; - margin-left: 0; - list-style: none; - position: absolute; - z-index: 1; - display: none; - padding: 0; - color: #03031a; - background: #fff; - border: 1px solid #b3b3ba; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.o-drop-down__item { - border-bottom: 1px solid #b3b3ba; -} - -.o-drop-down__item:last-child { - border-bottom: 0; -} - -.o-drop-down__link { - display: block; - width: 100%; - padding: .5rem 1rem; - font-size: inherit; - line-height: inherit; - color: #03031a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: #fff; - border: 0; -} - -.o-drop-down__link:focus { - outline: 0; -} - -.o-drop-down__link:focus, -.o-drop-down__link:hover { - text-decoration: none; - background: #f0f6ff; -} - -.o-drop-down__trigger { - position: absolute; - pointer-events: none; - opacity: 0; -} - -.o-drop-down__trigger:checked~.o-drop-down__navigation { - display: block; -} - -.o-drop-down__trigger:checked~.o-drop-down__label:after { - z-index: 1; - pointer-events: auto; - -webkit-tap-highlight-color: transparent; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.o-drop-down__trigger:focus~.o-drop-down__label { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.wsp-header { - padding-top: .5rem; - margin-bottom: 1.5rem; - background-color: #fff; -} - -@media (min-width:64em) { - .wsp-header { - padding-top: 0; - background-color: #0000a4; - } -} - -.wsp-header--variant { - background-color: #0000a4; -} - -.wsp-header-sections { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-wrap: wrap; -} - -@media (min-width:64em) { - .wsp-header-sections { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.wsp-header-sections__logo { - display: flex; - flex: 0 0 auto; -} - -.wsp-header-sections__logo a:focus { - background-color: transparent; -} - -.wsp-header-sections__logo a:focus:not(:focus-visible) { - background-color: initial; -} - -.wsp-header-sections__logo a:focus-visible { - background-color: transparent; -} - -.wsp-header-sections__account { - display: flex; - align-items: center; - margin-left: auto; - color: #0000a4; -} - -.wsp-header--variant .wsp-header-sections__account { - color: #fff; -} - -.wsp-header-sections__search { - display: flex; - flex-grow: 1; - flex-wrap: nowrap; - align-items: center; - order: 1; - width: 100%; - padding: 1rem; - margin: .5rem -1rem 0; - background: #0000a4; -} - -.wsp-header--variant .wsp-header-sections__search { - padding-top: 0; -} - -@media (max-width:47.9375em) { - body[data-container-name=Home] .wsp-header-sections__search--home { - position: absolute; - bottom: -5rem; - z-index: 1; - background: 0 0; - } -} - -@media (min-width:64em) { - .wsp-header-sections { - flex-wrap: nowrap; - padding-top: .25rem; - padding-bottom: .25rem; - } - - .wsp-header-sections__account { - color: #fff; - } - - .wsp-header-sections__search { - flex: 1; - order: 0; - padding: 0; - margin-top: 0; - margin-right: 2rem; - margin-left: 2rem; - background: 0 0; - } - - .wsp-header-sections__nav { - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - position: static; - display: flex; - align-items: center; - } -} - -@media (min-width:64em) and (min-width:64em) { - .wsp-header-sections__nav { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.main-menu-btn { - display: flex; - align-items: center; - justify-content: center; - width: 3rem; - height: 3rem; - padding: 0; - color: #0000a4; - cursor: pointer; - background-color: transparent; - border: 0; -} - -.main-menu-btn:focus, -.wsp-suggest-group__item.is-selected a:focus { - outline: 0; -} - -.wsp-header--variant .main-menu-btn, -.wsp-header--variant .wsp-main-logo { - color: #fff; -} - -@media (min-width:64em) { - .main-menu-btn { - display: none; - } -} - -.wsp-main-logo { - box-sizing: content-box; - width: 9rem; - height: 2.3rem; - color: #0000a4; - vertical-align: middle; - transform: translateX(0); -} - -@media (min-width:64em) { - .wsp-main-logo { - width: 10rem; - height: 3rem; - color: #fff; - } -} - -@media (max-width:22.1875rem) { - .wsp-main-logo { - width: 7rem; - } -} - -.usp-banner { - display: none; -} - -@media (min-width:64em) { - .usp-banner { - display: block; - padding: .25rem 0; - font-size: .75rem; - line-height: 1.5rem; - color: #0000a4; - background: #fff; - } - - .usp-banner__constrain { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - align-items: center; - } -} - -@media (min-width:64em) and (min-width:64em) { - .usp-banner__constrain { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .usp-banner__list { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - } - - .usp-banner__item { - margin-right: 1.5rem; - } - - .usp-banner__item:last-child { - margin-right: 0; - } - - .usp-banner__select, - .usp-banner__select:hover, - .usp-banner__usps, - .usp-banner__usps:hover { - text-decoration: none; - } - - .usp-banner__usps { - color: #0000a4; - } - - .usp-banner__select { - margin-left: auto; - color: #007000; - } - - .usp-banner__select-logo { - box-sizing: content-box; - width: 4em; - height: 1em; - margin-bottom: .4em; - color: #00a127; - vertical-align: middle; - fill: currentColor; - transform: translateX(0); - } -} - -.wsp-search-form { - position: relative; - flex-grow: 1; -} - -@media (min-width:64em) { - .wsp-search-form:after { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 120; - pointer-events: none; - content: ""; - background-color: rgba(0, 0, 0, .5); - opacity: 0; - transition: opacity .15s ease-in-out; - } - - .wsp-search-form.is-searching:after, - .wsp-search-form:focus-within:after { - pointer-events: auto; - opacity: 1; - } - - .wsp-search-form.is-searching .wsp-search-form__input, - .wsp-search-form:focus-within .wsp-search-form__input { - z-index: 130; - } - - .wsp-search-form.is-searching .search_suggestions_completer, - .wsp-search-form:focus-within .search_suggestions_completer { - border: 0; - } -} - -.wsp-search-form__suggestions { - position: relative; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 100; - display: flex; - flex-flow: column nowrap; - overflow-y: scroll; - background-color: #fff; -} - -@media (min-width:64em) { - .wsp-search-form__suggestions { - position: absolute; - top: 100%; - bottom: inherit; - z-index: 140; - margin-top: .5rem; - overflow: inherit; - border: 1px solid #b3b3ba; - } - - .wsp-search-form__suggestions:empty { - visibility: hidden; - } -} - -.wsp-search-form__input { - position: relative; - display: flex; - align-items: center; - background-color: #fff; - border-radius: 1.5rem; -} - -@media (min-width:64em) { - .wsp-search-form__input { - max-width: 40rem; - height: inherit; - margin: .5rem auto; - } -} - -.wsp-search-form .search_suggestions_completer { - top: 100%; - right: 0; - left: 0; - z-index: 200; - width: auto; - max-width: 40rem; - margin: 0 auto; -} - -.wsp-search__btn, -.wsp-search__input, -.wsp-search__select { - background-color: transparent; - border: 0; - border-radius: 0; - outline: 0; -} - -.wsp-search__input, -.wsp-search__select { - font-family: inherit; - line-height: inherit; - appearance: none; - -moz-appearance: none; - -webkit-appearance: none; -} - -.wsp-search__input { - width: 100%; - height: 3rem; - padding-left: 1.5rem; - cursor: text; -} - -.wsp-search__input:-moz-placeholder { - color: #b3b3ba; -} - -.wsp-search__input::-moz-placeholder { - color: #b3b3ba; -} - -.wsp-search__input:-ms-input-placeholder { - color: #b3b3ba; -} - -.wsp-search__input::-webkit-input-placeholder { - color: #b3b3ba; -} - -.wsp-search__input--full { - height: auto; - padding: .75rem 0; - border: 0; -} - -.wsp-search__input--full:-moz-placeholder { - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: 3rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M10 8a4 4 0 110-8 4 4 0 010 8zm0-1a3 3 0 100-6 3 3 0 000 6zM7.173 8.254L2.717 12.71a.998.998 0 01-1.414 0c-.39-.39-.384-1.031.001-1.416l4.465-4.465 1.404 1.425z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center left .75rem; - background-size: 1.5rem; -} - -.wsp-search__input--full::-moz-placeholder { - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: 3rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M10 8a4 4 0 110-8 4 4 0 010 8zm0-1a3 3 0 100-6 3 3 0 000 6zM7.173 8.254L2.717 12.71a.998.998 0 01-1.414 0c-.39-.39-.384-1.031.001-1.416l4.465-4.465 1.404 1.425z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center left .75rem; - background-size: 1.5rem; -} - -.wsp-search__input--full:-ms-input-placeholder { - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: 3rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M10 8a4 4 0 110-8 4 4 0 010 8zm0-1a3 3 0 100-6 3 3 0 000 6zM7.173 8.254L2.717 12.71a.998.998 0 01-1.414 0c-.39-.39-.384-1.031.001-1.416l4.465-4.465 1.404 1.425z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center left .75rem; - background-size: 1.5rem; -} - -.wsp-search__input--full::-webkit-input-placeholder { - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: 3rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M10 8a4 4 0 110-8 4 4 0 010 8zm0-1a3 3 0 100-6 3 3 0 000 6zM7.173 8.254L2.717 12.71a.998.998 0 01-1.414 0c-.39-.39-.384-1.031.001-1.416l4.465-4.465 1.404 1.425z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center left .75rem; - background-size: 1.5rem; -} - -.wsp-search__select { - flex-shrink: 0; - width: 9.5rem; - height: 2.5rem; - padding-right: 2rem; - padding-left: .5rem; - margin: .25rem 0; - font-size: .75rem; - text-indent: .01px; - text-overflow: ellipsis; - cursor: pointer; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M7 8.998l-4-4h8z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center right .25rem; - background-size: 1rem; - border-left: 1px solid #03031a; -} - -.wsp-search__select::-ms-expand { - display: none; -} - -.wsp-search__select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0#000; -} - -.wsp-search__placeholder { - position: absolute; - top: 100%; - left: 0; - padding-right: 2rem; - padding-left: .5rem; - font-size: .75rem; - visibility: hidden; -} - -.wsp-search__btn { - position: relative; - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: center; - width: calc(3rem - 7px); - height: calc(3rem - 7px); - padding: 0; - margin: 1px; - margin-right: calc(.5rem + 1px); - color: #0000a4; - cursor: pointer; -} - -.wsp-search__btn:hover { - color: #00f; -} - -.wsp-search__btn:focus { - color: #fff; - background-color: #0000a4; - border-radius: 1.5rem; - outline: 0; -} - -.wsp-search__btn--clear, -.wsp-search__btn--mic { - display: none; -} - -.wsp-search__btn--clear { - margin-right: .5rem; - color: #b3b3ba; -} - -.wsp-search__btn--clear.has-char { - display: block; -} - -.wsp-search__btn--clear:hover { - color: #686876; -} - -.wsp-search__btn--clear:focus { - color: #fff; - background-color: #b3b3ba; -} - -.wsp-search__btn--clear:after { - position: absolute; - top: .5rem; - right: -4px; - bottom: .5rem; - width: 1px; - content: ""; - background-color: #e6e6e8; -} - -.wsp-search__btn--mic { - margin-right: 1px; -} - -.wsp-search__btn--mic.has-mic { - display: block; -} - -.wsp-search__offcanvas-header { - min-height: 4.5rem; -} - -.wsp-suggest-group { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - position: relative; - display: block; - font-size: .875rem; -} - -@media (min-width:64em) { - .wsp-suggest-group { - font-size: .8125rem; - border-top: 1px solid #b3b3ba; - } -} - -.wsp-suggest-group:first-child { - border-top: 0; -} - -@media (min-width:64em) { - .wsp-suggest-group[data-group]:before { - display: inline-block; - width: 100%; - padding: 0 .5rem; - font-size: .625rem; - line-height: 1.5rem; - color: #686876; - text-align: right; - content: attr(data-group); - } -} - -.wsp-suggest-group[data-group=""]:before { - content: normal; -} - -.wsp-suggest-group__item { - display: flex; - padding: 1rem; - color: #03031a; - border-bottom: 1px solid #b3b3ba; -} - -@media (min-width:64em) { - .wsp-suggest-group__item { - padding: .3rem .5rem; - border-bottom: 0; - } -} - -.wsp-suggest-group__item.is-selected, -.wsp-suggest-group__item:focus, -.wsp-suggest-group__item:hover { - text-decoration: none; - background: #f0f6ff; -} - -.wsp-suggest-group__item a { - flex-grow: 1; - color: #03031a; -} - -.wsp-suggest-group__item a:focus, -.wsp-suggest-group__item a:hover { - text-decoration: none; -} - -.wsp-suggest-group__item [type=button] { - -webkit-appearance: none; - appearance: none; -} - -.wsp-suggest-group .order-item .order-item__img { - width: 3rem; - height: 3rem; - margin: 0 .5rem 0 0; - text-align: center; -} - -.wsp-suggest-group .order-item .order-item__img img { - max-height: 2rem; -} - -.wsp-suggest-group .order-item .order-item__body { - width: 100%; - max-width: inherit; -} - -.wsp-suggest-group__text { - color: #03031a; - text-decoration: none; -} - -.wsp-suggest-group__category { - font-size: .6875rem; - color: #0000a4; -} - -.wsp-suggest-group__add, -.wsp-suggest-group__remove { - margin-left: auto; - color: #686876; - cursor: pointer; -} - -.account-button { - position: relative; - padding: .75rem .5rem .75rem .75rem; - text-decoration: none; - background-color: transparent; - border: 0; -} - -.account-button, -.account-button:focus, -.account-button:hover { - color: inherit; - text-decoration: none; - outline: 0; -} - -@media (max-width:63.9375em) { - .account-button { - display: flex; - align-items: center; - justify-content: center; - width: 2.5rem; - height: 2.5rem; - padding: 0; - border-radius: 50%; - transition: background-color .15s ease-in-out; - } - - .account-button:hover { - background-color: #f0f6ff; - } -} - -@media (max-width:63.9375em) and (hover:none) and (pointer:coarse) { - .account-button:hover { - background-color: transparent; - } -} - -@media (max-width:63.9375em) { - .wsp-header--variant .account-button { - color: #fff; - } - - .wsp-header--variant .account-button:hover { - background-color: rgba(255, 255, 255, .25); - } - - .wsp-header--variant .account-button:focus-visible { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; - } -} - -@media (min-width:64em) { - .account-button { - padding: 0; - font-size: .75rem; - } - - .account-button:before { - position: absolute; - bottom: 0; - left: 50%; - width: 0; - height: 1px; - content: ""; - background-color: currentColor; - transition: width .15s ease-in-out; - transform: translateX(-50%); - } - - .account-button:focus:before, - .account-button:hover:before { - width: 100%; - } -} - -.account-dropdown { - display: none; - font-size: .75rem; - color: inherit; -} - -@media (min-width:64em) { - .account-dropdown { - display: block; - } -} - -.account-dropdown .o-drop-down__label { - position: relative; - display: flex; - flex-direction: column; - align-items: flex-end; - height: 2.5rem; - padding: 0 3rem 0 .5rem; - text-decoration: none; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.account-dropdown .o-drop-down__label:before { - position: absolute; - top: 50%; - right: 0; - display: block; - width: 2.5rem; - height: 2.5rem; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath d='M12 24c-3 0-7.1-.7-9-2.5-.6-.6-1-1.4-1-2.2 0-3.8 2.6-7.2 6.3-8.6C6.9 9.6 6 7.9 6 6c0-3.3 2.7-6 6-6s6 2.7 6 6c0 1.9-.9 3.6-2.3 4.7 3.6 1.4 6.3 4.8 6.3 8.6 0 3.4-6 4.7-10 4.7zm0-12c-4.3 0-8 3.3-8 7.3 0 .1 0 .4.4.7 1.1 1.1 4.3 2 7.6 2 4.5 0 8-1.5 8-2.7 0-4-3.7-7.3-8-7.3zm0-10C9.8 2 8 3.8 8 6s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5rem; - border-radius: 50%; - transition: background-color .15s ease-in-out; - transform: translateY(-50%); -} - -.account-dropdown .o-drop-down__label:hover:before, -.wsp-header--variant .customer-lists:hover { - background-color: rgba(255, 255, 255, .25); -} - -.account-dropdown .o-drop-down__navigation { - top: calc(100% + .5rem); - right: 0; - z-index: 120; - white-space: nowrap; -} - -.account-dropdown .o-drop-down__trigger:checked~.o-drop-down__label:before { - background-color: rgba(255, 255, 255, .25); - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath d='M12 24c-3 0-7.1-.7-9-2.5-.6-.6-1-1.4-1-2.2 0-3.8 2.6-7.2 6.3-8.6C6.9 9.6 6 7.9 6 6c0-3.3 2.7-6 6-6s6 2.7 6 6c0 1.9-.9 3.6-2.3 4.7 3.6 1.4 6.3 4.8 6.3 8.6 0 3.4-6 4.7-10 4.7zm0-12c-4.3 0-8 3.3-8 7.3 0 .1 0 .4.4.7 1.1 1.1 4.3 2 7.6 2 4.5 0 8-1.5 8-2.7 0-4-3.7-7.3-8-7.3zm0-10C9.8 2 8 3.8 8 6s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z'/%3E%3C/svg%3E"); -} - -.account-dropdown .o-drop-down__trigger:focus~.o-drop-down__label { - text-decoration: underline; - background-color: initial; - outline: 0; -} - -.account-dropdown .o-drop-down__trigger:focus~.o-drop-down__label:before, -.wsp-header--variant .customer-lists:focus { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; -} - -.account-dropdown .o-drop-down__trigger:focus:not(:focus-visible)~.o-drop-down__label:before, -.wsp-header--variant .customer-lists:focus:not(:focus-visible), -.wsp-header--variant .main-basket-btn:focus:not(:focus-visible) { - background-color: initial; - border: initial; -} - -.account-dropdown .o-drop-down__trigger:focus-visible~.o-drop-down__label:before, -.wsp-header--variant .customer-lists:focus-visible { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; -} - -.account-dropdown--canvas, -main { - display: block; -} - -.account-dropdown--canvas .o-drop-down__navigation { - width: auto; - height: auto; - overflow: visible; -} - -@media (max-width:63.9375em) { - .account-dropdown--canvas .o-drop-down__navigation { - position: static; - display: block; - border: 0; - } - - .account-dropdown--canvas .o-drop-down__label, - .account-dropdown--canvas .o-drop-down__trigger { - display: none; - } - - .account-dropdown--canvas .offcanvas-header { - display: flex; - align-items: center; - border-bottom: 1px solid #b3b3ba; - } - - .account-dropdown--canvas .offcanvas-header__title { - flex-grow: 1; - font-size: 1.125rem; - font-weight: 600; - text-align: center; - border: 0; - } - - .account-dropdown--canvas .offcanvas-header__close-btn { - position: static; - display: flex; - flex-grow: 0; - flex-shrink: 0; - align-items: center; - justify-content: center; - width: 3rem; - height: 3rem; - color: #00f; - background-color: transparent; - border: 0; - } -} - -@media (min-width:64em) { - .account-dropdown--canvas .offcanvas-header { - display: none; - } - - .account-dropdown--canvas .offcanvas-container--right { - position: static; - width: auto; - height: auto; - } -} - -.account-dropdown--canvas .offcanvas-container--right { - right: -100%; - width: 100%; -} - -.customer-lists { - display: flex; - align-items: center; - justify-content: center; - width: 2.5rem; - height: 2.5rem; - margin-left: .25rem; - color: #0000a4; - border-radius: 50%; - transition: background-color .15s ease-in-out; -} - -.wsp-header--variant .customer-lists { - color: #fff; -} - -.customer-lists:hover { - background-color: #f0f6ff; -} - -.customer-lists:focus { - outline: 0; -} - -.customer-lists .bi-heart { - fill: transparent; -} - -@media (min-width:64em) { - .customer-lists { - color: #fff; - } - - .customer-lists:hover { - background-color: rgba(255, 255, 255, .25); - } - - .customer-lists:focus { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; - } - - .customer-lists:focus:not(:focus-visible) { - background-color: initial; - border: initial; - } - - .customer-lists:focus-visible { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; - } -} - -@media (hover:none) and (pointer:coarse) { - .customer-lists { - margin-left: 0; - } - - .customer-lists:hover { - background-color: transparent; - } -} - -.main-basket-btn { - position: relative; - display: flex; - align-items: center; - justify-content: center; - width: 2.5rem; - height: 2.5rem; - margin-left: .25rem; - color: #0000a4; - text-decoration: none; - background-color: transparent; - border-radius: 50%; - transition: background-color .15s ease-in-out; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.wsp-header--variant .main-basket-btn { - color: #fff; -} - -.wsp-header--variant .main-basket-btn:hover { - background-color: rgba(255, 255, 255, .25); -} - -.wsp-header--variant .main-basket-btn:focus { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; -} - -.wsp-header--variant .main-basket-btn:focus-visible { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; -} - -.main-basket-btn:hover { - background-color: #f0f6ff; -} - -.main-basket-btn:focus { - outline: 0; -} - -@media (hover:none) and (pointer:coarse) { - .main-basket-btn { - margin-left: 0; - } - - .main-basket-btn:hover { - background-color: transparent; - } -} - -.main-basket-btn[data-quantity]:before { - position: absolute; - top: -.5rem; - right: -.5rem; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - min-width: 1.5rem; - height: 1.5rem; - padding: 0 .25rem; - font-size: .75rem; - line-height: inherit; - color: #0000a4; - content: attr(data-quantity); - background-color: #febd00; - border-radius: .75rem; -} - -.main-basket-btn[data-quantity=""]:before, -.main-basket-btn[data-quantity="0"]:before { - content: normal; -} - -@media (min-width:64em) { - .main-basket-btn { - color: #fff; - } - - .main-basket-btn:hover { - background-color: rgba(255, 255, 255, .25); - } - - .main-basket-btn:focus { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; - } - - .main-basket-btn:focus:not(:focus-visible) { - background-color: initial; - border: initial; - } - - .main-basket-btn:focus-visible { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; - } -} - -.wsp-main-nav { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - border-bottom: 1px solid #b3b3ba; -} - -@media (max-width:63.9375em) { - .wsp-main-nav__item { - background-color: #fff; - } - - .wsp-main-nav__item--category { - margin-bottom: 1.5rem; - } - - .wsp-main-nav__item--category> :first-child { - display: none; - } - - .wsp-main-nav__item--icons { - border-bottom: 1px solid #b3b3ba; - } -} - -@media (min-width:64em) { - .wsp-main-nav__item { - padding-left: 2rem; - } - - .wsp-main-nav__item:first-child { - padding-left: 0; - } - - .wsp-main-nav__item.is-open>.wsp-main-nav__link, - .wsp-main-nav__item:hover>.wsp-main-nav__link { - padding-bottom: calc(1rem - 4px); - border-bottom: 4px solid #00f; - transition-delay: .2s; - } -} - -@media (min-width:64em) and (hover:none) { - - .wsp-main-nav__item.is-open>.wsp-main-nav__link, - .wsp-main-nav__item:hover>.wsp-main-nav__link { - transition: none; - } -} - -@media (min-width:64em) { - - .wsp-main-nav__item.is-open .wsp-main-nav-constrain, - .wsp-main-nav__item:hover .wsp-main-nav-constrain { - max-height: 9999px; - overflow: visible; - visibility: visible; - opacity: 1; - transition-delay: .2s; - } -} - -@media (min-width:64em) and (hover:none) { - - .wsp-main-nav__item.is-open .wsp-main-nav-constrain, - .wsp-main-nav__item:hover .wsp-main-nav-constrain { - transition: none; - } -} - -.wsp-main-nav__link { - position: relative; - display: flex; - width: 100%; - padding: calc(1rem - 1px) 1rem 1rem; - margin: 0; - font-family: inherit; - line-height: inherit; - color: #00f; - text-align: left; - text-decoration: none; - background-color: transparent; - border: 0; - border-top: 1px solid #b3b3ba; - border-radius: 0; -} - -.wsp-main-nav__link:focus { - outline: 0; -} - -@media (min-width:64em) { - .wsp-main-nav__link:focus { - padding-bottom: calc(1rem - 4px); - border-bottom: 4px solid #00f; - } - - .wsp-main-nav__link:focus:not(:focus-visible) { - padding-bottom: initial; - border-bottom: initial; - } - - .wsp-main-nav__link:focus-visible { - padding-bottom: calc(1rem - 4px); - border-bottom: 4px solid #00f; - } -} - -.wsp-main-nav__link:hover { - text-decoration: none; -} - -.wsp-main-nav__link:after { - display: block; - width: 1.5em; - height: 1.5em; - margin-left: auto; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; -} - -.wsp-main-nav__link .svg-inline--bi { - margin-right: 1rem; -} - -.wsp-main-nav__item:first-child>.wsp-main-nav__link { - font-weight: 600; -} - -@media (max-width:63.9375em) { - .wsp-main-nav__item:first-child>.wsp-main-nav__link { - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; - pointer-events: none; - cursor: default; - } -} - -@media (min-width:64em) { - .wsp-main-nav__link { - padding: 1rem 0; - color: #03031a; - border: 0; - border-color: transparent; - transition: 0s border-bottom, 0s padding-bottom; - } - - .wsp-main-nav__link:after { - margin-left: .25rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - } - - .wsp-main-nav__item:first-child>.wsp-main-nav__link { - font-weight: 400; - } - - .wsp-main-nav__link .svg-inline--bi { - display: none; - } - - .wsp-main-nav-constrain { - position: absolute; - top: 3.5rem; - right: 0; - left: 0; - z-index: 110; - display: flex; - width: 100%; - max-height: 0; - margin: 0; - overflow: hidden; - visibility: hidden; - background-color: #fff; - opacity: 0; - transition: max-height .15s, opacity .15s, visibility 0s; - } - - .wsp-main-nav-constrain[aria-hidden=false] { - max-height: 9999px; - overflow: visible; - visibility: visible; - opacity: 1; - transition: none; - } -} - -.wsp-main-nav-content { - position: absolute; - top: 0; - left: 100%; - display: none; - flex-direction: column; - width: 100%; -} - -.is-selected>.wsp-main-nav-constrain>.wsp-main-nav-content, -.is-selected>.wsp-main-nav-content { - display: flex; -} - -.is-deepest-selected .wsp-main-nav-content--deeplink { - display: none; -} - -@media (min-width:64em) { - .wsp-main-nav { - flex-direction: inherit; - border: 0; - } - - .wsp-main-nav:after, - .wsp-main-nav__ghost { - top: 0; - right: 0; - left: 0; - pointer-events: none; - opacity: 0; - } - - .wsp-main-nav:after { - position: fixed; - bottom: 0; - z-index: 100; - content: ""; - background-color: rgba(0, 0, 0, .5); - transition: opacity .15s ease-in-out; - } - - .wsp-main-nav--hide-content .wsp-main-nav-constrain { - display: none; - } - - .wsp-main-nav--hide-content:after { - display: none; - } - - .wsp-main-nav__ghost { - position: absolute; - z-index: -10; - height: 3.5rem; - background-color: #fff; - transition: 0s opacity; - } - - .wsp-main-nav__ghost>.constrain { - max-width: calc(76rem - 4rem); - height: 3.5rem; - padding: 0; - border-bottom: 1px solid #b3b3ba; - } - - .wsp-main-nav:hover .wsp-main-nav__ghost, - .wsp-main-nav:hover:after { - opacity: 1; - transition-delay: .2s; - } -} - -@media (min-width:64em) and (hover:none) { - - .wsp-main-nav:hover .wsp-main-nav__ghost, - .wsp-main-nav:hover:after { - transition: none; - } -} - -@media (min-width:64em) { - .wsp-main-nav:hover .wsp-main-nav__ghost { - z-index: 101; - } - - .wsp-main-nav:hover .wsp-main-nav__link { - z-index: 110; - } - - .wsp-main-nav:focus-within .wsp-main-nav__ghost, - .wsp-main-nav:focus-within:after { - opacity: 1; - transition: none; - } - - .wsp-main-nav:focus-within .wsp-main-nav__ghost { - z-index: 101; - } - - .wsp-main-nav:focus-within .wsp-main-nav__link { - z-index: 110; - } - - .wsp-main-nav-content, - .wsp-main-nav-panel { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - width: 100%; - } -} - -@media (min-width:64em) and (min-width:64em) { - - .wsp-main-nav-content, - .wsp-main-nav-panel { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .wsp-main-nav-panel { - position: initial; - padding-top: 1rem; - padding-bottom: 1rem; - pointer-events: none; - } - - .wsp-main-nav-content { - left: 0; - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } -} - -@media (min-width:64em) and (hover:none) { - - .wsp-main-nav:focus-within .wsp-main-nav__ghost, - .wsp-main-nav:focus-within:after { - opacity: 1; - transition: none; - } - - .wsp-main-nav__item:focus-within>.wsp-main-nav__link { - padding-bottom: calc(1rem - 4px); - border-bottom: 4px solid #00f; - transition: none; - } - - .wsp-main-nav__item:focus-within .wsp-main-nav-constrain { - max-height: 9999px; - overflow: visible; - visibility: visible; - opacity: 1; - transition: none; - } -} - -.wsp-category-nav { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - border-bottom: 1px solid #b3b3ba; -} - -@media (max-width:63.9375em) { - .wsp-category-nav__item { - background-color: #fff; - } -} - -@media (min-width:64em) { - - .wsp-category-nav__item.is-open .wsp-category-nav-sub-panel, - .wsp-category-nav__item:hover .wsp-category-nav-sub-panel { - z-index: -1; - min-height: 100%; - visibility: visible; - opacity: 1; - } -} - -.wsp-category-nav__link { - position: relative; - display: block; - width: 100%; - padding: calc(1rem - 1px) 1rem 1rem; - margin: 0; - font-family: inherit; - line-height: inherit; - color: #03031a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: transparent; - border-color: #b3b3ba; - border-style: solid; - border-width: 1px 0 0; - border-radius: 0; -} - -.wsp-category-nav__link .c-media { - pointer-events: none; -} - -.wsp-category-nav__link:focus { - outline: 0; -} - -.wsp-category-nav__link:hover { - text-decoration: none; -} - -.wsp-category-nav__link:after { - position: absolute; - top: 50%; - right: 1em; - width: 1.5em; - height: 1.5em; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; - transform: translateY(-50%); -} - -.wsp-category-nav__link .country-icon, -.wsp-category-nav__link>.svg-inline--bi { - margin-right: .75rem; -} - -.wsp-category-nav__link .country-icon { - width: 1.5em; - height: 1em; - vertical-align: -.1rem; -} - -@media (min-width:64em) { - .wsp-category-nav__link { - display: flex; - width: 100%; - padding: .75rem 0; - text-align: left; - border: 0; - } - - .wsp-category-nav__link:after { - position: static; - align-self: center; - margin-left: auto; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - transform: none; - } - - .wsp-category-nav__item:hover>.wsp-category-nav__link { - z-index: 1; - width: calc(100% + .5rem); - padding-left: .5rem; - margin-left: -.5rem; - background-color: #f0f6ff; - } -} - -.wsp-category-nav__icon { - display: none; -} - -.wsp-category-nav__disclaimer { - padding: .5rem 1rem; -} - -@media (min-width:64em) { - .wsp-category-nav__disclaimer { - padding: 0; - } -} - -.wsp-category-nav-sub-panel { - position: absolute; - top: 0; - left: 100%; - display: none; - flex-direction: column; - width: 100%; -} - -.wsp-category-nav__item--loading .wsp-category-nav-sub-panel { - min-width: 15rem; -} - -.is-selected>.wsp-category-nav-constrain>.wsp-category-nav-sub-panel, -.is-selected>.wsp-category-nav-sub-panel { - display: flex; -} - -.is-deepest-selected .wsp-category-nav-sub-panel--deeplink { - display: none; -} - -@media (min-width:64em) { - .wsp-category-nav-sub-panel { - top: 0; - right: 0; - left: 0; - display: flex; - padding: 1.5rem 0 0; - overflow: visible; - visibility: hidden; - background: #fff; - opacity: 0; - } - - .wsp-category-nav-sub-panel .inner-panel { - width: 100%; - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - } -} - -@media (min-width:64em) and (min-width:64em) { - .wsp-category-nav-sub-panel .inner-panel { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .wsp-category-nav-sub-panel .inner-panel__spacer { - margin-left: 16.5rem; - } -} - -@media (max-width:63.9375em) { - .wsp-category-nav--icons { - display: flex; - flex-direction: row; - flex-wrap: wrap; - border-bottom: 0; - } - - .wsp-category-nav--icons>.wsp-category-nav__item { - flex: 0 0 33.3333%; - } - - .wsp-category-nav--icons>.wsp-category-nav__item>.wsp-category-nav__link { - display: flex; - flex-direction: column; - align-items: center; - padding: 1rem; - color: #03031a; - text-align: center; - border: 0; - } - - .wsp-category-nav--icons>.wsp-category-nav__item>.wsp-category-nav__link:after { - content: normal; - } - - .wsp-category-nav--icons .wsp-category-nav__icon { - display: flex; - align-items: center; - justify-content: center; - width: 4.5rem; - height: 4.5rem; - margin-bottom: .5rem; - color: #00f; - pointer-events: none; - background-color: #f0f6ff; - border-radius: 50%; - } -} - -@media (min-width:64em) { - .wsp-category-nav { - display: block; - flex-direction: inherit; - width: 15rem; - pointer-events: auto; - border: 0; - } - - .wsp-category-nav-sub-panel--deeplink { - display: none; - } - - .wsp-category-nav__item:focus-within>.wsp-category-nav__link { - width: calc(100% + .5rem); - padding-left: .5rem; - margin-left: -.5rem; - background-color: #f0f6ff; - } - - .wsp-category-nav__item:focus-within .wsp-category-nav-sub-panel { - z-index: -1; - visibility: visible; - opacity: 1; - } - - @supports ((-webkit-clip-path:polygon(0 50%, 100% 100%, 100%0)) or (clip-path:polygon(0 50%, 100% 100%, 100%0))) { - .wsp-category-nav__item:first-child>.wsp-category-nav__link:before { - top: -1px; - height: 6rem; - -webkit-clip-path: polygon(100%0, 100% 100%, 0 0); - clip-path: polygon(100%0, 100% 100%, 0 0); - transform: none; - } - - .wsp-category-nav__item:last-child>.wsp-category-nav__link:before { - top: inherit; - bottom: -1px; - height: 6rem; - -webkit-clip-path: polygon(100%0, 100% 100%, 0 100%); - clip-path: polygon(100%0, 100% 100%, 0 100%); - transform: none; - } - - .wsp-category-nav__link:before { - position: absolute; - top: inherit; - right: -1px; - bottom: -3rem; - width: 90%; - height: 9rem; - -webkit-clip-path: polygon(0 50%, 100% 100%, 100%0); - clip-path: polygon(0 50%, 100% 100%, 100%0); - content: ""; - transform: none; - } - } -} - -.wsp-category-nav-ab { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - padding: 0 1rem; - border-bottom: 1px solid #e6e6e8; -} - -@media (min-width:64em) { - .wsp-category-nav-ab { - padding: 0; - } -} - -.wsp-category-nav-ab__title { - display: none; -} - -@media (min-width:64em) { - .wsp-category-nav-ab__title { - display: block; - padding: 0 0 .5rem; - font-family: graphik, arial, helvetica, sans-serif; - font-size: .875rem; - font-weight: 600; - line-height: 1.5; - } -} - -.wsp-category-nav-ab__link { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1rem 0; - margin: 0; - font-family: inherit; - line-height: inherit; - color: #03031a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: transparent; - border-color: #e6e6e8; - border-style: solid; - border-width: 1px 0 0; - border-radius: 0; -} - -.wsp-category-nav-ab__link span { - display: block; - width: 100%; - padding-right: 2rem; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.wsp-category-nav-ab__link .c-media { - pointer-events: none; -} - -.wsp-category-nav-ab__link:focus { - outline: 0; -} - -.wsp-category-nav-ab__link:hover { - text-decoration: none; - background-color: #f0f6ff; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: 95% 50%; - background-size: 1.5em; -} - -.wsp-category-nav-ab__link:after { - position: absolute; - top: 50%; - right: 1em; - width: 1.5em; - height: 1.5em; -} - -@media (min-width:64em) { - .wsp-category-nav-ab__link { - padding: .25rem 0; - border: 0; - } - - .is-selected .wsp-category-nav-ab__link:after { - content: ""; - } -} - -@media (max-width:29.9375em) { - .wsp-category-nav-ab__link { - padding-top: .5rem; - padding-bottom: .5rem; - } -} - -.wsp-category-nav-ab__image { - flex: 0; - width: 80px; - height: auto; - margin-right: 1rem; -} - -@media (min-width:64em) { - .wsp-category-nav-ab__image { - width: 40px; - } -} - -@media (max-width:29.9375em) { - .wsp-category-nav-ab__image { - width: 64px; - } -} - -.wsp-category-nav-ab__disclaimer { - padding: .5rem 1rem; -} - -@media (min-width:64em) { - .wsp-category-nav-ab__disclaimer { - padding: 0; - } -} - -.wsp-category-nav-ab-sub-panel { - position: absolute; - top: 0; - left: 100%; - display: none; - flex-direction: column; - width: 100%; - background: #fff; -} - -.wsp-category-nav-ab__item--loading .wsp-category-nav-ab-sub-panel { - min-width: 20rem; -} - -.is-selected>.wsp-category-nav-ab-constrain>.wsp-category-nav-ab-sub-panel, -.is-selected>.wsp-category-nav-ab-sub-panel { - display: flex; -} - -.is-deepest-selected .wsp-category-nav-ab-sub-panel--deeplink { - display: none; -} - -@media (min-width:64em) { - .wsp-category-nav-ab-sub-panel { - top: 0; - right: 0; - left: 0; - display: flex; - padding: 1rem 0 0; - overflow: visible; - visibility: hidden; - opacity: 0; - } - - .wsp-category-nav-ab-sub-panel .inner-panel { - width: 100%; - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - } -} - -@media (min-width:64em) and (min-width:64em) { - .wsp-category-nav-ab-sub-panel .inner-panel { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .wsp-category-nav-ab-sub-panel .inner-panel__spacer { - margin-left: 20rem; - } - - .wsp-category-nav-ab { - display: block; - flex-direction: inherit; - width: 20rem; - pointer-events: auto; - border-right: 1px solid #e6e6e8; - border-bottom: 0; - } - - .wsp-category-nav-ab-sub-panel--deeplink { - display: none; - } - - .wsp-category-nav-ab__item.is-selected-background { - background-color: #f0f6ff; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: 95% 50%; - background-size: 1.5em; - } - - .wsp-category-nav-ab__item.is-selected>.wsp-category-nav-ab__link { - z-index: 2; - width: calc(100% + .5rem); - padding-left: .5rem; - margin-left: -.5rem; - } - - .wsp-category-nav-ab__item.is-selected .wsp-category-nav-ab-sub-panel { - z-index: -1; - visibility: visible; - opacity: 1; - } - - @supports ((-webkit-clip-path:polygon(0 50%, 100% 100%, 100%0)) or (clip-path:polygon(0 50%, 100% 100%, 100%0))) { - .wsp-category-nav-ab__item:first-child>.wsp-category-nav-ab__link:before { - top: -1px; - height: 6rem; - -webkit-clip-path: polygon(100%0, 100% 100%, 0 0); - clip-path: polygon(100%0, 100% 100%, 0 0); - transform: none; - } - - .wsp-category-nav-ab__item:last-child>.wsp-category-nav-ab__link:before { - top: inherit; - bottom: -1px; - height: 6rem; - -webkit-clip-path: polygon(100%0, 100% 100%, 0 100%); - clip-path: polygon(100%0, 100% 100%, 0 100%); - transform: none; - } - - .wsp-category-nav-ab__link:before { - position: absolute; - top: inherit; - right: -1px; - bottom: -3rem; - width: 90%; - height: 9rem; - -webkit-clip-path: polygon(0 50%, 100% 100%, 100%0); - clip-path: polygon(0 50%, 100% 100%, 100%0); - content: ""; - transform: none; - } - } -} - -.wsp-sub-nav { - border-bottom: 1px solid #b3b3ba; - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - margin-bottom: 1.5rem; - background-color: #fff; -} - -@media (min-width:64em) { - .wsp-sub-nav { - border-bottom: 0; - } -} - -.wsp-sub-nav__item { - display: block; - border-top: 1px solid #b3b3ba; -} - -@media (min-width:64em) { - .wsp-sub-nav__item { - border-top: 0; - } -} - -.wsp-sub-nav__item--collapse-after { - cursor: pointer; -} - -@media (min-width:64em) { - .wsp-sub-nav__item--collapse-after { - display: none; - } -} - -@media (max-width:63.9375em) { - - .wsp-sub-nav__item--collapse-after~.wsp-category-nav__item, - .wsp-sub-nav__item--collapse-after~.wsp-sub-nav__item { - display: none; - } -} - -.wsp-sub-nav__item--collapse-after-visible { - height: 0; - overflow: hidden; - visibility: hidden; - border: 0; -} - -.wsp-sub-nav__item--collapse-after-visible~.wsp-category-nav__item, -.wsp-sub-nav__item--collapse-after-visible~.wsp-sub-nav__item { - display: block; - animation: slide-in-from-left .5s; -} - -.wsp-sub-nav__title { - display: block; - padding: calc(2rem - 1px) 1rem .5rem; - margin-top: -1.5rem; - font-size: 1rem; - font-weight: 600; - color: #686876; - background-color: #f0f6ff; -} - -.wsp-sub-nav__link { - position: relative; - display: block; - width: 100%; - padding: 1rem 1rem calc(1rem - 1px); - margin: 0; - font-weight: inherit; - line-height: inherit; - color: #03031a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: transparent; - border: 0; -} - -.wsp-sub-nav__link:focus, -.wsp-sub-nav__link:hover { - color: #00f; - text-decoration: none; -} - -@media (max-width:63.9375em) { - - .wsp-sub-nav__link--back:before, - .wsp-sub-nav__link--show-more:before, - .wsp-sub-nav__link:after { - position: absolute; - top: 50%; - width: 1.5em; - height: 1.5em; - pointer-events: none; - content: ""; - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; - transform: translateY(-50%); - } - - .wsp-sub-nav__link:after { - right: .5em; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - } - - .wsp-sub-nav__link--back, - .wsp-sub-nav__link--show-more { - padding-left: 2.5rem; - } - - .wsp-sub-nav__link--back:before, - .wsp-sub-nav__link--show-more:before { - right: auto; - left: .5rem; - } - - .wsp-sub-nav__link--back:after, - .wsp-sub-nav__link--show-more:after { - display: none; - } - - .wsp-sub-nav__link--back:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M9.306 3.644a.508.508 0 000-.71.497.497 0 00-.7-.006l-4.06 4.084 4.055 4.054c.195.195.517.19.707 0a.501.501 0 00-.002-.71L5.954 7.006l3.352-3.36z'/%3E%3C/svg%3E"); - } - - .wsp-sub-nav__link--show-more { - font-weight: 600; - pointer-events: none; - } - - .wsp-sub-nav__link--show-more:before { - color: inherit; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill=''%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - } -} - -.wsp-sub-nav__link--banner { - color: #0000a4; -} - -.wsp-sub-nav__link .c-media, -.wsp-sub-nav__link .c-media__body { - pointer-events: none; -} - -.wsp-sub-nav__link .country-icon { - width: 1.5rem; - height: 1rem; - margin-right: .75rem; - vertical-align: -.1rem; -} - -@media (min-width:64em) { - .wsp-sub-nav__link { - padding: .25rem 0; - } -} - -.wsp-sub-nav--sub-menu-tree { - display: flex; - flex-wrap: wrap; - width: 100%; - margin-left: 2em; -} - -.wsp-sub-nav--sub-menu-tree--child { - width: 25%; - margin-right: 1em; -} - -.wsp-sub-nav--seo-link { - color: #000; -} - -.wsp-sub-nav--link-text { - margin: 0; -} - -.wsp-sub-nav--link-text, -.wsp-sub-nav--parent-title { - overflow-wrap: break-word; -} - -.wsp-sub-nav-container { - position: relative; -} - -@media (min-width:64em) { - .wsp-sub-nav-container { - min-height: 550px; - } - - .wsp-sub-nav-container:after { - position: absolute; - top: 0; - bottom: 1.5rem; - left: 40%; - content: ""; - border-left: 1px solid #e6e6e8; - } -} - -@supports (-webkit-clip-path:polygon(0 50%, 100% 50%, 100%0)) { - .wsp-sub-nav-container wsp-toggle:last-of-type .wsp-sub-nav-group__title:before { - top: -1.5rem; - height: 6rem; - -webkit-clip-path: polygon(0 50%, 100% 50%, 100%0); - clip-path: polygon(0 50%, 100% 50%, 100%0); - } -} - -.wsp-sub-nav-container__image { - display: block; - width: 100%; - height: 13.5rem; - -o-object-fit: cover; - object-fit: cover; -} - -@media (min-width:64em) { - .wsp-sub-nav-container__image { - display: none; - } -} - -.wsp-sub-nav-group { - padding: 0; - margin: 0 1rem; -} - -@media (min-width:64em) { - .wsp-sub-nav-group { - margin: 0; - } -} - -.wsp-sub-nav-group__title { - display: inline-flex; - align-items: center; - width: 100%; - padding: 1.5rem 0; - font-family: graphik, arial, helvetica, sans-serif; - font-size: 1.125rem; - font-weight: 600; - line-height: 1.5; -} - -.wsp-sub-nav-group__title span { - display: block; - width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -@media (min-width:64em) { - .wsp-sub-nav-group__title { - position: relative; - min-height: 48px; - padding: .5rem 2rem; - font-size: .875rem; - font-weight: 400; - } - - .wsp-sub-nav-group__title:after { - position: absolute; - top: 50%; - right: 1em; - width: 1.5em; - height: 1.5em; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5rem; - transform: translateY(-50%); - } -} - -.wsp-sub-nav-group--is-collapsed .wsp-sub-nav-group__item:nth-of-type(1n + 6):not(.wsp-sub-nav-group__show-more) { - display: none; -} - -@media (min-width:64em) { - .wsp-sub-nav-group--is-collapsed .wsp-sub-nav-group__item:nth-of-type(1n + 6):not(.wsp-sub-nav-group__show-more) { - display: block; - } -} - -.wsp-sub-nav-group--is-expanded .wsp-sub-nav-group__item:nth-of-type(1n + 6), -.wsp-sub-nav-group__item:nth-of-type(6)~.wsp-sub-nav-group__show-more, -.wsp-sub-nav-group__item:nth-of-type(1n + 6) { - display: block; -} - -.wsp-sub-nav-group__show-more { - display: none; -} - -@media (min-width:64em) { - - .wsp-sub-nav-group__item:nth-of-type(6)~.wsp-sub-nav-group__show-more, - .wsp-sub-nav-group__item:nth-of-type(1n + 6) { - display: none; - } -} - -.wsp-sub-nav-group__link { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: 1.375rem 0; - margin: 0; - font-family: inherit; - line-height: 24px; - color: #03031a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: transparent; - border-top: 1px solid #e6e6e8; -} - -.wsp-sub-nav-group__link:hover { - background-color: #f0f6ff; -} - -@media (min-width:64em) { - .wsp-sub-nav-group__link:hover { - color: #00f; - text-decoration: underline; - background-color: transparent; - } -} - -.wsp-sub-nav-group__link:after { - position: absolute; - top: 50%; - right: 0; - width: 1.5rem; - height: 1.5rem; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; - transform: translateY(-50%); -} - -@media (min-width:64em) { - .wsp-sub-nav-group__link { - padding: .5rem 2rem; - border: 0; - } - - .wsp-sub-nav-group__link:after { - content: none; - } -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-collapsed, -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-expanded { - padding-left: 2rem; - font-weight: 600; -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-collapsed:after, -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-expanded:after { - content: none; -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-collapsed span:first-of-type { - display: block; -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-collapsed span:last-of-type { - display: none; -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-expanded span:first-of-type { - display: none; -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-expanded span:last-of-type { - display: block; -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-collapsed:before, -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-expanded:before { - position: absolute; - top: 50%; - left: 0; - width: 1.5rem; - height: 1.5rem; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5rem; - transform: translateY(-50%); -} - -.wsp-sub-nav-group__link.wsp-sub-nav-group--is-expanded:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M3.646 8.306a.508.508 0 01-.71 0 .497.497 0 01-.007-.7l4.085-4.06 4.054 4.055a.505.505 0 010 .707.501.501 0 01-.71-.002L7.008 4.954 3.646 8.306z'/%3E%3C/svg%3E"); -} - -.wsp-sub-nav-group__list { - display: flex; - flex-direction: column; - padding: 0; - margin-bottom: 0; -} - -@media (min-width:64em) { - .wsp-sub-nav-group__list { - position: absolute; - top: 0; - bottom: 0; - left: 40%; - display: none; - width: 60%; - background: #fff; - } - - .wsp-sub-nav-group { - width: calc(40% - .9rem); - } - - .wsp-sub-nav-group__title.is-sub-chosen+ul { - display: block; - } - - .wsp-sub-nav-group:hover .wsp-sub-nav-group__title { - cursor: pointer; - background-color: #f0f6ff; - } - - .wsp-sub-nav-group:hover .wsp-sub-nav-group__title:after { - content: ""; - } - - @supports (-webkit-clip-path:polygon(0 50%, 100% 20%, 100% 80%)) { - .wsp-sub-nav-group:hover .wsp-sub-nav-group__title:before { - position: absolute; - top: inherit; - right: 0; - bottom: -3rem; - z-index: 2; - width: 90%; - height: 9rem; - -webkit-clip-path: polygon(0 50%, 100% 100%, 100%0); - clip-path: polygon(0 50%, 100% 100%, 100%0); - content: ""; - } - } -} - -.wsp-sub-nav-parent__title { - display: none; -} - -@media (min-width:64em) { - .wsp-sub-nav-parent__title { - display: block; - padding: 0 0 .5rem 2rem; - overflow: hidden; - font-family: graphik, arial, helvetica, sans-serif; - font-size: .875rem; - line-height: 1.5; - text-overflow: ellipsis; - white-space: nowrap; - } -} - -.wsp-secundary-nav { - padding: 0; - margin-bottom: 0; - list-style: none; - display: none; - flex-wrap: nowrap; - margin-left: auto; - font-size: .75rem; -} - -.wsp-secundary-nav__item { - position: relative; - margin-left: 2rem; -} - -.wsp-secundary-nav__item:first-child { - margin-left: 0; -} - -.wsp-secundary-nav__item--country-select { - margin-left: 1rem; -} - -.wsp-secundary-nav__item--country-select .o-drop-down__label { - padding: 0 1.25rem 0 1rem; - text-transform: uppercase; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.wsp-secundary-nav__item--country-select .o-drop-down__label:before { - position: absolute; - top: 50%; - right: 0; - display: block; - width: 1em; - height: 1em; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1em; - transform: translateY(-50%); -} - -.wsp-secundary-nav__item--country-select .o-drop-down__navigation { - top: 100%; - right: 0; - z-index: 10; - white-space: nowrap; -} - -.wsp-secundary-nav__item--country-select .o-drop-down__link { - display: flex; - align-items: center; - justify-content: space-between; -} - -.wsp-secundary-nav__item--country-select .o-drop-down__trigger:checked~.o-drop-down__label:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M3.646 8.306a.508.508 0 01-.71 0 .497.497 0 01-.007-.7l4.085-4.06 4.054 4.055a.505.505 0 010 .707.501.501 0 01-.71-.002L7.008 4.954 3.646 8.306z'/%3E%3C/svg%3E"); -} - -.wsp-secundary-nav__item--country-select .o-drop-down__trigger:focus-visible~.o-drop-down__label { - text-decoration: underline; -} - -.wsp-secundary-nav__link { - position: relative; - display: inline-block; - color: #03031a; - text-decoration: none; - cursor: pointer; -} - -.wsp-secundary-nav__link:before { - opacity: 0; - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; -} - -.nav-contextual__flagship-link:hover, -.nav-contextual__link:hover, -.wsp-secundary-nav__link:active, -.wsp-secundary-nav__link:hover { - text-decoration: none; -} - -.wsp-secundary-nav__link:active:before, -.wsp-secundary-nav__link:hover:before { - opacity: 1; -} - -@media (min-width:64em) { - .wsp-secundary-nav { - position: relative; - z-index: 110; - display: flex; - align-items: center; - height: 3.5rem; - } -} - -.nav-contextual { - margin-bottom: 1.5rem; - border-bottom: 1px solid #b3b3ba; -} - -.nav-contextual__title, -.wsp-offcanvas__title br { - display: none; -} - -.nav-contextual__link { - padding: .75rem 1rem; - color: #03031a; -} - -.nav-contextual__flagship-link, -.nav-contextual__link { - display: none; - width: 100%; - text-decoration: none; - cursor: pointer; -} - -@media (min-width:64em) { - - .nav-contextual__flagship-link, - .nav-contextual__link { - position: relative; - display: block; - width: auto; - padding: 0; - margin-left: 2rem; - line-height: initial; - border: 0; - } - - .nav-contextual__flagship-link:first-child, - .nav-contextual__link:first-child { - margin-left: 0; - } -} - -.nav-contextual__link .svg-inline--bi { - margin-right: .75rem; -} - -@media (min-width:64em) { - .nav-contextual__link:before { - opacity: 0; - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; - } - - .nav-contextual__link .svg-inline--bi { - display: none; - } - - .nav-contextual__link:active:before, - .nav-contextual__link:hover:before { - opacity: 1; - } -} - -.nav-contextual__flagship-link { - display: flex; - align-items: center; - padding: 1.5rem 1rem; - color: #0000a4; - background-color: #f0f6ff; -} - -.nav-contextual__flagship-link .bol_header { - font-size: 1.125rem; -} - -.nav-contextual__flagship-link .svg-inline--bi { - margin-left: auto; -} - -@media (min-width:64em) { - .nav-contextual__flagship-link { - padding: 0; - color: #007000; - background-color: transparent; - } - - .nav-contextual__flagship-link .bol_header { - font-size: 1.3125rem; - } - - .nav-contextual { - padding: .5rem 0; - margin-bottom: 0; - background-color: #f0f6ff; - border: 0; - } - - .nav-contextual__inner { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - } -} - -@media (min-width:64em) and (min-width:64em) { - .nav-contextual__inner { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.wsp-offcanvas { - width: 100%; -} - -@media (max-width:63.9375em) and (min-width:30em) { - .wsp-offcanvas:not(.wsp-offcanvas--no-max) { - width: 70%; - max-width: 480px; - } -} - -@media (max-width:63.9375em) { - .wsp-offcanvas { - position: fixed; - top: 0; - left: 0; - z-index: 300; - display: flex; - flex-direction: column; - height: 100%; - overflow: hidden; - background-color: #fafafa; - transform: translateX(-100%); - will-change: transform; - } - - .wsp-offcanvas img { - display: none; - } - - .wsp-offcanvas.wsp-offcanvas--visible img { - display: inherit; - } - - .wsp-offcanvas.wsp-offcanvas--visible { - transform: none; - } - - .wsp-offcanvas--slide.slide.slide--animatable, - .wsp-offcanvas.wsp-offcanvas--visible.wsp-offcanvas--animatable { - transition: all 330ms ease-out; - } - - .wsp-offcanvas.wsp-offcanvas--animatable { - transition: all 130ms ease-in; - } - - .wsp-offcanvas__header { - display: flex; - flex: 0 0 3rem; - align-items: center; - justify-content: space-between; - background-color: #fff; - border-bottom: 1px solid #e6e6e8; - } - - .wsp-offcanvas__title { - flex: 1; - overflow: hidden; - font-size: 1.125rem; - font-weight: 600; - text-align: center; - text-overflow: ellipsis; - white-space: nowrap; - } - - .wsp-offcanvas-action { - height: 3rem; - padding: .75rem; - margin: 0; - line-height: inherit; - color: #00f; - vertical-align: inherit; - cursor: pointer; - background-color: transparent; - border: 0; - } - - .wsp-offcanvas-action-ab:focus, - .wsp-offcanvas-action:focus { - color: #03031a; - outline: 0; - } - - .wsp-offcanvas-action--close { - margin-left: auto; - } - - .wsp-offcanvas-action--back { - display: none; - pointer-events: none; - } - - .wsp-offcanvas-action-ab { - height: 4rem; - padding: .75rem; - margin: 0; - line-height: inherit; - color: #03031a; - vertical-align: inherit; - cursor: pointer; - background-color: transparent; - border: 0; - } - - .wsp-offcanvas-action-ab--close { - margin-left: auto; - } - - .wsp-offcanvas-action-ab--back { - pointer-events: none; - visibility: hidden; - } - - .wsp-offcanvas--scroll-pane { - flex: 1; - height: 100%; - overflow-x: hidden; - -webkit-overflow-scrolling: touch; - } - - .wsp-offcanvas--slide { - position: relative; - display: flex; - flex-direction: column; - transform: none; - will-change: transform; - } - - .wsp-offcanvas--slide.slide { - transform: translateX(-100%); - } - - .wsp-offcanvas--slide.slide--animatable { - transition: all 130ms ease-in; - } - - .wsp-offcanvas__slide-content { - position: relative; - display: flex; - flex-flow: column; - } - - .wsp-header .wsp-offcanvas__slide-content { - margin-top: -1px; - } -} - -@media (min-width:64em) { - .wsp-offcanvas { - display: block; - background-color: #fff; - } - - .wsp-offcanvas__header { - display: none; - } - - .wsp-offcanvas--scroll-pane { - position: relative; - } - - .wsp-offcanvas--slide { - width: auto; - height: auto; - overflow: visible; - transform: none; - } - - .wsp-offcanvas__slide-content { - max-width: initial; - } - - .wsp-header .wsp-offcanvas__slide-content { - margin-top: 0; - } -} - -@media (max-width:63.9375em) { - .is-non-scrollable { - position: fixed; - width: 100%; - overflow: hidden; - } - - .is-non-scrollable:before { - pointer-events: auto; - opacity: 1; - } -} - -body:before { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 100; - height: 200%; - pointer-events: none; - content: ""; - background-color: rgba(0, 0, 0, .5); - opacity: 0; - transition: opacity .3s cubic-bezier(0, 0, .3, 1); - will-change: opacity; -} - -.skip-link { - position: absolute; - width: 1px; - height: 1px; - overflow: hidden; - clip: rect(1px, 1px, 1px, 1px); - white-space: nowrap; -} - -.skip-link:focus { - top: 5px; - left: 5px; - z-index: 1000; - width: auto; - height: auto; - padding: 5px 10px; - overflow: auto; - clip: auto; - font-size: 1.3em; - color: #fff; - background: #03031a; - border: 3px solid #fff; -} - -.wsp-footer { - overflow: auto; - background-color: #fff; -} - -.wsp-footer a:focus { - text-decoration: none; - background-color: #90cdfe; - outline: 2px solid #90cdfe; - outline-offset: -1px; -} - -.wsp-footer a:focus:not(:focus-visible) { - background-color: inherit; - outline: 0; -} - -.wsp-footer a:focus-visible { - text-decoration: none; - background-color: #90cdfe; - outline: 4px solid #90cdfe; - outline-offset: -1px; -} - -.wsp-footer__servicebar { - padding: 2rem 0; - background-color: #0000a4; -} - -.wsp-footer__services { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-wrap: wrap; - align-items: center; - color: #fff; -} - -@media (min-width:64em) { - .wsp-footer__services { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.wsp-footer__services a { - color: #fff; - text-decoration: underline; -} - -.wsp-footer__services a:hover { - text-decoration: none; -} - -.wsp-footer__services a:focus { - color: #03031a; - text-decoration: none; - background-color: #90cdfe; -} - -.wsp-footer__services a:focus:not(:focus-visible) { - color: inherit; - background-color: inherit; -} - -.wsp-footer__services a:focus-visible { - color: #03031a; - text-decoration: none; - background-color: #90cdfe; -} - -.wsp-footer__services .wsp-footer__service { - width: 100%; - margin-bottom: 1.5rem; -} - -.icon-list>li:last-child, -.link-list>li:last-child, -.notification__list>li:last-child, -.sb-list--wider>li:last-child, -.sb-list>li:last-child, -.wsp-footer__services .wsp-footer__service:last-child { - margin-bottom: 0; -} - -@media (min-width:48em) { - .wsp-footer__services .wsp-footer__service:nth-child(-1n + 3) { - width: 33.3333333333%; - margin-bottom: 0; - } -} - -.wsp-footer__service { - display: flex; - align-items: center; -} - -.wsp-footer__service--title { - padding: 0; - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; - line-height: 1.25; - margin: 0 0 .5rem; - font-size: 1.125rem; - color: #fff; -} - -.wsp-footer__service--title .sub-title { - color: #03031a; -} - -@media (min-width:48em) { - .wsp-footer__service--title { - font-size: 1.25rem; - } -} - -.wsp-footer__figure { - display: flex; - margin: 0 2rem 0 1rem; -} - -@media (min-width:48em) { - .wsp-footer__figure { - margin-left: 2rem; - } -} - -.wsp-footer__body { - flex: 1 1 auto; - width: 100%; -} - -.wsp-footer__body> :last-child { - padding-bottom: 0; - margin-bottom: 0; -} - -.wsp-footer__links { - display: flex; - flex-wrap: wrap; - padding-bottom: 2rem; - margin-bottom: 0; -} - -@media (min-width:48em) { - .wsp-footer__links { - padding-top: 2rem; - margin-left: -1.5rem; - } -} - -.wsp-footer__link { - width: 100%; -} - -.wsp-footer__link ul { - display: none; - margin-bottom: 0; -} - -.wsp-footer__link:not(.wsp-footer__link--social) a { - color: #03031a; - text-decoration: none; -} - -.wsp-footer__link:not(.wsp-footer__link--social) a:hover { - text-decoration: underline; -} - -.wsp-footer__link:not(.wsp-footer__link--social)> :first-child { - display: flex; - align-items: center; - justify-content: space-between; - padding: .75rem 0 calc(.75rem - 1px); - border-bottom: 1px solid #e6e6e8; -} - -.wsp-footer__link--social { - padding-top: 2rem; - text-align: center; -} - -@media (min-width:48em) { - .wsp-footer__link--social { - padding-top: 0; - text-align: left; - } -} - -.wsp-footer__link--social .wsp-footer__social-icons { - margin-right: auto; - margin-left: auto; -} - -@media (min-width:48em) { - .wsp-footer__link--social .wsp-footer__social-icons { - margin-left: 0; - } - - .wsp-footer__link { - width: 33.3333333333%; - padding-left: 1.5rem; - } - - .wsp-footer__link ul { - display: block; - margin-bottom: 1.5rem; - margin-bottom: 0; - } - - .wsp-footer__link:not(.wsp-footer__link--social)> :first-child { - display: inline; - padding: 0; - font-weight: 600; - border: 0; - } - - .wsp-footer__link:not(.wsp-footer__link--social)> :first-child .svg-inline--bi { - display: none; - } - - .wsp-footer__link, - .wsp-footer__link:last-child { - width: 20%; - } -} - -.wsp-footer__social-icons { - display: flex; - align-items: center; - justify-content: space-around; - max-width: 16rem; - margin-bottom: 1.5rem; -} - -.wsp-footer__social-icons a { - display: inline-flex; - color: #0000a4; -} - -.wsp-footer__trust { - margin-bottom: .25rem; - font-size: .75rem; - display: flex; - align-items: center; - justify-content: space-between; - padding: 1.5rem 0; - margin-bottom: 0; -} - -.wsp-footer__links+.wsp-footer__trust { - padding: calc(1.5rem - 1px)0 1.5rem; - border-top: 1px solid #e6e6e8; -} - -.wsp-footer__trust-icons { - display: flex; -} - -.wsp-footer__trust-icons .icon { - margin-right: 2rem; -} - -.wsp-footer__trust-icons .icon:last-child { - margin-right: 0; -} - -.wsp-footer__payoff { - margin-bottom: 1.5rem; - text-align: center; - border-top: 1px solid #e6e6e8; -} - -.wsp-footer__trust+.wsp-footer__payoff { - border-top: 0; -} - -.wsp-footer__payoff a { - color: #03031a; -} - -.wsp-footer__payoff a:hover { - color: #00f; -} - -.wsp-footer__logo { - width: 18.25rem; - height: 9.375rem; - margin: 0 auto; - color: #0000a4; -} - -.wsp-footer__be-icons, -.wsp-footer__terms { - display: flex; - flex-wrap: wrap; - align-items: center; - margin: 0 auto 1.5rem; -} - -.wsp-footer__be-icons { - justify-content: space-between; - max-width: 32.5rem; -} - -.wsp-footer__terms { - justify-content: center; -} - -.wsp-footer__terms>li+li:before { - margin: 0 1rem; - content: "|"; -} - -.wsp-footer__terms--aligned { - display: flex; - align-items: center; - padding: 0; - margin: 0; -} - -.wsp-footer__terms--aligned>a:not(.icon) { - margin-left: .5rem; - text-decoration: underline; -} - -.wsp-footer__btw { - margin-bottom: .25rem; - font-size: .625rem; -} - -.wsp-footer__btw a { - text-decoration: underline; -} - -@media (min-width:64em) { - .constrain { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.lane { - margin-right: -1rem; - margin-left: -1rem; - background-color: #f0f6ff; -} - -.lane:after, -.lane:before { - display: table; - content: ""; -} - -@media (min-width:48em) { - .lane { - margin-right: 0; - margin-left: 0; - } -} - -.lane--margin-bottom { - margin-bottom: 1rem; -} - -.lane--spaced { - padding-top: 3rem; - padding-bottom: 3rem; -} - -.lane--spaced> :last-child { - padding-bottom: 0; - margin-bottom: 0; -} - -.o-layout { - display: flex; - flex-wrap: wrap; - align-items: flex-start; - padding: 0; - margin: 0; - margin-left: -1.5rem; - list-style: none; -} - -.o-layout--flush { - margin-left: 0; -} - -.o-layout--large { - margin-left: -3rem; -} - -.o-layout--center { - justify-content: center; -} - -.o-layout--right { - justify-content: flex-end; -} - -.o-layout--baseline { - align-items: baseline; -} - -.o-layout--middle { - align-items: center; -} - -.o-layout__item { - width: 100%; - padding-left: 1.5rem; -} - -.o-layout__item--ruling { - flex: 1; -} - -.o-layout--flush>.o-layout__item { - padding-left: 0; -} - -.o-layout--large>.o-layout__item { - padding-left: 3rem; -} - -.o-layout--fill>.o-layout__item { - flex: 1; - width: 1%; -} - -.o-layout--auto>.o-layout__item { - width: auto; -} - -@media (min-width:64em) { - .o-layout--fit-content\@screen-xl-up>.o-layout__item { - flex: 1; - width: 1%; - } -} - -.modal { - position: absolute; - top: 0; - right: 0; - left: 0; - width: 100%; - height: auto; - min-height: 100%; - z-index: 500; -} - -.modal__overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - background-color: rgba(0, 0, 0, .5); -} - -.modal--full .modal__overlay, -.modal__window { - background-color: #fff; -} - -.modal__window { - position: relative; - max-width: 90%; - padding: 1.5rem 1rem; - margin-top: 1.5rem; - margin-right: auto; - margin-bottom: 1.5rem; - margin-left: auto; - box-shadow: 0 0 5px rgba(0, 0, 0, .25); -} - -.modal--full .modal__window { - max-width: 100%; - padding-top: 6rem; - margin: 0; - box-shadow: none; -} - -@media (min-width:30em) { - .modal__window { - max-width: 73%; - } -} - -@media (min-width:48em) { - .modal__window { - max-width: 50em; - margin-top: 3rem; - margin-bottom: 3rem; - } -} - -@media (min-width:75em) { - .modal__window { - margin-top: 4.5rem; - margin-bottom: 4.5rem; - } -} - -.modal__window--close { - position: relative; - z-index: 1; - float: right; - width: 1.5rem; - height: 1.5rem; - margin-top: -.75rem; - margin-right: -.75rem; - color: #686876; - text-align: center; - cursor: pointer; -} - -.modal__window--close-btn, -.modal__window--close-hitarea { - position: absolute; - top: 0; - right: 0; - width: 3rem; - height: 3rem; - cursor: pointer; - z-index: 500; -} - -.modal__window--close-btn { - display: flex; - align-items: center; - justify-content: center; - margin: .5rem; - color: #03031a; - background-color: rgba(255, 255, 255, .7); - border: 0; - border-radius: 50%; -} - -.modal__navigation { - display: grid; - grid-template-columns: 1fr auto 1fr; - align-items: center; - height: 4.5rem; - margin: -1.5rem -1rem 1.5rem; - border-bottom: 1px solid #dddbd5; -} - -.modal__navigation--back, -.modal__navigation--close { - grid-row: 1; - color: #00f; -} - -.modal__navigation--close { - grid-column: 3/4; - justify-self: end; -} - -.modal__navigation--back { - display: block; - grid-column: 1/2; - max-width: min-content; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.modal__navigation .modal__title { - grid-row: 1; - grid-column: 2/3; - font-size: 1.125rem; - font-weight: 600; - line-height: 3rem; - text-align: center; -} - -.modal--full .modal__navigation, -.modal__header { - position: fixed; - top: 0; - right: 0; - left: 0; - overflow: hidden; - background-color: #fff; - border-bottom: 1px solid #b3b3ba; - z-index: 500; -} - -.modal--full .modal__navigation { - margin: 0; -} - -.modal--full .modal__navigation .modal__navigation--back { - visibility: visible; -} - -.modal--full .modal__navigation .modal__navigation--close { - display: none; -} - -.modal__header { - height: 4.5rem; - padding-right: 1.5rem; - padding-left: 1.5rem; -} - -@media (min-width:48em) { - .modal__header { - position: static; - height: auto; - padding-right: 3rem; - border: 0; - } -} - -.modal__footer { - padding-top: calc(.75rem - 1px); -} - -@media (min-width:30em) { - .modal--small .modal__window { - max-width: 28em; - } -} - -.modal--is-open { - overflow-y: scroll; -} - -.modal--is-open .main { - position: fixed; - width: 100%; - filter: blur(.25em); -} - -.modal { - opacity: 0; - transition: opacity 250ms cubic-bezier(0, 0, .2, 1); -} - -.modal:before { - display: none; - content: "animated"; -} - -.is-mobile .modal { - position: fixed; -} - -.modal--is-open .modal { - opacity: 1; - transition-timing-function: cubic-bezier(.4, 0, .6, 1); - transition-duration: 250ms; -} - -.is-mobile .modal--is-open .modal { - position: absolute; -} - -.is-mobile .modal--is-open .modal.modal--no-animation, -.modal--is-open .modal.modal--no-animation { - transition-duration: 0ms; -} - -.is-mobile .modal.modal--full, -.is-mobile .modal.modal--full .modal__header, -.is-mobile .modal.modal--full .modal__overlay { - animation-name: slide-out-to-left; - animation-duration: 250ms; - animation-timing-function: cubic-bezier(.4, 0, .6, 1); - animation-fill-mode: forwards; -} - -.is-mobile .modal--is-open .modal.modal--full { - position: absolute; - animation-name: slide-in-from-left; -} - -.is-mobile .modal--is-open .modal.modal--full .modal__header, -.is-mobile .modal--is-open .modal.modal--full .modal__overlay { - animation-name: slide-in-from-left; -} - -.is-mobile .modal.modal--no-animation, -.modal.modal--no-animation { - animation-duration: 0s; -} - -.is-mobile .main { - left: 0; - transition-timing-function: cubic-bezier(.4, 0, .6, 1); - transition-duration: 250ms; - transition-property: left; -} - -.is-mobile .modal--is-open-full .main { - position: fixed; - left: -100%; - filter: blur(0); - transition-timing-function: cubic-bezier(0, 0, .2, 1); - transition-duration: 250ms; -} - -.modal-header { - display: flex; - align-items: center; - color: #03031a; - text-decoration: none; -} - -.modal-header .sb { - margin-right: .75em; -} - -@media (min-width:48em) { - .modal-header .sb { - display: none; - } -} - -.modal-header:hover { - text-decoration: none; - cursor: pointer; -} - -.modal-header__image { - flex: 0 0 auto; - float: left; - width: auto; - height: 2.5em; - margin-right: .75em; -} - -@media (min-width:48em) { - .modal-header__image { - display: none; - } -} - -.modal-header__title { - display: block; - flex: 1 1 auto; - float: left; - width: 200px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -@media (min-width:48em) { - .modal-header__title { - font-size: 1.25rem; - font-weight: 400; - line-height: 1.25; - } -} - -.o-form__legend { - font-weight: 600; -} - -.o-form__group { - display: flex; - flex-direction: row; - align-items: end; -} - -.o-form__group .c-field, -input[type=button].ui-btn--block, -input[type=reset].ui-btn--block, -input[type=submit].ui-btn--block { - width: 100%; -} - -.o-form__group .c-field+.c-field { - margin-left: 3rem; -} - -.o-form__action, -.o-form__btn-group { - margin-top: 1.5rem; -} - -.o-form__action { - display: flex; - flex-direction: row; - align-items: center; -} - -.o-form__action .small-text { - flex: 1; - margin-bottom: 0; - margin-left: 1.5rem; -} - -.o-form__action--reversed { - flex-direction: row-reverse; - justify-content: space-between; -} - -.o-form__action--reversed .small-text { - margin-right: 1.5rem; - margin-left: 0; -} - -@media (max-width:29.9375em) { - .o-form__action { - flex-direction: column; - align-items: start; - } - - .o-form__action .small-text { - margin-right: 0; - margin-left: 0; - } - - .o-form__action .ui-btn--block\@screen-small+.small-text { - margin-top: .5rem; - margin-bottom: 0; - } - - .o-form__action--terms .small-text { - order: -1; - } - - .o-form__action--terms .ui-btn--block\@screen-small+.small-text { - margin-top: 0; - margin-bottom: .5rem; - } -} - -.o-form__suggestions { - max-height: 0; - padding-right: 1rem; - padding-left: 1rem; - overflow: hidden; - background-color: #f0f6ff; - transition: max-height .5s, padding .15s; - transition-delay: -.2s; - transition-timing-function: cubic-bezier(0, 1, 0, 1); - will-change: max-height, padding; -} - -.o-form__suggestions.is-expanded { - max-height: 9999px; - padding-top: .75rem; - padding-bottom: .75rem; - margin-bottom: 1.5rem; - transition-delay: -.1s; - transition-timing-function: cubic-bezier(1, 0, 1, 0); -} - -.o-form__suggestions__heading { - padding: .75rem 0; -} - -.modal .o-form__suggestions { - margin-right: -1rem; - margin-left: -1rem; -} - -.ui-btn.is-loading:after { - display: flex; - content: ""; -} - -.ui-btn { - position: relative; - display: inline-flex; - flex-shrink: 0; - flex-wrap: nowrap; - align-items: center; - justify-content: center; - height: 3rem; - padding: 0 calc(1rem - 1px); - margin: 0; - overflow: hidden; - font-size: 14px; - font-weight: 400; - line-height: calc(3rem - 2px); - text-align: center; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out; - -webkit-tap-highlight-color: transparent; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.ui-btn:focus, -.ui-btn:focus-visible { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.ui-btn:focus:not(:focus-visible) { - outline: 0; -} - -.tile-view .product-item__options .h-flex .ui-btn+wsp-wishlist-button, -.ui-btn+.ui-btn { - margin-left: .5rem; -} - -.ui-btn:focus, -.ui-btn:hover { - padding: 0 calc(1rem - 2px); - line-height: calc(3rem - 4px); - text-decoration: none; - border-width: 2px; -} - -.ui-btn.disabled, -.ui-btn.is-loading, -.ui-btn:disabled { - color: #81818c; - pointer-events: none; - cursor: default; - background-color: #e6e6e8; - border-color: #e6e6e8; - outline: 0; - box-shadow: none; -} - -.ui-btn.disabled:focus-visible, -.ui-btn.is-loading:focus-visible, -.ui-btn:disabled:focus-visible { - outline: 0; -} - -.ui-btn.is-loading { - color: transparent; -} - -.ui-btn.is-loading>span, -.ui-btn.is-loading>svg { - visibility: hidden; -} - -.ui-btn:not(:disabled):not(.disabled):not(.is-loading) { - cursor: pointer; -} - -.ui-btn>svg { - margin-right: .5rem; - pointer-events: none; -} - -.ui-btn--primary, -.ui-btn--primary:hover { - color: #fff; - background-color: #00f; - border-color: #00f; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.ui-btn--primary:hover { - background-color: #3c3eff; - border-color: #3c3eff; -} - -.ui-btn--primary:active { - color: #fff; - background-color: #0000ca; - border-color: #0000ca; - box-shadow: none; -} - -@media (hover:none) { - .ui-btn--primary:hover { - color: #fff; - background-color: #00f; - border-color: #00f; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); - } -} - -.ui-btn--outline--secondary, -.ui-btn--outline--secondary:hover, -.ui-btn--secondary, -.ui-btn--secondary:hover { - color: #00f; - background-color: #fff; - border-color: #00f; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.ui-btn--outline--secondary:hover, -.ui-btn--secondary:hover { - border-color: #3c3eff; -} - -.ui-btn--outline--secondary:active, -.ui-btn--secondary:active { - color: #fff; - background-color: #0000ca; - border-color: #0000ca; - box-shadow: none; -} - -@media (hover:none) { - - .ui-btn--outline--secondary:hover, - .ui-btn--secondary:hover { - color: #00f; - background-color: #fff; - border-color: #00f; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); - } -} - -.ui-btn--favorite, -.ui-btn--floating, -.ui-btn--tertiary { - color: #00f; - background-color: transparent; - border-color: transparent; - box-shadow: none; -} - -.ui-btn--favorite:hover, -.ui-btn--floating:hover, -.ui-btn--tertiary:hover { - color: #00f; - background-color: transparent; - border-color: #3c3eff; - box-shadow: none; -} - -.ui-btn--favorite:active, -.ui-btn--floating:active, -.ui-btn--tertiary:active { - color: #fff; - background-color: #0000ca; - border-color: #0000ca; - box-shadow: none; -} - -@media (hover:none) { - - .ui-btn--favorite:hover, - .ui-btn--floating:hover, - .ui-btn--tertiary:hover { - color: #00f; - background-color: transparent; - border-color: transparent; - box-shadow: none; - } -} - -.ui-btn--buy, -.ui-btn--buy:hover { - color: #03031a; - background-color: #febd00; - border-color: #febd00; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.ui-btn--buy:hover { - background-color: #fed600; - border-color: #fed600; -} - -.ui-btn--buy:active { - color: #03031a; - background-color: #fea400; - border-color: #fea400; - box-shadow: none; -} - -@media (hover:none) { - .ui-btn--buy:hover { - color: #03031a; - background-color: #febd00; - border-color: #febd00; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); - } -} - -.ui-btn--reserve, -.ui-btn--reserve:hover { - color: #fff; - background-color: #00a127; - border-color: #00a127; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.ui-btn--reserve:hover { - background-color: #00b434; - border-color: #00b434; -} - -.ui-btn--reserve:active { - color: #fff; - background-color: #009019; - border-color: #009019; - box-shadow: none; -} - -@media (hover:none) { - .ui-btn--reserve:hover { - color: #fff; - background-color: #00a127; - border-color: #00a127; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); - } -} - -.ui-btn--reverse { - flex-direction: row-reverse; -} - -.ui-btn--reverse>svg { - margin-right: 0; - margin-left: .25rem; -} - -.ui-btn--reverse>svg+svg:last-child { - margin-left: 0; -} - -.ui-btn.is-added>.bi-hide, -.ui-btn.is-added>.is-added-hide, -.ui-btn>.bi-show, -.ui-btn>.is-added-show, -html>iframe { - display: none; -} - -.ui-btn>.bi-hide+svg:not(.bi-show):not(.bi-hide), -.ui-btn>.bi-show+svg:not(.bi-show):not(.bi-hide) { - margin: 0; -} - -.ui-btn.is-added>.bi-show, -.ui-btn.is-added>.is-added-show { - display: inline-block; -} - -.ui-btn--buy.is-added, -.ui-btn--buy.is-added:hover, -.ui-btn--reserve.is-added, -.ui-btn--reserve.is-added:hover { - color: #007000; - background-color: #fff; - border-color: #007000; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.ui-btn--buy.is-added:hover, -.ui-btn--reserve.is-added:hover { - border-color: #00b434; -} - -.ui-btn--buy.is-added:active, -.ui-btn--reserve.is-added:active { - color: #fff; - background-color: #009019; - border-color: #009019; - box-shadow: none; -} - -@media (hover:none) { - - .ui-btn--buy.is-added:hover, - .ui-btn--reserve.is-added:hover { - color: #007000; - background-color: #fff; - border-color: #007000; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); - } -} - -.ui-btn--link { - color: #00f; -} - -.ui-btn--link, -.ui-btn--link:active, -.ui-btn--link:focus, -.ui-btn--link:hover { - padding-right: 0; - padding-left: 0; - background-color: transparent; - border: 0; -} - -.ui-btn--link:before { - position: absolute; - bottom: 2px; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; - bottom: .6rem; - width: 0; -} - -.ui-btn--link:active:before, -.ui-btn--link:focus:before, -.ui-btn--link:hover:before { - width: 100%; -} - -.ui-btn--clean { - height: 1.5rem; - margin: 0; - line-height: inherit; - text-align: left; - vertical-align: inherit; - cursor: pointer; - background-color: transparent; -} - -.ui-btn--clean, -.ui-btn--clean:active, -.ui-btn--clean:focus, -.ui-btn--clean:hover { - padding: 0; - border: 0; -} - -.ui-btn--auto-height { - height: auto; -} - -.ui-btn--icon, -.ui-btn--square { - width: 3rem; - padding: 0; -} - -.ui-btn--floating { - padding: 0; -} - -.ui-btn--floating>svg, -.ui-btn--icon>svg, -.ui-btn--square>svg { - margin: 0; -} - -.ui-btn--rounding { - width: 3rem; - padding: 0; - background-color: #f8f8f8; - border-radius: 4rem; -} - -.ui-btn--rounding--active { - color: #00f; -} - -.ui-btn--rounding>svg { - width: 3rem; - height: 3rem; - margin: .5rem; -} - -.ui-btn--rounding:focus, -.ui-btn--rounding:hover { - padding: 0; - line-height: calc(3rem - 4px); - border-width: 2px; -} - -@media (max-width:29.9375em) { - .ui-btn--square\@screen-small { - width: 3rem; - padding: 0; - font-size: 0; - } - - .ui-btn--square\@screen-small>svg { - margin: 0; - font-size: 1.3125rem; - } -} - -.ui-btn--icon.disabled, -.ui-btn--icon:disabled { - background-color: transparent; - border-color: transparent; -} - -.ui-btn--floating { - position: absolute; - top: .5rem; - right: .5rem; - width: 2.5rem; - height: 2.5rem; - border-radius: 50%; - z-index: 10; -} - -.ui-btn--floating, -.ui-btn--floating:hover:not(:active) { - background-color: #fff; -} - -.ui-btn--floating:active, -.ui-btn--floating:hover { - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.ui-btn--floating-bl, -.ui-btn--floating-br { - top: initial; - bottom: .5rem; -} - -.ui-btn--floating-bl, -.ui-btn--floating-tl { - right: initial; - left: .5rem; -} - -.ui-btn--floating-c { - top: 50%; - right: 50%; - transform: translate(50%, -50%); -} - -.ui-btn--floating-m { - width: 3rem; - height: 3rem; -} - -.ui-btn--floating-m>.svg-inline--bi { - font-size: 2rem; -} - -.ui-btn--floating-l { - width: 6rem; - height: 6rem; -} - -.ui-btn--floating-l>.svg-inline--bi { - font-size: 3rem; -} - -.ui-btn--pill { - border-radius: 1.5rem; -} - -.ui-btn--block { - flex-shrink: 1; - width: 100%; -} - -.ui-btn--block+.ui-btn--block { - margin-top: 1rem; - margin-left: 0; -} - -.ui-btn--block+.small-text { - margin-top: .5rem; - margin-bottom: 1.5rem; - margin-left: 0; -} - -@media (max-width:29.9375em) { - .ui-btn--block\@screen-small { - flex-shrink: 1; - width: 100%; - } - - .ui-btn--block\@screen-small+.ui-btn--block\@screen-small { - margin-top: 1rem; - margin-left: 0; - } -} - -a.ui-btn.disabled, -fieldset:disabled a.ui-btn { - pointer-events: none; -} - -@media (max-width:29.9375em) { - - input[type=button].ui-btn--block\@screen-small, - input[type=reset].ui-btn--block\@screen-small, - input[type=submit].ui-btn--block\@screen-small { - width: 100%; - } -} - -.ui-btn-group { - display: flex; -} - -.ui-btn-group .ui-btn+.ui-btn { - margin-left: -1px; -} - -.alert { - position: relative; - padding: .75rem 1rem; - margin-bottom: 1.5rem; - color: #03031a; - background-color: #fff; - border-color: transparent; - border-style: solid; - border-width: 0 0 0 7px; - border-radius: .25rem; -} - -.alert--toast { - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.alert--info { - background-color: #fffde5; - border-color: #febd00; -} - -.alert--info-light { - padding-top: calc(.75rem - 1px); - padding-bottom: calc(.75rem - 1px); - background-color: #fff; - border-width: 1px 1px 1px 7px; - border-color: #b3b3ba #b3b3ba #b3b3ba #03031a; -} - -.alert--info-clean { - padding-top: 0; - padding-bottom: 0; - background-color: transparent; - border-left-color: #03031a; -} - -.alert--success { - background-color: #e5f8e9; - border-color: #00a127; -} - -.alert--warning { - background-color: #ffe7e6; - border-color: #f91906; -} - -.alert--notify { - margin-bottom: 0; - border-left-width: 0; -} - -.alert__title { - display: block; - margin-bottom: 0; - font-size: .875rem; - font-weight: 600; -} - -.alert__close { - position: absolute; - top: 0; - right: 0; -} - -.toast { - position: fixed; - left: 50%; - width: 100%; - max-width: 45rem; - padding: 1.5rem 1rem 0; - margin: 0 auto; - transform: translateX(-50%); - z-index: 99999; -} - -.toast--top { - top: 0; -} - -.toast--bottom { - bottom: 0; -} - -.toast--left, -.toast--right { - left: 0; - transform: translateX(0); -} - -.toast--right { - right: 0; - left: auto; -} - -.alert-banner { - position: relative; - display: flex; - padding: .75rem 0; - color: #03031a; - background-color: #fff; - border-color: #03031a; - border-style: solid; - border-width: 0 0 1px; -} - -.alert-banner--info { - background-color: #fffde5; -} - -.alert-banner--info-light { - background-color: #fff; -} - -.alert-banner--warning { - background-color: #ffe7e6; -} - -.alert-banner__constrain { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-grow: 1; - align-items: center; -} - -@media (min-width:64em) { - .alert-banner__constrain { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.alert-banner__figure { - display: flex; - margin: 0 1rem 0 0; -} - -.alert-banner__body { - position: relative; - flex: 1 1 auto; - width: 100%; - margin: 0; -} - -.alert-banner__title { - margin-bottom: 0; - font-size: .875rem; - font-weight: 600; -} - -.alert-banner__description { - margin: 0; -} - -.alert-banner__close-btn { - position: absolute; - top: -.75rem; - right: -1rem; -} - -@media (min-width:30em) { - .alert-banner__close-btn { - right: 0; - } -} - -.c-fixed { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 100; - padding: 1rem; - background-color: #fff; -} - -.c-fixed--bottom { - top: auto; - bottom: 0; - box-shadow: 0-2px 4px rgba(49, 49, 47, .3); -} - -@media (min-width:30em) { - .c-fixed\@screen-small-only { - position: static; - padding: 0; - background-color: transparent; - box-shadow: none; - } -} - -.c-media { - display: flex; - align-items: flex-start; -} - -.c-media--center { - align-items: center; -} - -.c-media--bottom { - align-items: flex-end; -} - -@media (min-width:30em) { - .c-media\@screen-small-only { - flex-direction: column; - } -} - -.c-media__figure { - display: flex; - margin: 0; - margin-right: 1rem; -} - -.c-media--sm .c-media__figure { - margin-right: .5rem; -} - -.c-media--reverse .c-media__figure { - order: 1; - margin-right: 0; - margin-left: 1rem; -} - -.c-media--sm.c-media--reverse .c-media__figure { - margin-right: 0; - margin-left: .5rem; -} - -@media (min-width:30em) { - .c-media\@screen-small-only .c-media__figure { - margin: 0; - margin-bottom: 1rem; - } - - .c-media\@screen-small-only.c-media--reverse .c-media__figure { - order: initial; - } -} - -.c-media__figure .bi-2x { - margin: .5rem 0; -} - -.c-media__figure>img { - align-self: center; - max-width: 100%; - height: auto; -} - -.c-media__body { - flex: 1 1 auto; - width: 100%; - overflow: hidden; -} - -.c-media__body, -.c-media__body> :last-child { - padding-bottom: 0; - margin-bottom: 0; -} - -.c-country-icon { - position: relative; - display: inline-block; - width: 2em; - height: 1.3125em; - overflow: hidden; - vertical-align: top; -} - -.c-country-icon--s { - width: 1.3125rem; - height: .875rem; -} - -.c-country-icon--s.c-country-icon--nl:after, -.c-country-icon--s.c-country-icon--nl:before { - height: .29125rem; -} - -.c-country-icon--s.c-country-icon--be:after, -.c-country-icon--s.c-country-icon--be:before { - width: .4375rem; -} - -.c-country-icon:after, -.c-country-icon:before { - position: absolute; - content: ""; - border-style: solid; - border-width: 0; -} - -.c-country-icon--nl { - background-color: #fff; -} - -.c-country-icon--nl:after, -.c-country-icon--nl:before { - right: 0; - left: 0; - height: .4375em; -} - -.c-country-icon--nl:before { - top: 0; - background-color: #ae1c28; -} - -.c-country-icon--nl:after { - bottom: 0; - background-color: #21468b; -} - -.c-country-icon--be { - background-color: #fdda24; -} - -.c-country-icon--be:after, -.c-country-icon--be:before { - top: 0; - bottom: 0; - width: .666875em; -} - -.c-country-icon--be:before { - left: 0; - background-color: #000; -} - -.c-country-icon--be:after { - right: 0; - background-color: #ef3340; -} - -.c-country-icon--globe { - width: 1em; - height: 1em; - font-size: 1.5rem; - background-color: transparent; - border-style: solid; - border-width: .065em; - border-radius: 100%; -} - -.c-country-icon--globe:before { - top: .35em; - left: .6em; - border-color: transparent; - border-width: .1em 0 .38em .28em; - border-left-color: inherit; - border-radius: .05em; - box-shadow: -.05em -.02em, .09em -.2em, -.58em .07em 0-.07em, -.73em -.3em 0-.05em, -.65em -.5em 0-.02em; -} - -.c-country-icon--globe:after { - top: .28em; - left: .42em; - border-width: .15em; - border-radius: 100%; - box-shadow: -.5em -.18em 0-.02em, -.47em .07em 0-.07em, -.35em .16em 0-.07em, -.35em .26em 0-.09em, .2em -.06em 0-.06em, -.3em -.53em 0 .05em, .05em .1em 0-.03em, -.03em -.25em 0-.06em, .19em -.33em 0 .05em; -} - -.star-rating { - position: relative; - display: inline-block; - width: 5rem; - height: 1.5rem; - vertical-align: bottom; -} - -.star-rating:after, -.star-rating:before { - position: absolute; -} - -.star-rating:before { - top: 0; - right: 0; - bottom: 0; - left: 0; - display: block; - width: 5rem; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28230%2C230%2C232%29'%3E%3Cpath fill-rule='evenodd' d='M4.52 11.896c-.633.281-1.199-.179-1.033-.855l.548-2.224a.443.443 0 00-.104-.343l-1.622-1.51c-.49-.455-.313-1.152.34-1.318l2.163-.549a.774.774 0 00.384-.305l1.135-2.306c.299-.606 1.03-.618 1.335 0L8.8 4.792a.791.791 0 00.385.305l2.162.55c.647.163.835.857.34 1.318l-1.621 1.51a.474.474 0 00-.105.342l.548 2.224c.168.684-.402 1.136-1.033.855l-2.217-.985a.822.822 0 00-.522 0l-2.217.985z'/%3E%3C/svg%3E"); - background-repeat: repeat-x; - background-position: left 50%; - background-size: 1rem; -} - -.star-rating[data-count]:after { - top: 50%; - left: 100%; - margin-right: .25rem; - font-size: .75rem; - content: "(" attr(data-count)")"; - transform: translateY(-50%); -} - -.star-rating--clean:after, -.star-rating--clean:before, -.star-rating[data-count=""]:after { - content: normal; -} - -.star-rating>span, -.star-rating>span:before { - position: absolute; - top: 0; - bottom: 0; - left: 0; - display: block; -} - -.star-rating>span { - width: 5rem; - overflow: hidden; -} - -.star-rating>span:before { - right: 0; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28254%2C189%2C0%29'%3E%3Cpath fill-rule='evenodd' d='M4.52 11.896c-.633.281-1.199-.179-1.033-.855l.548-2.224a.443.443 0 00-.104-.343l-1.622-1.51c-.49-.455-.313-1.152.34-1.318l2.163-.549a.774.774 0 00.384-.305l1.135-2.306c.299-.606 1.03-.618 1.335 0L8.8 4.792a.791.791 0 00.385.305l2.162.55c.647.163.835.857.34 1.318l-1.621 1.51a.474.474 0 00-.105.342l.548 2.224c.168.684-.402 1.136-1.033.855l-2.217-.985a.822.822 0 00-.522 0l-2.217.985z'/%3E%3C/svg%3E"); - background-repeat: repeat-x; - background-position: left 50%; - background-size: 1rem; -} - -.star-rating--large { - width: 15rem; - height: 3rem; -} - -.star-rating--large:before { - width: 15rem; - background-size: 3rem; -} - -.star-rating--large>span { - width: 15rem; -} - -.star-rating--large>span:before { - background-size: 3rem; -} - -.c-checkbox, -.c-radio { - position: relative; - display: inline-block; -} - -.c-checkbox__label, -.c-radio__label { - position: relative; - display: block; - padding-left: 2rem; - cursor: pointer; -} - -.c-checkbox__label:after, -.c-checkbox__label:before, -.c-radio__label:after, -.c-radio__label:before { - position: absolute; - top: 0; - left: 0; - width: 1.5rem; - height: 1.5rem; - content: ""; -} - -.c-checkbox__label:before, -.c-radio__label:before { - background-color: #fff; - border: 1px solid #686876; -} - -.c-checkbox__label:after, -.c-radio__label:after { - background-repeat: no-repeat; - background-size: 1.5rem; -} - -.c-checkbox__input, -.c-radio__input { - position: absolute; - pointer-events: none; - opacity: 0; -} - -.c-checkbox+.c-checkbox, -.c-checkbox+.c-radio, -.c-radio+.c-checkbox, -.c-radio+.c-radio { - margin-left: 1rem; -} - -.c-radio__label:before { - border-radius: 50%; -} - -.c-radio__input:focus+.c-radio__label { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.c-radio__input:focus:not(:focus-visible)+.c-radio__label { - outline: 0; -} - -.c-radio__input:checked+.c-radio__label:before { - background-color: #00f; - border-color: #00f; -} - -.c-radio__input:checked+.c-radio__label:after { - width: .5rem; - height: .5rem; - margin: .5rem; - background-color: #fff; - border-radius: 50%; -} - -.c-radio__input:disabled+.c-radio__label, -.c-radio__input:disabled:checked+.c-radio__label { - color: #b3b3ba; - cursor: default; -} - -.c-radio__input:disabled+.c-radio__label:before, -.c-radio__input:disabled:checked+.c-radio__label:before { - background-color: #e6e6e8; - border-color: #e6e6e8; -} - -.c-radio__input:disabled+.c-radio__label:before { - background-color: #fff; -} - -@media (max-width:29.9375em) { - .c-radio { - display: block; - margin-top: 1rem; - } - - .c-radio+.c-radio { - margin-left: 0; - } -} - -.c-checkbox__input:focus+.c-checkbox__label { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.c-checkbox__input:focus:not(:focus-visible)+.c-checkbox__label { - outline: 0; -} - -.c-checkbox__input:focus-visible+.c-checkbox__label { - outline: 4px solid #90cdfe; - outline-offset: -2px; -} - -.c-checkbox__input:checked+.c-checkbox__label:before, -.ui-input-checkbox input[type=checkbox]:checked+.ui-input-checkbox__label .ui-input-checkbox__control { - background-color: #00f; - border-color: #00f; -} - -.c-checkbox__input:checked+.c-checkbox__label:after { - left: -1px; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); -} - -.c-checkbox__input:disabled+.c-checkbox__label, -.c-checkbox__input:disabled:checked+.c-checkbox__label { - color: #b3b3ba; - cursor: default; -} - -.c-checkbox__input:disabled+.c-checkbox__label:before, -.c-checkbox__input:disabled:checked+.c-checkbox__label:before { - background-color: #e6e6e8; - border-color: #e6e6e8; -} - -.c-checkbox__input:disabled+.c-checkbox__label:before { - background-color: #fff; -} - -.tooltip { - position: absolute; - width: 20rem; - padding: calc(.5rem - 1px) .75rem; - color: #03031a; - background-color: #fff; - border: 1px solid #b3b3ba; - border-radius: .25rem; - box-shadow: 1px 2px 4px 0 rgba(49, 49, 47, .3); - z-index: 10000; -} - -.tooltip> :last-child { - padding-bottom: 0; - margin-bottom: 0; -} - -.tooltip-link { - font-size: 1rem; - color: currentColor; - text-decoration: none; -} - -.tooltip-link:focus, -.tooltip-link:focus-visible { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.tooltip-inline:focus:not(:focus-visible), -.tooltip-link:focus:not(:focus-visible) { - outline: 0; -} - -.tooltip-link:before { - content: normal; -} - -.tooltip-link--dashed { - cursor: help; - border-bottom: 1px dashed currentColor; -} - -.ios body, -.tooltip-inline .svg-inline--bi, -body.ios { - cursor: pointer; -} - -.tooltip-inline:focus, -.tooltip-inline:focus-visible { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.tooltip-inline__content { - max-height: 0; - padding: 0; - overflow: hidden; - line-height: initial; - color: #686876; - transition: max-height .5s; - transition-delay: -.2s; - transition-timing-function: cubic-bezier(0, 1, 0, 1); -} - -.tooltip-inline__content> :last-child { - padding-bottom: 1rem; - margin-bottom: 0; -} - -.tooltip-inline__content.expand { - max-height: 9999px; - border-bottom: 1px solid #b3b3ba; - transition-delay: -.1s; - transition-timing-function: cubic-bezier(1, 0, 1, 0); -} - -table .tooltip-inline__content.expand { - border-bottom: 0; -} - -.mobile-tooltip { - position: fixed; - top: 0; - right: 0; - left: 0; - width: 100%; - height: 100%; - min-height: 100%; - z-index: 10000; -} - -.mobile-tooltip__overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - background-color: rgba(0, 0, 0, .5); -} - -.mobile-tooltip__window { - position: relative; - max-width: 28em; - height: calc(100% - 6rem); - padding: 0; - margin: 1rem auto; - overflow: hidden; - background-color: #fff; - border-radius: .25rem; - box-shadow: 0 0 5px rgba(0, 0, 0, .25); -} - -.mobile-tooltip__window:after { - position: absolute; - right: 1.5rem; - bottom: 0; - left: 1.5rem; - display: block; - height: 2.5rem; - content: ""; - background-color: rgba(255, 255, 255, .75); -} - -.mobile-tooltip__inner-window { - height: 100%; - padding: 1.5rem 1.5rem 2.5rem; - overflow-y: auto; -} - -.mobile-tooltip__close { - position: absolute; - bottom: 1rem; - left: 50%; - display: flex; - align-items: center; - justify-content: center; - width: 3rem; - height: 3rem; - cursor: pointer; - background-color: #fff; - border-radius: 50%; - transform: translateX(-50%); - z-index: 500; -} - -.tooltip--is-open { - position: fixed; - width: 100%; -} - -.tooltip--is-open~.modal { - position: fixed; -} - -.ui-input-text__wrapper { - position: relative; - overflow: hidden; -} - -.ui-input-text__label { - position: absolute; - top: 0; - left: 1.125rem; - font-size: 12px; - color: #686876; - pointer-events: none; - touch-action: manipulation; - cursor: text; - transition: transform .15s ease-in-out, width .15s ease-in-out, opacity .15s ease-in-out; - transform: translate(0, 1.6rem) scale(1.2); - transform-origin: left bottom; -} - -.ui-input-text__control { - font-family: inherit; - line-height: 1.25rem; - background-color: #fff; - border-style: solid; - -webkit-appearance: none; - appearance: none; - border-radius: .25rem; - display: block; - width: 100%; - padding: 1.875rem 0 .625rem 1.125rem; - border-color: #e6e6e8; - border-width: 2px; -} - -.ui-input-text__control[maxlength="5"] { - width: 4em; - padding-left: .5rem; -} - -.ui-input-text__control:hover:not(:disabled) { - border-color: #b3b3ba; -} - -.ui-input-text__control::placeholder { - color: transparent; -} - -.ui-input-text__control:disabled { - background-color: #e6e6e8; -} - -.ui-input-text__control:focus { - outline: 0; -} - -.ui-input-text__control:focus::placeholder { - color: #686876; -} - -.ui-input-text__control:focus~.ui-input-text__meta { - width: 4px; - background-color: #00f; -} - -.ui-input-text__control:focus+.ui-input-text__label { - color: #00f; -} - -.ui-input-text--error .ui-input-text__control:focus~.ui-input-text__meta { - background-color: #f91906; -} - -.ui-input-text--error .ui-input-text__control:focus+.ui-input-text__label { - color: #f91906; -} - -.ui-input-text__control:focus+.ui-input-text__label, -.ui-input-text__control:not(:placeholder-shown)+.ui-input-text__label { - transform: translate(0, .6rem) scale(1); -} - -.ui-input-text__control:focus:disabled, -.ui-input-text__control:focus:disabled+.ui-input-text__label, -.ui-input-text__control:not(:placeholder-shown):disabled, -.ui-input-text__control:not(:placeholder-shown):disabled+.ui-input-text__label { - color: #686876; -} - -.ui-input-text__control:focus:disabled~.ui-input-text__meta, -.ui-input-text__control:not(:placeholder-shown):disabled~.ui-input-text__meta { - width: 0; -} - -.ui-input-text__control[type=number]::-webkit-inner-spin-button, -.ui-input-text__control[type=number]::-webkit-outer-spin-button { - -webkit-appearance: textfield; - appearance: textfield; -} - -.ui-input-text textarea+.ui-input-text__label { - width: calc(80% - (1.125rem*2)); - padding-top: .8rem; - background-color: #fff; - transform: translate(0, .725rem) scale(1.2); -} - -.ui-input-text textarea:focus+.ui-input-text__label, -.ui-input-text textarea:not(:placeholder-shown)+.ui-input-text__label { - width: calc(100% - (1.125rem*2)); - transform: translate(0, .125rem) scale(1); -} - -.ui-input-text__meta { - position: absolute; - top: 0; - left: 0; - width: 0; - height: 100%; - transition: width .15s ease-in-out; -} - -.ui-input-text__message { - margin-top: .25rem; - font-size: 12px; - color: #b3b3ba; -} - -.ui-input-text__icon { - position: absolute; - top: 50%; - right: 1.125rem; - pointer-events: none; - transform: translateY(-50%); -} - -.ui-input-text--error .ui-input-text__icon, -.ui-input-text--error .ui-input-text__label { - color: #f91906; -} - -.ui-input-text--error .ui-input-text__meta { - width: 4px; - background-color: #f91906; -} - -.ui-input-text--error .ui-input-text__message { - color: #f91906; -} - -.ui-input-text--validated .ui-input-text__icon { - color: #007000; -} - -.ui-input-text--validated .ui-input-text__label { - transform: translate(0, .6rem) scale(1); -} - -.ui-input-text--error .ui-input-text__control, -.ui-input-text--validated .ui-input-text__control { - padding-right: 3rem; -} - -.ui-input-text--small .ui-input-text__control { - padding-top: .75rem; - padding-bottom: .75rem; -} - -.ui-input-text--small .ui-input-text__control:focus+.ui-input-text__label, -.ui-input-text--small .ui-input-text__control:not(:placeholder-shown)+.ui-input-text__label { - opacity: 0; - transform: translate(0, 1.1rem) scale(1.2); -} - -.ui-input-text--small .ui-input-text__label { - transform: translate(0, 1.1rem) scale(1.2); -} - -.c-btn-link--small, -.product-prices--list-price-small, -[class*=c-btn-][class*="--small"] { - font-size: .625rem; -} - -.banner__explain, -.c-btn-link--medium, -.label--large, -.labels, -.offerlabel, -.price-block__prefix, -.product-additional-fee, -.product-creator, -.product-delivery, -.product-delivery__icon, -.product-delivery__icon.info-link, -.product-item .sponsored-label, -.product-prices__list-price, -.product-rollup, -.product-seller, -.product-small-specs, -.product-subtitle, -.promo-box, -.small-text, -.small_details, -.studybooks-discount, -.suggest-group__in-category, -[class*=c-btn-][class*="--medium"] { - font-size: .75rem; -} - -.fluid-grid--quarters>.flex-item, -.fluid-grid--quarters>.fluid-grid__item { - width: 25%; -} - -.col-2>.one-whole.flex-item, -.col-2>.one-whole.fluid-grid__item, -.fluid-grid--halfs>.one-whole.flex-item, -.fluid-grid--halfs>.one-whole.fluid-grid__item, -.fluid-grid--quarters>.one-whole.flex-item, -.fluid-grid--quarters>.one-whole.fluid-grid__item, -.fluid-grid--thirds>.one-whole.flex-item, -.fluid-grid--thirds>.one-whole.fluid-grid__item { - width: 100%; -} - -.fluid-grid--thirds>.flex-item, -.fluid-grid--thirds>.fluid-grid__item { - width: 33.333%; -} - -.col-2>.flex-item, -.col-2>.fluid-grid__item, -.fluid-grid--halfs>.flex-item, -.fluid-grid--halfs>.fluid-grid__item { - width: 50%; -} - -.fluid-grid--list>.flex-item, -.fluid-grid--list>.fluid-grid__item { - width: 100%; -} - -.product-item--column { - display: flex; -} - -body, -html { - height: 100%; -} - -html { - box-sizing: border-box; - overflow-y: scroll; - font-size: calc(1em*1); - -moz-osx-font-smoothing: grayscale; - -webkit-text-size-adjust: 100%; - text-size-adjust: 100%; - -webkit-font-smoothing: antialiased; -} - -*, -:after, -:before { - box-sizing: inherit; -} - -body { - min-width: 20em; - padding: 0; - margin: 0; - font-family: graphik, arial, helvetica, sans-serif; - font-size: 100%; - line-height: 1.5; - color: #03031a; - background-color: #fff; -} - -body:after { - display: none; - content: "xsmall"; -} - -@media screen and (min-width:480px) { - body:after { - content: "xsmall,small"; - } -} - -@media screen and (min-width:768px) { - body:after { - content: "xsmall,small,medium"; - } -} - -@media screen and (min-width:1024px) { - body:after { - content: "xsmall,small,medium,large"; - } -} - -@media screen and (min-width:1200px) { - body:after { - content: "xsmall,small,medium,large,xlarge"; - } -} - -body>* { - font-size: .875rem; -} - -.px-image { - float: left; - width: 0; - height: 0; - overflow: hidden; -} - -.scroll-top { - display: none; -} - -.sb, -.sb-button:before, -.sb-li--wider:after, -.sb-li--wider:before, -.sb-li:after, -.sb-li:before, -.sb-list--wider>li:before, -.sb-list>li:before, -.search-box-wrapper:before { - font-family: "Bol Symbols", Graphik; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - speak: none; -} - -.sb-chevron-next--r:after, -.sb-chevron-next:before, -.sb-chevron-next>li--r:after, -.sb-chevron-next>li:before { - content: ""; -} - -.sb-chevron-back--r:after, -.sb-chevron-back:before, -.sb-chevron-back>li--r:after, -.sb-chevron-back>li:before { - content: ""; -} - -.sb-chevron-down--r:after, -.sb-chevron-down:before, -.sb-chevron-down>li--r:after, -.sb-chevron-down>li:before { - content: ""; -} - -.sb-chevron-up--r:after, -.sb-chevron-up:before, -.sb-chevron-up>li--r:after, -.sb-chevron-up>li:before { - content: ""; -} - -.sb-chevron-dbl-down--r:after, -.sb-chevron-dbl-down:before, -.sb-chevron-dbl-down>li--r:after, -.sb-chevron-dbl-down>li:before { - content: ""; -} - -.sb-chevron-dbl-up--r:after, -.sb-chevron-dbl-up:before, -.sb-chevron-dbl-up>li--r:after, -.sb-chevron-dbl-up>li:before { - content: ""; -} - -.sb-arrow-down--r:after, -.sb-arrow-down:before, -.sb-arrow-down>li--r:after, -.sb-arrow-down>li:before { - content: ""; -} - -.sb-arrow-up--r:after, -.sb-arrow-up:before, -.sb-arrow-up>li--r:after, -.sb-arrow-up>li:before { - content: ""; -} - -.sb-cross--r:after, -.sb-cross:before, -.sb-cross>li--r:after, -.sb-cross>li:before { - content: ""; -} - -.sb-minus--r:after, -.sb-minus:before, -.sb-minus>li--r:after, -.sb-minus>li:before { - content: ""; -} - -.sb-plus--r:after, -.sb-plus:before, -.sb-plus>li--r:after, -.sb-plus>li:before { - content: ""; -} - -.sb-dot--r:after, -.sb-dot:before, -.sb-dot>li--r:after, -.sb-dot>li:before { - content: ""; -} - -.sb-cart--r:after, -.sb-cart:before, -.sb-cart>li--r:after, -.sb-cart>li:before { - content: ""; -} - -.sb-cart-empty--r:after, -.sb-cart-empty:before, -.sb-cart-empty>li--r:after, -.sb-cart-empty>li:before { - content: ""; -} - -.sb-cart-wide-empty--r:after, -.sb-cart-wide-empty:before, -.sb-cart-wide-empty>li--r:after, -.sb-cart-wide-empty>li:before { - content: ""; -} - -.sb-pencil--r:after, -.sb-pencil:before, -.sb-pencil>li--r:after, -.sb-pencil>li:before { - content: ""; -} - -.sb-heart--r:after, -.sb-heart:before, -.sb-heart>li--r:after, -.sb-heart>li:before { - content: ""; -} - -.sb-check--r:after, -.sb-check:before, -.sb-check>li--r:after, -.sb-check>li:before { - content: ""; -} - -.sb-alert--r:after, -.sb-alert:before, -.sb-alert>li--r:after, -.sb-alert>li:before { - content: ""; -} - -.sb-info--r:after, -.sb-info:before, -.sb-info>li--r:after, -.sb-info>li:before { - content: ""; -} - -.sb-question--r:after, -.sb-question:before, -.sb-question>li--r:after, -.sb-question>li:before { - content: ""; -} - -.sb-search--r:after, -.sb-search:before, -.sb-search>li--r:after, -.sb-search>li:before { - content: ""; -} - -.sb-home--r:after, -.sb-home:before, -.sb-home>li--r:after, -.sb-home>li:before { - content: ""; -} - -.sb-person--r:after, -.sb-person:before, -.sb-person>li--r:after, -.sb-person>li:before { - content: ""; -} - -.sb-thumb-up--r:after, -.sb-thumb-up:before, -.sb-thumb-up>li--r:after, -.sb-thumb-up>li:before { - content: ""; -} - -.sb-thumb-down--r:after, -.sb-thumb-down:before, -.sb-thumb-down>li--r:after, -.sb-thumb-down>li:before { - content: ""; -} - -.sb-settings--r:after, -.sb-settings:before, -.sb-settings>li--r:after, -.sb-settings>li:before { - content: ""; -} - -.sb-menu--r:after, -.sb-menu:before, -.sb-menu>li--r:after, -.sb-menu>li:before { - content: ""; -} - -.sb-ebook--r:after, -.sb-ebook:before, -.sb-ebook>li--r:after, -.sb-ebook>li:before { - content: ""; -} - -.sb-star--r:after, -.sb-star:before, -.sb-star>li--r:after, -.sb-star>li:before { - content: ""; -} - -.sb-lock--r:after, -.sb-lock:before, -.sb-lock>li--r:after, -.sb-lock>li:before { - content: ""; -} - -.sb-mail--r:after, -.sb-mail:before, -.sb-mail>li--r:after, -.sb-mail>li:before { - content: ""; -} - -.sb-send--r:after, -.sb-send:before, -.sb-send>li--r:after, -.sb-send>li:before { - content: ""; -} - -.sb-return--r:after, -.sb-return:before, -.sb-return>li--r:after, -.sb-return>li:before { - content: ""; -} - -.sb-mobile--r:after, -.sb-mobile:before, -.sb-mobile>li--r:after, -.sb-mobile>li:before { - content: ""; -} - -.sb-phone--r:after, -.sb-phone:before, -.sb-phone>li--r:after, -.sb-phone>li:before { - content: ""; -} - -.sb-chat--r:after, -.sb-chat:before, -.sb-chat>li--r:after, -.sb-chat>li:before { - content: ""; -} - -.sb-chat-sms--r:after, -.sb-chat-sms:before, -.sb-chat-sms>li--r:after, -.sb-chat-sms>li:before { - content: ""; -} - -.sb-download--r:after, -.sb-download:before, -.sb-download>li--r:after, -.sb-download>li:before { - content: ""; -} - -.sb-upload--r:after, -.sb-upload:before, -.sb-upload>li--r:after, -.sb-upload>li:before { - content: ""; -} - -.sb-external--r:after, -.sb-external:before, -.sb-external>li--r:after, -.sb-external>li:before { - content: ""; -} - -.sb-link--r:after, -.sb-link:before, -.sb-link>li--r:after, -.sb-link>li:before { - content: ""; -} - -.sb-twitter--r:after, -.sb-twitter:before, -.sb-twitter>li--r:after, -.sb-twitter>li:before { - content: ""; -} - -.sb-facebook--r:after, -.sb-facebook:before, -.sb-facebook>li--r:after, -.sb-facebook>li:before { - content: ""; -} - -.sb-pinterest--r:after, -.sb-pinterest:before, -.sb-pinterest>li--r:after, -.sb-pinterest>li:before { - content: ""; -} - -.sb-youtube--r:after, -.sb-youtube:before, -.sb-youtube>li--r:after, -.sb-youtube>li:before { - content: ""; -} - -.sb-linkedin--r:after, -.sb-linkedin:before, -.sb-linkedin>li--r:after, -.sb-linkedin>li:before { - content: ""; -} - -.sb-gplus--r:after, -.sb-gplus:before, -.sb-gplus>li--r:after, -.sb-gplus>li:before { - content: ""; -} - -.sb-folder--r:after, -.sb-folder:before, -.sb-folder>li--r:after, -.sb-folder>li:before { - content: ""; -} - -.sb-refresh--r:after, -.sb-refresh:before, -.sb-refresh>li--r:after, -.sb-refresh>li:before { - content: ""; -} - -.sb-loader--r:after, -.sb-loader:before, -.sb-loader>li--r:after, -.sb-loader>li:before { - content: ""; -} - -.sb-xls--r:after, -.sb-xls:before, -.sb-xls>li--r:after, -.sb-xls>li:before { - content: ""; -} - -.sb-doc--r:after, -.sb-doc:before, -.sb-doc>li--r:after, -.sb-doc>li:before { - content: ""; -} - -.sb-ppt--r:after, -.sb-ppt:before, -.sb-ppt>li--r:after, -.sb-ppt>li:before { - content: ""; -} - -.sb-pdf--r:after, -.sb-pdf:before, -.sb-pdf>li--r:after, -.sb-pdf>li:before { - content: ""; -} - -.sb-bin--r:after, -.sb-bin:before, -.sb-bin>li--r:after, -.sb-bin>li:before { - content: ""; -} - -.sb-studybooks--r:after, -.sb-studybooks:before, -.sb-studybooks>li--r:after, -.sb-studybooks>li:before { - content: ""; -} - -.sb-music--r:after, -.sb-music:before, -.sb-music>li--r:after, -.sb-music>li:before { - content: ""; -} - -.sb-movie--r:after, -.sb-movie:before, -.sb-movie>li--r:after, -.sb-movie>li:before { - content: ""; -} - -.sb-book--r:after, -.sb-book:before, -.sb-book>li--r:after, -.sb-book>li:before { - content: ""; -} - -.sb-instagram--r:after, -.sb-instagram:before, -.sb-instagram>li--r:after, -.sb-instagram>li:before { - content: ""; -} - -.sb-track--r:after, -.sb-track:before, -.sb-track>li--r:after, -.sb-track>li:before { - content: ""; -} - -.sb-games--r:after, -.sb-games:before, -.sb-games>li--r:after, -.sb-games>li:before { - content: ""; -} - -.sb-storage--r:after, -.sb-storage:before, -.sb-storage>li--r:after, -.sb-storage>li:before { - content: ""; -} - -.sb-box--r:after, -.sb-box:before, -.sb-box>li--r:after, -.sb-box>li:before { - content: ""; -} - -.sb-photo--r:after, -.sb-photo:before, -.sb-photo>li--r:after, -.sb-photo>li:before { - content: ""; -} - -.sb-invoice--r:after, -.sb-invoice:before, -.sb-invoice>li--r:after, -.sb-invoice>li:before { - content: ""; -} - -.sb-submenu--r:after, -.sb-submenu:before, -.sb-submenu>li--r:after, -.sb-submenu>li:before { - content: ""; -} - -.sb-headphone--r:after, -.sb-headphone:before, -.sb-headphone>li--r:after, -.sb-headphone>li:before { - content: ""; -} - -.sb-print--r:after, -.sb-print:before, -.sb-print>li--r:after, -.sb-print>li:before { - content: ""; -} - -.sb-calendar--r:after, -.sb-calendar:before, -.sb-calendar>li--r:after, -.sb-calendar>li:before { - content: ""; -} - -.sb-location--r:after, -.sb-location:before, -.sb-location>li--r:after, -.sb-location>li:before { - content: ""; -} - -.sb-heartopen--r:after, -.sb-heartopen:before, -.sb-heartopen>li--r:after, -.sb-heartopen>li:before { - content: ""; -} - -.sb-play--r:after, -.sb-play:before, -.sb-play>li--r:after, -.sb-play>li:before { - content: ""; -} - -.sb-bell--r:after, -.sb-bell:before, -.sb-bell>li--r:after, -.sb-bell>li:before { - content: ""; -} - -.sb-emblem--r:after, -.sb-emblem:before, -.sb-emblem>li--r:after, -.sb-emblem>li:before { - content: ""; -} - -.sb-csv--r:after, -.sb-csv:before, -.sb-csv>li--r:after, -.sb-csv>li:before { - content: ""; -} - -.sb-share--r:after, -.sb-share:before, -.sb-share>li--r:after, -.sb-share>li:before { - content: ""; -} - -.sb-replace--r:after, -.sb-replace:before, -.sb-replace>li--r:after, -.sb-replace>li:before { - content: ""; -} - -.sb-tag--r:after, -.sb-tag:before, -.sb-tag>li--r:after, -.sb-tag>li:before { - content: ""; -} - -.sb-wrap--r:after, -.sb-wrap:before, -.sb-wrap>li--r:after, -.sb-wrap>li:before { - content: ""; -} - -.sb-shop--r:after, -.sb-shop:before, -.sb-shop>li--r:after, -.sb-shop>li:before { - content: ""; -} - -.sb-tool--r:after, -.sb-tool:before, -.sb-tool>li--r:after, -.sb-tool>li:before { - content: ""; -} - -.sb-pause--r:after, -.sb-pause:before, -.sb-pause>li--r:after, -.sb-pause>li:before { - content: ""; -} - -.sb-stop--r:after, -.sb-stop:before, -.sb-stop>li--r:after, -.sb-stop>li:before { - content: ""; -} - -.sb-star-outline--r:after, -.sb-star-outline:before, -.sb-star-outline>li--r:after, -.sb-star-outline>li:before { - content: ""; -} - -.sb-listview--r:after, -.sb-listview:before, -.sb-listview>li--r:after, -.sb-listview>li:before { - content: ""; -} - -.sb-tileview--r:after, -.sb-tileview:before, -.sb-tileview>li--r:after, -.sb-tileview>li:before { - content: ""; -} - -.sb-filter--r:after, -.sb-filter:before, -.sb-filter>li--r:after, -.sb-filter>li:before { - content: ""; -} - -.sb-more--r:after, -.sb-more:before, -.sb-more>li--r:after, -.sb-more>li:before { - content: ""; -} - -.sb-secondhand--r:after, -.sb-secondhand:before, -.sb-secondhand>li--r:after, -.sb-secondhand>li:before { - content: ""; -} - -.sb-alarm--r:after, -.sb-alarm:before, -.sb-alarm>li--r:after, -.sb-alarm>li:before { - content: ""; -} - -.sb-attachment--r:after, -.sb-attachment:before, -.sb-attachment>li--r:after, -.sb-attachment>li:before { - content: ""; -} - -.sb-promo--r:after, -.sb-promo:before, -.sb-promo>li--r:after, -.sb-promo>li:before { - content: ""; -} - -.sb-badge-ok-neg--r:after, -.sb-badge-ok-neg:before, -.sb-badge-ok-neg>li--r:after, -.sb-badge-ok-neg>li:before { - content: ""; -} - -.sb-badge-nok-neg--r:after, -.sb-badge-nok-neg:before, -.sb-badge-nok-neg>li--r:after, -.sb-badge-nok-neg>li:before { - content: ""; -} - -.sb-badge-alert-neg--r:after, -.sb-badge-alert-neg:before, -.sb-badge-alert-neg>li--r:after, -.sb-badge-alert-neg>li:before { - content: ""; -} - -.sb-badge-info-neg--r:after, -.sb-badge-info-neg:before, -.sb-badge-info-neg>li--r:after, -.sb-badge-info-neg>li:before { - content: ""; -} - -.sb-badge-question-neg--r:after, -.sb-badge-question-neg:before, -.sb-badge-question-neg>li--r:after, -.sb-badge-question-neg>li:before { - content: ""; -} - -.sb-evening--r:after, -.sb-evening:before, -.sb-evening>li--r:after, -.sb-evening>li:before { - content: ""; -} - -.sb-pickuptoday--r:after, -.sb-pickuptoday:before, -.sb-pickuptoday>li--r:after, -.sb-pickuptoday>li:before { - content: ""; -} - -.sb-mda--r:after, -.sb-mda:before, -.sb-mda>li--r:after, -.sb-mda>li:before { - content: ""; -} - -.sb-mdadelivery--r:after, -.sb-mdadelivery:before, -.sb-mdadelivery>li--r:after, -.sb-mdadelivery>li:before { - content: ""; -} - -.sb-mdareturn--r:after, -.sb-mdareturn:before, -.sb-mdareturn>li--r:after, -.sb-mdareturn>li:before { - content: ""; -} - -.sb-mdarepair--r:after, -.sb-mdarepair:before, -.sb-mdarepair>li--r:after, -.sb-mdarepair>li:before { - content: ""; -} - -.sb-keuzehulp--r:after, -.sb-keuzehulp:before, -.sb-keuzehulp>li--r:after, -.sb-keuzehulp>li:before { - content: ""; -} - -.sb-wrappingpaper--r:after, -.sb-wrappingpaper:before, -.sb-wrappingpaper>li--r:after, -.sb-wrappingpaper>li:before { - content: ""; -} - -.sb-copy--r:after, -.sb-copy:before, -.sb-copy>li--r:after, -.sb-copy>li:before { - content: ""; -} - -.sb-fbmessenger--r:after, -.sb-fbmessenger:before, -.sb-fbmessenger>li--r:after, -.sb-fbmessenger>li:before { - content: ""; -} - -.sb-arrowback--r:after, -.sb-arrowback:before, -.sb-arrowback>li--r:after, -.sb-arrowback>li:before { - content: ""; -} - -.sb-delete--r:after, -.sb-delete:before, -.sb-delete>li--r:after, -.sb-delete>li:before { - content: ""; -} - -.sb-add--r:after, -.sb-add:before, -.sb-add>li--r:after, -.sb-add>li:before { - content: ""; -} - -.sb-view--r:after, -.sb-view:before, -.sb-view>li--r:after, -.sb-view>li:before { - content: ""; -} - -.sb-upsell--r:after, -.sb-upsell:before, -.sb-upsell>li--r:after, -.sb-upsell>li:before { - content: ""; -} - -.sb-upsell-high--r:after, -.sb-upsell-high:before, -.sb-upsell-high>li--r:after, -.sb-upsell-high>li:before { - content: ""; -} - -.sb-chevron-top--r:after, -.sb-chevron-top:before, -.sb-chevron-top>li--r:after, -.sb-chevron-top>li:before { - content: ""; -} - -.sb-shuffle--r:after, -.sb-shuffle:before, -.sb-shuffle>li--r:after, -.sb-shuffle>li:before { - content: ""; -} - -.sb-mic--r:after, -.sb-mic:before, -.sb-mic>li--r:after, -.sb-mic>li:before { - content: ""; -} - -.sb-replenishment--r:after, -.sb-replenishment:before, -.sb-replenishment>li--r:after, -.sb-replenishment>li:before { - content: ""; -} - -.sb-sparkle--r:after, -.sb-sparkle:before, -.sb-sparkle>li--r:after, -.sb-sparkle>li:before { - content: ""; -} - -.sb-inspiration--r:after, -.sb-inspiration:before, -.sb-inspiration>li--r:after, -.sb-inspiration>li:before { - content: ""; -} - -.sb-post--r:after, -.sb-post:before, -.sb-post>li--r:after, -.sb-post>li:before { - content: ""; -} - -.sb-emoij--r:after, -.sb-emoij:before, -.sb-emoij>li--r:after, -.sb-emoij>li:before { - content: ""; -} - -.sb-li--wider { - display: inline-block; -} - -.sb-li { - padding-left: 1rem; -} - -.sb-li--wider:before { - display: inline-block; - text-align: left; -} - -.sb-li, -.sb-li:before, -svg { - display: inline-block; -} - -.sb-li:before { - width: 1rem; - margin-left: -1rem; - text-align: left; -} - -.sb-li--wider:before, -.sb-li:before, -.sb-li:hover:before { - text-decoration: none; -} - -.sb-li--wider:after, -.sb-li:after { - float: right; - padding-left: .25em; -} - -.sb-li--wider { - padding-left: 1.5rem; -} - -.sb-li--wider:before { - width: 1.5rem; - margin-left: -1.5rem; -} - -.sb-list--wider:before, -.sb-list:before { - content: normal; -} - -.sb-list--wider>li, -.sb-list>li { - padding-left: 1rem; - margin-bottom: .25rem; -} - -.sb-list--wider>li:before, -.sb-list>li:before { - display: inline-block; - width: 1rem; - margin-left: -1rem; -} - -.sb-list--wider>li { - padding-left: 1.25em; -} - -.sb-list--wider>li:before { - width: 1.25em; - margin-left: -1.25em; -} - -.sb-resize--lg { - font-size: 1.3333333333em; -} - -.sb-resize--1-5x { - font-size: 1.5em; -} - -.sb-resize--2x { - font-size: 2em; -} - -.sb-resize--3x { - font-size: 3em; -} - -.sb-resize--4x { - font-size: 4em; -} - -.sb-resize--5x { - font-size: 5em; -} - -.sb-sign { - width: 2em; - height: 2em; - font-size: 1em; -} - -.sb-sign, -.sb-sign--large, -.sb-sign--medium, -.sb-sign--narrow, -.sb-sign--small, -.sb-sign--xsmall { - display: inline-flex; - align-items: center; - justify-content: center; - color: #fff; - background-color: #0000a4; - border: 1px solid transparent; - border-radius: 100%; -} - -.sb-sign--narrow, -.sb-sign--small, -.sb-sign--xsmall { - font-size: 1em; -} - -.sb-sign--large, -.sb-sign--medium { - width: 2em; - height: 2em; -} - -.sb-sign--medium { - font-size: 1.5em; -} - -.sb-sign--large { - font-size: 2em; -} - -.sb-sign--narrow { - width: 1.5em; - height: 1.5em; -} - -.sb-sign--small, -.sb-sign--xsmall { - width: 1em; - height: 1em; -} - -.sb-sign--xsmall:before { - font-size: .75em; -} - -.sb-sign--inactive { - color: #00f; - background-color: #fff; - border: 1px solid #b3b3ba; -} - -.sb-sign--success { - background-color: #007000; -} - -.sb-sign--subtext { - background-color: #686876; -} - -.sb-sign--shade { - background-color: #b3b3ba; -} - -.sb-sign--facebook { - background-color: #3b5998; -} - -.sb-sign--pinterest { - color: #cc2127; - background-color: #fff; - border: 1px solid #e6e6e8; -} - -.sb-sign--instagram { - background-color: #3f729b; -} - -.sb-sign--youtube { - background-color: #cd201f; -} - -.sb-doc:before { - color: #00a0e1; -} - -.sb-xls:before { - color: #00854f; -} - -.sb-ppt:before { - color: #f6ab13; -} - -.sb-pdf:before { - color: #f01616; -} - -svg { - box-sizing: content-box; - width: 100%; - height: 100%; - vertical-align: middle; - transform: translateX(0); -} - -.icon-svg { - width: 1em; - height: 1em; - fill: currentColor; -} - -.icon-svg--select { - width: 4em; - margin-bottom: .4em; - color: #01ac3a; -} - -.h2 .icon-svg--select, -h2 .icon-svg--select { - font-size: 1em; -} - -.icon-svg--bpost { - width: 4.5em; - height: 2.5em; -} - -.icon-svg--ah { - width: 2.5em; - height: 2.5em; -} - -.icon-svg--airmiles { - font-size: 2.5em; -} - -.country-icon { - position: relative; - display: inline-block; - width: 18px; - height: 12px; - overflow: hidden; - border-radius: 2px; -} - -.country-icon:after, -.country-icon:before { - position: absolute; - content: ""; -} - -.country-icon--large { - width: 36px; - height: 24px; -} - -.country-icon--nl { - background-color: #fff; -} - -.country-icon--nl:after, -.country-icon--nl:before { - right: 0; - left: 0; - height: 4px; -} - -.country-icon--nl:before { - top: 0; - background-color: #ae1c28; -} - -.country-icon--nl:after { - bottom: 0; - background-color: #21468b; -} - -.country-icon--nl.country-icon--large:after, -.country-icon--nl.country-icon--large:before { - height: 8px; -} - -.country-icon--be { - background-color: #ffe936; -} - -.country-icon--be:after, -.country-icon--be:before { - top: 0; - bottom: 0; - width: 6px; -} - -.country-icon--be:before { - left: 0; - background-color: #000; -} - -.country-icon--be:after { - right: 0; - background-color: #ff0f21; -} - -.country-icon--be.country-icon--large:after, -.country-icon--be.country-icon--large:before { - width: 12px; -} - -svg:not(:root).svg-inline--fa { - overflow: visible; -} - -.svg-inline--bi { - display: inline-block; - width: 1em; - height: 1em; - overflow: visible; - font-size: inherit; - vertical-align: -.125em; - fill: currentColor; -} - -.svg-inline { - width: auto; - height: auto; -} - -.svg-placeholder { - display: flex; - align-items: center; - justify-content: center; - border-radius: 50%; -} - -.svg-placeholder:before { - display: block; - width: 85%; - height: 85%; - content: ""; - border: 2px dashed #e6e6e8; - border-radius: 50%; -} - -.bi-lg { - font-size: 1.5em; - line-height: .6666666667em; - vertical-align: -.3125rem; -} - -.bi-xs { - font-size: .75em; -} - -.bi-sm { - font-size: .875em; -} - -.bi-m { - font-size: 4.5rem; -} - -.bi-1x { - font-size: 1em; -} - -.bi-2x { - font-size: 2em; -} - -.bi-3x { - font-size: 3em; -} - -.bi-4x { - font-size: 4em; -} - -.bi-5x { - font-size: 5em; -} - -.bi-6x { - font-size: 6em; -} - -.bi-7x { - font-size: 7em; -} - -.bi-8x { - font-size: 8em; -} - -.bi-9x { - font-size: 9em; -} - -.bi-10x { - font-size: 10em; -} - -@media (min-width:30em) { - .bi-1x\@screen-medium-up { - font-size: 1em; - } - - .bi-2x\@screen-medium-up { - font-size: 2em; - } - - .bi-3x\@screen-medium-up { - font-size: 3em; - } - - .bi-4x\@screen-medium-up { - font-size: 4em; - } - - .bi-5x\@screen-medium-up { - font-size: 5em; - } - - .bi-6x\@screen-medium-up { - font-size: 6em; - } - - .bi-7x\@screen-medium-up { - font-size: 7em; - } - - .bi-8x\@screen-medium-up { - font-size: 8em; - } - - .bi-9x\@screen-medium-up { - font-size: 9em; - } - - .bi-10x\@screen-medium-up { - font-size: 10em; - } -} - -.bi-fluid { - width: 100%; - height: auto; -} - -.bi-pull-left { - float: left; - width: auto; - margin-right: .3em; -} - -.bi-pull-right { - float: right; - width: auto; - margin-left: .3em; -} - -.bi-ul { - padding-left: 0; - margin-left: 2.5em; - list-style-type: none; -} - -.bi-ul>li { - position: relative; -} - -.bi-li { - position: absolute; - left: -2em; - width: 2em; - line-height: inherit; - text-align: center; -} - -.bi-dot-color-green-soft .color-bg { - fill: #e2f9ed; -} - -.bi-dot-color-blue-soft .color-bg { - fill: #dceeff; -} - -.bi-dot-color-blue-pastel .color-bg { - fill: #90cdfe; -} - -.bi-dot-color-select-module .color-bg { - fill: #f2fbf5; -} - -.bi-dot-bg, -.bi-shadow:before { - background-color: #e6e6e8; - border-radius: 50%; -} - -.bi-dot-bg { - padding: .5rem; -} - -.bi-shadow { - position: relative; -} - -.bi-shadow:before { - position: absolute; - bottom: -.5rem; - width: 100%; - height: 1rem; - content: ""; -} - -.bi-shadow--yellow-bright:before { - background-color: #fff162; -} - -.bi-shadow--yellow-pastel:before { - background-color: #fff59e; -} - -.bi-shadow--yellow-soft:before { - background-color: #fffade; -} - -.bi-shadow--orange-bright:before { - background-color: #ffb072; -} - -.bi-shadow--orange-pastel:before { - background-color: #ffd2ad; -} - -.bi-shadow--orange-soft:before { - background-color: #fed; -} - -.bi-shadow--red-bright:before { - background-color: #ff667e; -} - -.bi-shadow--red-pastel:before { - background-color: #ffa4b4; -} - -.bi-shadow--red-soft:before { - background-color: #ffd9e1; -} - -.bi-shadow--magenta-bright:before { - background-color: #fe73dc; -} - -.bi-shadow--magenta-pastel:before { - background-color: #ffa4eb; -} - -.bi-shadow--magenta-soft:before { - background-color: #ffd9f5; -} - -.bi-shadow--green-bright:before { - background-color: #71e9b4; -} - -.bi-shadow--green-pastel:before { - background-color: #aff2d3; -} - -.bi-shadow--green-soft:before { - background-color: #e2f9ed; -} - -.bi-shadow--blue-bright:before { - background-color: #1eadff; -} - -.bi-shadow--blue-pastel:before { - background-color: #90cdfe; -} - -.bi-shadow--blue-soft:before { - background-color: #dceeff; -} - -.bi--magenta-box .color-lit { - fill: #ffa4eb; -} - -.bi--magenta-box .color-box { - fill: #fe73dc; -} - -.bi--magenta-box .ribbon-h { - display: none; -} - -.bi--green-box .color-lit { - fill: #aff2d3; -} - -.bi--green-box .color-box { - fill: #71e9b4; -} - -.bi-rotate-45 { - transform: rotate(-45deg); -} - -.bi-rotate-90 { - transform: rotate(90deg); -} - -.bi-rotate-180 { - transform: rotate(180deg); -} - -.bi-rotate-270 { - transform: rotate(270deg); -} - -.bi-flip-horizontal { - transform: scale(-1, 1); -} - -.bi-flip-horizontal.bi-flip-vertical { - transform: scale(-1, -1); -} - -.bi-flip-vertical { - transform: scale(1, -1); -} - -.bi-spin { - animation: spin 2s infinite linear; -} - -.bi-pulse { - animation: spin 1s infinite steps(8); -} - -.bi-inverse { - color: #fff; -} - -.bi-heart { - stroke: currentColor; -} - -.bi-uni { - display: inline-block; - width: 1.5rem; - height: 1.5rem; - vertical-align: middle; -} - -.bi-uni--xs { - width: 1rem; - height: 1rem; -} - -.accordion__header:before, -.bundle-images__item:before, -.message-bar__text--emergency:before, -.notification:before, -.studybooks-discount:before { - display: inline-block; -} - -.promo-box> :first-child:before { - display: inline-block; - width: 1.5em; - height: 1.5em; - text-decoration: underline; - vertical-align: bottom; - content: ""; - background-repeat: no-repeat; - background-size: 1.5em; -} - -.accordion__header:before, -.bundle-images__item:before, -.footer__column> :first-child:after, -.link-cta:before, -.link-external:after, -.link-list>li:before, -.message-bar__text--emergency:before, -.notification:before, -.notification__list>li:before, -.read-less-link:before, -.read-more-link:before, -.studybooks-discount:before { - width: 1.5em; - height: 1.5em; - margin-left: -1.5em; - text-decoration: underline; - vertical-align: bottom; - content: ""; - background-repeat: no-repeat; - background-size: 1.5em; -} - -.link-cta:before, -.link-external:after, -.link-list>li:before, -.notification__list>li:before, -.read-less-link:before, -.read-more-link:before { - display: inline-block; -} - -.link-cta, -.link-list>li:before, -.notification__list>li:before, -.read-less-link, -.read-more-link { - display: inline-block; - padding-left: 1.5em; -} - -.link-cta:before, -.link-list>li:before, -.notification__list>li:before, -.read-less-link:before, -.read-more-link:before { - text-decoration: none; -} - -.link-cta:after, -.read-less-link:after, -.read-more-link:after { - float: right; - margin-right: -1.75em; -} - -.link-list:before, -.notification__list:before { - content: normal; -} - -.icon-list>li, -.link-list>li, -.notification__list>li { - padding-left: 1.5rem; - margin-bottom: .25rem; -} - -@media (min-width:48em) { - .medium--bi-6x { - font-size: 6em; - } -} - -.replenishment-blue-icon { - padding: .2em; - color: #fff; - background-color: #00f; - border-radius: 50%; -} - -a img, -img { - margin: 0; - border: 0; -} - -.dashed_help, -.link, -a { - color: #00f; - text-decoration: none; -} - -.link:hover, -a:hover { - text-decoration: underline; -} - -.dashed_help { - color: #03031a; - cursor: help; - border-bottom: 1px dashed #686876; -} - -.dashed_help.disabled { - color: #686876; -} - -.link-highlight { - text-decoration: underline; -} - -.link-cta:before, -.link-list>li:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); -} - -.link-cta--chat:before { - margin-right: .25rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M12 13s-1.471.016-2.5-1.5c-.771.284-1.643.5-2.5.5-4 0-6-3-6-5s2-5 6-5 6 3 6 5-1 3-1 3v3zm-1-1.374V9.578S12 8.88 12 7c0-1.79-1.891-4-5-4-3.328 0-5 2.44-5 4s1.667 4 5 4c.714 0 1.494-.167 2.89-.71.159.19.507.928 1.11 1.336zM4.532 6.514a.51.51 0 01-.51-.5c0-.276.227-.5.51-.5H9.49a.51.51 0 01.51.5c0 .276-.227.5-.51.5H4.532zm0 1.999a.509.509 0 01-.51-.5c0-.275.227-.5.51-.5L9.49 7.5c.282 0 .51.23.51.499 0 .276-.227.5-.51.501l-4.958.012z'/%3E%3C/svg%3E"); -} - -.icon-list>li { - margin-bottom: 1.5rem; -} - -.menu-list a { - color: #03031a; -} - -.links-inline a:hover, -.menu-list a:hover { - color: #00f; -} - -.active_item { - font-weight: 600; -} - -.menu-list--leveled ul { - padding-bottom: 0; - margin-top: .5rem; - margin-bottom: 0; -} - -.menu-list--leveled ul li { - position: relative; -} - -.menu-list--leveled ul li:before { - display: inline-block; - width: .5rem; - height: .5rem; - margin-right: .25em; - margin-left: -1rem; - vertical-align: .25em; - content: " "; - border-color: #b3b3ba; - border-style: solid; - border-width: 0 0 1px 1px; -} - -.menu-list--leveled ul>li { - margin-left: 1rem; - letter-spacing: -.25em; -} - -.menu-list--leveled ul>li * { - letter-spacing: normal; -} - -.menu-list--leveled ul>li:before { - left: 0; -} - -.links-inline a { - color: inherit; - text-decoration: underline; -} - -.link-external { - display: inline-block; -} - -.link-external:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M12.997 1.855a.485.485 0 01.003.05v2.019a.495.495 0 01-.5.498.504.504 0 01-.5-.498V2.707L8.964 5.743l-.707-.707L11.293 2h-1.21a.501.501 0 01-.505-.5c0-.268.226-.5.504-.5h2.408c.28 0 .505.224.506.5l.001.355zM7 2v1H3v8h8V7h1v5H2V2h5z'/%3E%3C/svg%3E"); - float: right; - margin-right: -1.75em; -} - -.read-less p { - overflow: hidden; -} - -.footer__column>ul, -.read-more-container .read-less-link, -.read-more-container .read-more-link { - display: none; -} - -.read-more-container.read-less .read-more-link, -.read-more-container.read-more .read-less-link { - display: inline; -} - -.read-less-link, -.read-more-link { - text-decoration: none; - cursor: pointer; -} - -.read-more-link:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M3.646 6.391a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L7.008 9.743 3.646 6.391zm0-3.397a.508.508 0 00-.71-.001.497.497 0 00-.007.7l4.085 4.06 4.054-4.054a.505.505 0 000-.707.501.501 0 00-.71.002L7.008 6.346 3.646 2.994z'/%3E%3C/svg%3E"); -} - -.read-less-link:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M3.646 7.605a.508.508 0 01-.71 0 .497.497 0 01-.007-.7l4.085-4.06L11.068 6.9a.505.505 0 010 .707.501.501 0 01-.71-.002L7.008 4.253 3.646 7.605zm0 3.398a.508.508 0 01-.71 0 .497.497 0 01-.007-.7l4.085-4.06 4.054 4.055a.505.505 0 010 .707.501.501 0 01-.71-.002L7.008 7.65l-3.361 3.352z'/%3E%3C/svg%3E"); -} - -.link-box { - display: flex; - height: 100%; - padding: 1rem; - color: #03031a; - border: 1px solid #e6e6e8; -} - -.link-box:focus, -.link-box:hover { - text-decoration: none; - border-color: #00f; -} - -.disable-pointer-events { - pointer-events: none; -} - -.link-cursor-pointer { - cursor: pointer; -} - -.link-no-decoration { - margin: .5rem .5rem .5rem 0; -} - -.link-no-decoration:focus, -.link-no-decoration:hover { - text-decoration: none; -} - -.link-color-black { - color: #03031a; -} - -.link-float-right { - float: right; -} - -.constrain { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; -} - -@media (min-width:48em) { - .constrain { - padding-right: 2rem; - padding-left: 2rem; - } - - .constrain--main { - padding-top: 1.5rem; - } -} - -.constrain--clean { - min-width: 20rem; - padding: 0; -} - -.fixed .constrain--clean { - padding: 0 1rem; -} - -@media (min-width:48em) { - .fixed .constrain--clean { - padding: 0 2rem; - } -} - -@media (min-width:64em) { - .fixed .constrain--clean { - padding: 0; - } -} - -.header-fixed .constrain--clean { - padding: 0; -} - -@media (max-width:63.9375em) { - .header-fixed .constrain { - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - } -} - -.constrain--two-thirds { - max-width: 60rem; -} - -.constrain--light { - background-color: #fff; -} - -.wsp-header+.constrain--main { - padding-top: 0; -} - -.wsp-header .message-bar { - padding: 0 0 1rem; - margin-bottom: 1rem; -} - -@media (min-width:48em) { - .wsp-header .message-bar { - padding: 1rem 0; - margin: 0; - } -} - -.wsp-offcanvas .css-loader { - margin: 6rem auto 0; - opacity: 0; - animation: rotate 1.4s infinite linear, fadeinloader 1s linear 1s forwards; -} - -.wsp-offcanvas .css-loader:after { - background: #fff; -} - -@media (min-width:48em) { - .wsp-offcanvas .css-loader { - margin: 0; - } - - .wsp-offcanvas .css-loader:after { - background: #fff; - } -} - -@media (max-width:47.9375em) { - .wsp-category-nav__item--main-no-icon { - margin-bottom: 1.5rem; - } - - .wsp-category-nav__item--main-no-icon> :first-child { - display: none; - } -} - -hr { - padding: 0; - margin: 0; -} - -.footer a { - color: #03031a; -} - -.footer a:hover { - color: #00f; -} - -.footer__columns { - display: flex; - flex-direction: column; - padding: 0; - margin: 0-1em; -} - -.footer__column { - flex-basis: 100%; - width: 100%; -} - -.footer__column> :first-child { - position: relative; - display: block; - padding: 1em; - font-size: 1.1666666667em; - font-weight: 400; - border-bottom: 1px solid #e6e6e8; -} - -.footer__column> :first-child:after { - position: absolute; - top: 50%; - right: 1em; - display: block; - transform: translateY(-50%); - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); -} - -.footer__column--social { - flex-basis: 100%; - align-self: center; - width: 100%; - max-width: 18.3333333333em; - margin-top: 1.5em; -} - -@media (min-width:48em) { - .footer__columns { - flex-direction: row; - padding-top: 1.5rem; - padding-bottom: 1.5rem; - margin-right: 0; - margin-left: 0; - } - - .footer__column { - flex-basis: 25%; - } - - .footer__column> :first-child { - display: inline; - padding: 0; - font-size: 1em; - font-weight: 600; - border-bottom: 0; - } - - .footer__column> :first-child:after { - content: none; - } - - .footer__column:not(:first-child) { - padding-left: 1em; - } - - .footer__column>ul { - display: block; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .footer__columns> :first-child { - display: none; - } - - .footer__column:nth-child(2) { - padding-left: 0; - } -} - -@media (min-width:64em) { - .footer__column { - flex-basis: 20%; - } -} - -.fluid-grid { - display: flex; - flex-wrap: wrap; - padding: 0; - margin: 0; - list-style: none; -} - -@media print { - .fluid-grid:after { - display: table; - clear: both; - content: ""; - } -} - -.fluid-grid__item { - width: 100%; -} - -@media print { - .fluid-grid__item { - display: block; - float: left; - } -} - -.fluid-grid--xs { - margin-left: -.5rem; -} - -.fluid-grid--xs>.flex-item, -.fluid-grid--xs>.fluid-grid__item { - padding-left: .5rem; -} - -.fluid-grid--s { - margin-left: -.75rem; -} - -.fluid-grid--s>.flex-item, -.fluid-grid--s>.fluid-grid__item { - padding-left: .75rem; -} - -.fluid-grid--m { - margin-left: -1rem; -} - -.fluid-grid--m>.flex-item, -.fluid-grid--m>.fluid-grid__item { - padding-left: 1rem; -} - -.fluid-grid--m.medium--row-spacing>.fluid-grid__item { - padding-bottom: 1.5rem; -} - -.fluid-grid--m.medium--row-spacing>.fluid-grid__item:last-child { - padding-bottom: 0; -} - -@media (min-width:48em) { - .fluid-grid--m.medium--row-spacing>.fluid-grid__item { - padding-bottom: 0; - } -} - -.medium--grid-divider>.fluid-grid__item { - margin-bottom: 2rem; -} - -@media (max-width:47.9375em) { - .medium--grid-divider>.fluid-grid__item { - margin-bottom: 1.5rem; - } - - .medium--grid-divider>.fluid-grid__item:after { - display: block; - margin-top: 1.5rem; - margin-right: -1rem; - margin-left: -1rem; - content: ""; - border-bottom: 1px solid #e6e6e8; - } -} - -.medium--grid-divider--not-last>.fluid-grid__item:last-child { - margin-bottom: 0; -} - -.medium--grid-divider--not-last>.fluid-grid__item:last-child:after { - border-bottom: 0; -} - -.fluid-grid--l { - margin-left: -1.5rem; -} - -.fluid-grid--l>.flex-item, -.fluid-grid--l>.fluid-grid__item { - padding-left: 1.5rem; -} - -.fluid-grid--xl { - margin-left: -2rem; -} - -.fluid-grid--xl>.flex-item, -.fluid-grid--xl>.fluid-grid__item { - padding-left: 2rem; -} - -.fluid-grid--xxl { - margin-left: -3rem; -} - -.fluid-grid--xxl>.flex-item, -.fluid-grid--xxl>.fluid-grid__item { - padding-left: 3rem; -} - -.fluid-grid--xxxl { - margin-left: -6rem; -} - -.fluid-grid--xxxl>.flex-item, -.fluid-grid--xxxl>.fluid-grid__item { - padding-left: 6rem; -} - -.fluid-grid--rwd--l { - margin-left: -1.5rem; -} - -.fluid-grid--rwd--l>.flex-item, -.fluid-grid--rwd--l>.fluid-grid__item { - padding-left: 1.5rem; -} - -@media (min-width:64em) { - .fluid-grid--rwd--l { - margin-left: -3rem; - } - - .fluid-grid--rwd--l>.flex-item, - .fluid-grid--rwd--l>.fluid-grid__item { - padding-left: 3rem; - } -} - -.fluid-grid--middle { - align-items: center; -} - -.fluid-grid--bottom { - align-items: flex-end; -} - -.fluid-grid--right { - justify-content: flex-end; -} - -.fluid-grid--center { - justify-content: center; -} - -.fluid-grid--spaced-between { - justify-content: space-between; -} - -.fluid-grid--rev { - direction: rtl; - text-align: left; -} - -.fluid-grid--rev>.flex-item, -.fluid-grid--rev>.fluid-grid__item { - direction: ltr; - text-align: left; -} - -@media print { - - .fluid-grid--rev>.flex-item, - .fluid-grid--rev>.fluid-grid__item { - float: right; - } -} - -.fluid-grid--auto>.flex-item, -.fluid-grid--auto>.fluid-grid__item { - width: auto; -} - -.fluid-grid--column { - flex-direction: column; -} - -.col-4>.fluid-grid__item { - width: 50%; - margin-bottom: 1.5rem; -} - -@media (min-width:30em) { - .col-4>.fluid-grid__item { - width: 25%; - margin-bottom: 0; - } -} - -.col-3>.fluid-grid__item { - width: 50%; - margin-bottom: 1.5rem; -} - -@media (min-width:30em) { - .col-3>.fluid-grid__item { - width: 33.333%; - margin-bottom: 0; - } -} - -.flex-grid--xs-1>.flex-item { - width: 100%; -} - -.flex-grid--xs-2>.flex-item { - width: 50%; -} - -.flex-grid--xs-3>.flex-item { - width: 33.3333333333%; -} - -@media screen and (min-width:480px) { - .flex-grid--sm-2>.flex-item { - width: 50%; - } - - .flex-grid--sm-3>.flex-item { - width: 33.3333333333%; - } -} - -@media screen and (min-width:768px) { - .flex-grid--md-2>.flex-item { - width: 50%; - } - - .flex-grid--md-3>.flex-item { - width: 33.3333333333%; - } - - .flex-grid--md-4>.flex-item { - width: 25%; - } - - .flex-grid--md-5>.flex-item { - width: 20%; - } -} - -@media screen and (min-width:1024px) { - .flex-grid--lg-2>.flex-item { - width: 50%; - } - - .flex-grid--lg-3>.flex-item { - width: 33.3333333333%; - } - - .flex-grid--lg-4>.flex-item { - width: 25%; - } - - .flex-grid--lg-5>.flex-item { - width: 20%; - } - - .flex-grid--lg-8>.flex-item { - width: 12.5%; - } -} - -.flex-grid { - display: flex; - flex-wrap: wrap; -} - -.flex-grid--row { - flex-wrap: nowrap; -} - -.flex-grid--xs { - margin-left: -.5rem; -} - -.flex-grid--xs>.flex-item, -.flex-grid--xs>.fluid-grid__item { - padding-left: .5rem; -} - -.flex-grid--s { - margin-left: -.75rem; -} - -.flex-grid--s>.flex-item, -.flex-grid--s>.fluid-grid__item { - padding-left: .75rem; -} - -.flex-grid--m { - margin-left: -1rem; -} - -.flex-grid--m>.flex-item, -.flex-grid--m>.fluid-grid__item { - padding-left: 1rem; -} - -.flex-grid--l { - margin-left: -1.5rem; -} - -.flex-grid--l>.flex-item, -.flex-grid--l>.fluid-grid__item { - padding-left: 1.5rem; -} - -.flex-grid--xl { - margin-left: -2rem; -} - -.flex-grid--xl>.flex-item, -.flex-grid--xl>.fluid-grid__item { - padding-left: 2rem; -} - -.flex-grid--xxl { - margin-left: -3rem; -} - -.flex-grid--xxl>.flex-item, -.flex-grid--xxl>.fluid-grid__item { - padding-left: 3rem; -} - -.flex-grid--xxxl { - margin-left: -6rem; -} - -.flex-grid--xxxl>.flex-item, -.flex-grid--xxxl>.fluid-grid__item { - padding-left: 6rem; -} - -.flex-grid--middle { - align-items: center; -} - -.flex-item { - width: 100%; -} - -@media print { - .flex-item { - display: block; - float: left; - } -} - -.flex-item--grow, -.navigation-block--doormat wsp-toggle { - flex-grow: 1; -} - -[class*=c-btn-] { - display: inline-block; - vertical-align: bottom; -} - -[class*=c-btn-] a, -[class*=c-btn-] button, -[class*=c-btn-] input[type=button], -[class*=c-btn-] input[type=reset], -[class*=c-btn-] input[type=submit] { - padding: 0 1em; - overflow: visible; - line-height: 2.5em; - text-align: left; - cursor: pointer; - background-color: transparent; - border: 0; - border-bottom: 1px solid rgba(0, 0, 0, .35); - transition: background-color .25s ease-in, border .25s ease-in; - -webkit-appearance: none; -} - -.c-btn-primary a::-moz-focus-inner, -.c-btn-primary button::-moz-focus-inner, -.c-btn-primary input[type=button]::-moz-focus-inner, -.c-btn-primary input[type=reset]::-moz-focus-inner, -.c-btn-primary input[type=submit]::-moz-focus-inner, -.c-btn-tertiary a::-moz-focus-inner, -.c-btn-tertiary button::-moz-focus-inner, -.c-btn-tertiary input[type=button]::-moz-focus-inner, -.c-btn-tertiary input[type=reset]::-moz-focus-inner, -.c-btn-tertiary input[type=submit]::-moz-focus-inner, -.c-btn-tertiary-toggle a::-moz-focus-inner, -.c-btn-tertiary-toggle button::-moz-focus-inner, -.c-btn-tertiary-toggle input[type=button]::-moz-focus-inner, -.c-btn-tertiary-toggle input[type=reset]::-moz-focus-inner, -.c-btn-tertiary-toggle input[type=submit]::-moz-focus-inner, -[class*=c-btn-] a::-moz-focus-inner, -[class*=c-btn-] button::-moz-focus-inner, -[class*=c-btn-] input[type=button]::-moz-focus-inner, -[class*=c-btn-] input[type=reset]::-moz-focus-inner, -[class*=c-btn-] input[type=submit]::-moz-focus-inner { - padding: 0; -} - -[class*=c-btn-] a:hover, -[class*=c-btn-] button:hover, -[class*=c-btn-] input[type=button]:hover, -[class*=c-btn-] input[type=reset]:hover, -[class*=c-btn-] input[type=submit]:hover { - text-decoration: none; - border-bottom: 1px solid rgba(0, 0, 0, .25); -} - -[class*=c-btn-] a:active, -[class*=c-btn-] button:active, -[class*=c-btn-] input[type=button]:active, -[class*=c-btn-] input[type=reset]:active, -[class*=c-btn-] input[type=submit]:active { - border-bottom: 1px solid transparent; -} - -[class*=c-btn-] a[disabled=disabled], -[class*=c-btn-] button[disabled=disabled], -[class*=c-btn-] input[type=button][disabled=disabled], -[class*=c-btn-] input[type=reset][disabled=disabled], -[class*=c-btn-] input[type=submit][disabled=disabled] { - color: #868691; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-primary a[disabled=disabled]:active, -.c-btn-primary a[disabled=disabled]:hover, -.c-btn-primary button[disabled=disabled]:active, -.c-btn-primary button[disabled=disabled]:hover, -.c-btn-primary input[type=button][disabled=disabled]:active, -.c-btn-primary input[type=button][disabled=disabled]:hover, -.c-btn-primary input[type=reset][disabled=disabled]:active, -.c-btn-primary input[type=reset][disabled=disabled]:hover, -.c-btn-primary input[type=submit][disabled=disabled]:active, -.c-btn-primary input[type=submit][disabled=disabled]:hover, -.c-btn-primary.disabled a:active, -.c-btn-primary.disabled a:hover, -.c-btn-primary.disabled button:active, -.c-btn-primary.disabled button:hover, -.c-btn-primary.disabled input[type=button]:active, -.c-btn-primary.disabled input[type=button]:hover, -.c-btn-primary.disabled input[type=reset]:active, -.c-btn-primary.disabled input[type=reset]:hover, -.c-btn-primary.disabled input[type=submit]:active, -.c-btn-primary.disabled input[type=submit]:hover, -.c-btn-tertiary a[disabled=disabled]:active, -.c-btn-tertiary a[disabled=disabled]:hover, -.c-btn-tertiary button[disabled=disabled]:active, -.c-btn-tertiary button[disabled=disabled]:hover, -.c-btn-tertiary input[type=button][disabled=disabled]:active, -.c-btn-tertiary input[type=button][disabled=disabled]:hover, -.c-btn-tertiary input[type=reset][disabled=disabled]:active, -.c-btn-tertiary input[type=reset][disabled=disabled]:hover, -.c-btn-tertiary input[type=submit][disabled=disabled]:active, -.c-btn-tertiary input[type=submit][disabled=disabled]:hover, -.c-btn-tertiary-toggle a[disabled=disabled]:active, -.c-btn-tertiary-toggle a[disabled=disabled]:hover, -.c-btn-tertiary-toggle button[disabled=disabled]:active, -.c-btn-tertiary-toggle button[disabled=disabled]:hover, -.c-btn-tertiary-toggle input[type=button][disabled=disabled]:active, -.c-btn-tertiary-toggle input[type=button][disabled=disabled]:hover, -.c-btn-tertiary-toggle input[type=reset][disabled=disabled]:active, -.c-btn-tertiary-toggle input[type=reset][disabled=disabled]:hover, -.c-btn-tertiary-toggle input[type=submit][disabled=disabled]:active, -.c-btn-tertiary-toggle input[type=submit][disabled=disabled]:hover, -.c-btn-tertiary-toggle.disabled a:active, -.c-btn-tertiary-toggle.disabled a:hover, -.c-btn-tertiary-toggle.disabled button:active, -.c-btn-tertiary-toggle.disabled button:hover, -.c-btn-tertiary-toggle.disabled input[type=button]:active, -.c-btn-tertiary-toggle.disabled input[type=button]:hover, -.c-btn-tertiary-toggle.disabled input[type=reset]:active, -.c-btn-tertiary-toggle.disabled input[type=reset]:hover, -.c-btn-tertiary-toggle.disabled input[type=submit]:active, -.c-btn-tertiary-toggle.disabled input[type=submit]:hover, -.c-btn-tertiary.disabled a:active, -.c-btn-tertiary.disabled a:hover, -.c-btn-tertiary.disabled button:active, -.c-btn-tertiary.disabled button:hover, -.c-btn-tertiary.disabled input[type=button]:active, -.c-btn-tertiary.disabled input[type=button]:hover, -.c-btn-tertiary.disabled input[type=reset]:active, -.c-btn-tertiary.disabled input[type=reset]:hover, -.c-btn-tertiary.disabled input[type=submit]:active, -.c-btn-tertiary.disabled input[type=submit]:hover, -[class*=c-btn-] a[disabled=disabled]:active, -[class*=c-btn-] a[disabled=disabled]:hover, -[class*=c-btn-] button[disabled=disabled]:active, -[class*=c-btn-] button[disabled=disabled]:hover, -[class*=c-btn-] input[type=button][disabled=disabled]:active, -[class*=c-btn-] input[type=button][disabled=disabled]:hover, -[class*=c-btn-] input[type=reset][disabled=disabled]:active, -[class*=c-btn-] input[type=reset][disabled=disabled]:hover, -[class*=c-btn-] input[type=submit][disabled=disabled]:active, -[class*=c-btn-] input[type=submit][disabled=disabled]:hover { - color: #868691; - background-color: #e6e6e8; - border: 0; -} - -[class*=c-btn-] a { - display: inline-block; -} - -.c-btn-primary.disabled:after, -.c-btn-primary.disabled:before, -.c-btn-tertiary.disabled:after, -.c-btn-tertiary.disabled:before, -[class*=c-btn-].disabled:after, -[class*=c-btn-].disabled:before { - color: #868691; -} - -table .c-btn-primary, -table [class*=c-btn-] { - line-height: 1.5; -} - -[class*=c-btn-][class*="--large"] { - font-size: 1em; -} - -[class*=c-btn-][class*="--small"] a, -[class*=c-btn-][class*="--small"] button, -[class*=c-btn-][class*="--small"] input[type=button], -[class*=c-btn-][class*="--small"] input[type=submit] { - font-weight: 600; -} - -.c-btn-primary { - vertical-align: bottom; - font-size: 1em; -} - -.c-btn-primary a, -.c-btn-primary button, -.c-btn-primary input[type=button], -.c-btn-primary input[type=reset], -.c-btn-primary input[type=submit] { - padding: 0 1em; - overflow: visible; - line-height: 2.5em; - text-align: left; - cursor: pointer; - background-color: transparent; - border: 0; - border-bottom: 1px solid rgba(0, 0, 0, .35); - transition: background-color .25s ease-in, border .25s ease-in; - -webkit-appearance: none; -} - -.c-btn-primary a:hover, -.c-btn-primary button:hover, -.c-btn-primary input[type=button]:hover, -.c-btn-primary input[type=reset]:hover, -.c-btn-primary input[type=submit]:hover { - text-decoration: none; - border-bottom: 1px solid rgba(0, 0, 0, .25); -} - -.c-btn-primary a:active, -.c-btn-primary button:active, -.c-btn-primary input[type=button]:active, -.c-btn-primary input[type=reset]:active, -.c-btn-primary input[type=submit]:active { - border-bottom: 1px solid transparent; -} - -.c-btn-primary a[disabled=disabled], -.c-btn-primary button[disabled=disabled], -.c-btn-primary input[type=button][disabled=disabled], -.c-btn-primary input[type=reset][disabled=disabled], -.c-btn-primary input[type=submit][disabled=disabled] { - color: #868691; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-primary, -.c-btn-primary a { - display: inline-block; -} - -.c-btn-primary.disabled a, -.c-btn-primary.disabled button, -.c-btn-primary.disabled input[type=button], -.c-btn-primary.disabled input[type=reset], -.c-btn-primary.disabled input[type=submit] { - color: #868691; - pointer-events: none; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-primary, -.c-btn-primary--large, -.c-btn-primary--large:before, -.c-btn-primary--medium, -.c-btn-primary--medium:before, -.c-btn-primary--small, -.c-btn-primary--small:before, -.c-btn-primary:before { - color: #fff; -} - -.c-btn-primary a, -.c-btn-primary button, -.c-btn-primary input[type=button], -.c-btn-primary input[type=reset], -.c-btn-primary input[type=submit], -.c-btn-primary--large a, -.c-btn-primary--large button, -.c-btn-primary--large input[type=button], -.c-btn-primary--large input[type=reset], -.c-btn-primary--large input[type=submit], -.c-btn-primary--medium a, -.c-btn-primary--medium button, -.c-btn-primary--medium input[type=button], -.c-btn-primary--medium input[type=reset], -.c-btn-primary--medium input[type=submit], -.c-btn-primary--small a, -.c-btn-primary--small button, -.c-btn-primary--small input[type=button], -.c-btn-primary--small input[type=reset], -.c-btn-primary--small input[type=submit] { - color: #fff; - background: #00f; -} - -.c-btn-primary a:hover, -.c-btn-primary button:hover, -.c-btn-primary input[type=button]:hover, -.c-btn-primary input[type=reset]:hover, -.c-btn-primary input[type=submit]:hover, -.c-btn-primary--large a:hover, -.c-btn-primary--large button:hover, -.c-btn-primary--large input[type=button]:hover, -.c-btn-primary--large input[type=reset]:hover, -.c-btn-primary--large input[type=submit]:hover, -.c-btn-primary--medium a:hover, -.c-btn-primary--medium button:hover, -.c-btn-primary--medium input[type=button]:hover, -.c-btn-primary--medium input[type=reset]:hover, -.c-btn-primary--medium input[type=submit]:hover, -.c-btn-primary--small a:hover, -.c-btn-primary--small button:hover, -.c-btn-primary--small input[type=button]:hover, -.c-btn-primary--small input[type=reset]:hover, -.c-btn-primary--small input[type=submit]:hover { - color: #fff; - background-color: #33f; -} - -.c-btn-tertiary { - vertical-align: bottom; - font-size: 1em; -} - -.c-btn-tertiary a, -.c-btn-tertiary button, -.c-btn-tertiary input[type=button], -.c-btn-tertiary input[type=reset], -.c-btn-tertiary input[type=submit] { - padding: 0 1em; - overflow: visible; - line-height: 2.5em; - text-align: left; - cursor: pointer; - border-bottom: 1px solid rgba(0, 0, 0, .35); - transition: background-color .25s ease-in, border .25s ease-in; - -webkit-appearance: none; -} - -.c-btn-tertiary a:hover, -.c-btn-tertiary button:hover, -.c-btn-tertiary input[type=button]:hover, -.c-btn-tertiary input[type=reset]:hover, -.c-btn-tertiary input[type=submit]:hover { - text-decoration: none; - border-bottom: 1px solid rgba(0, 0, 0, .25); -} - -.c-btn-tertiary a[disabled=disabled], -.c-btn-tertiary button[disabled=disabled], -.c-btn-tertiary input[type=button][disabled=disabled], -.c-btn-tertiary input[type=reset][disabled=disabled], -.c-btn-tertiary input[type=submit][disabled=disabled] { - color: #868691; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-tertiary, -.c-btn-tertiary a { - display: inline-block; -} - -table .c-btn-tertiary { - line-height: 1.5; -} - -.c-btn-tertiary.disabled a, -.c-btn-tertiary.disabled button, -.c-btn-tertiary.disabled input[type=button], -.c-btn-tertiary.disabled input[type=reset], -.c-btn-tertiary.disabled input[type=submit] { - color: #868691; - pointer-events: none; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-link, -.c-btn-tertiary, -.c-btn-tertiary--large, -.c-btn-tertiary--large:before, -.c-btn-tertiary--medium, -.c-btn-tertiary--medium:before, -.c-btn-tertiary--small, -.c-btn-tertiary--small:before, -.c-btn-tertiary:before { - color: #00f; -} - -.c-btn-tertiary a, -.c-btn-tertiary button, -.c-btn-tertiary input[type=button], -.c-btn-tertiary input[type=reset], -.c-btn-tertiary input[type=submit], -.c-btn-tertiary--large a, -.c-btn-tertiary--large button, -.c-btn-tertiary--large input[type=button], -.c-btn-tertiary--large input[type=reset], -.c-btn-tertiary--large input[type=submit], -.c-btn-tertiary--medium a, -.c-btn-tertiary--medium button, -.c-btn-tertiary--medium input[type=button], -.c-btn-tertiary--medium input[type=reset], -.c-btn-tertiary--medium input[type=submit], -.c-btn-tertiary--small a, -.c-btn-tertiary--small button, -.c-btn-tertiary--small input[type=button], -.c-btn-tertiary--small input[type=reset], -.c-btn-tertiary--small input[type=submit] { - color: #00f; - background-color: #fff; - border: 1px solid #e6e6e8; -} - -.c-btn-tertiary a:active, -.c-btn-tertiary a:hover, -.c-btn-tertiary button:active, -.c-btn-tertiary button:hover, -.c-btn-tertiary input[type=button]:active, -.c-btn-tertiary input[type=button]:hover, -.c-btn-tertiary input[type=reset]:active, -.c-btn-tertiary input[type=reset]:hover, -.c-btn-tertiary input[type=submit]:active, -.c-btn-tertiary input[type=submit]:hover, -.c-btn-tertiary--large a:active, -.c-btn-tertiary--large a:hover, -.c-btn-tertiary--large button:active, -.c-btn-tertiary--large button:hover, -.c-btn-tertiary--large input[type=button]:active, -.c-btn-tertiary--large input[type=button]:hover, -.c-btn-tertiary--large input[type=reset]:active, -.c-btn-tertiary--large input[type=reset]:hover, -.c-btn-tertiary--large input[type=submit]:active, -.c-btn-tertiary--large input[type=submit]:hover, -.c-btn-tertiary--medium a:active, -.c-btn-tertiary--medium a:hover, -.c-btn-tertiary--medium button:active, -.c-btn-tertiary--medium button:hover, -.c-btn-tertiary--medium input[type=button]:active, -.c-btn-tertiary--medium input[type=button]:hover, -.c-btn-tertiary--medium input[type=reset]:active, -.c-btn-tertiary--medium input[type=reset]:hover, -.c-btn-tertiary--medium input[type=submit]:active, -.c-btn-tertiary--medium input[type=submit]:hover, -.c-btn-tertiary--small a:active, -.c-btn-tertiary--small a:hover, -.c-btn-tertiary--small button:active, -.c-btn-tertiary--small button:hover, -.c-btn-tertiary--small input[type=button]:active, -.c-btn-tertiary--small input[type=button]:hover, -.c-btn-tertiary--small input[type=reset]:active, -.c-btn-tertiary--small input[type=reset]:hover, -.c-btn-tertiary--small input[type=submit]:active, -.c-btn-tertiary--small input[type=submit]:hover { - border: 1px solid #00f; -} - -.c-btn-link a, -.c-btn-link button, -.c-btn-link input[type=button], -.c-btn-link input[type=reset], -.c-btn-link input[type=submit] { - padding: 0; - line-height: inherit; - color: #00f; - background: 0 0; - border: 0; -} - -.c-btn-link a:active, -.c-btn-link a:hover, -.c-btn-link button:active, -.c-btn-link button:hover, -.c-btn-link input[type=button]:active, -.c-btn-link input[type=button]:hover, -.c-btn-link input[type=reset]:active, -.c-btn-link input[type=reset]:hover, -.c-btn-link input[type=submit]:active, -.c-btn-link input[type=submit]:hover { - text-decoration: underline; - border: 0; -} - -.sb-button { - position: relative; -} - -.sb-button:before, -.sb-button[class*="--r"]:after { - position: absolute; - top: 50%; - line-height: 1.5em; - pointer-events: none; - transform: translateY(-50%); -} - -.sb-button:before { - left: 0; - width: 1.5em; - margin-left: .6em; - text-align: center; -} - -.sb-button a, -.sb-button button, -.sb-button input[type=button], -.sb-button input[type=reset], -.sb-button input[type=submit] { - padding-left: 2.25em; -} - -.sb-button[class*="--r"] a, -.sb-button[class*="--r"] button, -.sb-button[class*="--r"] input[type=button], -.sb-button[class*="--r"] input[type=reset], -.sb-button[class*="--r"] input[type=submit] { - width: .1em; - padding-right: 2.25em; - text-indent: -1000em; -} - -.sb-button[class*="--r"]:after { - font-family: "Bol Symbols", Graphik; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - speak: none; - left: 2.25em; -} - -.sb-button--square a, -.sb-button--square button, -.sb-button--square input[type=button], -.sb-button--square input[type=reset], -.sb-button--square input[type=submit] { - width: 2.75em; - width: calc(2.5em + 2px); - padding-right: 0; - padding-left: 0; - text-align: center; -} - -.sb-button.active { - cursor: default; - opacity: .5; -} - -.sb-button--link a, -.sb-button--link button, -.sb-button--link input[type=button], -.sb-button--link input[type=reset], -.sb-button--link input[type=submit] { - width: 1.5rem; - height: 1.5rem; - padding: 0; - line-height: 1.5em; - color: #03031a; - text-align: center; - background-color: #fff; - border: 1px solid #fff; -} - -.sb-button--link a:hover, -.sb-button--link button:hover, -.sb-button--link input[type=button]:hover, -.sb-button--link input[type=reset]:hover, -.sb-button--link input[type=submit]:hover { - color: #00f; - border: 1px solid #00f; -} - -.btn-group { - margin-bottom: .5rem; -} - -.btn-group__btn { - display: block; - margin: 0 0 .5rem; - vertical-align: middle; -} - -.btn-group__btn a, -.btn-group__btn button { - display: block; - text-align: center; -} - -.btn-group__btn button { - width: 100%; -} - -@media (min-width:30em) { - .btn-group__btn { - display: inline-block; - margin: 0 .5em .5rem 0; - } -} - -.btn-group__text { - display: inline-block; - margin: 0 .5em .5rem 0; -} - -.c-btn-tertiary-toggle { - display: inline-block; - vertical-align: bottom; -} - -.c-btn-tertiary-toggle a, -.c-btn-tertiary-toggle button, -.c-btn-tertiary-toggle input[type=button], -.c-btn-tertiary-toggle input[type=reset], -.c-btn-tertiary-toggle input[type=submit] { - overflow: visible; - line-height: 2.5em; - text-align: left; - cursor: pointer; - border-bottom: 1px solid rgba(0, 0, 0, .35); - transition: background-color .25s ease-in, border .25s ease-in; - -webkit-appearance: none; -} - -.c-btn-tertiary-toggle button, -.c-btn-tertiary-toggle input[type=button], -.c-btn-tertiary-toggle input[type=reset], -.c-btn-tertiary-toggle input[type=submit] { - padding: 0 1em; -} - -.c-btn-tertiary-toggle a { - display: inline-block; -} - -.c-btn-tertiary-toggle a:hover, -.c-btn-tertiary-toggle button:hover, -.c-btn-tertiary-toggle input[type=button]:hover, -.c-btn-tertiary-toggle input[type=reset]:hover, -.c-btn-tertiary-toggle input[type=submit]:hover { - text-decoration: none; - border-bottom: 1px solid rgba(0, 0, 0, .25); -} - -.c-btn-tertiary-toggle a[disabled=disabled], -.c-btn-tertiary-toggle button[disabled=disabled], -.c-btn-tertiary-toggle input[type=button][disabled=disabled], -.c-btn-tertiary-toggle input[type=reset][disabled=disabled], -.c-btn-tertiary-toggle input[type=submit][disabled=disabled] { - color: #868691; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-tertiary-toggle.disabled:after, -.c-btn-tertiary-toggle.disabled:before { - color: #868691; -} - -table .c-btn-tertiary-toggle { - line-height: 1.5; -} - -.c-btn-tertiary-toggle.disabled a, -.c-btn-tertiary-toggle.disabled button, -.c-btn-tertiary-toggle.disabled input[type=button], -.c-btn-tertiary-toggle.disabled input[type=reset], -.c-btn-tertiary-toggle.disabled input[type=submit] { - color: #868691; - pointer-events: none; - cursor: default; - background-color: #e6e6e8; - border: 0; -} - -.c-btn-tertiary-toggle, -.c-btn-tertiary-toggle--large, -.c-btn-tertiary-toggle--large:before, -.c-btn-tertiary-toggle--medium, -.c-btn-tertiary-toggle--medium:before, -.c-btn-tertiary-toggle--small, -.c-btn-tertiary-toggle--small:before, -.c-btn-tertiary-toggle:before { - color: #00f; -} - -.c-btn-tertiary-toggle a, -.c-btn-tertiary-toggle button, -.c-btn-tertiary-toggle input[type=button], -.c-btn-tertiary-toggle input[type=reset], -.c-btn-tertiary-toggle input[type=submit], -.c-btn-tertiary-toggle--large a, -.c-btn-tertiary-toggle--large button, -.c-btn-tertiary-toggle--large input[type=button], -.c-btn-tertiary-toggle--large input[type=reset], -.c-btn-tertiary-toggle--large input[type=submit], -.c-btn-tertiary-toggle--medium a, -.c-btn-tertiary-toggle--medium button, -.c-btn-tertiary-toggle--medium input[type=button], -.c-btn-tertiary-toggle--medium input[type=reset], -.c-btn-tertiary-toggle--medium input[type=submit], -.c-btn-tertiary-toggle--small a, -.c-btn-tertiary-toggle--small button, -.c-btn-tertiary-toggle--small input[type=button], -.c-btn-tertiary-toggle--small input[type=reset], -.c-btn-tertiary-toggle--small input[type=submit] { - color: #00f; - background-color: #fff; - border: 1px solid #e6e6e8; -} - -.c-btn-tertiary-toggle a:active, -.c-btn-tertiary-toggle button:active, -.c-btn-tertiary-toggle button:hover, -.c-btn-tertiary-toggle input[type=button]:active, -.c-btn-tertiary-toggle input[type=button]:hover, -.c-btn-tertiary-toggle input[type=reset]:active, -.c-btn-tertiary-toggle input[type=reset]:hover, -.c-btn-tertiary-toggle input[type=submit]:active, -.c-btn-tertiary-toggle input[type=submit]:hover, -.c-btn-tertiary-toggle--large a:active, -.c-btn-tertiary-toggle--large button:active, -.c-btn-tertiary-toggle--large button:hover, -.c-btn-tertiary-toggle--large input[type=button]:active, -.c-btn-tertiary-toggle--large input[type=button]:hover, -.c-btn-tertiary-toggle--large input[type=reset]:active, -.c-btn-tertiary-toggle--large input[type=reset]:hover, -.c-btn-tertiary-toggle--large input[type=submit]:active, -.c-btn-tertiary-toggle--large input[type=submit]:hover, -.c-btn-tertiary-toggle--medium a:active, -.c-btn-tertiary-toggle--medium button:active, -.c-btn-tertiary-toggle--medium button:hover, -.c-btn-tertiary-toggle--medium input[type=button]:active, -.c-btn-tertiary-toggle--medium input[type=button]:hover, -.c-btn-tertiary-toggle--medium input[type=reset]:active, -.c-btn-tertiary-toggle--medium input[type=reset]:hover, -.c-btn-tertiary-toggle--medium input[type=submit]:active, -.c-btn-tertiary-toggle--medium input[type=submit]:hover, -.c-btn-tertiary-toggle--small a:active, -.c-btn-tertiary-toggle--small button:active, -.c-btn-tertiary-toggle--small button:hover, -.c-btn-tertiary-toggle--small input[type=button]:active, -.c-btn-tertiary-toggle--small input[type=button]:hover, -.c-btn-tertiary-toggle--small input[type=reset]:active, -.c-btn-tertiary-toggle--small input[type=reset]:hover, -.c-btn-tertiary-toggle--small input[type=submit]:active, -.c-btn-tertiary-toggle--small input[type=submit]:hover { - border: 1px solid #00f; -} - -.c-btn-tertiary-toggle, -.c-btn-tertiary-toggle--large, -.c-btn-tertiary-toggle--medium, -.c-btn-tertiary-toggle--small { - position: relative; - font-size: 1em; -} - -.c-btn-tertiary-toggle a { - padding: 0 .5em; -} - -.c-btn-tertiary-toggle--large a, -.c-btn-tertiary-toggle--medium a, -.c-btn-tertiary-toggle--small a { - padding-right: .5em; - padding-left: .5em; -} - -.c-btn-tertiary-toggle a.active, -.c-btn-tertiary-toggle a:hover, -.c-btn-tertiary-toggle--large a.active, -.c-btn-tertiary-toggle--large a:hover, -.c-btn-tertiary-toggle--medium a.active, -.c-btn-tertiary-toggle--medium a:hover, -.c-btn-tertiary-toggle--small a.active, -.c-btn-tertiary-toggle--small a:hover { - border: 1px solid #686876; -} - -.c-btn-tertiary-toggle--large:hover .c-toggle__symbol, -.c-btn-tertiary-toggle--medium:hover .c-toggle__symbol, -.c-btn-tertiary-toggle--small:hover .c-toggle__symbol, -.c-btn-tertiary-toggle:hover .c-toggle__symbol { - color: #f91906; -} - -.c-btn-tertiary-toggle--large:hover .c-toggle__symbol:before, -.c-btn-tertiary-toggle--medium:hover .c-toggle__symbol:before, -.c-btn-tertiary-toggle--small:hover .c-toggle__symbol:before, -.c-btn-tertiary-toggle:hover .c-toggle__symbol:before { - content: ""; -} - -.c-btn-tertiary-toggle__off { - margin-right: .5em; - color: #686876; - transition: color .3s, opacity .3s; -} - -.c-btn-tertiary-toggle__off--hidden { - opacity: 0; -} - -.c-btn-tertiary-toggle__off.align-bb, -.c-toggle__off.align-bb { - position: relative; - top: -8%; -} - -.c-btn-tertiary-toggle__on { - position: relative; - top: -8%; - padding-right: 1px; - color: #686876; - transition: opacity .3s; -} - -.c-btn-tertiary-toggle__on--hidden { - opacity: 0; -} - -.c-btn-tertiary-toggle__symbol { - position: absolute; - top: 50%; - right: 18%; - color: #686876; - transition: color .3s, right .5s cubic-bezier(.175, .885, .32, 1.275); - transform: translateY(-50%); -} - -.c-btn-tertiary-toggle__symbol--added { - right: 53%; - color: #f91906; -} - -.c-toggle__off { - margin-right: .5em; - color: #686876; - transition: color .3s, opacity .3s; -} - -.c-toggle__off--hidden { - opacity: 0; -} - -.c-toggle__on { - position: relative; - top: -8%; - padding-right: 1px; - color: #686876; - transition: opacity .3s; -} - -.c-toggle__on--hidden { - opacity: 0; -} - -.c-toggle__symbol { - position: absolute; - top: 50%; - right: 18%; - color: #686876; - transition: color .3s, right .5s cubic-bezier(.175, .885, .32, 1.275); - transform: translateY(-50%); -} - -.c-toggle__symbol--added { - right: 53%; - color: #f91906; -} - -wsp-wishlist-button .wishlist-button .bi-heart { - fill: transparent; -} - -wsp-wishlist-button[active] .wishlist-button .bi-heart { - color: #f91906; - fill: #f91906; -} - -.list-view wsp-wishlist-button .ui-btn--floating { - margin: -1.5rem; -} - -.flexbanner { - position: relative; - z-index: 1; - display: flex; - flex-flow: column nowrap; - height: 100%; - min-height: 14.375rem; - overflow: hidden; - background-color: #f0f6ff; -} - -.flexbanner, -.flexbanner:hover, -.smartbanner__close a:hover { - text-decoration: none; -} - -.flexbanner__extra { - margin: .125rem 0-.75rem; - font-size: .625rem; - line-height: 1; - color: #686876; - text-align: right; -} - -.flexbanner__image-wrapper { - position: relative; - display: flex; - flex-grow: 1; - margin-top: auto; -} - -.flexbanner--card .flexbanner__image-wrapper { - max-height: 9rem; -} - -.flexbanner__image { - position: relative; - width: 100%; - height: 100%; - min-height: 7rem; - margin: 0 auto; - overflow: hidden; - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} - -.flexbanner__image-wrapper .flexbanner__image { - position: absolute; -} - -.flexbanner__icon { - padding-top: .5rem; - padding-bottom: .5rem; - font-size: 1.25em; - text-align: center; -} - -@media (min-width:30em) { - .flexbanner__icon { - padding-top: 1rem; - font-size: 1.5em; - } -} - -.flexbanner__content { - display: flex; - flex-flow: column; - flex-shrink: 0; - padding: 1.5rem 1.5rem 0; -} - -.flexbanner__display { - display: flex; -} - -.flexbanner__subtitle, -.flexbanner__title { - padding: 0; - font-family: produkt, arial, helvetica, sans-serif; - line-height: 1; - word-break: break-word; -} - -.flexbanner__title { - margin: 0 0 .25rem; - font-size: 1.125rem; - font-weight: 900; -} - -.flexbanner__title sup { - top: -12%; -} - -.flexbanner--with-aspect-ratio .flexbanner__title { - font-weight: 700; -} - -.flexbanner__subtitle { - margin: 0 0 .5rem; - font-size: 1rem; - font-weight: 300; -} - -@media (min-width:30em) { - .one-quarter .flexbanner:not(.flexbanner--card).flexbanner--portrait { - min-height: 12.5rem; - } - - .one-quarter .flexbanner:not(.flexbanner--card).flexbanner--portrait .flexbanner__extra { - margin-bottom: 0; - } - - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__title { - font-size: 1.5rem; - font-weight: 900; - } - - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__subtitle { - font-size: 1.3125rem; - } - - .flex-grid--md-2 .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__title, - .one-third .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__title { - font-size: 1.125rem; - font-weight: 700; - } - - .flex-grid--md-2 .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__subtitle, - .one-third .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__subtitle { - font-size: 1rem; - } -} - -.flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__title { - font-size: 1.5rem; - font-weight: 900; -} - -.flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__subtitle { - font-size: 1.3125rem; -} - -@media (min-width:30em) { - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__title { - font-size: 2rem; - } - - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__subtitle { - font-size: 1.625rem; - } -} - -@media (min-width:48em) { - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__title { - font-size: 2.25rem; - } - - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__subtitle { - font-size: 1.75rem; - } - - .medium--two-thirds .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__title { - font-size: 2rem; - } - - .medium--two-thirds .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait).flexbanner--billboard .flexbanner__subtitle { - font-size: 1.625rem; - } -} - -.flexbanner__button { - position: absolute; - bottom: 1.5rem; - left: 1.5rem; - z-index: 1; - display: flex; - width: 1.875rem; - padding: .5rem; - margin-right: auto; - color: #fff; - background: #00f; -} - -.flexbanner__button--tertiary { - color: #00f; - background: #fff; -} - -.flexbanner--top { - margin-bottom: -1rem; -} - -.flexbanner--top+.flexbanner__extra { - position: absolute; - right: calc(50% + 1rem); - bottom: .5rem; - z-index: 1; - margin: 0; - color: #03031a; -} - -@media (min-width:30em) { - .flexbanner:not(.flexbanner--portrait) { - flex-flow: row; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__content, - .flexbanner:not(.flexbanner--portrait) .flexbanner__image-wrapper { - width: 50%; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__content { - padding-bottom: 1.5rem; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__image-wrapper { - margin-top: 0; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__image { - height: 100%; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__button { - position: relative; - top: 0; - left: 0; - margin-top: auto; - } -} - -.flexbanner--landscape { - flex-flow: row; -} - -.flexbanner--landscape .flexbanner__content, -.flexbanner--landscape .flexbanner__image-wrapper { - width: 50%; -} - -.flexbanner--landscape .flexbanner__content { - padding-bottom: 1.5rem; -} - -.flexbanner--landscape .flexbanner__image-wrapper { - margin-top: 0; -} - -.flexbanner--landscape .flexbanner__image, -.flexbanner.flexbanner--billboard .flexbanner__image-wrapper .flexbanner__image { - height: 100%; -} - -.flexbanner--landscape .flexbanner__button { - position: relative; - top: 0; - left: 0; - margin-top: auto; -} - -.flexbanner.flexbanner--billboard { - min-height: 9.375rem; -} - -@media (min-width:30em) { - .flexbanner.flexbanner--billboard { - min-height: 12.5rem; - } -} - -.flexbanner.flexbanner--billboard .flexbanner__image { - flex: 1 1; - height: auto; -} - -.flexbanner.flexbanner--billboard .flexbanner__image-wrapper { - display: flex; - flex-grow: 1; -} - -.flexbanner--pega { - background-color: #f8f8f8; -} - -.flexbanner--pega--daydeal { - min-height: 15rem; -} - -.flexbanner--contain { - height: auto; - min-height: 100%; -} - -.flexbanner--with-aspect-ratio .flexbanner--portrait { - background-color: transparent; -} - -.flexbanner--with-aspect-ratio .flexbanner__image-container-wrapper { - position: relative; - aspect-ratio: 3/4; - overflow: hidden; -} - -.flexbanner--with-aspect-ratio .flexbanner__image-wrapper { - min-height: 100%; -} - -.flexbanner--with-aspect-ratio .flexbanner__image-container { - position: absolute; - right: 0; - bottom: 0; - left: 0; - aspect-ratio: 5/4; -} - -.flexbanner--with-aspect-ratio .flexbanner__content { - padding: 1rem 0 0; -} - -.flexbanner--with-aspect-ratio .flexbanner__subtitle, -.flexbanner--with-aspect-ratio .flexbanner__title { - color: #03031a; -} - -.flexbanner--with-aspect-ratio .flexbanner__subtitle { - margin-bottom: .5rem; - font-family: graphik, arial, helvetica, sans-serif; - font-size: 1.125rem; -} - -.flexbanner--with-aspect-ratio .flexbanner__disclaimer { - margin-bottom: .25rem; - font-size: 12px; - line-height: 1; - color: #686876; -} - -.flexbanner-container { - position: relative; - flex-grow: 1; - min-width: 15rem; - height: auto; -} - -.flex-grid .flex-item>.flexbanner-container--landscape, -.fluid-grid__item>.flexbanner-container--landscape { - height: 100%; -} - -.flexbanner-container:not(.feature) { - padding-bottom: 1rem; -} - -.flexbanner-container__between-products-list { - width: 100%; - margin-top: 1em; - margin-bottom: 1em; -} - -@media (min-width:48em) { - .flexbanner-container__between-products-list { - padding-left: 1.5em; - } -} - -.flexbanner-container__between-products-tile { - width: 100%; - margin-top: 1em; - margin-bottom: 1em; -} - -@media (min-width:48em) { - .flexbanner-container__between-products-tile { - width: 100%; - padding-left: 1.5em; - margin-top: -2em; - margin-bottom: 3rem; - } -} - -.flexbanner-container__brand-tile { - padding-left: 0; -} - -.list-divider { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; -} - -.list-divider\@until-screen-large>li { - margin-bottom: 1rem; -} - -@media (max-width:47.9375em) { - .list-divider\@until-screen-large>li { - padding-right: 2rem; - padding-bottom: 1rem; - padding-left: 2rem; - margin-right: -2rem; - margin-left: -2rem; - border-bottom: 1px solid #e6e6e8; - } - - .list-divider\@until-screen-large>li:first-child { - padding-top: 1rem; - border-top: 1px solid #e6e6e8; - } -} - -@media (max-width:29.9375em) { - .list-divider\@until-screen-large>li { - padding-right: 1rem; - padding-left: 1rem; - margin-right: -1rem; - margin-left: -1rem; - } -} - -.accordion { - border-top: 1px solid #e6e6e8; -} - -.accordion__item { - border-bottom: 1px solid #e6e6e8; -} - -.accordion__header { - padding-top: 1rem; - padding-right: 1.5rem; - padding-bottom: 1rem; - margin: 0; - cursor: pointer; -} - -@media (min-width:30em) { - .accordion__header { - padding-right: 0; - padding-left: 1.5rem; - } -} - -.accordion__header:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - float: right; - margin-right: -1.5rem; -} - -@media (min-width:30em) { - .accordion__header:before { - float: left; - margin-right: .5rem; - margin-left: -1.5rem; - } -} - -.accordion__header.expand { - font-weight: 600; -} - -.accordion__header.expand:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M3.646 8.306a.508.508 0 01-.71 0 .497.497 0 01-.007-.7l4.085-4.06 4.054 4.055a.505.505 0 010 .707.501.501 0 01-.71-.002L7.008 4.954 3.646 8.306z'/%3E%3C/svg%3E"); -} - -.accordion__explain { - display: block; - font-size: .75rem; - color: #686876; -} - -.expand .accordion__explain, -.product-creator li { - display: none; -} - -.accordion__body { - max-height: 0; - padding: 0; - overflow: hidden; - transition: max-height .5s; - transition-delay: -.2s; - transition-timing-function: cubic-bezier(0, 1, 0, 1); -} - -.accordion__body.expand { - max-height: 9999px; - transition-delay: -.1s; - transition-timing-function: cubic-bezier(1, 0, 1, 0); -} - -@media (min-width:30em) { - .accordion__body { - padding-left: 2rem; - } -} - -.accordion__body>.accordion, -.accordion__body>.accordion>.accordion__item { - border: 0; -} - -.accordion__body>.accordion>.accordion__item>.accordion__header, -.tile-view--numbered .product-item--column .product-item__image .product-image--tile img { - padding-right: 0; - padding-left: 0; -} - -.accordion__body>.accordion>.accordion__item>.accordion__header:before { - content: none; -} - -.accordion__body>.accordion>.accordion__item>.accordion__body { - padding-left: 0; -} - -.accordion--blocks, -.accordion--toggle { - border-top: 0; -} - -.accordion--toggle .accordion__item { - border-bottom: 0; -} - -.accordion--toggle .accordion__header { - padding-top: 0; - padding-right: 0; - padding-left: 1.5rem; - font-weight: 600; -} - -.accordion--toggle .accordion__header:before { - float: left; - margin-right: 0; - margin-left: -1.5rem; -} - -.accordion--toggle .accordion__body { - padding: 0; -} - -.accordion--blocks .accordion__header { - font-weight: 600; -} - -.accordion--blocks .accordion__header:before { - color: inherit; -} - -.accordion--blocks .accordion__item { - padding: 0 1em; - margin-bottom: .5rem; - background: #f0f6ff; - border-bottom: 0; - border-radius: .5em; -} - -.smartbanner { - display: flex; - align-items: center; - position: fixed; - bottom: 0; - z-index: 99; - width: calc(100% - 1rem); - padding-top: .75rem; - padding-right: .75rem; - padding-bottom: .75rem; - padding-left: 0; - margin: .5rem; - background-color: #fafafa; - border-color: #e6e6e6; - opacity: 100%; -} - -.wsp-header .smartbanner { - margin: calc(-1rem + 2px)0 1rem; -} - -.smartbanner__close { - padding: .75rem; -} - -.smartbanner__close a { - font-size: 1.5em; - font-weight: 600; - color: #686876; -} - -.smartbanner__icon { - display: block; - width: 3.5em; - height: 3.5em; - margin-right: .75rem; - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} - -.smartbanner__icon--android, -.smartbanner__icon--ios { - background-image: url(/nl/static/assets/images/sass/app-icons/iosapp@2x.png); -} - -.smartbanner__content { - margin-right: auto; - font-size: .875rem; -} - -.black { - color: #03031a; -} - -.labels { - padding: .35em .5rem; - line-height: 1; - color: #686876; - text-align: center; - vertical-align: baseline; -} - -.label__wrap, -.labels { - display: inline-block; -} - -.label_primary { - background-color: #00f; -} - -.label_secondary { - background-color: #e6e6e8; -} - -.label_default { - color: #03031a; - background-color: #bbb; -} - -.label_breadcrumbs, -.label_secondhand { - color: #03031a; - text-transform: none; - background-color: #fff; - border: 1px solid #03031a; -} - -.label_breadcrumbs { - border: 1px solid #bbb; -} - -.label_breadcrumbs:hover { - color: #00f; - text-decoration: none; - border: 1px solid #00f; -} - -.label_discount { - color: #00f; - border-bottom: 1px dashed #00f; -} - -.label_block { - display: block; -} - -.label-placeholder { - height: 1.65em; -} - -.label--large { - padding: .5rem 1rem; - margin-right: .25rem; -} - -.offerlabel { - display: inline-block; - padding: .35em .5rem; - color: #03031a; - text-align: center; - background-color: #f0f6ff; -} - -.offerlabel--secondhand:before { - font-family: "Bol Symbols"; - vertical-align: middle; - content: ""; -} - -.offerlabel--lowest-price:before { - font-weight: 600; - content: "€"; -} - -.offerlabel--fastest-delivery:before { - font-family: "Bol Symbols"; - vertical-align: middle; - content: ""; -} - -.awareness-label { - position: relative; - z-index: 2; - display: inline-flex; - align-items: center; - width: min-content; - min-width: 6em; - max-width: 7em; - height: 2.1875rem; - padding-left: .25rem; - margin-right: .5rem; - margin-bottom: .5rem; - cursor: pointer; - background-color: #f0f6ff; - border-color: #e6e6e8; - border-style: solid; - border-width: 1px 0 1px 1px; -} - -.awareness-label:last-child { - margin-bottom: 0; -} - -.awareness-label:after, -.discount-label:after { - position: absolute; - right: -.5em; - z-index: -1; - width: 1.5em; - content: ""; - background-color: inherit; -} - -.awareness-label:after { - top: -1px; - bottom: -1px; - border-color: inherit; - border-style: inherit; - border-width: 1px 1px 1px 0; -} - -.awareness-label--image { - max-width: 6em; - padding: .25rem 0 .25rem .25rem; -} - -.awareness-label--image img { - max-height: 26px; - vertical-align: middle; - will-change: transform; -} - -.awareness-label__link { - overflow-x: hidden; - overflow-y: visible; - color: #03031a; -} - -.awareness-label__link:hover { - text-decoration: none; -} - -.awareness-label__text { - display: inline-block; - font-size: .6875rem; - line-height: 1.1; -} - -.discount-label { - display: inline-flex; - align-items: center; - justify-content: center; - position: relative; - z-index: 0; - width: 2em; - height: 2em; - padding-left: .25rem; - background-color: #f91906; - border-radius: 4px 0 0 4px; -} - -.discount-label:after { - top: 0; - bottom: 0; - border-radius: 0 4px 4px 0; - transform: skewX(-15deg); -} - -.discount-label__text { - display: block; - margin-right: -3px; - font-size: .85714em; - line-height: 1; - color: #fff; -} - -.notification { - position: relative; - padding: .75rem; - background-color: #fff; - border: 1px solid #686876; - border-radius: .25rem; -} - -.notification> :last-child { - padding-bottom: 0; - margin-bottom: 0; -} - -.notification:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M7 14A7 7 0 117 0a7 7 0 010 14zm-.033-1a6 6 0 100-12 6 6 0 000 12zm-.464-6.984a.512.512 0 01.509-.516h-.024c.283 0 .514.228.515.516l.027 3.968a.512.512 0 01-.509.516h.024a.516.516 0 01-.515-.516l-.027-3.968zM7.031 4.5a.5.5 0 110-1 .5.5 0 010 1z'/%3E%3C/svg%3E"); - position: absolute; - margin-left: 0; - content: ""; -} - -.notification__close-button-hitarea { - position: absolute; - top: 0; - right: 0; - display: block; - width: 3em; - height: 3em; - cursor: pointer; -} - -.notification__close-button { - display: inline-block; - float: right; - padding: 0 .25em; - color: #686876; - cursor: pointer; -} - -.notification__title { - padding-left: 1.75rem; - color: #03031a; -} - -.notification__list, -.notification__message { - padding-left: 1.75rem; -} - -.notification__list>li:not(:only-child):before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M9 7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z'/%3E%3C/svg%3E"); -} - -.notification__list>li:only-child { - padding-left: 0; -} - -.modal__window .notification { - padding: 1rem 1.5rem; - margin-top: -1.5rem; - background-color: #e6e6e8; - border: 0; -} - -.modal__window .notification+.notification { - border-radius: 0; -} - -.notification--error { - border-color: #f91906; -} - -.notification--error:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28249%2C25%2C6%29'%3E%3Cpath fill-rule='evenodd' d='M7 1l7 12H0L7 1zm0 2l-5.25 9h10.5L7 3zm-.494 3.039a.508.508 0 01.507-.513H6.99c.282 0 .514.228.516.513l.024 2.448A.508.508 0 017.023 9h.023a.517.517 0 01-.516-.513L6.506 6.04zM7.003 11a.5.5 0 110-1 .5.5 0 010 1z'/%3E%3C/svg%3E"); -} - -.notification--error .notification__close-button, -.notification--error .notification__title { - color: #f91906; -} - -.modal__window .notification--error { - background-color: #ffe7e6; -} - -.notification--success { - border-color: #007000; -} - -.notification--success:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C112%2C0%29'%3E%3Cpath fill-rule='evenodd' d='M7 14A7 7 0 117 0a7 7 0 010 14zm0-1A6 6 0 107 1a6 6 0 000 12zM4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); -} - -.notification--success .notification__close-button, -.notification--success .notification__title { - color: #007000; -} - -.modal__window .notification--success { - background-color: #e5f8e9; -} - -.notification--sans-symbol:before { - content: none; -} - -.choice-wizard .notification { - margin: 0; -} - -@media (min-width:48em) { - .choice-wizard .notification { - margin-top: -2.5rem; - margin-bottom: 1rem; - } -} - -.banner { - position: relative; - padding: .75em; - margin-bottom: .5rem; - border: 1px solid #b3b3ba; - border-style: dashed; - border-radius: .25em; - display: flex; -} - -.banner:after { - display: table; - clear: both; - content: ""; -} - -.banner> :last-child { - padding-bottom: 0; -} - -@media (min-width:30em) { - .banner { - padding: 0; - padding-top: 1rem; - } -} - -.banner__spacing { - margin-bottom: 1rem; -} - -.banner__close { - position: absolute; - top: .2em; - right: .2em; - float: right; - width: 1.5rem; - height: 1.5rem; - color: #b3b3ba; - text-align: center; - cursor: pointer; -} - -@media (min-width:30em) { - .banner__close { - top: 1em; - right: 1em; - } -} - -.banner__close-hitarea { - position: absolute; - top: 0; - right: 0; - width: 3em; - height: 3em; - cursor: pointer; - z-index: 500; -} - -.banner__image { - float: left; - max-height: 80px; - align-self: flex-end; -} - -.banner__body { - padding: 0; - overflow: hidden; -} - -@media (min-width:30em) { - .banner__body { - padding: 1rem; - margin-right: 1rem; - } -} - -.banner__title { - margin-bottom: .25rem; - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 900; - color: #0000a4; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.banner__message { - margin-bottom: .5rem; -} - -@media (min-width:30em) { - .banner__message { - margin-bottom: 1rem; - } -} - -.banner__explain a { - color: #686876; - text-decoration: underline; -} - -.select-banner { - display: flex; - align-items: center; - flex-direction: column; - position: relative; - padding: 1rem; - overflow: hidden; - background-color: #e5f8e9; - border-radius: .25rem; -} - -.select-banner:before { - top: -50em; - width: 80em; - height: 60em; - content: ""; - background: rgba(255, 255, 255, .8); -} - -.select-banner__logo { - position: relative; - padding-bottom: 7.5rem; - font-size: 1.5em; -} - -.select-banner__logo span { - display: block; - color: #686876; -} - -.select-banner__logo svg { - margin: 0; - font-size: 1.75em; -} - -.select-banner:before, -.select-banner__price { - position: absolute; - left: 50%; - border-radius: 50%; - transform: translateX(-50%); -} - -.select-banner__price { - top: -6em; - display: block; - width: 5em; - height: 5em; - padding-top: .75rem; - line-height: 1.25; - color: #fff; - text-align: center; - background-color: #01ac3a; -} - -.select-banner__price .bol_header { - display: block; - font-size: 1.5em; - line-height: 1.25; -} - -.select-banner__price .sub_price { - display: block; - margin-top: -.5rem; -} - -.select-banner__content { - position: relative; - max-width: 100%; - color: #686876; -} - -.select-banner--simple { - background-color: #f2fbf5; -} - -.select-banner--simple:before { - content: normal; -} - -.select-banner--simple .select-banner__logo { - padding-bottom: 0; - font-size: 2.25rem; -} - -@media (min-width:48em) { - .select-banner--cols { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - padding: 2rem; - background-image: -webkit-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0); - background-image: -moz-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0); - background-image: -o-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0); - background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(255, 255, 255, .8) 40%, #e5f8e9 0); - } - - .select-banner--cols:before { - content: normal; - } - - .select-banner--cols .select-banner__logo { - padding-bottom: 0; - margin: 0 auto 0 5%; - } -} - -@media (min-width:64em) { - .select-banner--cols .select-banner__logo { - margin-left: 10%; - } -} - -@media (min-width:48em) { - .select-banner--cols .select-banner__price { - top: 50%; - left: -7em; - transform: translateY(-50%); - } - - .select-banner--cols .select-banner__content { - flex: 0 1 55%; - min-height: 0; - min-width: 0; - } -} - -.notification-modal-entry { - margin: -1.5rem; -} - -.notification-modal-entry .select-banner { - position: static; - display: block; - overflow: visible; -} - -.notification-modal-entry .select-banner__logo { - text-align: center; -} - -.banner-attention { - position: relative; -} - -.banner-attention__top { - padding: 1rem; - color: #fff; - background-color: #01ac3a; -} - -.banner-attention .banner__close, -.banner-attention__header-title { - color: #fff; -} - -.banner-attention__bottom { - display: flex; - align-items: center; - padding: 1rem; - border-color: #e6e6e8; - border-style: solid; - border-width: 0 1px 1px; -} - -@media (max-width:29.9375em) { - .banner-attention__bottom { - flex-direction: column; - } -} - -.skyscraper--right { - position: absolute; - right: 100%; - z-index: 2; -} - -@media (max-width:74.9375em) { - .skyscraper--right { - display: none; - } -} - -.skyscraper--left { - position: absolute; - right: auto; - left: 100%; - z-index: 2; -} - -@media (max-width:74.9375em) { - .skyscraper--left { - display: none; - } -} - -.product-creator { - margin-bottom: .5rem; -} - -.product-creator a { - color: #03031a; -} - -@media (min-width:48em) { - .product-creator li { - display: inline; - } - - .product-creator li+li:before { - content: ", "; - } - - .product-creator li+li:last-child:before { - content: " & "; - } -} - -.product-creator li:first-child { - display: inline; -} - -@media (min-width:30em) { - .product-creator { - margin-bottom: .25rem; - } -} - -.product-creator--crop { - overflow: hidden; - text-overflow: ellipsis; - word-wrap: normal; - white-space: nowrap; -} - -.product-creator--crop li { - display: none; -} - -.product-title { - display: inline-block; - margin-bottom: .5rem; - font-weight: 600; - color: #03031a; -} - -@media (min-width:30em) { - .product-title { - margin-bottom: .25rem; - } -} - -.product-title .truncate { - display: inline-block; - display: -webkit-box; - max-height: 3em; - overflow: hidden; - line-height: 1.5; - text-overflow: ellipsis; - white-space: normal; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; -} - -.product-title--placeholder { - display: block; - height: 3em; - overflow: hidden; -} - -.product-title--placeholder-larger { - display: block; - height: 3.5em; - margin-bottom: 0; - overflow: hidden; -} - -.product-title .single-line-truncate { - display: inline-block; - max-width: 100%; - overflow: hidden; - text-overflow: ellipsis; - word-wrap: normal; - white-space: nowrap; -} - -.product-title--inline { - margin-bottom: .5rem; -} - -.product-small-specs li, -.product-title--inline .product-title { - display: inline; -} - -.product-subtitle { - display: none; -} - -@media (min-width:48em) { - .product-subtitle { - display: block; - padding-bottom: 0; - margin-bottom: .25rem; - } -} - -.product-small-specs { - margin-bottom: .5rem; - color: #686876; -} - -.product-small-specs li:before { - content: " | "; -} - -.product-small-specs li:first-child:before { - display: none; -} - -@media (max-width:47.9375em) { - .product-small-specs { - max-width: 100%; - overflow: hidden; - text-overflow: ellipsis; - word-wrap: normal; - white-space: nowrap; - display: block; - } -} - -.product-small-specs__pegi { - max-height: 1.45em; - vertical-align: middle; -} - -.product-small-specs--large { - margin-bottom: 1rem; - font-size: .875rem; - color: #03031a; -} - -.product-small-specs--bar { - display: inline-block; - padding: .5rem; - margin: 0 auto; - overflow: visible; - font-size: .75rem; - color: #03031a; - text-align: center; - text-overflow: unset; - white-space: unset; - background: #f0f6ff; - border-radius: .25rem; -} - -.product-small-specs--bar li { - display: inline-block; -} - -.product-small-specs--bar li:before { - font-size: .8em; -} - -.product-additional-fee { - padding-bottom: 0; - margin-bottom: 1rem; - color: #686876; -} - -.product-delivery { - margin-bottom: 1rem; - color: #007000; -} - -.product-delivery__icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - line-height: 1.25; - color: #007000; - text-align: center; - text-decoration: none; - vertical-align: text-top; - border: 1px solid #03031a; - border-radius: 1em; -} - -.product-delivery__icon:hover, -.product-seller--with-disclaimer .product-seller__link:hover { - text-decoration: none; -} - -.product-delivery__icon.info-link { - line-height: 1.25; -} - -.product-delivery--with-highlight .logo-select { - color: currentColor; -} - -.product-delivery--product-item { - z-index: 10; - min-height: 4.5em; - margin-bottom: 0; -} - -@media (min-width:48em) { - .product-delivery--product-item { - min-height: 3em; - } -} - -.product-delivery-highlight { - display: inline-block; - padding: 0 .5rem; - margin-bottom: .25rem; - font-weight: 600; - color: #007000; - border: 1px solid currentColor; -} - -.product-delivery-highlight--scarce { - color: #f91906; -} - -.product-delivery-highlight--no-border { - padding: 0; - margin-bottom: 0; - border: 0; -} - -.product-seller { - margin-bottom: 1rem; - word-break: break-word; -} - -.product-seller--l { - font-size: .875rem; -} - -.product-seller__link { - display: flex; - gap: 4px; - align-items: center; - text-decoration: none; -} - -.product-seller--with-disclaimer .product-seller__link, -.promo-box a { - color: #03031a; -} - -.product-seller__link:hover { - text-decoration: none; -} - -.product-seller__name, -.product-seller__name:hover { - text-decoration: underline; -} - -.promo-box { - display: block; - margin-bottom: .5rem; - overflow: hidden; - text-overflow: ellipsis; - word-wrap: normal; - white-space: nowrap; -} - -.promo-box> :first-child { - display: inline; -} - -.promo-box> :first-child:before { - margin-right: .5rem; - margin-left: 0; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M12 11.018L7 9.86v1.75a.5.5 0 01-.621.485l-4-1A.5.5 0 012 10.607V8.75L.757 8.44A1 1 0 010 7.47V4.607a1 1 0 01.848-.988L12 1.904v1.013L1 4.603V7.48l11 2.52v1.02zM3.003 8.933L3 10.475l3 .75V9.624l-2.997-.691zM11.5 6h2a.5.5 0 110 1h-2a.5.5 0 110-1zm-.095-2.103l1.932-.518a.5.5 0 11.258.966l-1.932.518a.5.5 0 11-.258-.966zm.258 4.232l1.932.518a.5.5 0 11-.258.966l-1.932-.518a.5.5 0 11.258-.966z'/%3E%3C/svg%3E"); -} - -@media (min-width:48em) { - .promo-box a { - color: #00f; - } - - .promo-box>a:first-child:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M12 11.018L7 9.86v1.75a.5.5 0 01-.621.485l-4-1A.5.5 0 012 10.607V8.75L.757 8.44A1 1 0 010 7.47V4.607a1 1 0 01.848-.988L12 1.904v1.013L1 4.603V7.48l11 2.52v1.02zM3.003 8.933L3 10.475l3 .75V9.624l-2.997-.691zM11.5 6h2a.5.5 0 110 1h-2a.5.5 0 110-1zm-.095-2.103l1.932-.518a.5.5 0 11.258.966l-1.932.518a.5.5 0 11-.258-.966zm.258 4.232l1.932.518a.5.5 0 11-.258.966l-1.932-.518a.5.5 0 11.258-.966z'/%3E%3C/svg%3E"); - } -} - -.studybooks-discount { - display: block; - margin-bottom: .5rem; -} - -.studybooks-discount:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cg fill-rule='nonzero'%3E%3Cpath d='M3 8.988v.986l3.493 1.572c.246.11.767.11 1.014 0L11 9.974v-.986l-2.659 1.33c-.777.389-1.901.39-2.682 0L3 8.988zM2 7.37l4.106 2.053c.502.251 1.294.247 1.788 0L12 7.37v3.25l-4.083 1.838c-.508.228-1.328.228-1.834 0L2 10.62V7.37z'/%3E%3Cpath d='M2.078 4.934L7.01 7.642l5.027-2.645L7 2.232 2.078 4.934zm11.922 0v5.686h-1v-5L7 8.777 0 4.934l7-3.843 7 3.843z'/%3E%3C/g%3E%3C/svg%3E"); - margin-right: .5rem; - margin-left: 0; -} - -@media (min-width:30em) { - .studybooks-discount { - margin-bottom: .25rem; - } -} - -.consent-modal-ofc__description>span, -.consent-modal__description>span, -.product-rollup { - display: block; - margin-bottom: 1.5rem; -} - -.product-rollup__img { - position: relative; - width: 3em; - max-width: 3em; - height: 5em; - margin-right: .5rem; -} - -.product-rollup__img img { - flex-shrink: 0; - max-width: 100%; -} - -.product-soldout { - position: absolute; - width: 100%; - height: auto; - background-color: rgba(255, 255, 255, .6); -} - -.product-image { - position: relative; - display: block; - width: 100%; -} - -.product-image:after { - display: block; - padding-bottom: 100%; - content: ""; -} - -.product-image--3by4:after { - padding-bottom: 133.3333333333%; -} - -.product-image img, -.product-image__img { - position: absolute; - top: 0; - right: 0; - left: 0; - max-width: 100%; - max-height: 100%; - margin: auto; -} - -.product-image--tile .product-image__img, -.product-image--tile img { - bottom: 0; - padding-right: 12.5%; - padding-left: 12.5%; -} - -.product-image--mini { - max-width: 6.125em; - margin: auto; -} - -.product-image--tout { - max-width: 9.375em; - margin: auto; -} - -.product-image--thumb { - max-width: 10.875em; - margin: auto; -} - -.product-image--regular { - max-width: 13.625em; - margin: auto; -} - -.product-image--small { - max-width: 15.625em; - margin: auto; -} - -@media (max-width:47.9375em) { - - .product-image--larger .product-image__img, - .product-image--larger img { - padding-right: 0; - padding-left: 0; - } -} - -.product-image--larger_2_to_3 { - aspect-ratio: 2/3; -} - -.product-image--larger_2_to_3 .skeleton-image--with-placeholder .skeleton-image__img, -.product-image--larger_2_to_3 img { - width: 100%; - height: 100%; - padding-right: 0; - padding-left: 0; - -o-object-fit: contain; - object-fit: contain; -} - -.product-image--larger_2_to_3:after { - padding-bottom: 150%; -} - -.product-image--filled img { - bottom: 0; -} - -.product-image--list { - text-align: center; -} - -.product-image--list:after { - padding-bottom: 0; -} - -.product-image--list img { - position: static; - max-height: 15.25em; -} - -.product-image--placeholder { - width: 100%; - max-width: 100%; - height: 100%; - margin: 0 auto; - border-radius: 8px; - opacity: .7; -} - -.product-image--placeholder--default { - width: 124px; - height: 124px; - padding-bottom: 66%; - background-color: #e6e6e8; - opacity: .3; -} - -.product-image--tile .product-image--placeholder { - position: absolute; - top: 0; - right: 0; - left: 0; -} - -.product-image--placeholder.loaded { - border-radius: 0; - opacity: 1; -} - -.product-image__overlay { - position: absolute; - right: 0; - bottom: 0; - left: 0; - padding: .5rem; - color: #fff; - background-color: rgba(49, 49, 47, .8); -} - -.product-image__button { - position: absolute; - top: 0; - right: 0; - transform: translate(50%, -50%); -} - -.product-image--list .product-image__button { - right: 33%; -} - -.bundle-images { - display: flex; - margin: 0-1em .5rem; -} - -.bundle-images:after { - display: table; - clear: both; - content: ""; -} - -@media (min-width:48em) { - .bundle-images { - margin-right: -1.5em; - margin-left: -1.5em; - } -} - -.bundle-images__item { - position: relative; - float: left; - width: 33%; - padding: 0 1rem; - display: flex; - align-items: center; - justify-content: center; -} - -@media (min-width:48em) { - .bundle-images__item { - padding: 0 1.5rem; - } -} - -.bundle-images__item:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M7.5 8v3.51A.5.5 0 017 12a.492.492 0 01-.5-.49V8H2.99a.5.5 0 01-.49-.5c0-.276.215-.5.49-.5H6.5V3.49A.5.5 0 017 3c.276 0 .5.215.5.49V7h3.51a.5.5 0 01.49.5c0 .276-.215.5-.49.5H7.5z'/%3E%3C/svg%3E"); - position: absolute; - top: 50%; - right: -.75em; - margin-top: -1em; - font-size: 1.5rem; -} - -.bundle-images__item:last-child:before { - display: none; -} - -.bundle-images__image { - max-width: 100%; - max-height: 10em; -} - -.product-thumbs { - display: flex; - flex-wrap: wrap; - max-width: 12em; - max-height: 4em; - margin-bottom: .5rem; - overflow: hidden; - transition: max-height .5s; - transition-delay: -.2s; - transition-timing-function: cubic-bezier(0, 1, 0, 1); -} - -@media (min-width:48em) { - .product-thumbs { - max-width: 9em; - } -} - -@media (min-width:64em) { - .product-thumbs { - max-width: 12em; - } -} - -.product-thumbs--full { - max-width: initial; - max-height: initial; -} - -.product-thumbs.expand { - max-height: 9999px; - margin-bottom: 0; - transition-delay: -.1s; - transition-timing-function: cubic-bezier(1, 0, 1, 0); -} - -.product-thumbs__item { - position: relative; - width: 4em; - margin-bottom: .5rem; -} - -@media (min-width:48em) { - .product-thumbs__item { - width: 3em; - } -} - -@media (min-width:64em) { - .product-thumbs__item { - width: 4em; - } -} - -.product-thumbs__count { - position: absolute; - top: 0; - left: 0; - display: block; - width: 1.5em; - text-align: center; - background-color: #b3b3ba; - border-radius: 50%; -} - -.product-prices { - padding-bottom: .25rem; -} - -@media (min-width:48em) { - .product-prices { - padding-bottom: .5rem; - } -} - -.product-prices__currency { - white-space: nowrap; -} - -.product-prices__currency:before { - content: "€ "; -} - -.product-prices__bol-price { - display: inline-block; - padding-right: .25em; - color: #d30000; -} - -.product-prices__bol-promo-price { - display: inline-block; - padding: 0 .25rem; - font-weight: 600; - color: #fff; - background-color: #f91906; - border-radius: .25em; -} - -.product-prices__list-price { - position: relative; - z-index: 3; - color: #686876; -} - -.product-prices--deal .product-prices__list-price { - font-size: inherit; -} - -.product-prices--deal .product-prices__bol-price { - font-family: produkt, arial, helvetica, sans-serif; - font-size: 1.5em; - line-height: 1; -} - -.product-prices--deal .product-prices__cents { - font-size: .5714285714em; - vertical-align: text-top; -} - -.product-prices__airmiles { - display: inline-block; - width: 2rem; - height: 2rem; - padding-left: .25rem; - vertical-align: middle; -} - -.logo-select { - color: #03031a; -} - -.logo-select__link { - display: inline-block; - color: #03031a; -} - -.logo-select__link:hover { - text-decoration: none; -} - -.logo-select__link:hover>.select-text { - text-decoration: underline; -} - -.skeleton-image { - display: block; - min-height: 1px; - margin: auto; -} - -.skeleton-image__container { - min-height: 1px; -} - -.skeleton-image--with-placeholder .skeleton-image__container { - position: relative; - display: block; - overflow: hidden; - text-align: center; - isolation: isolate; -} - -.skeleton-image__img, -.skeleton-image__placeholder { - max-height: 100%; - transition: opacity 500ms cubic-bezier(.215, .61, .355, 1); - will-change: opacity; -} - -.skeleton-image__img { - opacity: 0; -} - -.skeleton-image--with-placeholder .skeleton-image__img { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 2; - width: auto; - max-width: 100%; - height: auto; - max-height: 100%; - margin: 0 auto; - mix-blend-mode: multiply; -} - -.skeleton-image__placeholder { - z-index: 1; - width: auto; - max-width: 100%; - height: auto; -} - -.skeleton-image[loaded] .skeleton-image__placeholder { - opacity: 0; -} - -.skeleton-image[loaded] .skeleton-image__img { - opacity: 1; -} - -.skeleton-image img:not([src]) { - visibility: hidden; -} - -.skeleton-image--contain { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: flex; - align-items: center; -} - -.skeleton-image--contain .skeleton-image__container { - width: 100%; - height: 100%; -} - -.skeleton-image--contain .skeleton-image__placeholder { - position: absolute; - z-index: 2; -} - -.skeleton-image--contain .skeleton-image__img, -.skeleton-image--contain .skeleton-image__placeholder { - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 0; - margin: auto; -} - -.no-js .skeleton-image__container { - display: none; -} - -.offcanvas-container { - position: fixed; - top: 0; - left: -16.25rem; - width: 16.25rem; - height: 100%; - overflow-x: hidden; - background-color: #fff; - transition: transform .2s ease; - transform: translate3d(0, 0, 0); - -webkit-overflow-scrolling: touch; - z-index: 300; -} - -@media (min-width:48em) { - .offcanvas-container { - left: -20rem; - width: 20rem; - } - - .offcanvas-container--medium { - position: static; - right: auto; - left: auto; - z-index: auto; - width: auto; - height: auto; - overflow: visible; - background-color: transparent; - transition: none; - transform: none; - } -} - -@media (min-width:64em) { - .offcanvas-container:not(.offcanvas-container--xlarge) { - position: static; - right: auto; - left: auto; - z-index: auto; - width: auto; - height: auto; - overflow: visible; - background-color: transparent; - transition: none; - transform: none; - } -} - -.offcanvas-container.slide-in { - transform: translate3d(100%, 0, 0); -} - -.offcanvas-container--right { - right: -16.25em; - left: auto; -} - -@media (min-width:48em) { - .offcanvas-container--right { - right: -20em; - } -} - -.offcanvas-container--right.slide-in { - transform: translate3d(-100%, 0, 0); -} - -@media (min-width:75em) { - .offcanvas-container--xlarge { - position: absolute; - top: 0; - left: 0; - z-index: 3; - width: 16.25em; - transform: translate3d(0, 0, 0); - } - - .offcanvas-container--xlarge.slide-in { - transform: translate3d(-110%, 0, 0); - } - - .offcanvas-container--xlarge .offcanvas-header { - display: none; - } - - .offcanvas-wrapper, - .offcanvas-wrapper__main { - position: relative; - background: #fff; - } - - .offcanvas-wrapper__main { - z-index: 4; - } - - .offcanvas-wrapper__main:before { - position: absolute; - top: 0; - bottom: 0; - left: -10px; - display: block; - width: 10px; - content: ""; - background: #fff; - } -} - -.offcanvas-header { - position: relative; - min-height: 3em; -} - -.offcanvas-header__title { - padding: .75em 1rem; - border-bottom: 1px solid #b3b3ba; -} - -.offcanvas-header__title> :last-child { - padding-bottom: 0; -} - -.offcanvas-header__close-btn { - position: absolute; - top: 0; - right: 0; - display: block; - width: 3em; - height: 3em; - line-height: 3; - color: #686876; - text-align: center; -} - -.offcanvas-header__close-btn:active, -.offcanvas-header__close-btn:hover, -.offcanvas-header__nav-btn:active, -.offcanvas-header__nav-btn:hover { - text-decoration: none; -} - -.offcanvas-header__nav-btn { - display: block; - padding-top: 1em; - padding-left: 1rem; -} - -.offcanvas-header__nav-btn~.profile-card { - display: none; -} - -@media (min-width:64em) { - .offcanvas-header { - display: none; - } -} - -@media (min-width:48em) { - .offcanvas-container--medium .offcanvas-header { - display: none; - } -} - -.offcanvas-body { - transition: transform .2s ease-in-out; - transform: translate3d(0, 0, 0); -} - -.offcanvas-body.sub-is-open { - transform: translate3d(-100%, 0, 0); -} - -.slide-in .offcanvas-content { - padding: 1rem; -} - -.offcanvas--open, -.offcanvas--open body { - height: 100%; - overflow: scroll; - -webkit-tap-highlight-color: transparent; -} - -.offcanvas--open body { - position: fixed; - width: 100%; -} - -.rule { - margin-bottom: 1rem; - color: #e6e6e8; - border: 0; - border-bottom-style: solid; - border-bottom-width: 2px; -} - -.rule-thin { - margin-bottom: 1.5rem; - color: #e6e6e8; - border-bottom-width: 1px; -} - -.rule-thin--in-between-products-list { - margin-right: -1rem; - margin-bottom: 0; - margin-left: -1rem; - color: #e6e6e8; - border-bottom-width: 1px; -} - -@media (min-width:48em) { - .rule-thin--in-between-products-list { - margin-right: 0; - margin-bottom: 0; - margin-left: 0; - color: #e6e6e8; - border-bottom-width: 1px; - } -} - -.rule-thin--in-between-products-list-banner { - margin: .5em -1em 0; - color: #e6e6e8; - border-bottom-width: 1px; -} - -@media (min-width:48em) { - .rule-thin--in-between-products-list-banner { - margin: .5em 0 0; - color: #e6e6e8; - border-bottom-width: 1px; - } -} - -.rule-thin--in-between-products-tile { - width: 100%; - margin-right: 0; - margin-bottom: 0; - margin-left: 0; - border-bottom-width: 1px; -} - -@media (min-width:48em) { - .rule-thin--in-between-products-tile { - display: none; - } -} - -.rule-thin--in-between-products-tile-banner { - width: 100%; - margin: .5em 0 0; - border-bottom-width: 1px; -} - -@media (min-width:48em) { - .rule-thin--in-between-products-tile-banner { - display: none; - } -} - -.rule--dotted { - border-bottom-style: dotted; -} - -.rule--dashed { - border-bottom-style: dashed; -} - -.rule--medium-visible { - display: none; -} - -@media (min-width:48em) { - .rule--medium-visible { - display: block; - margin-bottom: 1rem; - color: #e6e6e8; - border-bottom-width: 1px; - } -} - -.rule--full-m { - margin-right: -1.5rem; - margin-left: -1.5rem; -} - -.rule--ornament { - position: relative; -} - -.rule--ornament:after { - position: absolute; - top: 0; - right: 0; - left: 0; - line-height: 0; - text-align: center; - content: "§"; -} - -.rule--ornament[data-ornament]:after { - content: attr(data-ornament); -} - -.divide_top { - padding-top: 1rem; - border-top: 1px solid #e6e6e8; -} - -.divide_top.sub_divider { - border-top-style: dotted; -} - -.box .divide_bottom, -.box .divide_top { - margin-right: -1rem; - margin-left: -1rem; -} - -.divide_bottom, -.list-divider>fieldset, -.list-divider>li { - padding-bottom: 1rem; - margin-bottom: 1rem; - border-bottom: 1px solid #e6e6e8; -} - -.divide_bottom.sub_divider { - border-bottom-style: dotted; -} - -.list-divider>fieldset .last, -.list-divider>fieldset:last-child, -.list-divider>li .last, -.list-divider>li:last-child { - border-bottom: 0; -} - -.list-divider--bleed-m { - margin-right: -1.5em; - margin-left: -1.5em; - border-top: 1px solid #e6e6e8; -} - -.list-divider--bleed-m>fieldset, -.list-divider--bleed-m>li { - padding: .5em 1.5em; - margin-bottom: 0; -} - -@media (min-width:48em) { - .list-divider--bleed-m { - padding-bottom: 0; - margin-top: 1em; - } -} - -.divider-list>li { - padding-bottom: 1.5rem; - margin-bottom: 1.5rem; - border-bottom: 1px solid #e6e6e8; - padding-right: 1rem; - padding-left: 1rem; - margin-right: -1rem; - margin-left: -1rem; -} - -@media (min-width:48em) { - .divider-list>li { - padding-right: 0; - padding-left: 0; - margin-right: 0; - margin-left: 0; - } -} - -.divider-list--not-last>li:last-child { - padding-bottom: 0; - border-bottom: 0; -} - -.divider-list--bleed-m { - margin-right: -1.5em; - margin-left: -1.5em; - border-top: 1px solid #e6e6e8; -} - -.divider-list--bleed-m>li { - padding-right: 1.5em; - padding-left: 1.5em; -} - -.divider-list--bleed-m>li:last-child { - border-bottom: 1px solid #e6e6e8; -} - -.divider-list--selectable>li { - padding-left: 2.5em; -} - -@media (min-width:48em) { - .divider-list--selectable>li { - padding-left: 1.5em; - } -} - -.divider-list--selectable>.is--selected { - position: relative; -} - -.divider-list--selectable>.is--selected:before { - position: absolute; - top: calc(50% - 1.5em); - left: 1em; - display: block; - width: 1.5em; - height: 1.5em; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C112%2C0%29'%3E%3Cpath fill-rule='evenodd' d='M4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-size: 1.5em 1.5em; -} - -@media (min-width:48em) { - .divider-list--selectable>.is--selected:before { - left: 0; - } -} - -.divider-list-static>li { - padding-bottom: 1.5rem; - margin-bottom: 1.5rem; - border-bottom: 1px solid #e6e6e8; -} - -.divider-list-static--not-last>li:last-child { - padding-bottom: 0; - border-bottom: 0; - margin-bottom: 0; -} - -.divider-list-static--secondary>li { - border-bottom-style: dotted; -} - -.divider-list-static--s>li { - padding-bottom: 1rem; - margin-bottom: 1rem; - border-bottom: 1px solid #e6e6e8; -} - -.divider-list-static--s--not-last>li:last-child { - padding-bottom: 0; - border-bottom: 0; -} - -@media (min-width:30em) { - .small--divider-list-static--s>li { - padding-bottom: 1rem; - margin-bottom: 1rem; - border-bottom: 1px solid #e6e6e8; - } - - .small--divider-list-static--s--not-last>li:last-child { - padding-bottom: 0; - border-bottom: 0; - } -} - -.top-divider { - padding-top: 1.5rem; - border-top: 1px solid #e6e6e8; - padding-right: 1rem; - padding-left: 1rem; - margin-right: -1rem; - margin-left: -1rem; -} - -@media (min-width:48em) { - .top-divider { - padding-right: 0; - padding-left: 0; - margin-right: 0; - margin-left: 0; - } - - .top-divider--small { - padding-top: 0; - border-top: 0; - } -} - -.top-divider-static--s { - padding-top: .5rem; - border-top: 1px solid #e6e6e8; - padding-right: .5rem; - padding-left: .5rem; -} - -.vertical-divider--left { - border-left: 1px solid #b3b3ba; -} - -.vertical-divider--right { - border-right: 1px solid #b3b3ba; -} - -@media (min-width:48em) { - .divide-center-medium--is-visible { - position: relative; - z-index: 1; - text-align: center; - } - - .divide-center-medium--is-visible:before { - position: absolute; - top: 0; - bottom: 0; - z-index: -1; - width: 50%; - content: ""; - border-right: 1px solid #b3b3ba; - } - - .divide-center__content-medium--is-visible { - padding-left: 3rem; - } - - .divide-center__content-medium--is-visible> :last-child { - padding-bottom: 0; - margin-bottom: 0; - } -} - -@media (min-width:30em) { - .divider-centered { - position: relative; - text-align: center; - } - - .divider-centered:after, - .divider-centered:before { - position: absolute; - top: 50%; - z-index: 0; - display: inline-block; - width: 50%; - content: ""; - border-top: 1px solid #e6e6e8; - } - - .divider-centered:before { - left: 0; - } - - .divider-centered:after { - right: 0; - } - - .divider-centered>* { - position: relative; - z-index: 1; - } - - .divider-centered--space>* { - padding-right: 1rem; - padding-left: 1rem; - background-color: #fff; - } -} - -@media (min-width:48em) { - .divider-text-medium--is-visible { - padding-left: .7em; - margin-left: .7em; - border-left: 1px solid #e6e6e8; - } -} - -button, -html input[type=button], -input[type=reset], -input[type=submit] { - -webkit-appearance: button; - cursor: pointer; -} - -.search-box-wrapper, -.search-form { - flex: 1 1 auto; - min-height: 0; - min-width: 0; -} - -.search-box-wrapper:before { - position: absolute; - top: 8px; - z-index: 2; - padding-left: 9px; - color: #b3b3ba; - content: ""; -} - -@media (min-width:48em) { - .search-box-wrapper:before { - content: ""; - } -} - -.search-form { - padding-top: 0; - padding-right: 1rem; - padding-bottom: 1rem; - padding-left: .5em; -} - -@media (min-width:48em) { - .search-form { - padding: 0; - } -} - -.header-fixed .search-form { - padding: 0; -} - -.search-input, -.search-select select { - height: 35px; - -webkit-appearance: none; - appearance: none; -} - -.search-input { - width: 100%; - padding-top: .6666666667rem; - padding-right: .6666666667em; - padding-bottom: .6666666667rem; - padding-left: 2.5em; - margin: 0; - border-color: #b3b3ba; - border-style: solid; - border-width: 1px; - border-radius: .3333333333em; -} - -@media (min-width:48em) { - .search-input { - padding: .6666666667em; - border-width: 1px 0 1px 1px; - border-radius: .3333333333em 0 0 .3333333333em; - } -} - -.input-group { - display: flex; -} - -.search-select { - position: relative; - width: 10em; - height: 35px; - padding: 0; - margin: 0; - overflow: hidden; - background-color: #fff; - border-color: #b3b3ba; - border-style: solid; - border-width: 1px; -} - -@media (min-width:48em) { - .search-select { - border-width: 1px 0 1px 1px; - } -} - -.search-select select { - width: 160%; - padding: .6666666667em; - cursor: pointer; - background-color: #fff; - background-image: none; - border: 0; -} - -.search-select:after { - position: absolute; - top: 20%; - right: 1.125em; - width: 0; - height: 0; - color: #00f; - pointer-events: none; - content: ""; -} - -.search-select__placeholder { - display: inline-block; - padding-right: 2rem; - font-size: .75rem; - background-color: #fff; -} - -.search-btn { - height: 35px; - padding-top: 3px; - padding-right: 1.1666666667em; - padding-left: 1.1666666667em; - margin: 0; - overflow: hidden; - font-weight: 600; - color: #fff; - background-color: #00f; - border: 1px solid #00f; - border-radius: 0 .3333333333em .3333333333em 0; -} - -.search-btn:hover { - background-color: #33f; - border: 1px solid #33f; -} - -.search-btn.sb { - padding-right: .5em; - padding-left: .5em; - font-size: 1.125rem; - font-weight: 300; - border-radius: 0 .2222222222em .2222222222em 0; -} - -.search_suggestions_completer { - position: absolute; - top: 33px; - left: 0; - z-index: 16; - width: 18.125em; - padding-bottom: 0; - overflow: hidden; - white-space: normal; - background: #fff; - border: 1px solid #b3b3ba; - border-top: 0; -} - -.cartridge-finder .search_suggestions_completer { - top: 29px; -} - -.search_suggestions_completer .completer_description { - display: block; - font-size: 10px; - color: #686876; - text-align: right; -} - -.search_suggestions_completer li, -.search_suggestions_completer li.featured_suggestion a { - display: block; - padding: 4px 6px; - color: #03031a; - text-decoration: none; - cursor: pointer; -} - -.search_suggestions_completer li a, -.search_suggestions_completer li span { - font-size: .8125rem; -} - -.search_suggestions_completer li.featured_suggestion.selected, -.search_suggestions_completer li.selected { - background: #f0f6ff; -} - -.search_suggestions_completer li.divider_top { - border-top: 1px solid #b3b3ba; -} - -.search_suggestions_completer li.divider_bottom { - border-bottom: 1px solid #b3b3ba; -} - -.search_suggestions_completer li.removable_result, -.ui-input-checkbox label { - position: relative; -} - -.search_suggestions_completer li span.remove_suggestion { - position: absolute; - top: 0; - right: 0; - display: block; - width: 32px; - height: 32px; - padding-top: 3px; - font-size: 120%; - color: #686876; - text-align: center; - background-color: #fff; -} - -.search_suggestions_completer li.selected span.remove_suggestion { - color: #686876; - background-color: #f0f6ff; -} - -.search_suggestions_completer li.featured_suggestion, -.suggestions ul { - padding: 0; -} - -.search_suggestions_completer li.featured_suggestion a { - float: none; - padding: 2px 5px 5px; - margin: 0; -} - -.search_suggestions_completer li.featured_suggestion .suggestions_cat { - font-size: 11px; - color: #00f; -} - -.search_suggestions_completer li.featured_suggestion .imgwrap_mini { - float: left; - width: 32px; - height: 40px; - margin-right: 5px; - overflow: hidden; - text-align: center; - vertical-align: text-top; -} - -.search_suggestions_completer li.featured_suggestion .imgwrap_mini img { - max-width: 32px; - max-height: 40px; -} - -.search_suggestions_completer li.featured_suggestion .product_details_mini { - display: block; - height: auto; - min-height: 40px; - margin-left: 33px; - font-weight: 400; - color: #03031a; -} - -.search_suggestions_completer .category_name { - font-size: .6875rem; - color: #00f; -} - -.suggestions { - position: absolute; - min-width: 0; - max-height: 40%; - overflow: auto; - background-color: #fff; - border: 1px solid #b3b3ba; -} - -.suggestions li.selected { - background-color: #f0f6ff; -} - -.suggestions li a { - display: block; - padding: 3px 6px; - line-height: 24px; - color: #03031a; - text-decoration: none; - word-wrap: break-word; -} - -.suggestions.no_suggestions li { - padding: 3px 1px; - color: #f91906; -} - -.searchterm_highlight { - font-weight: 600; - background-color: #ffe7e6; -} - -.search_results .search_result_item { - border-bottom: 1px solid #f0f6ff; -} - -.search_results .search_result_item .result_title { - font-weight: 600; -} - -.search-microphone { - position: absolute; - top: 0; - right: 3rem; - display: flex; - align-items: center; - justify-content: center; - width: 2.5em; - height: 100%; - line-height: 3rem; - color: #0000a4; -} - -.search-microphone--fullscreen { - right: 0; - width: 3rem; -} - -.search-microphone.is-active { - color: #f91906; -} - -.message-bar { - padding: 1rem 0; - text-align: center; - background-color: #fff; - border-bottom: 1px solid #e6e6e8; -} - -.message-bar__text { - padding-bottom: 0; - text-align: left; -} - -.message-bar__text--cookie { - font-size: .625rem; -} - -.message-bar__text--emergency { - position: relative; - padding-left: 2.5rem; - font-size: .75rem; - color: #f91906; -} - -.message-bar__text--emergency:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28249%2C25%2C6%29'%3E%3Cpath fill-rule='evenodd' d='M7 1l7 12H0L7 1zm0 2l-5.25 9h10.5L7 3zm-.494 3.039a.508.508 0 01.507-.513H6.99c.282 0 .514.228.516.513l.024 2.448A.508.508 0 017.023 9h.023a.517.517 0 01-.516-.513L6.506 6.04zM7.003 11a.5.5 0 110-1 .5.5 0 010 1z'/%3E%3C/svg%3E"); - position: absolute; - left: 0; - margin-left: 0; - font-size: .67em; -} - -.message-bar__remove { - margin-top: 1rem; -} - -@media (min-width:48em) { - .message-bar__remove { - margin-top: 0; - text-align: right; - } -} - -.srch-container { - padding-top: 4.5em; -} - -.srch-form { - display: flex; - flex-wrap: nowrap; - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1; - padding: 1em 0; - background-color: #fff; - border-bottom: 1px solid #e6e6e8; -} - -.srch-form__return { - padding-left: 1rem; - margin-right: .5rem; - line-height: 1.75; -} - -.srch-form__clear { - padding-right: 1rem; - line-height: 2.5; - text-align: right; -} - -.srch-form__clear .sb { - color: #b3b3ba; -} - -.srch-form__clear, -.srch-form__return { - flex: 0 0 2.5em; - min-height: 0; - min-width: 0; - height: 2.5em; -} - -.srch-form__clear:hover, -.srch-form__return:hover, -.suggest-group__item>a:hover { - text-decoration: none; -} - -.suggest-group { - padding: 0; - margin: 0; -} - -.suggest-group+.suggest-group { - border-top: 1px solid #e6e6e8; -} - -.suggest-group__item { - display: flex; - flex-wrap: nowrap; - padding: 0 1rem; - border-bottom: 1px solid #e6e6e8; -} - -.suggest-group__item:last-child { - margin-bottom: 0; -} - -.suggest-group__item>a { - padding: 1rem 0; -} - -.suggest-group__item>a.suggest-group__add { - padding: .75rem 0; -} - -.suggest-group__item>a.suggest-group__history { - padding: 1rem 0; - color: #b3b3ba; -} - -.suggest-group__text { - display: block; - width: 100%; - color: #03031a; -} - -.suggest-group__icon { - pointer-events: none; -} - -.suggest-group__add, -.suggest-group__icon { - flex: 0 0 2rem; - min-height: 0; - min-width: 0; - padding: .75rem 0; - margin-right: -1rem; - margin-left: .5rem; - color: #b3b3ba; - text-align: center; -} - -.suggest-group__add .sb, -.suggest-group__history .sb { - font-size: 1.5em; -} - -.suggest-group__add .sb-add:before, -.suggest-group__history .sb-cross:before { - display: inline-block; - width: 1.5rem; - height: 1.5rem; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M11.812 11.106a.496.496 0 01-.004.703.502.502 0 01-.703.004L4 4.708v3.214c0 .276-.232.5-.5.5a.495.495 0 01-.5-.5V3.906c0-.017 0-.034.003-.05l.001-.356a.508.508 0 01.502-.5h4.416c.276 0 .5.232.5.5 0 .276-.233.5-.5.5H4.705l7.106 7.106z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: left center; - background-size: 1.5rem 1.5rem; -} - -.suggest-group__history .sb-cross:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M7.033 6.293L8.8 4.528a.507.507 0 01.71-.003.507.507 0 01-.003.71L7.74 7l1.766 1.765c.196.197.192.52.002.71a.507.507 0 01-.71-.003L7.034 7.707 5.268 9.472a.507.507 0 01-.71.003.507.507 0 01.003-.71L6.326 7 4.561 5.235a.507.507 0 01-.003-.71.507.507 0 01.71.003l1.765 1.765zM7 14A7 7 0 117 0a7 7 0 010 14zm-.033-1a6 6 0 100-12 6 6 0 000 12z'/%3E%3C/svg%3E"); -} - -.suggest-group__img { - flex: 0 0 3.5em; - min-height: 0; - min-width: 0; - display: flex; - align-items: center; - justify-content: center; - width: 3.5em; - height: 3.5em; - margin: .5rem 1rem .5rem 0; -} - -.suggest-group__img img { - max-width: 100%; - max-height: 100%; -} - -.suggest-group__in-category { - display: block; - color: #b3b3ba; -} - -.suggest-group__clear { - padding: 1rem; - text-align: right; -} - -.filmstrip { - display: flex; - padding: 0; - margin: 0 1rem 0 0; - overflow-x: visible; - transform: translateX(0); -} - -.filmstrip:after { - display: table; - clear: both; - flex-shrink: 0; - width: .5rem; - height: 1rem; - content: ""; - scroll-snap-align: start; -} - -.no-touch .filmstrip { - transition: transform 1s ease; - will-change: transform; -} - -.filmstrip-container { - position: relative; - display: flex; - flex-direction: column; - flex-grow: 1; - overflow: hidden; - margin-right: -1rem; - margin-left: -1rem; -} - -.filmstrip-container .region__footer, -.filmstrip-container .region__header { - padding-right: 1rem; - padding-left: 1rem; -} - -@media (min-width:48em) { - .filmstrip-container { - margin-right: 0; - margin-left: 0; - } - - .filmstrip-container.region { - margin-left: 0; - } - - .filmstrip-container .region__footer, - .filmstrip-container .region__header { - padding-right: 0; - padding-left: 0; - } - - .filmstrip-container--cards-between-buttons { - padding: 0 3em; - } - - .touch_supported .filmstrip-container--cards-between-buttons, - .touch_supported .filmstrip-container--cards-half-between-buttons { - padding: 0; - } - - .filmstrip-container--cards-half-between-buttons { - padding: 0 2em; - } -} - -.filmstrip-container--compact { - max-width: 45rem; - margin: 0 auto; -} - -.filmstrip-viewport { - flex-grow: 1; - margin: 0 .5rem; - overflow: hidden; -} - -@media (min-width:48em) { - .filmstrip-viewport { - margin: 0-.5rem; - } -} - -.touch_supported .filmstrip-viewport { - padding-bottom: .1rem; - overflow-x: scroll; - overflow-y: auto; - transform: translateZ(0); - -webkit-overflow-scrolling: touch; - -ms-scroll-chaining: chained; - scroll-snap-type: x mandatory; - transform-style: preserve-3d; -} - -.touch_supported .filmstrip-viewport::-webkit-scrollbar { - display: none; - height: 0; -} - -.filmstrip-container[no-snap] .filmstrip-viewport { - scroll-snap-type: none; -} - -.no-touch .filmstrip-viewport { - overflow: hidden; -} - -.filmstrip--s>.filmstrip__card, -.filmstrip--s>.filmstrip__flex { - padding-left: 1rem; -} - -.filmstrip__card, -.filmstrip__flex { - padding-left: .5rem; - list-style-type: none; - scroll-snap-align: start; -} - -@media (max-width:47.9375em) { - - .filmstrip__card__snap-center, - .filmstrip__flex__snap-center { - scroll-snap-align: center; - } -} - -@media (min-width:48em) { - - .filmstrip__card, - .filmstrip__flex { - height: auto; - } -} - -.filmstrip__card { - flex: none; -} - -.filmstrip__card--brmg { - flex-basis: 25%; - min-width: 15rem; -} - -.filmstrip__card--contain { - max-width: 15rem; - height: auto; - min-height: 100%; -} - -@media (min-width:48em) { - .filmstrip__card--contain { - max-width: none; - } -} - -.filmstrip__card .filmstrip__card-content { - width: 7.5em; -} - -.filmstrip__card .product-seller { - height: 3.5em; -} - -.filmstrip__card--single-view { - width: 90%; -} - -.filmstrip__card--unique-view { - width: 100%; -} - -@media (min-width:48em) { - .filmstrip__card--unique-view { - padding-right: 0; - } -} - -.filmstrip__card__brand-link { - position: relative; - display: flex; - align-items: center; - justify-content: center; - width: 7.5em; - height: 4.6875em; -} - -.filmstrip__card__brand-link__img { - max-width: 100%; - height: auto; - max-height: 3.75em; - vertical-align: middle; -} - -.filmstrip__card__trending-item { - width: 12.5em; -} - -.filmstrip__flex { - flex: 1 0 9.5rem; - min-height: 0; - min-width: 0; - flex-basis: auto; - flex-grow: 0; -} - -.filmstrip__blockquote { - width: 100%; -} - -.filmstrip-controls { - position: absolute; - top: 50%; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 2.5em; - height: 2.5em; - line-height: 1.25; - text-align: center; - background-color: #fff; - border-color: #b3b3ba; - border-style: solid; - transform: translateY(-50%); -} - -.filmstrip-controls:hover { - text-decoration: none; -} - -.filmstrip-controls .sb { - font-size: 2em; -} - -.filmstrip-controls--inactive { - display: flex; - pointer-events: none; - opacity: .5; -} - -.filmstrip-controls--active { - display: flex; - pointer-events: auto; - opacity: 1; -} - -.filmstrip-controls--next { - right: 0; - border-width: 0 0 1px 1px; - border-radius: .25em 0 0 .25em; -} - -.filmstrip-controls--prev { - left: 0; - border-width: 0 1px 1px 0; - border-radius: 0 .25em .25em 0; -} - -.filmstrip-controls--floating { - background-color: transparent; - border: 0; -} - -.filmstrip-controls-fab { - position: absolute; - top: 50%; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - background-color: #fff; - border-color: #e6e6e8; - transform: translateY(-50%); -} - -.filmstrip-controls-fab:hover { - text-decoration: none; -} - -.filmstrip-controls-fab .sb { - font-size: 2em; -} - -.filmstrip-controls-fab--inactive { - display: flex; - pointer-events: none; - opacity: .5; -} - -.filmstrip-controls-fab--active { - display: flex; - pointer-events: auto; - opacity: 1; -} - -.filmstrip-controls-fab--next { - right: 0; -} - -.filmstrip-controls-fab--prev { - left: 0; -} - -.filmstrip-controls-fab--floating { - background-color: transparent; - border: 0; -} - -.region .filmstrip-viewport { - margin: 0; -} - -@media (min-width:48em) { - .region .filmstrip-viewport { - margin: 0-1rem; - } -} - -.region .filmstrip:after { - width: 1rem; -} - -.filmstrip-indicator { - display: inline-block; - padding-left: 0; -} - -.filmstrip-indicator__number { - display: inline-block; - width: 8px; - height: 8px; - margin-right: .5rem; - cursor: pointer; - border: 1px solid #b3b3ba; - border-radius: 100%; -} - -.filmstrip-indicator__number.is-active, -.filmstrip-indicator__number:active, -.filmstrip-indicator__number:hover { - width: 10px; - height: 10px; - background: #00f; - border: 0; -} - -.translate-bar { - padding: 1rem 0; - color: #03031a; - text-align: center; - background-color: #fff; - border-bottom: 1px solid #e6e6e8; -} - -.translate-bar__title { - padding: 0; - font-size: .625rem; -} - -.translate-bar__text { - padding: 0; - text-align: left; -} - -.translate-bar__image { - max-width: 100px; - vertical-align: bottom; -} - -.translate-bar__image--small { - display: block; - max-width: 100px; - margin: 0 auto; -} - -.translate-bar__remove { - margin-top: 1rem; -} - -@media (min-width:48em) { - .translate-bar__remove { - margin-top: 0; - text-align: right; - } -} - -.translate-bar__tooltiptext { - display: inline-block; - padding-right: 1.5rem; - border-right: 1px solid #b3b3ba; -} - -.translate-bar__back { - display: inline-block; -} - -.info_popup { - display: none; -} - -.promo-price { - display: inline-flex; - align-items: center; - align-self: center; - margin-right: -6px; - font-family: produkt, arial, helvetica, sans-serif; - font-size: 1.625rem; - font-weight: 700; - line-height: initial; - color: #f91906; -} - -.promo-price--select { - color: #01ac3a; -} - -.price-block--large .promo-price, -.promo-price--large { - margin-right: -10px; - font-size: 2rem; -} - -.price-block__prefix~.price-block--large .promo-price, -.price-block__prefix~.promo-price--large { - margin-top: 0; -} - -.promo-price__fraction { - position: relative; - top: -4px; - left: 0; - font-size: .9375rem; - line-height: inherit; -} - -.promo-price__fraction:before { - position: relative; - top: 11px; - display: block; - content: ","; -} - -.price-block--large .promo-price__fraction, -.promo-price--large .promo-price__fraction { - top: -5px; - font-size: 1.25rem; -} - -.price-block--large .promo-price__fraction:before, -.promo-price--large .promo-price__fraction:before { - top: 17px; - font-size: 2rem; -} - -.promo-price__fraction--dash, -.promo-price__fraction:before { - font-size: 1.625rem; - line-height: 0; -} - -.promo-price__fraction--dash:before { - top: 2px; -} - -.price-block--large .promo-price__fraction--dash, -.promo-price--large .promo-price__fraction--dash { - font-size: 2rem; -} - -.promo-text { - margin-right: 5px; - font-weight: 600; - line-height: 1.2; - color: #f91906; - text-align: right; -} - -.price-block--large .promo-text, -.promo-text { - font-size: .75rem; -} - -@media (min-width:30em) { - .price-block--large .promo-text { - font-size: .875rem; - } -} - -@media (min-width:64em) { - .price-block--large .promo-text { - font-size: 1.125rem; - color: #f91906; - } -} - -.price-block { - position: relative; - display: flex; - flex-wrap: wrap; - justify-content: space-between; - max-width: 13.75rem; - margin-bottom: .5rem; -} - -.price-block--large { - max-width: 34.8125rem; -} - -.price-block__price, -.price-block__promo { - display: flex; - width: calc(50% - 1rem); - height: auto; -} - -@media (min-width:48em) { - - .price-block__price, - .price-block__promo { - width: calc(50% - .5rem); - } -} - -.price-block--large .price-block__price, -.price-block--large .price-block__promo { - height: 4rem; -} - -.price-block__promo { - z-index: 0; - box-sizing: content-box; - align-self: center; - justify-content: flex-end; - min-height: 2.5rem; -} - -.price-block__promo .info--toggle { - box-sizing: border-box; - display: flex; - align-items: center; - height: 100%; - color: #f91906; - background-color: #fff; - border-left: 1px solid #e6e6e8; - border-radius: 0 4px 4px 0; -} - -.price-block__promo .info--toggle.is--discount { - border: 1px solid #ddd; - border-radius: 0 4px 4px 0; -} - -.price-block__highlight, -.price-block__highlight:after { - border-top: 1px solid #e6e6e8; - border-bottom: 1px solid #e6e6e8; -} - -.price-block__highlight { - position: relative; - z-index: 0; - display: inline-flex; - flex-direction: row; - align-items: self-start; - min-height: 2.5em; - color: #f91906; - border-right: 1px solid #e6e6e8; - border-radius: 0 4px 4px 0; -} - -.price-block__highlight:hover { - text-decoration: none; -} - -.price-block__highlight:after { - position: absolute; - top: 0; - bottom: 0; - z-index: -1; - width: 1.5rem; - height: 100%; - content: ""; - background-color: inherit; - border-left: 1px solid #e6e6e8; - border-radius: 4px 0 0 4px; - transform: skewX(-15deg); -} - -.price-block__highlight--toggle { - cursor: pointer; -} - -.consent-modal-ofc__info>span, -.consent-modal-ofc__toggle-group>span, -.price-block__highlight--prefix { - display: block; -} - -.price-block__highlight--prefix.is--discount, -.price-block__highlight--prefix.is--price-off-discount { - display: inline-flex; -} - -.price-block__highlight--prefix .promo-price { - align-self: flex-end; - padding: 0; - margin: 0; - line-height: 1; -} - -.price-block__highlight.expand-promo-text .svg-inline--bi { - transition: transform 200ms ease; - transform: rotate(180deg); -} - -.price-block__highlight.collapse-promo-text .svg-inline--bi { - transition: transform 200ms ease; - transform: rotate(360deg); -} - -.price-block__highlight.is--discount, -.price-block__highlight.is--price-off-discount { - color: #fff; - background-color: #f91906; - border: 0; -} - -.price-block__highlight.is--discount .promo-price, -.price-block__highlight.is--discount .promo-text, -.price-block__highlight.is--price-off-discount .promo-price, -.price-block__highlight.is--price-off-discount .promo-text { - color: #fff; -} - -.price-block__highlight .promo-text, -.price-block__highlight .sb { - align-self: center; -} - -.price-block__highlight.is--discount { - padding-right: 0; - border-radius: 0 5px 5px 0; -} - -.price-block--large .price-block__highlight.is--discount { - justify-content: flex-end; - padding-right: 0; -} - -.price-block__highlight.is--discount:after { - top: 0; - left: -11px; - border: 0; - border-radius: 4px 0 0 4px; -} - -.price-block__highlight.is--price-off-discount { - width: 6em; - padding-left: .5em; - border-radius: 4px 0 0 4px; -} - -.price-block--large .price-block__highlight.is--price-off-discount { - width: 8.6875rem; -} - -.price-block__highlight.is--price-off-discount:after { - top: 0; - right: -11px; - border-radius: 0 4px 4px 0; -} - -.price-block__price .price-block__highlight, -.price-block__price .price-block__highlight:after { - border: 0; -} - -.price-block__promo .price-block__highlight:after { - top: -1px; - left: -11px; -} - -.price-block__promo .price-block__highlight.is--discount:after { - top: 0; -} - -.price-block__unit { - font-weight: 600; - color: #f91906; -} - -.price-block__info { - width: 100%; - max-height: 0; - overflow: hidden; - background-color: #f0f6ff; - border-radius: 0 0 .25em .25em; - transition: max-height .5s; - transition-delay: -.2s; - transition-timing-function: cubic-bezier(0, 1, 0, 1); -} - -.price-block__info.expand-promo-text { - max-height: 9999px; - transition-delay: -.1s; - transition-timing-function: cubic-bezier(1, 0, 1, 0); -} - -.price-block__info .info-inner { - padding: .5rem .75rem; -} - -.price-block__prefix { - display: block; - color: #d30000; -} - -.is--discount .price-block__prefix, -.is--price-off-discount .price-block__prefix { - position: absolute; - top: 0; - left: .5em; -} - -.price-block--select { - align-items: center; - justify-content: flex-start; - max-width: none; - margin-bottom: 0; -} - -.price-block--select .price-block__price { - width: auto; -} - -.price-block--select .price-block__highlight { - width: auto; - padding-left: .5em; - background-color: #00a127; - border: 0; - border-radius: 0; -} - -.price-block--select .price-block__highlight:after { - top: 0; - right: -.6875em; - border-radius: 0; -} - -.price-block--select .promo-price, -.price-block--select .promo-text { - color: #fff; -} - -.price-block--select .promo-price { - margin-top: 0; -} - -.product-item--column .price-block--select, -.product-item--row .price-block--select { - font-size: .75rem; -} - -@media (max-width:29.9375em) { - .tile-view .promo-text { - text-align: left; - } - - .tile-view .price-block__price { - width: 100%; - } - - .tile-view .price-block__highlight--prefix { - min-height: 3em; - } - - .tile-view .price-block__highlight:after { - transform: skewX(0deg); - } - - .tile-view .price-block__promo { - justify-content: flex-start; - width: auto; - padding: .75em 0 0; - } - - .tile-view .is--discount { - min-height: 2.5em; - padding-left: .35em; - margin-left: 0; - border-radius: 4px 0 0 4px; - } - - .tile-view .is--discount:after { - right: -.6em; - left: initial; - border-radius: 0 4px 4px 0; - } -} - -.c-switch.is-loading .c-switch__slider:after, -.ui-btn.is-loading:after { - width: 3em; - height: 3em; - margin: 1.5rem; - color: #00f; - border-radius: 50%; - transform: translateZ(0); - animation: load6 1.5s infinite ease, spin 1.5s infinite ease; -} - -.ui-btn.is-loading:after { - font-size: .1875rem; - position: absolute; - top: 50%; - left: 50%; - margin: -1.5em; -} - -@media (max-width:29.9375em) { - .u-hide\@screen-small-only { - display: none; - } -} - -@media (max-width:29.9375em) { - .u-show-inline\@screen-small-only { - display: inline; - } -} - -@media (max-width:29.9375em) { - .u-show-inline-block\@screen-small-only { - display: inline-block; - } -} - -@media (max-width:29.9375em) { - .u-show-block\@screen-small-only { - display: block; - } -} - -@media (max-width:29.9375em) { - .u-show-flex\@screen-small-only { - display: flex; - } -} - -@media (max-width:29.9375em) { - .u-show-table\@screen-small-only { - display: table; - } -} - -@media (max-width:29.9375em) { - .u-show-table-row\@screen-small-only { - display: table-row; - } -} - -@media (max-width:29.9375em) { - .u-show-table-cell\@screen-small-only { - display: table-cell; - } -} - -@media (min-width:30em) { - .u-hide\@screen-medium-up { - display: none; - } -} - -@media (min-width:30em) { - .u-show-inline\@screen-medium-up { - display: inline; - } -} - -@media (min-width:30em) { - .u-show-inline-block\@screen-medium-up { - display: inline-block; - } -} - -@media (min-width:30em) { - .u-show-block\@screen-medium-up { - display: block; - } -} - -@media (min-width:30em) { - .u-show-flex\@screen-medium-up { - display: flex; - } -} - -@media (min-width:30em) { - .u-show-table\@screen-medium-up { - display: table; - } -} - -@media (min-width:30em) { - .u-show-table-row\@screen-medium-up { - display: table-row; - } -} - -@media (min-width:30em) { - .u-show-table-cell\@screen-medium-up { - display: table-cell; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-hide\@screen-medium-only { - display: none; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-inline\@screen-medium-only { - display: inline; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-inline-block\@screen-medium-only { - display: inline-block; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-block\@screen-medium-only { - display: block; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-flex\@screen-medium-only { - display: flex; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table\@screen-medium-only { - display: table; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table-row\@screen-medium-only { - display: table-row; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table-cell\@screen-medium-only { - display: table-cell; - } -} - -@media (min-width:48em) { - .u-hide\@screen-large-up { - display: none; - } -} - -@media (min-width:48em) { - .u-show-inline\@screen-large-up { - display: inline; - } -} - -@media (min-width:48em) { - .u-show-inline-block\@screen-large-up { - display: inline-block; - } -} - -@media (min-width:48em) { - .u-show-block\@screen-large-up { - display: block; - } -} - -@media (min-width:48em) { - .u-show-flex\@screen-large-up { - display: flex; - } -} - -@media (min-width:48em) { - .u-show-table\@screen-large-up { - display: table; - } -} - -@media (min-width:48em) { - .u-show-table-row\@screen-large-up { - display: table-row; - } -} - -@media (min-width:48em) { - .u-show-table-cell\@screen-large-up { - display: table-cell; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-hide\@screen-large-only { - display: none; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-inline\@screen-large-only { - display: inline; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-inline-block\@screen-large-only { - display: inline-block; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-block\@screen-large-only { - display: block; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-flex\@screen-large-only { - display: flex; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table\@screen-large-only { - display: table; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table-row\@screen-large-only { - display: table-row; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table-cell\@screen-large-only { - display: table-cell; - } -} - -@media (min-width:64em) { - .u-hide\@screen-xl-up { - display: none; - } -} - -@media (min-width:64em) { - .u-show-inline\@screen-xl-up { - display: inline; - } -} - -@media (min-width:64em) { - .u-show-inline-block\@screen-xl-up { - display: inline-block; - } -} - -@media (min-width:64em) { - .u-show-block\@screen-xl-up { - display: block; - } -} - -@media (min-width:64em) { - .u-show-flex\@screen-xl-up { - display: flex; - } -} - -@media (min-width:64em) { - .u-show-table\@screen-xl-up { - display: table; - } -} - -@media (min-width:64em) { - .u-show-table-row\@screen-xl-up { - display: table-row; - } -} - -@media (min-width:64em) { - .u-show-table-cell\@screen-xl-up { - display: table-cell; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-hide\@screen-xl-only { - display: none; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-inline\@screen-xl-only { - display: inline; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-inline-block\@screen-xl-only { - display: inline-block; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-block\@screen-xl-only { - display: block; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-flex\@screen-xl-only { - display: flex; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table\@screen-xl-only { - display: table; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table-row\@screen-xl-only { - display: table-row; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table-cell\@screen-xl-only { - display: table-cell; - } -} - -@media (min-width:75em) { - .u-hide\@screen-xxl-up { - display: none; - } -} - -@media (min-width:75em) { - .u-show-inline\@screen-xxl-up { - display: inline; - } -} - -@media (min-width:75em) { - .u-show-inline-block\@screen-xxl-up { - display: inline-block; - } -} - -@media (min-width:75em) { - .u-show-block\@screen-xxl-up { - display: block; - } -} - -@media (min-width:75em) { - .u-show-flex\@screen-xxl-up { - display: flex; - } -} - -@media (min-width:75em) { - .u-show-table\@screen-xxl-up { - display: table; - } -} - -@media (min-width:75em) { - .u-show-table-row\@screen-xxl-up { - display: table-row; - } -} - -@media (min-width:75em) { - .u-show-table-cell\@screen-xxl-up { - display: table-cell; - } -} - -@media (max-width:29.9375em) { - .srt\@screen-small-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - white-space: nowrap; - border: 0; - } -} - -.ui-input-checkbox__label { - display: flex; - align-items: center; - cursor: pointer; -} - -.ui-input-checkbox+.ui-input-checkbox { - margin-top: 1rem; -} - -.ui-input-checkbox input[type=checkbox]:checked+.ui-input-checkbox__label .ui-input-checkbox__control .ui-input__icon--check { - display: initial; -} - -.ui-input-checkbox input[type=checkbox]:disabled+.ui-input-checkbox__label { - cursor: default; -} - -.ui-input-checkbox input[type=checkbox]:disabled+.ui-input-checkbox__label .ui-input-checkbox__control { - border-color: #e6e6e8; -} - -.ui-input-checkbox input[type=checkbox]:disabled+.ui-input-checkbox__label span { - color: #686876; -} - -.ui-input-checkbox input[type=checkbox]:checked:disabled+.ui-input-checkbox__label .ui-input-checkbox__control { - background-color: #e6e6e8; - border-color: #e6e6e8; -} - -.ui-input-checkbox input[type=checkbox]:checked:disabled+.ui-input-checkbox__label .ui-input-checkbox__control .ui-input__icon--check { - color: #686876; -} - -.ui-input-checkbox input[type=checkbox]:focus:focus-visible+.ui-input-checkbox__label { - position: relative; -} - -.ui-input-checkbox input[type=checkbox]:focus:focus-visible+.ui-input-checkbox__label .ui-input-checkbox__control { - border-color: #00f; - box-shadow: inset 0 0 0 1px #00f; - outline: 2px solid #33f; - outline-offset: 2px; -} - -.ui-input-checkbox input[type=checkbox]:focus:not(:focus-visible)+.ui-input-checkbox__label .ui-input-checkbox__control { - outline: 0; -} - -.ui-input-checkbox input[type=checkbox]:indeterminate+.ui-input-checkbox__label .ui-input-checkbox__control::before { - position: absolute; - top: 50%; - left: 20%; - display: block; - width: 60%; - height: 2px; - content: ""; - background-color: #686876; - transform: translateY(-1px); -} - -.ui-input-checkbox input[type=checkbox]:indeterminate:focus+.ui-input-checkbox__label .ui-input-checkbox__control::before, -.ui-input-checkbox input[type=checkbox]:indeterminate:hover+.ui-input-checkbox__label .ui-input-checkbox__control::before { - background-color: #00f; -} - -.ui-input-checkbox:hover input[type=checkbox]:not([disabled])+.ui-input-checkbox__label .ui-input-checkbox__control { - border-color: #3c3eff; -} - -.ui-input-checkbox--small .ui-input-checkbox__control, -.ui-input-checkbox--small input[type=checkbox] { - width: 1.5rem; - height: 1.5rem; -} - -.ui-input-checkbox__control { - font-family: inherit; - line-height: 1.25rem; - background-color: #fff; - border-color: #81818c; - border-style: solid; - -webkit-appearance: none; - appearance: none; - border-radius: .25rem; - position: relative; - flex: none; - width: 2rem; - height: 2rem; - padding: .5rem; - margin-right: .5rem; - border-width: 1px; -} - -.ui-input-checkbox--error .ui-input-checkbox__control { - border-color: #f91906; -} - -.ui-input-checkbox__message { - font-size: .8rem; -} - -.ui-input-checkbox--error .ui-input-checkbox__message { - color: #f91906; -} - -.ui-input-checkbox .ui-input__icon--check { - position: absolute; - top: 50%; - left: 47%; - display: none; - width: 1.5rem; - height: 1.5rem; - color: #fff; - transform: translate(-50%, -50%); -} - -.ui-input-checkbox__group-label { - margin-bottom: .5rem; - font-size: .8rem; - font-weight: 600; - color: #686876; -} - -.ui-input-checkbox--error .ui-input-checkbox__group-label { - color: #f91906; -} - -.tile-view { - margin-bottom: 2rem; -} - -@media (max-width:47.9375em) { - .tile-view { - margin-right: -1rem; - margin-left: -1rem; - } - - .tile-view.flex-grid--xxs .product-item--column, - .tile-view.fluid-grid--xxs .product-item--column { - padding-right: .125rem; - padding-left: .125rem; - } - - .tile-view.flex-grid--xs .product-item--column, - .tile-view.fluid-grid--xs .product-item--column { - padding-right: .25rem; - padding-left: .25rem; - } - - .tile-view.flex-grid--s .product-item--column, - .tile-view.fluid-grid--s .product-item--column { - padding-right: .375rem; - padding-left: .375rem; - } - - .tile-view.flex-grid--m .product-item--column, - .tile-view.fluid-grid--m .product-item--column { - padding-right: .5rem; - padding-left: .5rem; - } - - .tile-view.flex-grid--l .product-item--column, - .tile-view.fluid-grid--l .product-item--column { - padding-right: .75rem; - padding-left: .75rem; - } - - .tile-view.flex-grid--xl .product-item--column, - .tile-view.fluid-grid--xl .product-item--column { - padding-right: 1rem; - padding-left: 1rem; - } - - .tile-view.flex-grid--xxl .product-item--column, - .tile-view.fluid-grid--xxl .product-item--column { - padding-right: 1.5rem; - padding-left: 1.5rem; - } - - .tile-view.flex-grid--xxxl .product-item--column, - .tile-view.fluid-grid--xxxl .product-item--column { - padding-right: 3rem; - padding-left: 3rem; - } -} - -@media (min-width:48em) { - .tile-view { - margin-bottom: 0; - } -} - -.tile-view .product-item--container { - flex: 0 1 100%; - max-width: 100%; - padding: 2rem 1rem; - border-bottom: 1px solid #e6e6e8; -} - -@media (min-width:48em) { - .tile-view .product-item--container { - padding: 2rem 0; - margin: 0 0 2rem 2rem; - border-top: 1px solid #e6e6e8; - } -} - -@media (max-width:47.9375em) { - .tile-view .product-item--container~.product-item--column:nth-child(even) { - border-right: 1px solid #e6e6e8; - } - - .tile-view .product-item--container~.product-item--column:nth-child(odd) { - border-right: 0; - } -} - -.tile-view .product-item--column { - padding-top: 2rem; - padding-bottom: 2rem; - margin-bottom: 0; - border-bottom: 1px solid #e6e6e8; -} - -.tile-view .product-item--column:nth-of-type(odd) { - border-right: 1px solid #e6e6e8; -} - -@media (min-width:48em) { - .tile-view .product-item--column:nth-of-type(odd) { - border-right: 0; - } -} - -.tile-view .product-item--column:nth-of-type(-1n + 2) { - border-top: 1px solid #e6e6e8; -} - -@media (min-width:48em) { - .tile-view .product-item--column:nth-of-type(-1n + 2) { - border-top: 0; - } - - .tile-view .product-item--column { - padding-top: 0; - border: 0; - } - - .tile-view .product-item--column:after { - display: block; - margin-top: 2rem; - content: ""; - } -} - -@media (max-width:29.9375em) { - .tile-view .product-item--column .awareness-label:not(:last-child) { - display: none; - } -} - -.tile-view .product-item--column.product-item--column-no-border { - padding-right: .75rem; - padding-left: .75rem; - border: 0; -} - -@media (min-width:48em) { - .tile-view .product-item--column.product-item--column-no-border { - padding-right: 0; - padding-left: 1.5rem; - } -} - -.tile-view .product-item__options { - height: 7.25em; - margin-bottom: -1.5rem; -} - -.tile-view .product-item__options .form-select { - display: flex; -} - -.consent-modal-ofc__consent-toggle-container>label, -.tile-view .product-item__options .h-flex .btn+wsp-wishlist-button { - margin-left: .25rem; -} - -.tile-view .product-stamp { - position: relative; -} - -.tile-view .product-stamp .product-stamp__imprint { - position: absolute; - bottom: 10%; - left: 10%; -} - -.tile-view--numbered { - counter-reset: tile-view-numbers; -} - -.tile-view--numbered .product-item--column { - counter-increment: tile-view-numbers; -} - -.tile-view--numbered .product-item--column .product-item__image { - position: relative; - padding-top: 1.25em; -} - -@media (min-width:48em) { - .tile-view--numbered .product-item--column .product-item__image { - padding-top: 1.3375em; - } -} - -.tile-view--numbered .product-item--column .product-item__image:after { - display: inline-block; - width: 1.4285714286em; - height: 1.4285714286em; - font-family: produkt, arial, helvetica, sans-serif; - font-size: 1.75em; - font-weight: 700; - line-height: 1.4285714286em; - text-align: center; - background-color: #fff; - border: 1px solid #b3b3ba; - border-radius: 50%; - position: absolute; - top: 0; - left: 50%; - content: counter(tile-view-numbers); - transform: translateX(-50%); -} - -@media (min-width:48em) { - .tile-view--numbered .product-item--column .product-item__image:after { - font-size: 1.8725em; - } -} - -.tile-view--numbered .product-item--column .product-item__image .product-image--regular { - max-width: none; -} - -@media (min-width:48em) { - .tile-view--border-top:before { - display: block; - width: 100%; - margin-top: -1.5rem; - margin-left: 2rem; - content: ""; - border-top: 1px solid #e6e6e8; - } -} - -.product-item--prominent-image { - width: 133px; -} - -.product-item--column { - flex-direction: column; - width: 6.625em; - margin-bottom: 1.5rem; -} - -.product-item--column .product-item__image { - margin-bottom: 1rem; -} - -.product-item--column .product-item__content { - -ms-flex-grow: 1; - flex-grow: 1; -} - -.product-item--column .product-item__tile-labels { - position: absolute; - top: -1px; - width: 100%; - margin-left: -1em; -} - -.product-item--column .product-item__tile-labels .product-item__promo-labels--column { - position: relative; - top: 20px; -} - -@media (min-width:48em) { - .product-item--column .product-item__tile-labels { - top: -2.1em; - margin-left: 0; - } - - .product-item--column .product-item__tile-labels .product-item__promo-labels--column { - left: 0; - } -} - -.product-item--column .product-item__info { - margin-bottom: 1rem; -} - -.product-item--column.product-item--column-wide { - width: 36vw; - max-width: 10em; -} - -.product-item--column .product-item__flex { - display: flex; - flex-flow: column; - flex-grow: 1; -} - -.product-item--has-buttons { - margin-bottom: 2rem; -} - -.product-item--has-buttons .product-item__button-container { - position: absolute; - bottom: 0; -} - -.product-item--list-item { - position: relative; -} - -.product-item-addon-carousel { - width: 9em; -} - -@media (min-width:48em) { - .product-item-addon-carousel { - width: 14em; - } -} - -.product-item-addon-carousel .product-seller { - height: 3.5em; -} - -.product-item--placeholder .product-item__content>div { - background: #fafafa; -} - -.product-item--landscape { - display: flex; - flex-grow: 1; -} - -.product-item--landscape .product-item__hit-area-wrapper { - position: relative; - display: flex; - flex-direction: row; - flex-grow: 1; -} - -.product-item--landscape .product-item__image { - flex-basis: 30%; - flex-shrink: 0; - margin-right: 1rem; - margin-bottom: 0; -} - -.product-item--landscape .product-item__content { - display: flex; - flex-direction: column; - justify-content: center; -} - -.product-item .sponsored-label { - color: #b3b3ba; -} - -.consent-modal { - display: flex; - flex-flow: column nowrap; - max-height: calc(100vh - 5rem); -} - -.consent-modal__description { - flex-shrink: 1; - margin: 0; - overflow-y: auto; -} - -.c-switch { - position: relative; - display: inline-flex; - align-items: center; - min-width: 3em; - min-height: 1.5em; -} - -.c-switch.is-disabled, -.c-switch.is-loading { - pointer-events: none; - cursor: default; -} - -.c-switch__label { - margin-right: 1.5rem; -} - -.c-switch--label-right .c-switch__label { - order: 1; - margin-left: 1.5rem; -} - -.c-switch__input { - position: absolute; - z-index: 1; - width: 100%; - height: 100%; - cursor: pointer; - opacity: 0; -} - -.c-switch__input:disabled { - pointer-events: none; - cursor: default; -} - -.c-switch__slider { - position: relative; - min-width: 3em; - height: 1.5em; - background-color: #b3b3ba; - border-radius: 1em; -} - -.c-switch.is-loading .c-switch__slider:after { - position: absolute; - top: 50%; - right: 4.5em; - left: initial; - display: flex; - margin: -1.75em 0 0; - font-size: .15em; - content: ""; - background: 0 0; - opacity: 1; -} - -.c-switch.is-loading .c-switch__input:checked+.c-switch__slider:after { - right: initial; - left: 4.5em; -} - -.c-switch__input:focus+.c-switch__slider { - outline: 2px solid #33f; - outline-offset: 2px; -} - -.c-switch__input:focus:not(:focus-visible)+.c-switch__slider { - outline: 0; -} - -.c-switch.is-loading .c-switch__slider, -.c-switch__input:disabled+.c-switch__slider { - pointer-events: none; - background-color: #e6e6e8; - outline: 0; -} - -.c-switch.is-loading .c-switch__slider:focus-visible, -.c-switch__input:disabled+.c-switch__slider:focus-visible { - outline: 0; -} - -.c-switch.is-loading .c-switch__slider:before, -.c-switch__input:disabled+.c-switch__slider:before { - border-color: #e6e6e8; - box-shadow: none; -} - -.c-switch.is-loading .c-switch__slider:after, -.c-switch__input:disabled+.c-switch__slider:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28179%2C179%2C186%29'%3E%3Cpath fill-rule='evenodd' d='M4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); -} - -.c-switch__slider, -.c-switch__slider:after, -.c-switch__slider:before { - transition: .15s ease-in-out, outline-offset 0s, outline 0s; -} - -.c-switch__slider:after, -.c-switch__slider:before { - position: absolute; - top: 0; - left: 0; - width: 1.5em; - height: 1.5em; - content: ""; -} - -.c-switch__slider:before { - background-color: #fff; - border: 1px solid; - border-radius: .75rem; - box-shadow: 0 4px 0-2px rgba(3, 3, 26, .25); -} - -.c-switch__slider:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.508 6.197a.494.494 0 01.704-.003l1.77 1.77 3.184-3.183a.504.504 0 01.706.002.494.494 0 01.001.705L7.69 8.672l-.707.707L4.5 6.897a.5.5 0 01.007-.7z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-size: 1.5em 1.5em; - opacity: 0; -} - -.c-switch--heart .c-switch__slider:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath d='M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z'/%3E%3C/svg%3E"); - background-position: center; - background-size: 1em 1em; -} - -.c-switch__input:checked+.c-switch__slider:before { - left: 100%; - transform: translateX(-100%); -} - -.c-switch__input:checked+.c-switch__slider:after { - opacity: 1; -} - -.c-switch__input:active+.c-switch__slider:before { - width: 1.75em; - border-width: 2px; -} - -.c-switch__slider:before { - border-color: #00f; -} - -.c-switch__input.is-hover+.c-switch__slider:before, -.c-switch__input:hover+.c-switch__slider:before { - border-color: #3c3eff; -} - -.c-switch__input:focus-visible+.c-switch__slider:before { - border-color: #3c3eff; -} - -.c-switch__input.is-active+.c-switch__slider:before, -.c-switch__input:active+.c-switch__slider:before { - border-color: #0000a4; -} - -.c-switch__input.is-checked+.c-switch__slider, -.c-switch__input:checked+.c-switch__slider { - background-color: #00f; -} - -.c-switch__input.is-checked.is-hover+.c-switch__slider, -.c-switch__input:checked:hover+.c-switch__slider { - background-color: #3c3eff; -} - -.c-switch__input:checked:focus-visible+.c-switch__slider { - background-color: #3c3eff; -} - -.c-switch__input.is-checked.is-active+.c-switch__slider, -.c-switch__input:checked:active+.c-switch__slider { - background-color: #0000a4; -} - -.c-switch__input.is-checked.is-active+.c-switch__slider:before, -.c-switch__input:checked:active+.c-switch__slider:before { - border-color: #0000a4; -} - -.c-switch--color-select .c-switch__slider:before, -.c-switch--select .c-switch__slider:before { - border-color: #00a127; -} - -.c-switch--color-select .c-switch__input.is-hover+.c-switch__slider:before, -.c-switch--color-select .c-switch__input:hover+.c-switch__slider:before, -.c-switch--select .c-switch__input.is-hover+.c-switch__slider:before, -.c-switch--select .c-switch__input:hover+.c-switch__slider:before { - border-color: #00b434; -} - -.c-switch--color-select .c-switch__input:focus-visible+.c-switch__slider:before, -.c-switch--select .c-switch__input:focus-visible+.c-switch__slider:before { - border-color: #00b434; -} - -.c-switch--color-select .c-switch__input.is-active+.c-switch__slider:before, -.c-switch--color-select .c-switch__input:active+.c-switch__slider:before, -.c-switch--select .c-switch__input.is-active+.c-switch__slider:before, -.c-switch--select .c-switch__input:active+.c-switch__slider:before { - border-color: #009019; -} - -.c-switch--color-select .c-switch__input.is-checked+.c-switch__slider, -.c-switch--color-select .c-switch__input:checked+.c-switch__slider, -.c-switch--select .c-switch__input.is-checked+.c-switch__slider, -.c-switch--select .c-switch__input:checked+.c-switch__slider { - background-color: #00a127; -} - -.c-switch--color-select .c-switch__input.is-checked.is-hover+.c-switch__slider, -.c-switch--color-select .c-switch__input:checked:hover+.c-switch__slider, -.c-switch--select .c-switch__input.is-checked.is-hover+.c-switch__slider, -.c-switch--select .c-switch__input:checked:hover+.c-switch__slider { - background-color: #00b434; -} - -.c-switch--color-select .c-switch__input:checked:focus-visible+.c-switch__slider, -.c-switch--select .c-switch__input:checked:focus-visible+.c-switch__slider { - background-color: #00b434; -} - -.c-switch--color-select .c-switch__input.is-checked.is-active+.c-switch__slider, -.c-switch--color-select .c-switch__input:checked:active+.c-switch__slider, -.c-switch--select .c-switch__input.is-checked.is-active+.c-switch__slider, -.c-switch--select .c-switch__input:checked:active+.c-switch__slider { - background-color: #009019; -} - -.c-switch--color-select .c-switch__input.is-checked.is-active+.c-switch__slider:before, -.c-switch--color-select .c-switch__input:checked:active+.c-switch__slider:before, -.c-switch--select .c-switch__input.is-checked.is-active+.c-switch__slider:before, -.c-switch--select .c-switch__input:checked:active+.c-switch__slider:before { - border-color: #009019; -} - -.consent-modal-ofc { - display: flex; - flex-flow: column nowrap; - max-height: calc(100vh - 5rem); -} - -.consent-modal-ofc__description { - flex-shrink: 1; - overflow-y: auto; -} - -.consent-modal-ofc__description>span:last-child { - margin-bottom: unset; -} - -.consent-modal-ofc__info>span:last-of-type, -.consent-modal-ofc__toggle-group>span:last-of-type { - margin-bottom: 1rem; -} - -.consent-modal-ofc__footer { - padding: 1rem; - margin: -1rem; - box-shadow: 0-4px 16px rgba(0, 0, 0, .08); -} - -.consent-modal-ofc__consent-toggle-container { - display: flex; - align-content: stretch; - padding-bottom: 1rem; -} - -.consent-modal-ofc__consent-toggle-container__description-container { - margin-left: .75rem; -} - -.consent-modal-ofc__consent-toggle-container__description-container__title { - margin-bottom: .5rem; - font-weight: 700; -} - -.consent-modal-ofc .accept-selected-button, -.consent-modal-ofc .second-screen, -.consent-modal-ofc .second-screen-accept-all-button { - display: none; -} - -.consent-modal-ofc .first-screen, -.consent-modal-ofc .second-screen { - margin-bottom: 1rem; - overflow: auto; -} - -.navigation-block { - margin-bottom: 1.5rem; -} - -.navigation-block:after { - display: table; - clear: both; - content: ""; -} - -@media (min-width:48em) { - .navigation-block__group { - flex-grow: 1; - width: 25%; - border-bottom: 0; - } - - .navigation-block__group.navigation-block__group--2 { - flex-grow: 2; - width: 50%; - } - - .navigation-block__group.navigation-block__group--3 { - flex-grow: 3; - width: 75%; - } - - .navigation-block__group.navigation-block__group--4 { - flex-grow: 4; - width: 100%; - } - - .navigation-block__group.navigation-block__group--5 { - flex-grow: 5; - width: 125%; - } - - .navigation-block__group.navigation-block__group--6 { - flex-grow: 6; - width: 150%; - } -} - -.navigation-block__title .navigation-block__node { - padding: 0; -} - -@media (min-width:48em) { - .navigation-block__title { - padding-top: 0; - padding-bottom: 0; - font-weight: 600; - border-bottom: 0; - } -} - -.navigation-block__children .navigation-block__node { - border-top: 1px solid #e6e6e8; -} - -@media (min-width:48em) { - .navigation-block__children { - display: flex; - flex-wrap: wrap; - padding-left: 0; - } - - .navigation-block__children .navigation-block__node { - border-top: 0; - } -} - -.navigation-block__nodes-list { - padding-bottom: 0; -} - -@media (min-width:48em) { - .navigation-block__nodes-list { - flex-grow: 1; - width: 0; - padding-right: 1rem; - } -} - -.navigation-block__node { - padding-top: 1rem; - padding-bottom: 1rem; -} - -@media (min-width:48em) { - .navigation-block__node { - display: inline; - padding-top: 0; - padding-bottom: 0; - } -} - -.navigation-block__link { - display: block; - color: #03031a; -} - -.navigation-block__link:hover { - color: #00f; - text-decoration: none; -} - -@media (min-width:48em) { - .navigation-block__link { - display: inline; - } - - .navigation-block { - display: flex; - flex-wrap: wrap; - padding: 1rem; - border: 1px solid #e6e6e8; - border-radius: .5rem; - } - - .navigation-block .accordion__header { - padding-left: 0; - cursor: inherit; - } - - .navigation-block .accordion__header:before { - content: normal; - } - - .navigation-block .accordion__body { - max-height: none; - transition-duration: 0; - } - - .navigation-block__column { - width: 16.6666666667%; - } - - .navigation-block__column__category { - width: auto; - margin-bottom: 1rem; - } - - .navigation-block--info .navigation-block__group, - .navigation-block--info.navigation-block__group { - width: 100%; - margin-top: 1.5rem; - } - - .navigation-block--info .navigation-block__children, - .navigation-block--info .navigation-block__nodes-list, - .navigation-block--info .navigation-block__nodes-list>li, - .navigation-block--info .navigation-block__title { - display: inline; - padding: 0; - margin: 0; - } - - .navigation-block--info .navigation-block__title .navigation-block__node:after { - content: ":"; - } - - .navigation-block--info .navigation-block__node { - margin-right: .5rem; - } -} - -.navigation-block--doormat { - flex-wrap: nowrap; - padding: 0; - font-size: .875rem; - border: 0; -} - -@media (min-width:48em) { - .navigation-block--doormat { - font-size: .75rem; - } -} - -.navigation-block--doormat .navigation-block__node { - word-break: break-word; -} - -.flexbanner--billboard+.navigation-block, -.flexbanner-container+.navigation-block, -.htmlSlot+.navigation-block, -.nb-header+.navigation-block { - border-top: 0 none; - border-radius: 0 0 .5em .5em; -} - -.htmlSlot+.navigation-block { - margin-top: -30px; -} - -.add-to-wishlist .selected { - font-weight: 600; -} - -.add-to-wishlist .new-list-link { - padding-top: .5em; -} - -.add-to-wishlist .row-container { - display: flex; - align-items: center; - justify-content: space-between; -} - -.add-to-wishlist .divider-list>li { - padding-bottom: .5rem; - margin-bottom: .5rem; - word-wrap: break-word; -} - -.add-to-wishlist .divider-list>li:last-child { - margin-bottom: 1.5rem; -} - -.add-to-wishlist .c-btn-tertiary-toggle--medium { - float: right; - min-width: 3.4375em; -} - -.add-to-wishlist .c-btn-secundary--large { - margin-top: .5em; -} - -@media (min-width:30em) { - .add-to-wishlist .c-btn-secundary--large { - margin-top: 0; - } -} - -.add-to-wishlist .text-input { - margin-bottom: .5rem; -} - -@media (min-width:48em) { - .add-to-wishlist .text-input { - margin-bottom: 0; - } -} - -.add-to-wishlist .align-input { - margin-bottom: 0; -} - -@media (min-width:30em) { - .add-to-wishlist .align-input { - margin-bottom: .5rem; - } -} - -@media (min-width:48em) { - .add-to-wishlist .align-input { - margin-bottom: 0; - } -} - -.add-to-wishlist .single-line-truncate { - padding-right: .5rem; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.banner__explain, -.explain { - color: #686876; -} - -.h-fluid-img { - max-width: 100%; - height: auto; - vertical-align: middle; -} - -.h-txt-center { - text-align: center; -} - -.creative_container { - display: flex; - flex-flow: column; - align-items: center; - overflow: hidden; -} - -.u-nosp .creative_container { - margin-bottom: .5rem; -} - -.creative_container--card { - justify-content: center; - max-width: 17.25rem; - height: 100%; - min-height: 14.375rem; - overflow: visible; -} - -.creative_container--card .creative-title { - position: relative; - bottom: -.125rem; - margin-bottom: -.625rem; - font-size: .625rem; - line-height: 1; -} - -.filmstrip__card--mms { - flex-basis: 25%; - justify-content: center; -} - -.filmstrip__card--mms+.filmstrip__card { - min-height: 14.375rem; -} - -.banner__close.sb { - color: transparent; -} - -.banner__close.sb:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%283%2C3%2C26%29'%3E%3Cpath fill-rule='evenodd' d='M7 7.378l3.363 3.363a.496.496 0 00.703-.004c.19-.19.197-.51.004-.703L7.707 6.67l3.363-3.363a.496.496 0 00-.004-.703.502.502 0 00-.703-.004L7 5.964 3.637 2.6a.496.496 0 00-.703.004.502.502 0 00-.004.703L6.293 6.67 2.93 10.034a.496.496 0 00.004.703c.19.19.51.197.703.004L7 7.378z'/%3E%3C/svg%3E"); - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - content: ""; - background-repeat: no-repeat; - background-position: center; -} - -.srch-container .text-input--search { - width: 100%; - max-width: 100%; - height: 2.5rem; - padding: 0; - margin-right: 1rem; - font-size: 100%; - background-color: #fff; - border: 0; - transition: all .25s; - -webkit-appearance: none; -} - -.srch-container .srch-form__clear { - color: #b3b3ba; -} - -@media (min-width:48em) { - .medium--three-quarters { - width: 75%; - } - - .medium--one-quarter { - width: 25%; - } -} - -.modal__window .notification { - margin-right: -1rem; - margin-left: -1rem; - border-radius: 0; -} - -.modal__window__content>.alert:first-child { - margin-top: 1.5rem; -} - -.table-wrapper { - display: table; -} - -.table-wrapper__cell { - display: table-cell; -} - -.h-border-box, -.h-border-box *, -.h-border-box :after, -.h-border-box :before, -.h-border-box:after, -.h-border-box:before { - box-sizing: border-box; -} - -.h-block { - display: block; -} - -.h-block--inline { - display: inline-block; -} - -.display-inline, -.h-inline { - display: inline; -} - -.h-table { - display: table; -} - -.h-table--row { - display: table-row; -} - -.h-table--cell { - display: table-cell; -} - -.h-table--responsive { - width: 100%; - table-layout: fixed; -} - -.h-flex { - display: flex; -} - -.h-flex-grow { - flex-grow: 1; -} - -.h-flex-direction-column { - flex-direction: column; -} - -.h-flex-wrap { - flex-wrap: wrap; -} - -.h-flex-nowrap { - flex-wrap: nowrap; -} - -.h-flex-right { - margin-left: auto; -} - -.h-flex-items-center { - align-items: center; -} - -.h-flex-end { - align-items: flex-end; -} - -.h-flex-start { - align-items: flex-start; -} - -.h-flex-justify-content { - justify-content: center; -} - -.h-flex-justify-content-space-between { - justify-content: space-between; -} - -.h-flex-align-self-center { - align-self: center; -} - -.h-flex-align-self-end { - align-self: flex-end; -} - -.h-pos-default { - position: static; -} - -.h-pos-relative, -.h-relative { - position: relative; -} - -.h-absolute, -.h-pos-absolute { - position: absolute; -} - -.h-absolute-center { - left: 50%; - transform: translateX(-50%); -} - -.h-pos-fixed { - position: fixed; -} - -.h-va--top, -.vatop { - vertical-align: top; -} - -.h-va--bottom, -.vabottom { - vertical-align: bottom; -} - -.h-va--middle { - vertical-align: middle; -} - -.fleft { - float: left; -} - -.fright { - float: right; -} - -.h-boxedtop--0 { - margin-top: 0; -} - -.h-full-bleed { - margin: -1rem; -} - -.islet .h-full-bleed { - margin: -.5rem; -} - -.h-max-width-fit-content { - max-width: -moz-fit-content; - max-width: fit-content; -} - -.h-horizontal-bleed, -.h-horizontaltop-bleed { - margin-right: -1rem; - margin-left: -1rem; -} - -.islet .h-horizontal-bleed, -.islet .h-horizontaltop-bleed { - margin-right: -.5rem; - margin-left: -.5rem; -} - -.h-horizontaltop-bleed { - margin-top: -1rem; -} - -.islet .h-horizontaltop-bleed { - margin-top: -.5rem; -} - -.h-horizontalbottom-bleed { - margin-right: -1rem; - margin-bottom: -1rem; - margin-left: -1rem; -} - -.islet .h-horizontalbottom-bleed { - margin-right: -.5rem; - margin-bottom: -.5rem; - margin-left: -.5rem; -} - -.h-full-height { - box-sizing: border-box; - height: 100%; -} - -.h-o-hidden { - overflow: hidden; -} - -.h-bg-diapo-color { - background-color: #fff; -} - -@media (min-width:48em) { - .medium--table-wrapper { - display: table; - } - - .medium--table-wrapper__cell { - display: table-cell; - } - - .medium--h-border-box, - .medium--h-border-box *, - .medium--h-border-box :after, - .medium--h-border-box :before, - .medium--h-border-box:after, - .medium--h-border-box:before { - box-sizing: border-box; - } - - .medium--h-block { - display: block; - } - - .medium--h-block--inline { - display: inline-block; - } - - .medium--display-inline, - .medium--h-inline { - display: inline; - } - - .medium--h-table { - display: table; - } - - .medium--h-table--row { - display: table-row; - } - - .medium--h-table--cell { - display: table-cell; - } - - .medium--h-table--responsive { - width: 100%; - table-layout: fixed; - } - - .medium--h-flex { - display: flex; - } - - .medium--h-flex-grow { - flex-grow: 1; - } - - .medium--h-flex-direction-column { - flex-direction: column; - } - - .medium--h-flex-wrap { - flex-wrap: wrap; - } - - .medium--h-flex-nowrap { - flex-wrap: nowrap; - } - - .medium--h-flex-right { - margin-left: auto; - } - - .medium--h-flex-items-center { - align-items: center; - } - - .medium--h-flex-end { - align-items: flex-end; - } - - .medium--h-flex-start { - align-items: flex-start; - } - - .medium--h-flex-justify-content { - justify-content: center; - } - - .medium--h-flex-justify-content-space-between { - justify-content: space-between; - } - - .medium--h-flex-align-self-center { - align-self: center; - } - - .medium--h-flex-align-self-end { - align-self: flex-end; - } - - .medium--h-pos-default { - position: static; - } - - .medium--h-pos-relative, - .medium--h-relative { - position: relative; - } - - .medium--h-absolute, - .medium--h-pos-absolute { - position: absolute; - } - - .medium--h-absolute-center { - left: 50%; - transform: translateX(-50%); - } - - .medium--h-pos-fixed { - position: fixed; - } - - .medium--h-va--top, - .medium--vatop { - vertical-align: top; - } - - .medium--h-va--bottom, - .medium--vabottom { - vertical-align: bottom; - } - - .medium--h-va--middle { - vertical-align: middle; - } - - .medium--fleft { - float: left; - } - - .medium--fright { - float: right; - } - - .medium--h-boxedtop--0 { - margin-top: 0; - } - - .medium--h-full-bleed { - margin: -1rem; - } - - .islet .medium--h-full-bleed { - margin: -.5rem; - } - - .medium--h-max-width-fit-content { - max-width: -moz-fit-content; - max-width: fit-content; - } - - .medium--h-horizontal-bleed, - .medium--h-horizontaltop-bleed { - margin-right: -1rem; - margin-left: -1rem; - } - - .islet .medium--h-horizontal-bleed, - .islet .medium--h-horizontaltop-bleed { - margin-right: -.5rem; - margin-left: -.5rem; - } - - .medium--h-horizontaltop-bleed { - margin-top: -1rem; - } - - .islet .medium--h-horizontaltop-bleed { - margin-top: -.5rem; - } - - .medium--h-horizontalbottom-bleed { - margin-right: -1rem; - margin-bottom: -1rem; - margin-left: -1rem; - } - - .islet .medium--h-horizontalbottom-bleed { - margin-right: -.5rem; - margin-bottom: -.5rem; - margin-left: -.5rem; - } - - .medium--h-full-height { - box-sizing: border-box; - height: 100%; - } - - .medium--h-o-hidden { - overflow: hidden; - } - - .medium--h-bg-diapo-color { - background-color: #fff; - } -} - -@media (min-width:30em) { - .small--table-wrapper { - display: table; - } - - .small--table-wrapper__cell { - display: table-cell; - } - - .small--h-border-box, - .small--h-border-box *, - .small--h-border-box :after, - .small--h-border-box :before, - .small--h-border-box:after, - .small--h-border-box:before { - box-sizing: border-box; - } - - .small--h-block { - display: block; - } - - .small--h-block--inline { - display: inline-block; - } - - .small--display-inline, - .small--h-inline { - display: inline; - } - - .small--h-table { - display: table; - } - - .small--h-table--row { - display: table-row; - } - - .small--h-table--cell { - display: table-cell; - } - - .small--h-table--responsive { - width: 100%; - table-layout: fixed; - } - - .small--h-flex { - display: flex; - } - - .small--h-flex-grow { - flex-grow: 1; - } - - .small--h-flex-direction-column { - flex-direction: column; - } - - .small--h-flex-wrap { - flex-wrap: wrap; - } - - .small--h-flex-nowrap { - flex-wrap: nowrap; - } - - .small--h-flex-right { - margin-left: auto; - } - - .small--h-flex-items-center { - align-items: center; - } - - .small--h-flex-end { - align-items: flex-end; - } - - .small--h-flex-start { - align-items: flex-start; - } - - .small--h-flex-justify-content { - justify-content: center; - } - - .small--h-flex-justify-content-space-between { - justify-content: space-between; - } - - .small--h-flex-align-self-center { - align-self: center; - } - - .small--h-flex-align-self-end { - align-self: flex-end; - } - - .small--h-pos-default { - position: static; - } - - .small--h-pos-relative, - .small--h-relative { - position: relative; - } - - .small--h-absolute, - .small--h-pos-absolute { - position: absolute; - } - - .small--h-absolute-center { - left: 50%; - transform: translateX(-50%); - } - - .small--h-pos-fixed { - position: fixed; - } - - .small--h-va--top, - .small--vatop { - vertical-align: top; - } - - .small--h-va--bottom, - .small--vabottom { - vertical-align: bottom; - } - - .small--h-va--middle { - vertical-align: middle; - } - - .small--fleft { - float: left; - } - - .small--fright { - float: right; - } - - .small--h-boxedtop--0 { - margin-top: 0; - } - - .small--h-full-bleed { - margin: -1rem; - } - - .islet .small--h-full-bleed { - margin: -.5rem; - } - - .small--h-max-width-fit-content { - max-width: -moz-fit-content; - max-width: fit-content; - } - - .small--h-horizontal-bleed, - .small--h-horizontaltop-bleed { - margin-right: -1rem; - margin-left: -1rem; - } - - .islet .small--h-horizontal-bleed, - .islet .small--h-horizontaltop-bleed { - margin-right: -.5rem; - margin-left: -.5rem; - } - - .small--h-horizontaltop-bleed { - margin-top: -1rem; - } - - .islet .small--h-horizontaltop-bleed { - margin-top: -.5rem; - } - - .small--h-horizontalbottom-bleed { - margin-right: -1rem; - margin-bottom: -1rem; - margin-left: -1rem; - } - - .islet .small--h-horizontalbottom-bleed { - margin-right: -.5rem; - margin-bottom: -.5rem; - margin-left: -.5rem; - } - - .small--h-full-height { - box-sizing: border-box; - height: 100%; - } - - .small--h-o-hidden { - overflow: hidden; - } - - .small--h-bg-diapo-color { - background-color: #fff; - } -} - -.hit-area { - position: relative; -} - -@media (max-width:47.9375em) { - .hit-area--icon { - padding-right: 1.5rem; - } - - .hit-area--icon:after { - margin-right: -2rem; - } - - .hit-area--icon:before { - position: absolute; - top: 50%; - right: 0; - width: 1rem; - height: 1rem; - margin-top: -1rem; - font-size: 1.5em; - line-height: 1; - color: #686876; - text-align: center; - content: attr(data-icon); - font-family: "Bol Symbols", Graphik; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - speak: none; - } -} - -.hit-area__link { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 2; -} - -.hit-area__clickable { - position: relative; - z-index: 3; -} - -@media (min-width:48em) { - .u-m--0\@screen-large-up { - margin: 0; - } -} - -@media (max-width:29.9375em) { - .u-m--0\@screen-small-only { - margin: 0; - } -} - -@media (min-width:48em) { - .u-m--xxs\@screen-large-up { - margin: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xxs\@screen-small-only { - margin: .25rem; - } -} - -@media (min-width:48em) { - .u-m--xs\@screen-large-up { - margin: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xs\@screen-small-only { - margin: .5rem; - } -} - -@media (min-width:48em) { - .u-m--sm\@screen-large-up { - margin: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-m--sm\@screen-small-only { - margin: .75rem; - } -} - -@media (min-width:48em) { - .u-m--m\@screen-large-up { - margin: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-m--m\@screen-small-only { - margin: 1rem; - } -} - -@media (min-width:48em) { - .u-m\@screen-large-up { - margin: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-m\@screen-small-only { - margin: 1rem; - } -} - -@media (min-width:48em) { - .u-m--lg\@screen-large-up { - margin: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-m--lg\@screen-small-only { - margin: 1.5rem; - } -} - -@media (min-width:48em) { - .u-m--xl\@screen-large-up { - margin: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xl\@screen-small-only { - margin: 2rem; - } -} - -@media (min-width:48em) { - .u-m--xxl\@screen-large-up { - margin: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xxl\@screen-small-only { - margin: 3rem; - } -} - -@media (min-width:48em) { - .u-mt--0\@screen-large-up { - margin-top: 0; - } -} - -@media (max-width:29.9375em) { - .u-mt--0\@screen-small-only { - margin-top: 0; - } -} - -@media (min-width:48em) { - .u-mt--xxs\@screen-large-up { - margin-top: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xxs\@screen-small-only { - margin-top: .25rem; - } -} - -@media (min-width:48em) { - .u-mt--xs\@screen-large-up { - margin-top: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xs\@screen-small-only { - margin-top: .5rem; - } -} - -@media (min-width:48em) { - .u-mt--sm\@screen-large-up { - margin-top: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--sm\@screen-small-only { - margin-top: .75rem; - } -} - -@media (min-width:48em) { - .u-mt--m\@screen-large-up { - margin-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--m\@screen-small-only { - margin-top: 1rem; - } -} - -@media (min-width:48em) { - .u-mt\@screen-large-up { - margin-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mt\@screen-small-only { - margin-top: 1rem; - } -} - -@media (min-width:48em) { - .u-mt--lg\@screen-large-up { - margin-top: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--lg\@screen-small-only { - margin-top: 1.5rem; - } -} - -@media (min-width:48em) { - .u-mt--xl\@screen-large-up { - margin-top: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xl\@screen-small-only { - margin-top: 2rem; - } -} - -@media (min-width:48em) { - .u-mt--xxl\@screen-large-up { - margin-top: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xxl\@screen-small-only { - margin-top: 3rem; - } -} - -@media (min-width:48em) { - .u-mr--0\@screen-large-up { - margin-right: 0; - } -} - -@media (max-width:29.9375em) { - .u-mr--0\@screen-small-only { - margin-right: 0; - } -} - -@media (min-width:48em) { - .u-mr--xxs\@screen-large-up { - margin-right: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xxs\@screen-small-only { - margin-right: .25rem; - } -} - -@media (min-width:48em) { - .u-mr--xs\@screen-large-up { - margin-right: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xs\@screen-small-only { - margin-right: .5rem; - } -} - -@media (min-width:48em) { - .u-mr--sm\@screen-large-up { - margin-right: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--sm\@screen-small-only { - margin-right: .75rem; - } -} - -@media (min-width:48em) { - .u-mr--m\@screen-large-up { - margin-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--m\@screen-small-only { - margin-right: 1rem; - } -} - -@media (min-width:48em) { - .u-mr\@screen-large-up { - margin-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mr\@screen-small-only { - margin-right: 1rem; - } -} - -@media (min-width:48em) { - .u-mr--lg\@screen-large-up { - margin-right: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--lg\@screen-small-only { - margin-right: 1.5rem; - } -} - -@media (min-width:48em) { - .u-mr--xl\@screen-large-up { - margin-right: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xl\@screen-small-only { - margin-right: 2rem; - } -} - -@media (min-width:48em) { - .u-mr--xxl\@screen-large-up { - margin-right: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xxl\@screen-small-only { - margin-right: 3rem; - } -} - -@media (min-width:48em) { - .u-mb--0\@screen-large-up { - margin-bottom: 0; - } -} - -@media (max-width:29.9375em) { - .u-mb--0\@screen-small-only { - margin-bottom: 0; - } -} - -@media (min-width:48em) { - .u-mb--xxs\@screen-large-up { - margin-bottom: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xxs\@screen-small-only { - margin-bottom: .25rem; - } -} - -@media (min-width:48em) { - .u-mb--xs\@screen-large-up { - margin-bottom: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xs\@screen-small-only { - margin-bottom: .5rem; - } -} - -@media (min-width:48em) { - .u-mb--sm\@screen-large-up { - margin-bottom: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--sm\@screen-small-only { - margin-bottom: .75rem; - } -} - -@media (min-width:48em) { - .u-mb--m\@screen-large-up { - margin-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--m\@screen-small-only { - margin-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-mb\@screen-large-up { - margin-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mb\@screen-small-only { - margin-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-mb--lg\@screen-large-up { - margin-bottom: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--lg\@screen-small-only { - margin-bottom: 1.5rem; - } -} - -@media (min-width:48em) { - .u-mb--xl\@screen-large-up { - margin-bottom: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xl\@screen-small-only { - margin-bottom: 2rem; - } -} - -@media (min-width:48em) { - .u-mb--xxl\@screen-large-up { - margin-bottom: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xxl\@screen-small-only { - margin-bottom: 3rem; - } -} - -@media (min-width:48em) { - .u-ml--0\@screen-large-up { - margin-left: 0; - } -} - -@media (max-width:29.9375em) { - .u-ml--0\@screen-small-only { - margin-left: 0; - } -} - -@media (min-width:48em) { - .u-ml--xxs\@screen-large-up { - margin-left: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xxs\@screen-small-only { - margin-left: .25rem; - } -} - -@media (min-width:48em) { - .u-ml--xs\@screen-large-up { - margin-left: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xs\@screen-small-only { - margin-left: .5rem; - } -} - -@media (min-width:48em) { - .u-ml--sm\@screen-large-up { - margin-left: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--sm\@screen-small-only { - margin-left: .75rem; - } -} - -@media (min-width:48em) { - .u-ml--m\@screen-large-up { - margin-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--m\@screen-small-only { - margin-left: 1rem; - } -} - -@media (min-width:48em) { - .u-ml\@screen-large-up { - margin-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-ml\@screen-small-only { - margin-left: 1rem; - } -} - -@media (min-width:48em) { - .u-ml--lg\@screen-large-up { - margin-left: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--lg\@screen-small-only { - margin-left: 1.5rem; - } -} - -@media (min-width:48em) { - .u-ml--xl\@screen-large-up { - margin-left: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xl\@screen-small-only { - margin-left: 2rem; - } -} - -@media (min-width:48em) { - .u-ml--xxl\@screen-large-up { - margin-left: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xxl\@screen-small-only { - margin-left: 3rem; - } -} - -@media (min-width:48em) { - .u-p--0\@screen-large-up { - padding: 0; - } -} - -@media (max-width:29.9375em) { - .u-p--0\@screen-small-only { - padding: 0; - } -} - -@media (min-width:48em) { - .u-p--xxs\@screen-large-up { - padding: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xxs\@screen-small-only { - padding: .25rem; - } -} - -@media (min-width:48em) { - .u-p--xs\@screen-large-up { - padding: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xs\@screen-small-only { - padding: .5rem; - } -} - -@media (min-width:48em) { - .u-p--sm\@screen-large-up { - padding: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-p--sm\@screen-small-only { - padding: .75rem; - } -} - -@media (min-width:48em) { - .u-p--m\@screen-large-up { - padding: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-p--m\@screen-small-only { - padding: 1rem; - } -} - -@media (min-width:48em) { - .u-p\@screen-large-up { - padding: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-p\@screen-small-only { - padding: 1rem; - } -} - -@media (min-width:48em) { - .u-p--lg\@screen-large-up { - padding: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-p--lg\@screen-small-only { - padding: 1.5rem; - } -} - -@media (min-width:48em) { - .u-p--xl\@screen-large-up { - padding: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xl\@screen-small-only { - padding: 2rem; - } -} - -@media (min-width:48em) { - .u-p--xxl\@screen-large-up { - padding: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xxl\@screen-small-only { - padding: 3rem; - } -} - -@media (min-width:48em) { - .u-pt--0\@screen-large-up { - padding-top: 0; - } -} - -@media (max-width:29.9375em) { - .u-pt--0\@screen-small-only { - padding-top: 0; - } -} - -@media (min-width:48em) { - .u-pt--xxs\@screen-large-up { - padding-top: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xxs\@screen-small-only { - padding-top: .25rem; - } -} - -@media (min-width:48em) { - .u-pt--xs\@screen-large-up { - padding-top: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xs\@screen-small-only { - padding-top: .5rem; - } -} - -@media (min-width:48em) { - .u-pt--sm\@screen-large-up { - padding-top: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--sm\@screen-small-only { - padding-top: .75rem; - } -} - -@media (min-width:48em) { - .u-pt--m\@screen-large-up { - padding-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--m\@screen-small-only { - padding-top: 1rem; - } -} - -@media (min-width:48em) { - .u-pt\@screen-large-up { - padding-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pt\@screen-small-only { - padding-top: 1rem; - } -} - -@media (min-width:48em) { - .u-pt--lg\@screen-large-up { - padding-top: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--lg\@screen-small-only { - padding-top: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pt--xl\@screen-large-up { - padding-top: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xl\@screen-small-only { - padding-top: 2rem; - } -} - -@media (min-width:48em) { - .u-pt--xxl\@screen-large-up { - padding-top: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xxl\@screen-small-only { - padding-top: 3rem; - } -} - -@media (min-width:48em) { - .u-pr--0\@screen-large-up { - padding-right: 0; - } -} - -@media (max-width:29.9375em) { - .u-pr--0\@screen-small-only { - padding-right: 0; - } -} - -@media (min-width:48em) { - .u-pr--xxs\@screen-large-up { - padding-right: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xxs\@screen-small-only { - padding-right: .25rem; - } -} - -@media (min-width:48em) { - .u-pr--xs\@screen-large-up { - padding-right: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xs\@screen-small-only { - padding-right: .5rem; - } -} - -@media (min-width:48em) { - .u-pr--sm\@screen-large-up { - padding-right: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--sm\@screen-small-only { - padding-right: .75rem; - } -} - -@media (min-width:48em) { - .u-pr--m\@screen-large-up { - padding-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--m\@screen-small-only { - padding-right: 1rem; - } -} - -@media (min-width:48em) { - .u-pr\@screen-large-up { - padding-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pr\@screen-small-only { - padding-right: 1rem; - } -} - -@media (min-width:48em) { - .u-pr--lg\@screen-large-up { - padding-right: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--lg\@screen-small-only { - padding-right: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pr--xl\@screen-large-up { - padding-right: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xl\@screen-small-only { - padding-right: 2rem; - } -} - -@media (min-width:48em) { - .u-pr--xxl\@screen-large-up { - padding-right: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xxl\@screen-small-only { - padding-right: 3rem; - } -} - -@media (min-width:48em) { - .u-pb--0\@screen-large-up { - padding-bottom: 0; - } -} - -@media (max-width:29.9375em) { - .u-pb--0\@screen-small-only { - padding-bottom: 0; - } -} - -@media (min-width:48em) { - .u-pb--xxs\@screen-large-up { - padding-bottom: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xxs\@screen-small-only { - padding-bottom: .25rem; - } -} - -@media (min-width:48em) { - .u-pb--xs\@screen-large-up { - padding-bottom: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xs\@screen-small-only { - padding-bottom: .5rem; - } -} - -@media (min-width:48em) { - .u-pb--sm\@screen-large-up { - padding-bottom: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--sm\@screen-small-only { - padding-bottom: .75rem; - } -} - -@media (min-width:48em) { - .u-pb--m\@screen-large-up { - padding-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--m\@screen-small-only { - padding-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-pb\@screen-large-up { - padding-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pb\@screen-small-only { - padding-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-pb--lg\@screen-large-up { - padding-bottom: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--lg\@screen-small-only { - padding-bottom: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pb--xl\@screen-large-up { - padding-bottom: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xl\@screen-small-only { - padding-bottom: 2rem; - } -} - -@media (min-width:48em) { - .u-pb--xxl\@screen-large-up { - padding-bottom: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xxl\@screen-small-only { - padding-bottom: 3rem; - } -} - -@media (min-width:48em) { - .u-pl--0\@screen-large-up { - padding-left: 0; - } -} - -@media (max-width:29.9375em) { - .u-pl--0\@screen-small-only { - padding-left: 0; - } -} - -@media (min-width:48em) { - .u-pl--xxs\@screen-large-up { - padding-left: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xxs\@screen-small-only { - padding-left: .25rem; - } -} - -@media (min-width:48em) { - .u-pl--xs\@screen-large-up { - padding-left: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xs\@screen-small-only { - padding-left: .5rem; - } -} - -@media (min-width:48em) { - .u-pl--sm\@screen-large-up { - padding-left: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--sm\@screen-small-only { - padding-left: .75rem; - } -} - -@media (min-width:48em) { - .u-pl--m\@screen-large-up { - padding-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--m\@screen-small-only { - padding-left: 1rem; - } -} - -@media (min-width:48em) { - .u-pl\@screen-large-up { - padding-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pl\@screen-small-only { - padding-left: 1rem; - } -} - -@media (min-width:48em) { - .u-pl--lg\@screen-large-up { - padding-left: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--lg\@screen-small-only { - padding-left: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pl--xl\@screen-large-up { - padding-left: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xl\@screen-small-only { - padding-left: 2rem; - } -} - -@media (min-width:48em) { - .u-pl--xxl\@screen-large-up { - padding-left: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xxl\@screen-small-only { - padding-left: 3rem; - } - - .u-mb\@screen-small-only { - margin-bottom: 1rem; - } -} - -@media (min-width:30em) { - - .banner__explain--small, - .small--is-hidden { - display: none; - } -} - -.banner__explain--medium, -.banner__image, -.header-fixed .banner__explain--small, -.header-fixed .small--is-hidden, -.small--is-visible { - display: none; -} - -@media (min-width:30em) { - - .banner__explain--medium, - .banner__image, - .small--is-visible { - display: block; - } -} - -.header-fixed .banner__explain--medium, -.header-fixed .banner__image, -.header-fixed .small--is-visible { - display: block; -} - -.small--is-visible--inline-block { - display: none; -} - -@media (min-width:30em) { - .small--is-visible--inline-block { - display: inline-block; - } -} - -.header-fixed .small--is-visible--inline-block { - display: inline-block; -} - -.small--is-visible--inline { - display: none; -} - -@media (min-width:30em) { - .small--is-visible--inline { - display: inline; - } -} - -.header-fixed .small--is-visible--inline { - display: inline; -} - -.small--is-visible--flex { - display: none; -} - -@media (min-width:30em) { - .small--is-visible--flex { - display: flex; - } -} - -.small--is-floatless-l { - float: none; -} - -@media (min-width:30em) { - .small--is-floatless-l { - float: left; - } -} - -.small--is-floatless-r { - float: none; -} - -@media (min-width:30em) { - .small--is-floatless-r { - float: right; - } -} - -@media screen and (min-width:480px) { - .small--is-floatless { - float: none; - } - - .small--float-l { - float: left; - } - - .small--float-r { - float: right; - } -} - -@media screen and (min-width:768px) { - .medium--is-floatless { - float: none; - } - - .medium--float-l { - float: left; - } - - .medium--float-r { - float: right; - } -} - -@media screen and (min-width:1024px) { - .large--is-floatless { - float: none; - } - - .large--float-l { - float: left; - } - - .large--float-r { - float: right; - } -} - -@media (min-width:48em) { - .medium--is-hidden { - display: none; - } -} - -.header-fixed .medium--is-hidden, -.medium--is-visible { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible { - display: block; - } -} - -.header-fixed .medium--is-visible { - display: block; -} - -.medium--is-visible--inline-block { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible--inline-block { - display: inline-block; - } -} - -.header-fixed .medium--is-visible--inline-block { - display: inline-block; -} - -.medium--is-visible--inline { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible--inline { - display: inline; - } -} - -.header-fixed .medium--is-visible--inline { - display: inline; -} - -.medium--is-visible--table { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible--table { - display: table; - } -} - -.header-fixed .medium--is-visible--table { - display: table; -} - -.medium--is-visible--table-row { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible--table-row { - display: table-row; - } -} - -.header-fixed .medium--is-visible--table-row { - display: table-row; -} - -.medium--is-visible--table-cell { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible--table-cell { - display: table-cell; - } -} - -.header-fixed .medium--is-visible--table-cell { - display: table-cell; -} - -.medium--is-visible--flex { - display: none; -} - -@media (min-width:48em) { - .medium--is-visible--flex { - display: flex; - } -} - -@media (min-width:64em) { - .large--is-hidden { - display: none; - } -} - -.header-fixed .large--is-hidden, -.large--is-visible { - display: none; -} - -@media (min-width:64em) { - .large--is-visible { - display: block; - } -} - -.header-fixed .large--is-visible { - display: block; -} - -.large--is-visible--inline-block { - display: none; -} - -@media (min-width:64em) { - .large--is-visible--inline-block { - display: inline-block; - } -} - -.header-fixed .large--is-visible--inline-block { - display: inline-block; -} - -.large--is-visible--inline { - display: none; -} - -@media (min-width:64em) { - .large--is-visible--inline { - display: inline; - } -} - -.header-fixed .large--is-visible--inline { - display: inline; -} - -.large--is-visible--table { - display: none; -} - -@media (min-width:64em) { - .large--is-visible--table { - display: table; - } -} - -.header-fixed .large--is-visible--table { - display: table; -} - -.large--is-visible--table-row { - display: none; -} - -@media (min-width:64em) { - .large--is-visible--table-row { - display: table-row; - } -} - -.header-fixed .large--is-visible--table-row { - display: table-row; -} - -.large--is-visible--table-cell { - display: none; -} - -@media (min-width:64em) { - .large--is-visible--table-cell { - display: table-cell; - } -} - -.header-fixed .large--is-visible--table-cell { - display: table-cell; -} - -.large--is-visible--flex { - display: none; -} - -@media (min-width:64em) { - .large--is-visible--flex { - display: flex; - } -} - -.is-open { - display: block; -} - -.is-hidden { - display: none; -} - -@media (max-width:47.9375em) { - .is-hidden--small { - display: none; - } -} - -.header-fixed .is-hidden--small { - display: none; -} - -.slide { - transition: transform .25s ease-in-out; -} - -.slide--up { - transform: translateY(-100%); -} - -.is-soldout> :not(.disabled) { - opacity: .5; -} - -.is--disabled { - position: relative; -} - -.is--disabled:after { - position: absolute; - top: 0; - right: -.25em; - bottom: 0; - left: -.25em; - content: ""; - background-color: rgba(255, 255, 255, .75); -} - -.no-js .no-js--is-visible { - display: block; -} - -.no-js .no-js--is-hidden, -.no-js--is-visible { - display: none; -} - -.is-loading-btn { - position: relative; -} - -.is-loading-btn a, -.is-loading-btn button, -.is-loading-btn input[type=button], -.is-loading-btn input[type=reset], -.is-loading-btn input[type=submit], -.is-loading-btn:before { - color: transparent; -} - -.is-loading-btn:after { - position: absolute; - top: 50%; - left: 50%; - display: inline-block; - width: 18px; - height: 18px; - margin-top: -9px; - margin-left: -9px; - content: ""; - border: 2px solid currentColor; - border-top-color: transparent; - border-radius: 100%; - animation: spin 1s infinite linear; -} - -.is-loading-btn a:hover, -.is-loading-btn button:hover, -.is-loading-btn input[type=button]:hover, -.is-loading-btn input[type=reset]:hover, -.is-loading-btn input[type=submit]:hover { - color: transparent; - cursor: pointer; -} - -.fade-in { - animation: fade-in .15s ease-in forwards; -} - -.fade-out { - animation: fade-out .15s ease-in forwards; -} - -.img-wrapper { - position: relative; - display: flex; - flex-flow: column; - align-items: flex-start; -} - -.img-wrapper--rounded { - overflow: hidden; - border-radius: .5rem; -} - -.img-wrapper .img { - max-width: 100%; - max-height: 100%; -} - -.img-wrapper .img--stretch, -.img-wrapper .img--stretch-w { - width: 100%; -} - -.img-wrapper .img--stretch, -.img-wrapper .img--stretch-h { - height: 100%; -} - -.img-wrapper .img--rounded { - border-radius: .5rem; -} - -.img-wrapper--center:not(.img-wrapper--fluid) { - align-items: center; - justify-content: center; -} - -.img-wrapper--fluid { - display: flex; - padding-bottom: 100%; - overflow: hidden; -} - -.img-wrapper--fluid .img { - position: absolute; -} - -.img-wrapper--fluid.img-wrapper--center .img { - top: 0; - right: 0; - bottom: 0; - left: 0; - margin: auto; -} - -.img-wrapper--circle { - border-radius: 50%; -} - -.img-wrapper--circle .img { - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover; -} - -.img-wrapper--with-border { - border: 1px solid #e6e6e8; -} - -.img-wrapper--hoverable:hover { - outline: 2px solid #3c3eff; - outline-offset: -2px; -} - -.img-wrapper--scale-down .img { - width: calc(70% - 2rem); - height: calc(70% - 2rem); - -o-object-fit: scale-down; - object-fit: scale-down; -} - -.img-wrapper--no-background { - background: 0 0; -} - -wsp-skeleton-image { - min-width: 1px; - min-height: 1px; -} - -.region { - display: flex; - flex-basis: 100%; - flex-flow: row wrap; - margin-bottom: 1rem; - margin-left: -1rem; -} - -.region__bleedtop { - margin-top: -1.5rem; -} - -.region__bleedbottom { - margin-bottom: 0; -} - -.region__margin { - margin-left: 0; -} - -.region__header { - display: flex; - flex-flow: row wrap; - width: calc(100% + 1rem); - margin-bottom: 1rem; - margin-left: -1rem; -} - -.feature>.region__header { - padding-left: 0; -} - -.region--async .region__header :after { - visibility: hidden; - content: "."; -} - -.region__header--countdown { - flex-flow: nowrap; -} - -.region__header--more-link { - flex-basis: 100%; - max-width: max-content; -} - -.region__header-title { - flex-grow: 1; - padding-left: 1rem; - margin: 0; -} - -.region__header-title-wrapper { - display: flex; - flex-flow: row wrap; - flex-grow: 1; -} - -.region__header-title--not-last { - flex-grow: 0; -} - -.region__header-title--countdown { - display: flex; - flex: 0 0 100%; - align-items: center; - order: 4; - margin-top: .25rem; -} - -.region__header-title--countdown svg { - align-self: baseline; -} - -@media screen and (min-width:480px) { - .region__header-title--countdown { - flex: none; - flex-grow: 1; - order: 0; - margin-top: 0; - } -} - -.region__header-title-placeholder { - flex-grow: 1; -} - -.fade-in-region { - animation: fadeInRegion .3s ease-in forwards; -} - -.fade-out-region { - animation: fadeInRegion .3s ease-out forwards reverse; -} - -.feature { - position: relative; - display: flex; - flex-flow: column; - flex-shrink: 0; - padding-left: 1rem; - margin-bottom: 1rem; -} - -@media (max-width:29.9375em) { - .feature--full-screen-small { - flex-grow: 1; - padding-left: 0; - margin-right: -1rem; - } -} - -.editorial-card { - display: flex; - flex-flow: column; - flex-grow: 1; -} - -.editorial-card a { - color: inherit; -} - -.editorial-card__title { - font-weight: 600; -} - -.editorial-card__image { - padding-bottom: 50%; -} - -.image-card { - display: inline-block; -} - -.image-card__image-link { - display: block; - color: #03031a; -} - -.image-card__image { - background: #fafafa; -} - -.image-card__title { - display: block; - overflow: hidden; - font-size: 1rem; - text-align: center; - text-overflow: ellipsis; -} - -.image-card--landscape { - max-width: 15rem; -} - -.image-card--landscape .image-card__image { - padding-bottom: 100%; -} - -.image-card--landscape .image-card__image .img { - margin-left: -73.5%; - width: auto; - max-width: 46.3125rem; - height: 100%; - max-height: 18.75rem; -} - -@media (min-width:30em) { - .image-card--landscape { - max-width: 46.3125rem; - } -} - -@media (min-width:48em) { - .image-card--landscape .image-card__image { - padding-bottom: 66.6666666667%; - } - - .image-card--landscape .image-card__image .img { - margin-left: -32.3333333333%; - } -} - -.product-card__image { - flex-shrink: 0; - margin-bottom: .5rem; - background-color: #fafafa; -} - -.product-card--highlight .product-card__image { - background-color: #fff; -} - -.product-card__image .img { - padding: 12%; - mix-blend-mode: darken; - will-change: opacity; -} - -.product-card__title { - display: inline-block; - display: -webkit-box; - max-height: 3rem; - margin-bottom: .25rem; - overflow: hidden; - font-weight: 600; - line-height: 1.5rem; - color: inherit; - text-overflow: ellipsis; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; -} - -.product-card__price { - margin: auto 0 0; - color: #f91906; -} - -.product-card__price:before { - content: "€ "; -} - -.product-card__content { - display: flex; - flex-flow: column; - flex-grow: 1; -} - -.product-card--skeleton .product-card__price { - visibility: hidden; -} - -.product-card--landscape { - flex-flow: row nowrap; - width: calc(100% + 1rem); - min-height: 6.25rem; - padding-left: 0; - margin-left: -1rem; -} - -.product-card--landscape .product-card__content { - flex-grow: 1; - margin: auto 0 auto 1rem; -} - -.product-card--landscape .product-card__image { - width: calc(40% - 1rem); - max-width: 17.5rem; - padding-bottom: 25%; - margin: 0 0 0 1rem; -} - -.login-card__content-wrapper { - position: relative; - padding-bottom: 100%; -} - -.login-card__content { - position: absolute; - display: flex; - flex-flow: column; - width: 100%; - min-height: 100%; - padding: 12%; - background: #f0f6ff; -} - -.login-card__subtitle, -.login-card__title { - margin-bottom: .5rem; -} - -.login-card__cta-button { - margin: auto 0 0-.33rem; -} - -@media (max-width:29.9375em) { - .login-card__subtitle { - display: none; - } - - .login-card__cta-button { - margin-top: 0; - } -} - -.day-deal { - display: grid; - grid-template-areas: "header" "image" "text"; - padding: 24px 16px; - text-decoration: none; - background-color: #aff2d3; -} - -@media (min-width:30em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal { - grid-template-areas: "image header" "image text"; - grid-template-columns: auto 1fr; - } -} - -@media (min-width:30em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal { - grid-template-areas: "image header" "image text"; - grid-template-columns: auto 1fr; - } -} - -@media (min-width:64em) { - .feature.u-1\/2\@screen-large-up .day-deal { - grid-template-areas: "image header" "image text"; - grid-template-columns: auto 1fr; - } -} - -@media (min-width:41.25em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal { - grid-template-areas: "header image text"; - grid-template-columns: auto auto 1fr; - padding: 8px 16px; - } -} - -@media (min-width:41.25em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal { - grid-template-areas: "header image text"; - grid-template-columns: auto auto 1fr; - padding: 8px 16px; - } -} - -@media (min-width:64em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal { - grid-template-areas: "header image text cta"; - grid-template-columns: auto auto 1fr auto; - } -} - -.day-deal .header-wrapper { - display: flex; - flex-direction: column; - grid-area: header; - align-items: center; - color: #0000a4; -} - -@media (min-width:30em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal .header-wrapper { - margin-top: auto; - } -} - -@media (min-width:30em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal .header-wrapper { - margin-top: auto; - } -} - -@media (min-width:64em) { - .feature.u-1\/2\@screen-large-up .day-deal .header-wrapper { - margin-top: auto; - } -} - -@media (min-width:41.25em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal .header-wrapper { - align-items: flex-start; - margin: auto 0; - } -} - -@media (min-width:41.25em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal .header-wrapper { - align-items: flex-start; - margin: auto 0; - } -} - -.day-deal .header-wrapper .title { - padding: 0; - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; - line-height: 1.25; - font-size: 1.875rem; - color: inherit; -} - -.day-deal .header-wrapper .title .sub-title { - color: #03031a; -} - -.day-deal .header-wrapper .title .icon { - width: auto; - height: auto; - padding-bottom: 6px; - margin-right: -6px; - margin-left: -3px; -} - -.day-deal .header-wrapper .countdown { - font-family: produkt, arial, helvetica, sans-serif; - font-size: 1.5rem; - font-weight: 300; -} - -.day-deal .image-wrapper { - position: relative; - display: block; - grid-area: image; - width: 80%; - padding-top: 80%; - margin: 24px auto; - background-color: #fff; - border-radius: 50%; -} - -@media (min-width:30em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal .image-wrapper { - align-items: flex-start; - width: 220px; - height: 220px; - padding-top: 0; - margin: 0 16px 0 0; - } -} - -@media (min-width:30em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal .image-wrapper { - align-items: flex-start; - width: 220px; - height: 220px; - padding-top: 0; - margin: 0 16px 0 0; - } -} - -@media (min-width:64em) { - .feature.u-1\/2\@screen-large-up .day-deal .image-wrapper { - align-items: flex-start; - width: 220px; - height: 220px; - padding-top: 0; - margin: 0 16px 0 0; - } -} - -@media (min-width:41.25em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal .image-wrapper { - margin: 0 24px; - } -} - -@media (min-width:41.25em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal .image-wrapper { - margin: 0 24px; - } -} - -.day-deal .image-wrapper .img { - position: absolute; - top: 20%; - left: 20%; - width: 60%; - height: 60%; - -o-object-fit: contain; - object-fit: contain; -} - -.day-deal .text-wrapper { - display: flex; - flex-direction: column; - grid-area: text; - align-items: center; - color: #03031a; - text-align: center; -} - -@media (min-width:41.25em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal .text-wrapper { - align-items: flex-start; - margin: auto 0; - text-align: left; - } -} - -@media (min-width:41.25em) and (max-width:48em) { - .feature.u-1\/2\@screen-large-up .day-deal .text-wrapper { - align-items: flex-start; - margin: auto 0; - text-align: left; - } -} - -.day-deal .text-wrapper .title { - margin: 0; - font-family: produkt, arial, helvetica, sans-serif; - font-size: 1.375rem; - font-weight: 600; - line-height: 1; -} - -.day-deal .text-wrapper .price-wrapper { - position: relative; - z-index: 0; - padding: 4px 7px; - margin-top: 8px; - margin-right: 8px; - color: #fff; - background-color: #ff240d; - border-radius: 4px 0 0 4px; -} - -.day-deal .text-wrapper .price-wrapper:after { - position: absolute; - top: 0; - right: -11px; - bottom: 0; - z-index: -1; - width: 1.5rem; - height: 100%; - content: ""; - background-color: #ff240d; - border: 0; - border-radius: 0 4px 4px 0; - transform: skewX(-15deg); -} - -.day-deal .text-wrapper .price-wrapper .promo-price { - color: #fff; -} - -.day-deal .text-wrapper .disclaimer { - margin-top: 8px; - margin-bottom: 0; - font-size: 14px; - color: #686876; -} - -.day-deal .cta-wrapper { - display: none; - grid-area: cta; - margin: auto; - margin-right: .5rem; -} - -@media (min-width:64em) { - .feature:not(.u-1\/2\@screen-large-up) .day-deal .cta-wrapper { - display: block; - } -} - -.day-deal.day-deal--PRICE_ALARM { - background-color: #fff59e; -} - -.day-deal.day-deal--new-color-experiment .text-wrapper .title { - color: #0000a4; -} - -.email-opt-in-banner { - display: flex; - flex-direction: column; - justify-content: space-between; - width: 100%; - padding: 1rem; - margin: 2rem 0; - background-position: right bottom; - background-size: cover; -} - -@media (max-width:29.9375em) { - .email-opt-in-banner { - width: calc(100% + 2rem); - margin: 0-1rem; - } - - .region .email-opt-in-banner { - margin: 0; - } -} - -.email-opt-in-banner__subtitle, -.email-opt-in-banner__title { - color: #0a1398; -} - -.email-opt-in-banner__title { - margin-bottom: .3rem; - font-family: produkt, arial, helvetica, sans-serif; - font-size: 32px; - font-weight: 800; - line-height: 1.25; -} - -@media (max-width:29.9375em) { - .email-opt-in-banner__title { - margin-bottom: .2rem; - font-size: 18px; - } -} - -.email-opt-in-banner__subtitle { - font-family: produkt, arial, helvetica, sans-serif; - font-size: 26px; - line-height: 1.25; -} - -@media (max-width:29.9375em) { - .email-opt-in-banner__subtitle { - width: 65%; - font-size: 16px; - } -} - -.email-opt-in-banner__button { - margin-top: 2rem; -} - -@media (max-width:29.9375em) { - .email-opt-in-banner__button { - margin-top: 1rem; - } -} - -.email-opt-in-banner__button__icon { - vertical-align: -6px; -} - -.email-opt-in-personalized-banner { - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-between; - width: 100%; - padding: 1.5rem .5rem; - background-position: right bottom; - background-size: cover; -} - -@media (max-width:29.9375em) { - .email-opt-in-personalized-banner { - align-items: flex-start; - } -} - -.email-opt-in-personalized-banner__titles { - display: flex; - flex-direction: column; - align-items: center; -} - -@media (max-width:29.9375em) { - .email-opt-in-personalized-banner__titles { - align-items: flex-start; - } -} - -.email-opt-in-personalized-banner__subtitle, -.email-opt-in-personalized-banner__title { - margin-bottom: 1rem; - line-height: 1.5; -} - -@media (max-width:29.9375em) { - - .email-opt-in-personalized-banner__subtitle, - .email-opt-in-personalized-banner__title { - line-height: 1.3; - } -} - -.email-opt-in-personalized-banner__title { - font-family: produkt, arial, helvetica, sans-serif; - font-size: 18px; - font-weight: 700; -} - -.email-opt-in-personalized-banner__subtitle { - font-family: graphik, arial, helvetica, sans-serif; - font-size: 14px; -} - -.email-opt-in-personalized-banner__button { - margin-bottom: .5rem; -} - -.email-opt-in-personalized-banner__button__icon { - vertical-align: -6px; -} - -@media (max-width:29.9375em) { - body:has(> div[role=dialog]) wsp-email-opt-in-toaster { - display: none; - } -} - -.email-opt-in-toaster { - position: fixed; - top: auto; - bottom: 0; - z-index: 99999; - width: 100%; - padding: 1.5rem 1rem 1rem; - margin: 0 auto; - background-color: #fff; - box-shadow: 0-2px 4px rgba(49, 49, 47, .3); - animation: slide-in-bottom 1s ease-in forwards; -} - -@media (min-width:48em) { - .email-opt-in-toaster { - left: calc(50% - 18rem); - max-width: 36rem; - } -} - -.email-opt-in-toaster__close { - position: absolute; - top: 0; - right: 0; -} - -.email-opt-in-toaster__button { - color: #fff; -} - -.email-opt-in-toaster__button__icon { - vertical-align: -6px; -} - -.email-opt-in-modal__disclaimer { - color: #686876; -} - -.email-opt-in-error { - display: flex; - flex-direction: column; -} - -.email-opt-in-error__alert { - width: 75%; -} - -@media (max-width:29.9375em) { - .email-opt-in-error__alert { - width: 100%; - } -} - -.email-opt-in-error__buttons { - display: flex; -} - -@media (max-width:29.9375em) { - .email-opt-in-error__buttons { - flex-direction: column-reverse; - } - - .email-opt-in-error__buttons .email-opt-in-error__retry-btn { - margin-right: 0; - } - - .email-opt-in-error__buttons .email-opt-in-error__continue-btn { - margin-bottom: .6rem; - margin-left: 0; - } -} - -.collapsible-region__content { - display: flex; - flex-flow: row wrap; - width: 100%; -} - -.collapsible-region:not(.is-expanded) .collapsible-region__content>.collapsible-region__screen-small~* { - display: none; -} - -@media (min-width:30em) { - .collapsible-region:not(.is-expanded) .collapsible-region__content>.collapsible-region__screen-small~* { - display: inherit; - } - - .collapsible-region:not(.is-expanded) .collapsible-region__content>.collapsible-region__screen-medium-up~* { - display: none; - } -} - -@media (min-width:48em) { - .collapsible-region:not(.is-expanded) .collapsible-region__content>.collapsible-region__screen-medium-up~* { - display: inherit; - } - - .collapsible-region:not(.is-expanded) .collapsible-region__content>.collapsible-region__screen-large-up~* { - display: none; - } -} - -.collapsible-region.is-expanded .collapsible-region__btn-more { - display: none; -} - -.collapsible-region.is-expanded .collapsible-region__btn-less { - display: inline-block; -} - -@media (max-width:29.9375em) { - - .collapsible-region.is-expanded .collapsible-region__btn-less, - .collapsible-region:not(.is-expanded) .collapsible-region__btn-more { - display: block; - } - - .collapsible-region.is-expanded .collapsible-region__btn-less a, - .collapsible-region:not(.is-expanded) .collapsible-region__btn-more a { - width: 100%; - text-align: center; - } -} - -.flex-banner-main-link:hover { - text-decoration: none; -} - -.flex-banner-main { - position: relative; - width: 100%; -} - -.flex-banner-main--circle-hero { - display: grid; -} - -@media (min-width:48em) { - .flex-banner-main--circle-hero { - grid-template-columns: 1fr 1fr; - gap: 1.5rem; - } -} - -.region:first-child .flex-banner-main { - min-height: 10rem; - margin-top: -1.5rem; -} - -@media (min-width:30em) { - .region:first-child .flex-banner-main { - min-height: 11.375rem; - margin-top: 0; - } -} - -.flex-banner-main--placeholder { - display: block; - max-height: 272px; - overflow: hidden; - background-color: #f8f8f8; - aspect-ratio: 39/17; -} - -@media (min-width:48em) { - .flex-banner-main--placeholder { - max-height: 295px; - aspect-ratio: 1152/295; - } -} - -.flex-banner-main--placeholder:after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - content: ""; - background-image: linear-gradient(90deg, rgba(179, 179, 186, 0)0, rgba(179, 179, 186, .2) 20%, rgba(179, 179, 186, .5) 60%, rgba(179, 179, 186, 0)); - transform: translateX(-100%); - animation: shimmer 1.5s infinite; -} - -.flex-banner-main--placeholder--pega-card { - min-height: 14.375rem; -} - -.flex-banner-main__picture { - display: flex; - justify-content: center; -} - -.flex-banner-main--circle-hero .flex-banner-main__picture { - order: 1; -} - -@media (min-width:48em) { - .flex-banner-main--circle-hero .flex-banner-main__picture { - order: 2; - -webkit-clip-path: ellipse(56% 110%at 56% 50%); - clip-path: ellipse(56% 110%at 56% 50%); - } -} - -.flex-banner-main__img { - max-width: 100%; - height: auto; -} - -.flex-banner-main--circle-hero .flex-banner-main__img { - width: 100%; - aspect-ratio: 16/9; -} - -@media (min-width:48em) { - .flex-banner-main--circle-hero .flex-banner-main__img { - height: 100%; - -o-object-fit: cover; - object-fit: cover; - } -} - -.flex-banner-main__content { - order: 2; - padding: 1rem 5rem 1rem 1rem; -} - -@media (min-width:48em) { - .flex-banner-main__content { - display: grid; - place-items: start; - order: 1; - padding: 2rem 0 2rem 1.5rem; - place-content: space-between; - } -} - -.flex-banner-main__text-container { - margin-right: 1rem; -} - -.flex-banner-main__title { - margin-bottom: 0; - font-size: 1.75rem; - line-height: 2rem; - color: #0000a4; -} - -.flex-banner-main__title--light { - color: #fff; -} - -@media (min-width:48em) { - .flex-banner-main__title { - font-size: 2rem; - line-height: 1; - } -} - -@media (min-width:64em) { - .flex-banner-main__title { - font-size: 2.75rem; - } -} - -@media (min-width:75em) { - .flex-banner-main__title { - font-size: 3.25rem; - } -} - -.flex-banner-main__subtitle { - font-size: 1.5rem; - font-weight: 300; - line-height: 1; -} - -@media (min-width:48em) { - .flex-banner-main__subtitle { - font-size: 1.75rem; - } -} - -@media (min-width:64em) { - .flex-banner-main__subtitle { - font-size: 2.5rem; - } -} - -@media (min-width:75em) { - .flex-banner-main__subtitle { - font-size: 3rem; - } -} - -.flex-banner-main__button { - margin-top: 1.75rem; -} - -.flex-banner-main__icon-only-button { - right: 1rem; - bottom: 1rem; -} - -.flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) { - min-height: 20rem; -} - -.flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__title { - font-size: 2rem; - font-weight: 900; -} - -.flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__subtitle { - font-size: 1.625rem; -} - -.flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__image, -.flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__image-wrapper { - height: 100%; -} - -.flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__extra { - padding-right: 1rem; -} - -@media (min-width:30em) { - .flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) { - min-height: 16.875rem; - } - - .flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__title { - font-size: 2.75rem; - } - - .flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__subtitle { - font-size: 2rem; - } - - .flexbanner--main:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__extra { - padding: 0; - } -} - -div[id^=promotion_page_banner-] .flexbanner__content { - width: 55%; -} - -div[id^=promotion_page_banner-] .flexbanner__image-wrapper { - width: 45%; -} - -@media (max-width:29.9375em) { - div[id^=promotion_page_banner-] .flexbanner__image { - background-position-x: 40%; - } - - div[id^=promotion_page_banner-] .flexbanner__title { - font-size: 1.25rem; - } - - div[id^=promotion_page_banner-] .flexbanner__subtitle { - font-size: 1.125rem; - } -} - -div[id^=sustainable_boxes_banner-] .flexbanner__content { - width: 60%; -} - -div[id^=sustainable_boxes_banner-] .flexbanner__image-wrapper { - width: 40%; -} - -@media (max-width:29.9375em) { - div[id^=sustainable_boxes_banner-] .flexbanner__title { - font-size: 1.125rem; - } - - div[id^=sustainable_boxes_banner-] .flexbanner__subtitle { - font-size: .875rem; - } -} - -.subcategory-entrances .image-card__image { - background-color: #f7faff; -} - -@media (min-width:48em) { - .subcategory-entrances .image-card__image { - padding-bottom: 10rem; - } -} - -.subcategory-entrances .image-card__image img { - max-height: 128px; - mix-blend-mode: multiply; -} - -.account-nav { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - font-size: .875rem; -} - -.offcanvas-container.slide-in .account-nav { - border-bottom: 1px solid #b3b3ba; -} - -.account-nav__item.is-active { - box-shadow: inset .25rem 0 0 0#00f; -} - -.account-dropdown .account-nav__item { - border-top: 1px solid #b3b3ba; -} - -.account-dropdown .account-nav__item:first-child { - border-top: 0; -} - -.offcanvas-container.slide-in .account-nav__item { - position: relative; -} - -.offcanvas-container.slide-in .account-nav__item:after { - position: absolute; - top: 50%; - right: .75em; - display: block; - width: 1.5em; - height: 1.5em; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-size: 1.5em; - transform: translateY(-50%); -} - -.account-nav__link { - display: block; - padding: .75rem; - color: #03031a; -} - -.account-nav__link:hover { - color: #00f; - text-decoration: none; -} - -.is-active .account-nav__link:hover { - color: #03031a; -} - -.is-active .account-nav__link { - cursor: default; -} - -.account-dropdown .account-nav__link { - padding-left: .5rem; -} - -.offcanvas-container.slide-in .account-nav__link { - padding-top: 1rem; - padding-right: 3rem; - padding-bottom: 1rem; -} - -.footer-app-slot { - display: flex; - align-items: center; -} - -@media (min-width:30em) { - .footer-app-slot { - display: none; - } -} - -.footer-app-slot__icon { - display: block; - width: 3rem; - height: 4.375rem; - background-image: url(/nl/static/assets/images/sass/app-icons/iosapp@2x.png); - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} - -.footer-app-slot__content { - flex-grow: 1; - padding: .5rem; -} - -.footer-app-slot__button { - display: flex; - justify-content: flex-end; - white-space: nowrap; -} - -.country-language__title { - margin-bottom: .75rem; - font-family: produkt, arial, helvetica, sans-serif; - font-size: 1.25rem; -} - -@media (min-width:30em) { - .country-language__title { - padding-top: .75rem; - } -} - -.country-language__subtitle { - font-size: 1.125rem; -} - -.deals-from-brands__brand-badges { - display: flex; - gap: .5rem; - margin-bottom: 1.5rem; - overflow-x: scroll; - list-style: none; - scroll-snap-type: x mandatory; - scroll-behavior: smooth; - scrollbar-width: none; - -ms-overflow-style: "none"; -} - -.deals-from-brands__brand-badges::-webkit-scrollbar, -.personalised-product-carousels__badges::-webkit-scrollbar { - display: none; - height: 0; -} - -.deals-from-brands__brand-badge { - flex-shrink: 0; - scroll-snap-align: start; - padding: .75rem 1rem; - cursor: pointer; - border: 1px solid #e6e6e8; - border-top-left-radius: 1.375rem 50%; - border-top-right-radius: 1.375rem 50%; - border-bottom-right-radius: 1.375rem 50%; - border-bottom-left-radius: 1.375rem 50%; -} - -.deals-from-brands__brand-badge span { - font-size: .875rem; - font-weight: 400; - line-height: 1.25rem; - pointer-events: none; -} - -.deals-from-brands__brand-badge--selected { - outline: 2px solid #0000ca; - outline-offset: -2px; -} - -.deals-from-brands__brand-badge--selected span { - color: #0000ca; -} - -.deals-from-brands__brand-badge--placeholder { - border-color: transparent; - outline-color: transparent; -} - -.deals-from-brands__brand-badge:hover { - outline: 2px solid #3c3eff; - outline-offset: -2px; -} - -.deals-from-brands__deal { - display: none; -} - -.deals-from-brands__deal--selected { - display: block; -} - -.personalised-product-carousels__badges { - display: flex; - gap: .5rem; - padding: .25rem; - margin-left: -.25rem; - overflow-x: scroll; - list-style: none; - scroll-snap-type: x mandatory; - scroll-behavior: smooth; - scrollbar-width: none; - -ms-overflow-style: "none"; -} - -.personalised-product-carousels__badge { - flex-shrink: 0; - padding: 0; - scroll-snap-align: start; - border-color: #e6e6e8; - border-style: solid; - border-width: 1px; -} - -.personalised-product-carousels__badge--selected { - color: #0000ca; - border-color: #0000ca; -} - -.personalised-product-carousels__badge--selected .personalised-product-carousels__badge-content { - border-color: #0000ca; -} - -.personalised-product-carousels__badge--placeholder, -.personalised-product-carousels__badge--placeholder:before { - border-color: transparent; -} - -.personalised-product-carousels__badge:hover, -.personalised-product-carousels__badge:hover .personalised-product-carousels__badge-content { - border-color: #3c3eff; -} - -.personalised-product-carousels__badge-content { - padding: .75rem 1rem; - font-size: .875rem; - font-weight: 400; - line-height: 1.25rem; - pointer-events: none; - background-color: #fff; - border-color: transparent; - border-style: solid; - border-width: 1px; -} - -.personalised-product-carousels__carousel { - display: none; -} - -.personalised-product-carousels__carousel--selected { - display: block; -} - -.brand-page-card { - height: 100%; -} - -.brand-page-card__content { - display: flex; - overflow: hidden; - background-color: #f8f8f8; -} - -.brand-page-card__content:hover .brand-page-card__subtitle, -.brand-page-card__content:hover .brand-page-card__title { - text-decoration: underline; -} - -.brand-page-card__img { - flex-shrink: 0; - aspect-ratio: 3/4; - width: 42%; - -o-object-fit: cover; - object-fit: cover; -} - -@media (min-width:30em) { - .brand-page-card__img { - width: 36%; - } -} - -.brand-page-card__info { - display: grid; - grid-template-rows: 1fr 2fr; - grid-template-columns: 1fr; - grid-row-gap: .5rem; - padding: 1rem; -} - -.brand-page-card__logo-container { - display: grid; - align-items: end; -} - -.brand-page-card__logo { - max-width: 4.5rem; - max-height: 2rem; -} - -.brand-page-card__subtitle, -.brand-page-card__title { - font-family: produkt, arial, helvetica, sans-serif; - font-size: 18px; - display: inline-block; - display: -webkit-box; - max-height: 2.5em; - overflow: hidden; - line-height: 1.25; - text-overflow: ellipsis; - white-space: normal; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; - margin-bottom: 0; - font-weight: 700; -} - -.brand-page-card__subtitle { - max-height: 1.25em; - -webkit-line-clamp: 1; - font-weight: 300; -} - -.u-rounded { - border-radius: .5rem; -} - -.u-nosp { - padding: 0; - margin: 0; -} - -.u-br--xxs { - border-radius: .25rem; -} - -.flexbanner--with-aspect-ratio .flexbanner__image-container-wrapper, -.u-br--xs { - border-radius: .5rem; -} - -.u-br--s { - border-radius: .75rem; -} - -.brand-page-card__content, -.u-br--m { - border-radius: 1rem; -} - -.personalised-product-carousels__badge, -.personalised-product-carousels__badge-content, -.u-br--l { - border-radius: 1.5rem; -} - -.u-m--0 { - margin: 0; -} - -.u-m--xxs { - margin: .25rem; -} - -.u-m--xs { - margin: .5rem; -} - -.u-m--sm { - margin: .75rem; -} - -.u-m, -.u-m--m { - margin: 1rem; -} - -.u-m--lg { - margin: 1.5rem; -} - -.u-m--xl { - margin: 2rem; -} - -.u-m--xxl { - margin: 3rem; -} - -.u-mt--0 { - margin-top: 0; -} - -.u-mt--xxs { - margin-top: .25rem; -} - -.u-mt--xs { - margin-top: .5rem; -} - -.u-mt--sm { - margin-top: .75rem; -} - -.u-mt, -.u-mt--m { - margin-top: 1rem; -} - -.u-mt--lg { - margin-top: 1.5rem; -} - -.u-mt--xl { - margin-top: 2rem; -} - -.u-mt--xxl { - margin-top: 3rem; -} - -.u-mr--0 { - margin-right: 0; -} - -.u-mr--xxs { - margin-right: .25rem; -} - -.u-mr--xs { - margin-right: .5rem; -} - -.u-mr--sm { - margin-right: .75rem; -} - -.u-mr, -.u-mr--m { - margin-right: 1rem; -} - -.u-mr--lg { - margin-right: 1.5rem; -} - -.u-mr--xl { - margin-right: 2rem; -} - -.u-mr--xxl { - margin-right: 3rem; -} - -.u-mb--0 { - margin-bottom: 0; -} - -.u-mb--xxs { - margin-bottom: .25rem; -} - -.u-mb--xs { - margin-bottom: .5rem; -} - -.u-mb--sm { - margin-bottom: .75rem; -} - -.personalised-product-carousels__badges, -.u-mb, -.u-mb--m { - margin-bottom: 1rem; -} - -.u-mb--lg { - margin-bottom: 1.5rem; -} - -.u-mb--xl { - margin-bottom: 2rem; -} - -.u-mb--xxl { - margin-bottom: 3rem; -} - -.u-ml--0 { - margin-left: 0; -} - -.u-ml--xxs { - margin-left: .25rem; -} - -.u-ml--xs { - margin-left: .5rem; -} - -.u-ml--sm { - margin-left: .75rem; -} - -.u-ml, -.u-ml--m { - margin-left: 1rem; -} - -.u-ml--lg { - margin-left: 1.5rem; -} - -.u-ml--xl { - margin-left: 2rem; -} - -.u-ml--xxl { - margin-left: 3rem; -} - -.u-p--0 { - padding: 0; -} - -.u-p--xxs { - padding: .25rem; -} - -.u-p--xs { - padding: .5rem; -} - -.u-p--sm { - padding: .75rem; -} - -.u-p, -.u-p--m { - padding: 1rem; -} - -.u-p--lg { - padding: 1.5rem; -} - -.u-p--xl { - padding: 2rem; -} - -.u-p--xxl { - padding: 3rem; -} - -.u-pt--0 { - padding-top: 0; -} - -.u-pt--xxs { - padding-top: .25rem; -} - -.u-pt--xs { - padding-top: .5rem; -} - -.u-pt--sm { - padding-top: .75rem; -} - -.u-pt, -.u-pt--m { - padding-top: 1rem; -} - -.u-pt--lg { - padding-top: 1.5rem; -} - -.u-pt--xl { - padding-top: 2rem; -} - -.u-pt--xxl { - padding-top: 3rem; -} - -.u-pr--0 { - padding-right: 0; -} - -.u-pr--xxs { - padding-right: .25rem; -} - -.u-pr--xs { - padding-right: .5rem; -} - -.u-pr--sm { - padding-right: .75rem; -} - -.u-pr, -.u-pr--m { - padding-right: 1rem; -} - -.u-pr--lg { - padding-right: 1.5rem; -} - -.u-pr--xl { - padding-right: 2rem; -} - -.u-pr--xxl { - padding-right: 3rem; -} - -.u-pb--0 { - padding-bottom: 0; -} - -.u-pb--xxs { - padding-bottom: .25rem; -} - -.u-pb--xs { - padding-bottom: .5rem; -} - -.u-pb--sm { - padding-bottom: .75rem; -} - -.u-pb, -.u-pb--m { - padding-bottom: 1rem; -} - -.u-pb--lg { - padding-bottom: 1.5rem; -} - -.u-pb--xl { - padding-bottom: 2rem; -} - -.u-pb--xxl { - padding-bottom: 3rem; -} - -.u-pl--0 { - padding-left: 0; -} - -.u-pl--xxs { - padding-left: .25rem; -} - -.u-pl--xs { - padding-left: .5rem; -} - -.u-pl--sm { - padding-left: .75rem; -} - -.u-pl, -.u-pl--m { - padding-left: 1rem; -} - -.u-pl--lg { - padding-left: 1.5rem; -} - -.u-pl--xl { - padding-left: 2rem; -} - -.u-pl--xxl { - padding-left: 3rem; -} - -@media (min-width:48em) { - .u-m--0\@screen-large-up { - margin: 0; - } -} - -@media (max-width:29.9375em) { - .u-m--0\@screen-small-only { - margin: 0; - } -} - -@media (min-width:48em) { - .u-m--xxs\@screen-large-up { - margin: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xxs\@screen-small-only { - margin: .25rem; - } -} - -@media (min-width:48em) { - .u-m--xs\@screen-large-up { - margin: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xs\@screen-small-only { - margin: .5rem; - } -} - -@media (min-width:48em) { - .u-m--sm\@screen-large-up { - margin: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-m--sm\@screen-small-only { - margin: .75rem; - } -} - -@media (min-width:48em) { - .u-m--m\@screen-large-up { - margin: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-m--m\@screen-small-only { - margin: 1rem; - } -} - -@media (min-width:48em) { - .u-m\@screen-large-up { - margin: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-m\@screen-small-only { - margin: 1rem; - } -} - -@media (min-width:48em) { - .u-m--lg\@screen-large-up { - margin: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-m--lg\@screen-small-only { - margin: 1.5rem; - } -} - -@media (min-width:48em) { - .u-m--xl\@screen-large-up { - margin: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xl\@screen-small-only { - margin: 2rem; - } -} - -@media (min-width:48em) { - .u-m--xxl\@screen-large-up { - margin: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-m--xxl\@screen-small-only { - margin: 3rem; - } -} - -@media (min-width:48em) { - .u-mt--0\@screen-large-up { - margin-top: 0; - } -} - -@media (max-width:29.9375em) { - .u-mt--0\@screen-small-only { - margin-top: 0; - } -} - -@media (min-width:48em) { - .u-mt--xxs\@screen-large-up { - margin-top: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xxs\@screen-small-only { - margin-top: .25rem; - } -} - -@media (min-width:48em) { - .u-mt--xs\@screen-large-up { - margin-top: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xs\@screen-small-only { - margin-top: .5rem; - } -} - -@media (min-width:48em) { - .u-mt--sm\@screen-large-up { - margin-top: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--sm\@screen-small-only { - margin-top: .75rem; - } -} - -@media (min-width:48em) { - .u-mt--m\@screen-large-up { - margin-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--m\@screen-small-only { - margin-top: 1rem; - } -} - -@media (min-width:48em) { - .u-mt\@screen-large-up { - margin-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mt\@screen-small-only { - margin-top: 1rem; - } -} - -@media (min-width:48em) { - .u-mt--lg\@screen-large-up { - margin-top: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--lg\@screen-small-only { - margin-top: 1.5rem; - } -} - -@media (min-width:48em) { - .u-mt--xl\@screen-large-up { - margin-top: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xl\@screen-small-only { - margin-top: 2rem; - } -} - -@media (min-width:48em) { - .u-mt--xxl\@screen-large-up { - margin-top: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mt--xxl\@screen-small-only { - margin-top: 3rem; - } -} - -@media (min-width:48em) { - .u-mr--0\@screen-large-up { - margin-right: 0; - } -} - -@media (max-width:29.9375em) { - .u-mr--0\@screen-small-only { - margin-right: 0; - } -} - -@media (min-width:48em) { - .u-mr--xxs\@screen-large-up { - margin-right: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xxs\@screen-small-only { - margin-right: .25rem; - } -} - -@media (min-width:48em) { - .u-mr--xs\@screen-large-up { - margin-right: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xs\@screen-small-only { - margin-right: .5rem; - } -} - -@media (min-width:48em) { - .u-mr--sm\@screen-large-up { - margin-right: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--sm\@screen-small-only { - margin-right: .75rem; - } -} - -@media (min-width:48em) { - .u-mr--m\@screen-large-up { - margin-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--m\@screen-small-only { - margin-right: 1rem; - } -} - -@media (min-width:48em) { - .u-mr\@screen-large-up { - margin-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mr\@screen-small-only { - margin-right: 1rem; - } -} - -@media (min-width:48em) { - .u-mr--lg\@screen-large-up { - margin-right: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--lg\@screen-small-only { - margin-right: 1.5rem; - } -} - -@media (min-width:48em) { - .u-mr--xl\@screen-large-up { - margin-right: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xl\@screen-small-only { - margin-right: 2rem; - } -} - -@media (min-width:48em) { - .u-mr--xxl\@screen-large-up { - margin-right: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mr--xxl\@screen-small-only { - margin-right: 3rem; - } -} - -@media (min-width:48em) { - .u-mb--0\@screen-large-up { - margin-bottom: 0; - } -} - -@media (max-width:29.9375em) { - .u-mb--0\@screen-small-only { - margin-bottom: 0; - } -} - -@media (min-width:48em) { - .u-mb--xxs\@screen-large-up { - margin-bottom: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xxs\@screen-small-only { - margin-bottom: .25rem; - } -} - -@media (min-width:48em) { - .u-mb--xs\@screen-large-up { - margin-bottom: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xs\@screen-small-only { - margin-bottom: .5rem; - } -} - -@media (min-width:48em) { - .u-mb--sm\@screen-large-up { - margin-bottom: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--sm\@screen-small-only { - margin-bottom: .75rem; - } -} - -@media (min-width:48em) { - .u-mb--m\@screen-large-up { - margin-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--m\@screen-small-only { - margin-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-mb\@screen-large-up { - margin-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-mb\@screen-small-only { - margin-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-mb--lg\@screen-large-up { - margin-bottom: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--lg\@screen-small-only { - margin-bottom: 1.5rem; - } -} - -@media (min-width:48em) { - .u-mb--xl\@screen-large-up { - margin-bottom: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xl\@screen-small-only { - margin-bottom: 2rem; - } -} - -@media (min-width:48em) { - .u-mb--xxl\@screen-large-up { - margin-bottom: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mb--xxl\@screen-small-only { - margin-bottom: 3rem; - } -} - -@media (min-width:48em) { - .u-ml--0\@screen-large-up { - margin-left: 0; - } -} - -@media (max-width:29.9375em) { - .u-ml--0\@screen-small-only { - margin-left: 0; - } -} - -@media (min-width:48em) { - .u-ml--xxs\@screen-large-up { - margin-left: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xxs\@screen-small-only { - margin-left: .25rem; - } -} - -@media (min-width:48em) { - .u-ml--xs\@screen-large-up { - margin-left: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xs\@screen-small-only { - margin-left: .5rem; - } -} - -@media (min-width:48em) { - .u-ml--sm\@screen-large-up { - margin-left: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--sm\@screen-small-only { - margin-left: .75rem; - } -} - -@media (min-width:48em) { - .u-ml--m\@screen-large-up { - margin-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--m\@screen-small-only { - margin-left: 1rem; - } -} - -@media (min-width:48em) { - .u-ml\@screen-large-up { - margin-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-ml\@screen-small-only { - margin-left: 1rem; - } -} - -@media (min-width:48em) { - .u-ml--lg\@screen-large-up { - margin-left: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--lg\@screen-small-only { - margin-left: 1.5rem; - } -} - -@media (min-width:48em) { - .u-ml--xl\@screen-large-up { - margin-left: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xl\@screen-small-only { - margin-left: 2rem; - } -} - -@media (min-width:48em) { - .u-ml--xxl\@screen-large-up { - margin-left: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-ml--xxl\@screen-small-only { - margin-left: 3rem; - } -} - -@media (min-width:48em) { - .u-p--0\@screen-large-up { - padding: 0; - } -} - -@media (max-width:29.9375em) { - .u-p--0\@screen-small-only { - padding: 0; - } -} - -@media (min-width:48em) { - .u-p--xxs\@screen-large-up { - padding: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xxs\@screen-small-only { - padding: .25rem; - } -} - -@media (min-width:48em) { - .u-p--xs\@screen-large-up { - padding: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xs\@screen-small-only { - padding: .5rem; - } -} - -@media (min-width:48em) { - .u-p--sm\@screen-large-up { - padding: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-p--sm\@screen-small-only { - padding: .75rem; - } -} - -@media (min-width:48em) { - .u-p--m\@screen-large-up { - padding: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-p--m\@screen-small-only { - padding: 1rem; - } -} - -@media (min-width:48em) { - .u-p\@screen-large-up { - padding: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-p\@screen-small-only { - padding: 1rem; - } -} - -@media (min-width:48em) { - .u-p--lg\@screen-large-up { - padding: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-p--lg\@screen-small-only { - padding: 1.5rem; - } -} - -@media (min-width:48em) { - .u-p--xl\@screen-large-up { - padding: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xl\@screen-small-only { - padding: 2rem; - } -} - -@media (min-width:48em) { - .u-p--xxl\@screen-large-up { - padding: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-p--xxl\@screen-small-only { - padding: 3rem; - } -} - -@media (min-width:48em) { - .u-pt--0\@screen-large-up { - padding-top: 0; - } -} - -@media (max-width:29.9375em) { - .u-pt--0\@screen-small-only { - padding-top: 0; - } -} - -@media (min-width:48em) { - .u-pt--xxs\@screen-large-up { - padding-top: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xxs\@screen-small-only { - padding-top: .25rem; - } -} - -@media (min-width:48em) { - .u-pt--xs\@screen-large-up { - padding-top: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xs\@screen-small-only { - padding-top: .5rem; - } -} - -@media (min-width:48em) { - .u-pt--sm\@screen-large-up { - padding-top: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--sm\@screen-small-only { - padding-top: .75rem; - } -} - -@media (min-width:48em) { - .u-pt--m\@screen-large-up { - padding-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--m\@screen-small-only { - padding-top: 1rem; - } -} - -@media (min-width:48em) { - .u-pt\@screen-large-up { - padding-top: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pt\@screen-small-only { - padding-top: 1rem; - } -} - -@media (min-width:48em) { - .u-pt--lg\@screen-large-up { - padding-top: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--lg\@screen-small-only { - padding-top: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pt--xl\@screen-large-up { - padding-top: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xl\@screen-small-only { - padding-top: 2rem; - } -} - -@media (min-width:48em) { - .u-pt--xxl\@screen-large-up { - padding-top: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pt--xxl\@screen-small-only { - padding-top: 3rem; - } -} - -@media (min-width:48em) { - .u-pr--0\@screen-large-up { - padding-right: 0; - } -} - -@media (max-width:29.9375em) { - .u-pr--0\@screen-small-only { - padding-right: 0; - } -} - -@media (min-width:48em) { - .u-pr--xxs\@screen-large-up { - padding-right: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xxs\@screen-small-only { - padding-right: .25rem; - } -} - -@media (min-width:48em) { - .u-pr--xs\@screen-large-up { - padding-right: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xs\@screen-small-only { - padding-right: .5rem; - } -} - -@media (min-width:48em) { - .u-pr--sm\@screen-large-up { - padding-right: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--sm\@screen-small-only { - padding-right: .75rem; - } -} - -@media (min-width:48em) { - .u-pr--m\@screen-large-up { - padding-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--m\@screen-small-only { - padding-right: 1rem; - } -} - -@media (min-width:48em) { - .u-pr\@screen-large-up { - padding-right: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pr\@screen-small-only { - padding-right: 1rem; - } -} - -@media (min-width:48em) { - .u-pr--lg\@screen-large-up { - padding-right: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--lg\@screen-small-only { - padding-right: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pr--xl\@screen-large-up { - padding-right: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xl\@screen-small-only { - padding-right: 2rem; - } -} - -@media (min-width:48em) { - .u-pr--xxl\@screen-large-up { - padding-right: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pr--xxl\@screen-small-only { - padding-right: 3rem; - } -} - -@media (min-width:48em) { - .u-pb--0\@screen-large-up { - padding-bottom: 0; - } -} - -@media (max-width:29.9375em) { - .u-pb--0\@screen-small-only { - padding-bottom: 0; - } -} - -@media (min-width:48em) { - .u-pb--xxs\@screen-large-up { - padding-bottom: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xxs\@screen-small-only { - padding-bottom: .25rem; - } -} - -@media (min-width:48em) { - .u-pb--xs\@screen-large-up { - padding-bottom: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xs\@screen-small-only { - padding-bottom: .5rem; - } -} - -@media (min-width:48em) { - .u-pb--sm\@screen-large-up { - padding-bottom: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--sm\@screen-small-only { - padding-bottom: .75rem; - } -} - -@media (min-width:48em) { - .u-pb--m\@screen-large-up { - padding-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--m\@screen-small-only { - padding-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-pb\@screen-large-up { - padding-bottom: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pb\@screen-small-only { - padding-bottom: 1rem; - } -} - -@media (min-width:48em) { - .u-pb--lg\@screen-large-up { - padding-bottom: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--lg\@screen-small-only { - padding-bottom: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pb--xl\@screen-large-up { - padding-bottom: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xl\@screen-small-only { - padding-bottom: 2rem; - } -} - -@media (min-width:48em) { - .u-pb--xxl\@screen-large-up { - padding-bottom: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pb--xxl\@screen-small-only { - padding-bottom: 3rem; - } -} - -@media (min-width:48em) { - .u-pl--0\@screen-large-up { - padding-left: 0; - } -} - -@media (max-width:29.9375em) { - .u-pl--0\@screen-small-only { - padding-left: 0; - } -} - -@media (min-width:48em) { - .u-pl--xxs\@screen-large-up { - padding-left: .25rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xxs\@screen-small-only { - padding-left: .25rem; - } -} - -@media (min-width:48em) { - .u-pl--xs\@screen-large-up { - padding-left: .5rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xs\@screen-small-only { - padding-left: .5rem; - } -} - -@media (min-width:48em) { - .u-pl--sm\@screen-large-up { - padding-left: .75rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--sm\@screen-small-only { - padding-left: .75rem; - } -} - -@media (min-width:48em) { - .u-pl--m\@screen-large-up { - padding-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--m\@screen-small-only { - padding-left: 1rem; - } -} - -@media (min-width:48em) { - .u-pl\@screen-large-up { - padding-left: 1rem; - } -} - -@media (max-width:29.9375em) { - .u-pl\@screen-small-only { - padding-left: 1rem; - } -} - -@media (min-width:48em) { - .u-pl--lg\@screen-large-up { - padding-left: 1.5rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--lg\@screen-small-only { - padding-left: 1.5rem; - } -} - -@media (min-width:48em) { - .u-pl--xl\@screen-large-up { - padding-left: 2rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xl\@screen-small-only { - padding-left: 2rem; - } -} - -@media (min-width:48em) { - .u-pl--xxl\@screen-large-up { - padding-left: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-pl--xxl\@screen-small-only { - padding-left: 3rem; - } - - .u-mb\@screen-small-only { - margin-bottom: 1rem; - } -} - -.u-m-bleed--s { - margin-right: -.75rem; - margin-left: -.75rem; -} - -.u-m--label { - margin-right: .25rem; -} - -.u-hide { - display: none; -} - -.u-show-inline { - display: inline; -} - -.u-show-inline-block { - display: inline-block; -} - -.u-show-block { - display: block; -} - -.u-show-flex { - display: flex; -} - -.u-show-table { - display: table; -} - -.u-show-table-row { - display: table-row; -} - -.u-show-table-cell { - display: table-cell; -} - -@media (max-width:29.9375em) { - .u-hide\@screen-small-only { - display: none; - } -} - -.u-show-inline\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-inline\@screen-small-only { - display: inline; - } -} - -.u-show-inline-block\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-inline-block\@screen-small-only { - display: inline-block; - } -} - -.u-show-block\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-block\@screen-small-only { - display: block; - } -} - -.u-show-flex\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-flex\@screen-small-only { - display: flex; - } -} - -.u-show-table\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-table\@screen-small-only { - display: table; - } -} - -.u-show-table-row\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-table-row\@screen-small-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-table-cell\@screen-small-only { - display: table-cell; - } -} - -@media (min-width:30em) { - .u-hide\@screen-medium-up { - display: none; - } -} - -.u-show-inline\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-inline\@screen-medium-up { - display: inline; - } -} - -.u-show-inline-block\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-inline-block\@screen-medium-up { - display: inline-block; - } -} - -.u-show-block\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-block\@screen-medium-up { - display: block; - } -} - -.u-show-flex\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-flex\@screen-medium-up { - display: flex; - } -} - -.u-show-table\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-table\@screen-medium-up { - display: table; - } -} - -.u-show-table-row\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-table-row\@screen-medium-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-table-cell\@screen-medium-up { - display: table-cell; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-hide\@screen-medium-only { - display: none; - } -} - -.u-show-inline\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-inline\@screen-medium-only { - display: inline; - } -} - -.u-show-inline-block\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-inline-block\@screen-medium-only { - display: inline-block; - } -} - -.u-show-block\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-block\@screen-medium-only { - display: block; - } -} - -.u-show-flex\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-flex\@screen-medium-only { - display: flex; - } -} - -.u-show-table\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table\@screen-medium-only { - display: table; - } -} - -.u-show-table-row\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table-row\@screen-medium-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table-cell\@screen-medium-only { - display: table-cell; - } -} - -@media (min-width:48em) { - .u-hide\@screen-large-up { - display: none; - } -} - -.u-show-inline\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-inline\@screen-large-up { - display: inline; - } -} - -.u-show-inline-block\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-inline-block\@screen-large-up { - display: inline-block; - } -} - -.u-show-block\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-block\@screen-large-up { - display: block; - } -} - -.u-show-flex\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-flex\@screen-large-up { - display: flex; - } -} - -.u-show-table\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-table\@screen-large-up { - display: table; - } -} - -.u-show-table-row\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-table-row\@screen-large-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-table-cell\@screen-large-up { - display: table-cell; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-hide\@screen-large-only { - display: none; - } -} - -.u-show-inline\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-inline\@screen-large-only { - display: inline; - } -} - -.u-show-inline-block\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-inline-block\@screen-large-only { - display: inline-block; - } -} - -.u-show-block\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-block\@screen-large-only { - display: block; - } -} - -.u-show-flex\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-flex\@screen-large-only { - display: flex; - } -} - -.u-show-table\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table\@screen-large-only { - display: table; - } -} - -.u-show-table-row\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table-row\@screen-large-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table-cell\@screen-large-only { - display: table-cell; - } -} - -@media (min-width:64em) { - .u-hide\@screen-xl-up { - display: none; - } -} - -.u-show-inline\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-inline\@screen-xl-up { - display: inline; - } -} - -.u-show-inline-block\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-inline-block\@screen-xl-up { - display: inline-block; - } -} - -.u-show-block\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-block\@screen-xl-up { - display: block; - } -} - -.u-show-flex\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-flex\@screen-xl-up { - display: flex; - } -} - -.u-show-table\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-table\@screen-xl-up { - display: table; - } -} - -.u-show-table-row\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-table-row\@screen-xl-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-table-cell\@screen-xl-up { - display: table-cell; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-hide\@screen-xl-only { - display: none; - } -} - -.u-show-inline\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-inline\@screen-xl-only { - display: inline; - } -} - -.u-show-inline-block\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-inline-block\@screen-xl-only { - display: inline-block; - } -} - -.u-show-block\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-block\@screen-xl-only { - display: block; - } -} - -.u-show-flex\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-flex\@screen-xl-only { - display: flex; - } -} - -.u-show-table\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table\@screen-xl-only { - display: table; - } -} - -.u-show-table-row\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table-row\@screen-xl-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table-cell\@screen-xl-only { - display: table-cell; - } -} - -@media (min-width:75em) { - .u-hide\@screen-xxl-up { - display: none; - } -} - -.u-show-inline\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-inline\@screen-xxl-up { - display: inline; - } -} - -.u-show-inline-block\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-inline-block\@screen-xxl-up { - display: inline-block; - } -} - -.u-show-block\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-block\@screen-xxl-up { - display: block; - } -} - -.u-show-flex\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-flex\@screen-xxl-up { - display: flex; - } -} - -.u-show-table\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-table\@screen-xxl-up { - display: table; - } -} - -.u-show-table-row\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-table-row\@screen-xxl-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-table-cell\@screen-xxl-up { - display: table-cell; - } -} - -.srt { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - white-space: nowrap; - border: 0; -} - -@media (max-width:29.9375em) { - .srt\@screen-small-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - white-space: nowrap; - border: 0; - } -} - -.u-text-center { - text-align: center; -} - -@media (max-width:29.9375em) { - .u-text-center\@screen-small { - text-align: center; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-text-center\@screen-medium { - text-align: center; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-text-center\@screen-large { - text-align: center; - } -} - -.u-text-right { - text-align: right; -} - -.u-text-left { - text-align: left; -} - -.u-text-cap-first-letter { - display: inline-block; -} - -.u-text-cap-first-letter:first-letter { - text-transform: capitalize; -} - -.u-text-strikethrough { - text-decoration: line-through; -} - -.u-text-strikethrough-diagonal { - position: relative; -} - -.u-text-strikethrough-diagonal:before { - position: absolute; - top: 60%; - right: 0; - left: 0; - content: ""; - border-color: inherit; - border-top: 1px solid; - transform: rotate(-18deg); -} - -.h-color-brand { - color: #0000a4; -} - -.h-color-brand-ui { - color: #00f; -} - -.h-color-text { - color: #03031a; -} - -.h-color-subtext { - color: #686876; -} - -.h-color-shading-light-gray { - color: #b3b3ba; -} - -.h-color-inform-text { - color: #007000; -} - -.h-color-promote-rating { - color: #febd00; -} - -.h-color-focus-text { - color: #f91906; -} - -.h-color-white-text { - color: #fff; -} - -.h-color-inform-button { - color: #00a127; -} - -.h-color-focus-ui { - color: #f91906; -} - -.h-color-budbee-logo-text { - color: #53c0a0; -} - -.h-border-color-shading-module-gray { - border-color: #e6e6e8; -} - -.h-border-color-inform-text { - border-color: #007000; -} - -.h-border-color-inform-module { - border-color: #e5f8e9; -} - -.h-border-color-promote-rating { - border-color: #febd00; -} - -.h-border-color-brand-module { - border-color: #f0f6ff; -} - -.h-border-color-brand-ui { - border-color: #00f; -} - -.h-bg-color-shading-module-gray { - background-color: #e6e6e8; -} - -.h-bg-color-inform-button { - background-color: #00a127; -} - -.h-bg-color-inform-module { - background-color: #e5f8e9; -} - -.h-bg-color-focus-ui { - background-color: #f91906; -} - -.h-bg-color-brand-module { - background-color: #f0f6ff; -} - -.h-bg-yellow-bright { - background-color: #fff162; -} - -.h-bg-yellow-pastel { - background-color: #fff59e; -} - -.h-bg-yellow-soft { - background-color: #fffade; -} - -.h-bg-orange-bright { - background-color: #ffb072; -} - -.h-bg-orange-pastel { - background-color: #ffd2ad; -} - -.h-bg-orange-soft { - background-color: #fed; -} - -.h-bg-red-bright { - background-color: #ff667e; -} - -.h-bg-red-pastel { - background-color: #ffa4b4; -} - -.h-bg-red-soft { - background-color: #ffd9e1; -} - -.h-bg-magenta-bright { - background-color: #fe73dc; -} - -.h-bg-magenta-pastel { - background-color: #ffa4eb; -} - -.h-bg-magenta-soft { - background-color: #ffd9f5; -} - -.h-bg-green-bright { - background-color: #71e9b4; -} - -.h-bg-green-pastel { - background-color: #aff2d3; -} - -.h-bg-green-soft { - background-color: #e2f9ed; -} - -.h-bg-blue-bright { - background-color: #1eadff; -} - -.h-bg-blue-pastel { - background-color: #90cdfe; -} - -.h-bg-blue-soft { - background-color: #dceeff; -} - -.h-bg-brown-bol-box { - background-color: #cba88a; -} - -.h-bg-white { - background-color: #fff; -} - -.h-bg-select-module { - background-color: #f2fbf5; -} - -.h-bg-color-inform-text { - background-color: #007000; -} - -.h-bg-color-promote-rating { - background-color: #febd00; -} - -.h-bg-color-brand-ui { - background-color: #00f; -} - -.h-bg-color-shading-module-light-gray { - background-color: #f8f8f8; -} - -.u-1\/1 { - width: 100%; -} - -.u-1\/2 { - width: 50%; -} - -.u-2\/2 { - width: 100%; -} - -.u-1\/3 { - width: 33.3333333333%; -} - -.u-2\/3 { - width: 66.6666666667%; -} - -.u-3\/3 { - width: 100%; -} - -.u-1\/4 { - width: 25%; -} - -.u-2\/4 { - width: 50%; -} - -.u-3\/4 { - width: 75%; -} - -.u-4\/4 { - width: 100%; -} - -.u-1\/5 { - width: 20%; -} - -.u-2\/5 { - width: 40%; -} - -.u-3\/5 { - width: 60%; -} - -.u-4\/5 { - width: 80%; -} - -.u-5\/5 { - width: 100%; -} - -.u-1\/6 { - width: 16.6666666667%; -} - -.u-2\/6 { - width: 33.3333333333%; -} - -.u-3\/6 { - width: 50%; -} - -.u-4\/6 { - width: 66.6666666667%; -} - -.u-5\/6 { - width: 83.3333333333%; -} - -.u-6\/6 { - width: 100%; -} - -.u-1\/7 { - width: 14.2857142857%; -} - -.u-2\/7 { - width: 28.5714285714%; -} - -.u-3\/7 { - width: 42.8571428571%; -} - -.u-4\/7 { - width: 57.1428571429%; -} - -.u-5\/7 { - width: 71.4285714286%; -} - -.u-6\/7 { - width: 85.7142857143%; -} - -.u-7\/7 { - width: 100%; -} - -.u-1\/8 { - width: 12.5%; -} - -.u-2\/8 { - width: 25%; -} - -.u-3\/8 { - width: 37.5%; -} - -.u-4\/8 { - width: 50%; -} - -.u-5\/8 { - width: 62.5%; -} - -.u-6\/8 { - width: 75%; -} - -.u-7\/8 { - width: 87.5%; -} - -.u-8\/8 { - width: 100%; -} - -.u-1\/12 { - width: 8.3333333333%; -} - -.u-2\/12 { - width: 16.6666666667%; -} - -.u-3\/12 { - width: 25%; -} - -.u-4\/12 { - width: 33.3333333333%; -} - -.u-5\/12 { - width: 41.6666666667%; -} - -.u-6\/12 { - width: 50%; -} - -.u-7\/12 { - width: 58.3333333333%; -} - -.u-8\/12 { - width: 66.6666666667%; -} - -.u-9\/12 { - width: 75%; -} - -.u-10\/12 { - width: 83.3333333333%; -} - -.u-11\/12 { - width: 91.6666666667%; -} - -.u-12\/12 { - width: 100%; -} - -@media (max-width:29.9375em) { - .u-1\/1\@screen-small-only { - width: 100%; - } - - .u-1\/2\@screen-small-only { - width: 50%; - } - - .u-2\/2\@screen-small-only { - width: 100%; - } - - .u-1\/3\@screen-small-only { - width: 33.3333333333%; - } - - .u-2\/3\@screen-small-only { - width: 66.6666666667%; - } - - .u-3\/3\@screen-small-only { - width: 100%; - } - - .u-1\/4\@screen-small-only { - width: 25%; - } - - .u-2\/4\@screen-small-only { - width: 50%; - } - - .u-3\/4\@screen-small-only { - width: 75%; - } - - .u-4\/4\@screen-small-only { - width: 100%; - } - - .u-1\/5\@screen-small-only { - width: 20%; - } - - .u-2\/5\@screen-small-only { - width: 40%; - } - - .u-3\/5\@screen-small-only { - width: 60%; - } - - .u-4\/5\@screen-small-only { - width: 80%; - } - - .u-5\/5\@screen-small-only { - width: 100%; - } - - .u-1\/6\@screen-small-only { - width: 16.6666666667%; - } - - .u-2\/6\@screen-small-only { - width: 33.3333333333%; - } - - .u-3\/6\@screen-small-only { - width: 50%; - } - - .u-4\/6\@screen-small-only { - width: 66.6666666667%; - } - - .u-5\/6\@screen-small-only { - width: 83.3333333333%; - } - - .u-6\/6\@screen-small-only { - width: 100%; - } - - .u-1\/7\@screen-small-only { - width: 14.2857142857%; - } - - .u-2\/7\@screen-small-only { - width: 28.5714285714%; - } - - .u-3\/7\@screen-small-only { - width: 42.8571428571%; - } - - .u-4\/7\@screen-small-only { - width: 57.1428571429%; - } - - .u-5\/7\@screen-small-only { - width: 71.4285714286%; - } - - .u-6\/7\@screen-small-only { - width: 85.7142857143%; - } - - .u-7\/7\@screen-small-only { - width: 100%; - } - - .u-1\/8\@screen-small-only { - width: 12.5%; - } - - .u-2\/8\@screen-small-only { - width: 25%; - } - - .u-3\/8\@screen-small-only { - width: 37.5%; - } - - .u-4\/8\@screen-small-only { - width: 50%; - } - - .u-5\/8\@screen-small-only { - width: 62.5%; - } - - .u-6\/8\@screen-small-only { - width: 75%; - } - - .u-7\/8\@screen-small-only { - width: 87.5%; - } - - .u-8\/8\@screen-small-only { - width: 100%; - } - - .u-1\/12\@screen-small-only { - width: 8.3333333333%; - } - - .u-2\/12\@screen-small-only { - width: 16.6666666667%; - } - - .u-3\/12\@screen-small-only { - width: 25%; - } - - .u-4\/12\@screen-small-only { - width: 33.3333333333%; - } - - .u-5\/12\@screen-small-only { - width: 41.6666666667%; - } - - .u-6\/12\@screen-small-only { - width: 50%; - } - - .u-7\/12\@screen-small-only { - width: 58.3333333333%; - } - - .u-8\/12\@screen-small-only { - width: 66.6666666667%; - } - - .u-9\/12\@screen-small-only { - width: 75%; - } - - .u-10\/12\@screen-small-only { - width: 83.3333333333%; - } - - .u-11\/12\@screen-small-only { - width: 91.6666666667%; - } - - .u-12\/12\@screen-small-only { - width: 100%; - } -} - -@media (min-width:30em) { - .u-1\/1\@screen-medium-up { - width: 100%; - } - - .u-1\/2\@screen-medium-up { - width: 50%; - } - - .u-2\/2\@screen-medium-up { - width: 100%; - } - - .u-1\/3\@screen-medium-up { - width: 33.3333333333%; - } - - .u-2\/3\@screen-medium-up { - width: 66.6666666667%; - } - - .u-3\/3\@screen-medium-up { - width: 100%; - } - - .u-1\/4\@screen-medium-up { - width: 25%; - } - - .u-2\/4\@screen-medium-up { - width: 50%; - } - - .u-3\/4\@screen-medium-up { - width: 75%; - } - - .u-4\/4\@screen-medium-up { - width: 100%; - } - - .u-1\/5\@screen-medium-up { - width: 20%; - } - - .u-2\/5\@screen-medium-up { - width: 40%; - } - - .u-3\/5\@screen-medium-up { - width: 60%; - } - - .u-4\/5\@screen-medium-up { - width: 80%; - } - - .u-5\/5\@screen-medium-up { - width: 100%; - } - - .u-1\/6\@screen-medium-up { - width: 16.6666666667%; - } - - .u-2\/6\@screen-medium-up { - width: 33.3333333333%; - } - - .u-3\/6\@screen-medium-up { - width: 50%; - } - - .u-4\/6\@screen-medium-up { - width: 66.6666666667%; - } - - .u-5\/6\@screen-medium-up { - width: 83.3333333333%; - } - - .u-6\/6\@screen-medium-up { - width: 100%; - } - - .u-1\/7\@screen-medium-up { - width: 14.2857142857%; - } - - .u-2\/7\@screen-medium-up { - width: 28.5714285714%; - } - - .u-3\/7\@screen-medium-up { - width: 42.8571428571%; - } - - .u-4\/7\@screen-medium-up { - width: 57.1428571429%; - } - - .u-5\/7\@screen-medium-up { - width: 71.4285714286%; - } - - .u-6\/7\@screen-medium-up { - width: 85.7142857143%; - } - - .u-7\/7\@screen-medium-up { - width: 100%; - } - - .u-1\/8\@screen-medium-up { - width: 12.5%; - } - - .u-2\/8\@screen-medium-up { - width: 25%; - } - - .u-3\/8\@screen-medium-up { - width: 37.5%; - } - - .u-4\/8\@screen-medium-up { - width: 50%; - } - - .u-5\/8\@screen-medium-up { - width: 62.5%; - } - - .u-6\/8\@screen-medium-up { - width: 75%; - } - - .u-7\/8\@screen-medium-up { - width: 87.5%; - } - - .u-8\/8\@screen-medium-up { - width: 100%; - } - - .u-1\/12\@screen-medium-up { - width: 8.3333333333%; - } - - .u-2\/12\@screen-medium-up { - width: 16.6666666667%; - } - - .u-3\/12\@screen-medium-up { - width: 25%; - } - - .u-4\/12\@screen-medium-up { - width: 33.3333333333%; - } - - .u-5\/12\@screen-medium-up { - width: 41.6666666667%; - } - - .u-6\/12\@screen-medium-up { - width: 50%; - } - - .u-7\/12\@screen-medium-up { - width: 58.3333333333%; - } - - .u-8\/12\@screen-medium-up { - width: 66.6666666667%; - } - - .u-9\/12\@screen-medium-up { - width: 75%; - } - - .u-10\/12\@screen-medium-up { - width: 83.3333333333%; - } - - .u-11\/12\@screen-medium-up { - width: 91.6666666667%; - } - - .u-12\/12\@screen-medium-up { - width: 100%; - } -} - -@media (min-width:48em) { - .u-1\/1\@screen-large-up { - width: 100%; - } - - .u-1\/2\@screen-large-up { - width: 50%; - } - - .u-2\/2\@screen-large-up { - width: 100%; - } - - .u-1\/3\@screen-large-up { - width: 33.3333333333%; - } - - .u-2\/3\@screen-large-up { - width: 66.6666666667%; - } - - .u-3\/3\@screen-large-up { - width: 100%; - } - - .u-1\/4\@screen-large-up { - width: 25%; - } - - .u-2\/4\@screen-large-up { - width: 50%; - } - - .u-3\/4\@screen-large-up { - width: 75%; - } - - .u-4\/4\@screen-large-up { - width: 100%; - } - - .u-1\/5\@screen-large-up { - width: 20%; - } - - .u-2\/5\@screen-large-up { - width: 40%; - } - - .u-3\/5\@screen-large-up { - width: 60%; - } - - .u-4\/5\@screen-large-up { - width: 80%; - } - - .u-5\/5\@screen-large-up { - width: 100%; - } - - .u-1\/6\@screen-large-up { - width: 16.6666666667%; - } - - .u-2\/6\@screen-large-up { - width: 33.3333333333%; - } - - .u-3\/6\@screen-large-up { - width: 50%; - } - - .u-4\/6\@screen-large-up { - width: 66.6666666667%; - } - - .u-5\/6\@screen-large-up { - width: 83.3333333333%; - } - - .u-6\/6\@screen-large-up { - width: 100%; - } - - .u-1\/7\@screen-large-up { - width: 14.2857142857%; - } - - .u-2\/7\@screen-large-up { - width: 28.5714285714%; - } - - .u-3\/7\@screen-large-up { - width: 42.8571428571%; - } - - .u-4\/7\@screen-large-up { - width: 57.1428571429%; - } - - .u-5\/7\@screen-large-up { - width: 71.4285714286%; - } - - .u-6\/7\@screen-large-up { - width: 85.7142857143%; - } - - .u-7\/7\@screen-large-up { - width: 100%; - } - - .u-1\/8\@screen-large-up { - width: 12.5%; - } - - .u-2\/8\@screen-large-up { - width: 25%; - } - - .u-3\/8\@screen-large-up { - width: 37.5%; - } - - .u-4\/8\@screen-large-up { - width: 50%; - } - - .u-5\/8\@screen-large-up { - width: 62.5%; - } - - .u-6\/8\@screen-large-up { - width: 75%; - } - - .u-7\/8\@screen-large-up { - width: 87.5%; - } - - .u-8\/8\@screen-large-up { - width: 100%; - } - - .u-1\/12\@screen-large-up { - width: 8.3333333333%; - } - - .u-2\/12\@screen-large-up { - width: 16.6666666667%; - } - - .u-3\/12\@screen-large-up { - width: 25%; - } - - .u-4\/12\@screen-large-up { - width: 33.3333333333%; - } - - .u-5\/12\@screen-large-up { - width: 41.6666666667%; - } - - .u-6\/12\@screen-large-up { - width: 50%; - } - - .u-7\/12\@screen-large-up { - width: 58.3333333333%; - } - - .u-8\/12\@screen-large-up { - width: 66.6666666667%; - } - - .u-9\/12\@screen-large-up { - width: 75%; - } - - .u-10\/12\@screen-large-up { - width: 83.3333333333%; - } - - .u-11\/12\@screen-large-up { - width: 91.6666666667%; - } - - .u-12\/12\@screen-large-up { - width: 100%; - } -} - -@media (min-width:64em) { - .u-1\/1\@screen-xl-up { - width: 100%; - } - - .u-1\/2\@screen-xl-up { - width: 50%; - } - - .u-2\/2\@screen-xl-up { - width: 100%; - } - - .u-1\/3\@screen-xl-up { - width: 33.3333333333%; - } - - .u-2\/3\@screen-xl-up { - width: 66.6666666667%; - } - - .u-3\/3\@screen-xl-up { - width: 100%; - } - - .u-1\/4\@screen-xl-up { - width: 25%; - } - - .u-2\/4\@screen-xl-up { - width: 50%; - } - - .u-3\/4\@screen-xl-up { - width: 75%; - } - - .u-4\/4\@screen-xl-up { - width: 100%; - } - - .u-1\/5\@screen-xl-up { - width: 20%; - } - - .u-2\/5\@screen-xl-up { - width: 40%; - } - - .u-3\/5\@screen-xl-up { - width: 60%; - } - - .u-4\/5\@screen-xl-up { - width: 80%; - } - - .u-5\/5\@screen-xl-up { - width: 100%; - } - - .u-1\/6\@screen-xl-up { - width: 16.6666666667%; - } - - .u-2\/6\@screen-xl-up { - width: 33.3333333333%; - } - - .u-3\/6\@screen-xl-up { - width: 50%; - } - - .u-4\/6\@screen-xl-up { - width: 66.6666666667%; - } - - .u-5\/6\@screen-xl-up { - width: 83.3333333333%; - } - - .u-6\/6\@screen-xl-up { - width: 100%; - } - - .u-1\/7\@screen-xl-up { - width: 14.2857142857%; - } - - .u-2\/7\@screen-xl-up { - width: 28.5714285714%; - } - - .u-3\/7\@screen-xl-up { - width: 42.8571428571%; - } - - .u-4\/7\@screen-xl-up { - width: 57.1428571429%; - } - - .u-5\/7\@screen-xl-up { - width: 71.4285714286%; - } - - .u-6\/7\@screen-xl-up { - width: 85.7142857143%; - } - - .u-7\/7\@screen-xl-up { - width: 100%; - } - - .u-1\/8\@screen-xl-up { - width: 12.5%; - } - - .u-2\/8\@screen-xl-up { - width: 25%; - } - - .u-3\/8\@screen-xl-up { - width: 37.5%; - } - - .u-4\/8\@screen-xl-up { - width: 50%; - } - - .u-5\/8\@screen-xl-up { - width: 62.5%; - } - - .u-6\/8\@screen-xl-up { - width: 75%; - } - - .u-7\/8\@screen-xl-up { - width: 87.5%; - } - - .u-8\/8\@screen-xl-up { - width: 100%; - } - - .u-1\/12\@screen-xl-up { - width: 8.3333333333%; - } - - .u-2\/12\@screen-xl-up { - width: 16.6666666667%; - } - - .u-3\/12\@screen-xl-up { - width: 25%; - } - - .u-4\/12\@screen-xl-up { - width: 33.3333333333%; - } - - .u-5\/12\@screen-xl-up { - width: 41.6666666667%; - } - - .u-6\/12\@screen-xl-up { - width: 50%; - } - - .u-7\/12\@screen-xl-up { - width: 58.3333333333%; - } - - .u-8\/12\@screen-xl-up { - width: 66.6666666667%; - } - - .u-9\/12\@screen-xl-up { - width: 75%; - } - - .u-10\/12\@screen-xl-up { - width: 83.3333333333%; - } - - .u-11\/12\@screen-xl-up { - width: 91.6666666667%; - } - - .u-12\/12\@screen-xl-up { - width: 100%; - } -} - -@media (min-width:75em) { - .u-1\/1\@screen-xxl-up { - width: 100%; - } - - .u-1\/2\@screen-xxl-up { - width: 50%; - } - - .u-2\/2\@screen-xxl-up { - width: 100%; - } - - .u-1\/3\@screen-xxl-up { - width: 33.3333333333%; - } - - .u-2\/3\@screen-xxl-up { - width: 66.6666666667%; - } - - .u-3\/3\@screen-xxl-up { - width: 100%; - } - - .u-1\/4\@screen-xxl-up { - width: 25%; - } - - .u-2\/4\@screen-xxl-up { - width: 50%; - } - - .u-3\/4\@screen-xxl-up { - width: 75%; - } - - .u-4\/4\@screen-xxl-up { - width: 100%; - } - - .u-1\/5\@screen-xxl-up { - width: 20%; - } - - .u-2\/5\@screen-xxl-up { - width: 40%; - } - - .u-3\/5\@screen-xxl-up { - width: 60%; - } - - .u-4\/5\@screen-xxl-up { - width: 80%; - } - - .u-5\/5\@screen-xxl-up { - width: 100%; - } - - .u-1\/6\@screen-xxl-up { - width: 16.6666666667%; - } - - .u-2\/6\@screen-xxl-up { - width: 33.3333333333%; - } - - .u-3\/6\@screen-xxl-up { - width: 50%; - } - - .u-4\/6\@screen-xxl-up { - width: 66.6666666667%; - } - - .u-5\/6\@screen-xxl-up { - width: 83.3333333333%; - } - - .u-6\/6\@screen-xxl-up { - width: 100%; - } - - .u-1\/7\@screen-xxl-up { - width: 14.2857142857%; - } - - .u-2\/7\@screen-xxl-up { - width: 28.5714285714%; - } - - .u-3\/7\@screen-xxl-up { - width: 42.8571428571%; - } - - .u-4\/7\@screen-xxl-up { - width: 57.1428571429%; - } - - .u-5\/7\@screen-xxl-up { - width: 71.4285714286%; - } - - .u-6\/7\@screen-xxl-up { - width: 85.7142857143%; - } - - .u-7\/7\@screen-xxl-up { - width: 100%; - } - - .u-1\/8\@screen-xxl-up { - width: 12.5%; - } - - .u-2\/8\@screen-xxl-up { - width: 25%; - } - - .u-3\/8\@screen-xxl-up { - width: 37.5%; - } - - .u-4\/8\@screen-xxl-up { - width: 50%; - } - - .u-5\/8\@screen-xxl-up { - width: 62.5%; - } - - .u-6\/8\@screen-xxl-up { - width: 75%; - } - - .u-7\/8\@screen-xxl-up { - width: 87.5%; - } - - .u-8\/8\@screen-xxl-up { - width: 100%; - } - - .u-1\/12\@screen-xxl-up { - width: 8.3333333333%; - } - - .u-2\/12\@screen-xxl-up { - width: 16.6666666667%; - } - - .u-3\/12\@screen-xxl-up { - width: 25%; - } - - .u-4\/12\@screen-xxl-up { - width: 33.3333333333%; - } - - .u-5\/12\@screen-xxl-up { - width: 41.6666666667%; - } - - .u-6\/12\@screen-xxl-up { - width: 50%; - } - - .u-7\/12\@screen-xxl-up { - width: 58.3333333333%; - } - - .u-8\/12\@screen-xxl-up { - width: 66.6666666667%; - } - - .u-9\/12\@screen-xxl-up { - width: 75%; - } - - .u-10\/12\@screen-xxl-up { - width: 83.3333333333%; - } - - .u-11\/12\@screen-xxl-up { - width: 91.6666666667%; - } - - .u-12\/12\@screen-xxl-up { - width: 100%; - } -} - -.modal__footer { - padding-top: 1rem; - border-top: 1px solid #e6e6e8; -} - -@charset "UTF-8"; - -@media (min-width:48em) { - h1 { - font-size: 1.75rem; - } - - h1 .sub-title, - h4 { - font-size: 1.125rem; - } - - .banner__title, - h2, - h3 { - font-size: 1.25rem; - } - - h4 { - font-weight: 400; - } -} - -html { - line-height: 1.15; - min-height: 100%; -} - -figure, -header, -nav { - display: block; -} - -h1 { - font-size: 2em; -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; - text-decoration-skip: objects; - color: #00f; - text-decoration: none; -} - -strong { - font-weight: 600; -} - -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; - top: -.5em; -} - -svg:not(:root) { - overflow: hidden; -} - -button, -input { - margin: 0; - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - overflow: visible; -} - -button { - text-transform: none; - cursor: pointer; -} - -[type=submit], -button, -html [type=button] { - -webkit-appearance: button; - appearance: button; -} - -[type=button]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - padding: 0; - border-style: none; -} - -[type=button]:-moz-focusring, -[type=submit]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} - -[type=checkbox] { - box-sizing: border-box; - padding: 0; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - appearance: button; - font: inherit; -} - -figure, -ol, -p, -ul { - margin: 0; - padding: 0; -} - -.bol_header, -.txt-select { - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; -} - -ol { - padding: 0 0 0 2rem; - list-style-position: outside; -} - -ul { - padding: 0 0 1.5rem; - list-style-type: none; -} - -ol, -p, -ul { - margin: 0 0 1.5rem; -} - -.txt-select { - font-size: 110%; - line-height: initial; - color: #01ac3a; -} - -.c-link { - color: #00f; - text-decoration: none; - position: relative; - display: inline-flex; - align-items: center; - align-self: self-start; - max-width: max-content; - cursor: pointer; -} - -.c-link:before { - opacity: 0; - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; -} - -.c-link span { - pointer-events: none; -} - -.c-link--icon:before { - right: 0; - left: 1.8125rem; - width: auto; -} - -.c-link--icon>span { - position: relative; - display: inline-block; -} - -.c-link--icon .svg-inline--bi { - margin-right: .5rem; -} - -.o-chat__button { - position: fixed; - right: 1.5em; - bottom: 1.5em; - z-index: 115; - display: flex; - align-items: center; - justify-content: center; - width: 4em; - height: 4em; - overflow: visible; - color: #fff; - background-color: #00f; - border: 0; - border-radius: 50%; - box-shadow: 1px 2px 4px 0 rgba(49, 49, 47, .3); -} - -@media (max-width:47.9375em) { - .o-chat__button { - width: 3em; - height: 3em; - } - - .o-chat__button>svg { - font-size: 2em; - } -} - -.o-chat__button.is-hidden { - display: none; -} - -.o-drop-down { - position: relative; -} - -.o-drop-down__label { - display: block; - padding: .5rem; - cursor: pointer; -} - -.o-drop-down__label:after { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: -1; - pointer-events: none; - content: ""; -} - -.o-drop-down__navigation { - margin-bottom: 0; - margin-left: 0; - list-style: none; - position: absolute; - z-index: 1; - display: none; - padding: 0; - color: #0a0a0a; - background: #fff; - border: 1px solid #aaa; - box-shadow: 0 4px 0-2px rgba(10, 10, 10, .25); -} - -.o-drop-down__trigger { - position: absolute; - pointer-events: none; - opacity: 0; -} - -.wsp-header { - padding-top: .5rem; - margin-bottom: 1.5rem; - background-color: #fff; -} - -@media (min-width:64em) { - .wsp-header { - padding-top: 0; - background-color: #0000a4; - } -} - -.wsp-header-sections { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-wrap: wrap; -} - -@media (min-width:64em) { - .wsp-header-sections { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.wsp-header-sections__logo { - display: flex; - flex: 0 0 auto; -} - -.wsp-header-sections__account { - display: flex; - align-items: center; - margin-left: auto; - color: #0000a4; -} - -.wsp-header-sections__search { - display: flex; - flex-grow: 1; - flex-wrap: nowrap; - align-items: center; - order: 1; - width: 100%; - padding: 1rem; - margin: .5rem -1rem 0; - background: #0000a4; -} - -@media (min-width:64em) { - .wsp-header-sections { - flex-wrap: nowrap; - padding-top: .25rem; - padding-bottom: .25rem; - } - - .wsp-header-sections__account { - color: #fff; - } - - .wsp-header-sections__search { - flex: 1; - order: 0; - padding: 0; - margin-top: 0; - margin-right: 2rem; - margin-left: 2rem; - background: 0 0; - } - - .wsp-header-sections__nav { - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - position: static; - display: flex; - align-items: center; - } -} - -@media (min-width:64em) and (min-width:64em) { - .wsp-header-sections__nav { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.main-menu-btn { - display: flex; - align-items: center; - justify-content: center; - width: 3rem; - height: 3rem; - padding: 0; - color: #0000a4; - cursor: pointer; - background-color: transparent; - border: 0; -} - -@media (min-width:64em) { - .main-menu-btn { - display: none; - } -} - -.wsp-main-logo { - box-sizing: content-box; - width: 9rem; - height: 2.3rem; - color: #0000a4; - vertical-align: middle; - transform: translateX(0); -} - -@media (min-width:64em) { - .wsp-main-logo { - width: 10rem; - height: 3rem; - color: #fff; - } -} - -@media (max-width:22.1875rem) { - .wsp-main-logo { - width: 7rem; - } -} - -.usp-banner { - display: none; -} - -@media (min-width:64em) { - .usp-banner { - display: block; - padding: .25rem 0; - font-size: .75rem; - line-height: 1.5rem; - color: #0000a4; - background: #fff; - } - - .usp-banner__constrain { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - align-items: center; - } -} - -@media (min-width:64em) and (min-width:64em) { - .usp-banner__constrain { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .usp-banner__list { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - } - - .usp-banner__item { - margin-right: 1.5rem; - } - - .usp-banner__item:last-child { - margin-right: 0; - } - - .usp-banner__select, - .usp-banner__usps { - text-decoration: none; - } - - .usp-banner__usps { - color: #0000a4; - } - - .usp-banner__select { - margin-left: auto; - color: #01982b; - } -} - -.wsp-search-form { - position: relative; - flex-grow: 1; -} - -@media (min-width:64em) { - .wsp-search-form:after { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 120; - pointer-events: none; - content: ""; - background-color: rgba(0, 0, 0, .5); - opacity: 0; - transition: opacity .15s ease-in-out; - } -} - -.wsp-search-form__suggestions { - position: relative; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 100; - display: flex; - flex-flow: column nowrap; - overflow-y: scroll; - background-color: #fff; -} - -@media (min-width:64em) { - .wsp-search-form__suggestions { - position: absolute; - top: 100%; - bottom: inherit; - z-index: 140; - margin-top: .5rem; - overflow: inherit; - border: 1px solid #aaa; - } -} - -.wsp-search-form__input { - position: relative; - display: flex; - align-items: center; - background-color: #fff; - border-radius: 1.5rem; -} - -@media (min-width:64em) { - .wsp-search-form__input { - max-width: 40rem; - height: inherit; - margin: .5rem auto; - } -} - -.wsp-search__btn, -.wsp-search__input { - background-color: transparent; - border: 0; - border-radius: 0; - outline: 0; -} - -.wsp-search__input { - font-family: inherit; - line-height: inherit; - appearance: none; - -moz-appearance: none; - -webkit-appearance: none; - width: 100%; - height: 3rem; - padding-left: 1.5rem; - cursor: text; -} - -.wsp-search__input:-moz-placeholder { - color: #aaa; -} - -.wsp-search__input::-moz-placeholder { - color: #aaa; -} - -.wsp-search__input:-ms-input-placeholder { - color: #aaa; -} - -.wsp-search__input::-webkit-input-placeholder { - color: #aaa; -} - -.wsp-search__btn { - position: relative; - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: center; - width: calc(3rem - 7px); - height: calc(3rem - 7px); - padding: 0; - margin: 1px; - margin-right: calc(.5rem + 1px); - color: #0000a4; - cursor: pointer; -} - -.account-button { - position: relative; - padding: .75rem .5rem .75rem .75rem; - background-color: transparent; - border: 0; - color: inherit; - text-decoration: none; - outline: 0; -} - -@media (max-width:63.9375em) { - .account-button { - display: flex; - align-items: center; - justify-content: center; - width: 2.5rem; - height: 2.5rem; - padding: 0; - border-radius: 50%; - transition: background-color .15s ease-in-out; - } -} - -@media (min-width:64em) { - .account-button { - padding: 0; - font-size: .75rem; - } - - .account-button:before { - position: absolute; - bottom: 0; - left: 50%; - width: 0; - height: 1px; - content: ""; - background-color: currentColor; - transition: width .15s ease-in-out; - transform: translateX(-50%); - } -} - -.account-dropdown { - display: none; - font-size: .75rem; - color: inherit; -} - -@media (min-width:64em) { - .account-dropdown { - display: block; - } -} - -.account-dropdown .o-drop-down__label { - position: relative; - display: flex; - flex-direction: column; - align-items: flex-end; - height: 2.5rem; - padding: 0 3rem 0 .5rem; - text-decoration: none; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.account-dropdown .o-drop-down__label:before { - position: absolute; - top: 50%; - right: 0; - display: block; - width: 2.5rem; - height: 2.5rem; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath d='M12 24c-3 0-7.1-.7-9-2.5-.6-.6-1-1.4-1-2.2 0-3.8 2.6-7.2 6.3-8.6C6.9 9.6 6 7.9 6 6c0-3.3 2.7-6 6-6s6 2.7 6 6c0 1.9-.9 3.6-2.3 4.7 3.6 1.4 6.3 4.8 6.3 8.6 0 3.4-6 4.7-10 4.7zm0-12c-4.3 0-8 3.3-8 7.3 0 .1 0 .4.4.7 1.1 1.1 4.3 2 7.6 2 4.5 0 8-1.5 8-2.7 0-4-3.7-7.3-8-7.3zm0-10C9.8 2 8 3.8 8 6s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5rem; - border-radius: 50%; - transition: background-color .15s ease-in-out; - transform: translateY(-50%); -} - -.account-dropdown .o-drop-down__label:hover:before { - background-color: rgba(255, 255, 255, .25); -} - -.account-dropdown .o-drop-down__navigation { - top: calc(100% + .5rem); - right: 0; - z-index: 120; - white-space: nowrap; -} - -.account-dropdown .o-drop-down__trigger:checked~.o-drop-down__label:before { - background-color: rgba(255, 255, 255, .25); - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='rgb%28255%2C255%2C255%29'%3E%3Cpath d='M12 24c-3 0-7.1-.7-9-2.5-.6-.6-1-1.4-1-2.2 0-3.8 2.6-7.2 6.3-8.6C6.9 9.6 6 7.9 6 6c0-3.3 2.7-6 6-6s6 2.7 6 6c0 1.9-.9 3.6-2.3 4.7 3.6 1.4 6.3 4.8 6.3 8.6 0 3.4-6 4.7-10 4.7zm0-12c-4.3 0-8 3.3-8 7.3 0 .1 0 .4.4.7 1.1 1.1 4.3 2 7.6 2 4.5 0 8-1.5 8-2.7 0-4-3.7-7.3-8-7.3zm0-10C9.8 2 8 3.8 8 6s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z'/%3E%3C/svg%3E"); -} - -.account-dropdown .o-drop-down__trigger:focus~.o-drop-down__label { - text-decoration: underline; - background-color: initial; - outline: 0; -} - -.account-dropdown .o-drop-down__trigger:focus~.o-drop-down__label:before { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; -} - -.account-dropdown .o-drop-down__trigger:focus:not(:focus-visible)~.o-drop-down__label:before { - background-color: initial; - border: initial; -} - -.account-dropdown .o-drop-down__trigger:focus-visible~.o-drop-down__label:before { - background-color: rgba(255, 255, 255, .25); - border: 1px solid #fff; -} - -.account-dropdown--canvas, -main { - display: block; -} - -.account-dropdown--canvas .o-drop-down__navigation { - width: auto; - height: auto; - overflow: visible; -} - -@media (max-width:63.9375em) { - .account-dropdown--canvas .o-drop-down__navigation { - position: static; - display: block; - border: 0; - } - - .account-dropdown--canvas .o-drop-down__label, - .account-dropdown--canvas .o-drop-down__trigger { - display: none; - } - - .account-dropdown--canvas .offcanvas-header { - display: flex; - align-items: center; - border-bottom: 1px solid #aaa; - } - - .account-dropdown--canvas .offcanvas-header__title { - flex-grow: 1; - font-size: 1.125rem; - font-weight: 600; - text-align: center; - border: 0; - } - - .account-dropdown--canvas .offcanvas-header__close-btn { - position: static; - display: flex; - flex-grow: 0; - flex-shrink: 0; - align-items: center; - justify-content: center; - width: 3rem; - height: 3rem; - color: #00f; - background-color: transparent; - border: 0; - } -} - -@media (min-width:64em) { - .account-dropdown--canvas .offcanvas-header { - display: none; - } - - .account-dropdown--canvas .offcanvas-container--right { - position: static; - width: auto; - height: auto; - } -} - -.account-dropdown--canvas .offcanvas-container--right { - right: -100%; - width: 100%; -} - -.customer-lists { - display: flex; - align-items: center; - justify-content: center; - width: 2.5rem; - height: 2.5rem; - margin-left: .25rem; - color: #0000a4; - border-radius: 50%; - transition: background-color .15s ease-in-out; -} - -@media (min-width:64em) { - .customer-lists { - color: #fff; - } -} - -.main-basket-btn, -.main-basket-btn[data-quantity]:before { - display: flex; - align-items: center; - justify-content: center; - color: #0000a4; -} - -.main-basket-btn { - position: relative; - width: 2.5rem; - height: 2.5rem; - margin-left: .25rem; - text-decoration: none; - background-color: transparent; - border-radius: 50%; - transition: background-color .15s ease-in-out; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.main-basket-btn[data-quantity]:before { - position: absolute; - top: -.5rem; - right: -.5rem; - z-index: 1; - min-width: 1.5rem; - height: 1.5rem; - padding: 0 .25rem; - font-size: .75rem; - line-height: inherit; - content: attr(data-quantity); - background-color: #ffe900; - border-radius: .75rem; -} - -.main-basket-btn[data-quantity="0"]:before { - content: normal; -} - -@media (min-width:64em) { - .main-basket-btn { - color: #fff; - } -} - -.wsp-main-nav { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - border-bottom: 1px solid #aaa; -} - -@media (max-width:63.9375em) { - .wsp-main-nav__item { - background-color: #fff; - } - - .wsp-main-nav__item--category { - margin-bottom: 1.5rem; - } - - .wsp-main-nav__item--category> :first-child { - display: none; - } - - .wsp-main-nav__item--icons { - border-bottom: 1px solid #aaa; - } -} - -@media (min-width:64em) { - .wsp-main-nav__item { - padding-left: 2rem; - } - - .wsp-main-nav__item:first-child { - padding-left: 0; - } -} - -.wsp-main-nav__link { - position: relative; - display: flex; - width: 100%; - padding: calc(1rem - 1px) 1rem 1rem; - margin: 0; - font-family: inherit; - line-height: inherit; - color: #00f; - text-align: left; - text-decoration: none; - background-color: transparent; - border: 0; - border-top: 1px solid #aaa; - border-radius: 0; -} - -.wsp-main-nav__link:after { - display: block; - width: 1.5em; - height: 1.5em; - margin-left: auto; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; -} - -.wsp-main-nav__link .svg-inline--bi { - margin-right: 1rem; -} - -.wsp-main-nav__item:first-child>.wsp-main-nav__link { - font-weight: 600; -} - -@media (max-width:63.9375em) { - .wsp-main-nav__item:first-child>.wsp-main-nav__link { - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; - pointer-events: none; - cursor: default; - } -} - -@media (min-width:64em) { - .wsp-main-nav__link { - padding: 1rem 0; - color: #0a0a0a; - border: 0; - border-color: transparent; - transition: 0s border-bottom, 0s padding-bottom; - } - - .wsp-main-nav__link:after { - margin-left: .25rem; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%2810%2C10%2C10%29'%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - } - - .wsp-main-nav__item:first-child>.wsp-main-nav__link { - font-weight: 400; - } - - .wsp-main-nav__link .svg-inline--bi { - display: none; - } - - .wsp-main-nav-constrain { - position: absolute; - top: 3.5rem; - right: 0; - left: 0; - z-index: 110; - display: flex; - width: 100%; - max-height: 0; - margin: 0; - overflow: hidden; - visibility: hidden; - background-color: #fff; - opacity: 0; - transition: max-height .15s, opacity .15s, visibility 0s; - } -} - -.wsp-main-nav-content { - position: absolute; - top: 0; - left: 100%; - display: none; - flex-direction: column; - width: 100%; -} - -@media (min-width:64em) { - .wsp-main-nav { - flex-direction: inherit; - border: 0; - } - - .wsp-main-nav:after, - .wsp-main-nav__ghost { - top: 0; - right: 0; - left: 0; - pointer-events: none; - opacity: 0; - } - - .wsp-main-nav:after { - position: fixed; - bottom: 0; - z-index: 100; - content: ""; - background-color: rgba(0, 0, 0, .5); - transition: opacity .15s ease-in-out; - } - - .wsp-main-nav__ghost { - position: absolute; - z-index: -10; - height: 3.5rem; - background-color: #fff; - transition: 0s opacity; - } - - .wsp-main-nav__ghost>.constrain { - max-width: 72rem; - height: 3.5rem; - padding: 0; - border-bottom: 1px solid #aaa; - } - - .wsp-main-nav-content, - .wsp-main-nav-panel { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - width: 100%; - } -} - -@media (min-width:64em) and (min-width:64em) { - - .wsp-main-nav-content, - .wsp-main-nav-panel { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .wsp-main-nav-panel { - position: initial; - padding-top: 1rem; - padding-bottom: 1rem; - pointer-events: none; - } - - .wsp-main-nav-content { - left: 0; - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } -} - -.wsp-category-nav { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - border-bottom: 1px solid #aaa; -} - -@media (max-width:63.9375em) { - .wsp-category-nav__item { - background-color: #fff; - } -} - -.wsp-category-nav__link { - position: relative; - display: block; - width: 100%; - padding: calc(1rem - 1px) 1rem 1rem; - margin: 0; - font-family: inherit; - line-height: inherit; - color: #0a0a0a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: transparent; - border-color: #aaa; - border-style: solid; - border-width: 1px 0 0; - border-radius: 0; -} - -.wsp-category-nav__link .c-media { - pointer-events: none; -} - -.wsp-category-nav__link:after { - position: absolute; - top: 50%; - right: 1em; - width: 1.5em; - height: 1.5em; - content: ""; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; - transform: translateY(-50%); -} - -.wsp-category-nav__link>.svg-inline--bi { - margin-right: .75rem; -} - -@media (min-width:64em) { - .wsp-category-nav__link { - display: flex; - width: 100%; - padding: .75rem 0; - text-align: left; - border: 0; - } - - .wsp-category-nav__link:after { - position: static; - align-self: center; - margin-left: auto; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%2810%2C10%2C10%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - transform: none; - } -} - -.wsp-category-nav__icon { - display: none; -} - -.wsp-category-nav__disclaimer { - padding: .5rem 1rem; -} - -@media (min-width:64em) { - .wsp-category-nav__disclaimer { - padding: 0; - } -} - -.wsp-category-nav-sub-panel { - position: absolute; - top: 0; - left: 100%; - display: none; - flex-direction: column; - width: 100%; -} - -@media (min-width:64em) { - .wsp-category-nav-sub-panel { - top: 0; - right: 0; - left: 0; - display: flex; - padding: 1.5rem 0 0; - overflow: visible; - visibility: hidden; - background: #fff; - opacity: 0; - } - - .wsp-category-nav-sub-panel .inner-panel { - width: 100%; - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - } -} - -@media (min-width:64em) and (min-width:64em) { - .wsp-category-nav-sub-panel .inner-panel { - padding-right: 2rem; - padding-left: 2rem; - } -} - -@media (min-width:64em) { - .wsp-category-nav-sub-panel .inner-panel__spacer { - margin-left: 16.5rem; - } -} - -@media (max-width:63.9375em) { - .wsp-category-nav--icons { - display: flex; - flex-direction: row; - flex-wrap: wrap; - border-bottom: 0; - } - - .wsp-category-nav--icons>.wsp-category-nav__item { - flex: 0 0 33.3333%; - } - - .wsp-category-nav--icons>.wsp-category-nav__item>.wsp-category-nav__link { - display: flex; - flex-direction: column; - align-items: center; - padding: 1rem; - color: #0a0a0a; - text-align: center; - border: 0; - } - - .wsp-category-nav--icons>.wsp-category-nav__item>.wsp-category-nav__link:after { - content: normal; - } - - .wsp-category-nav--icons .wsp-category-nav__icon { - display: flex; - align-items: center; - justify-content: center; - width: 4.5rem; - height: 4.5rem; - margin-bottom: .5rem; - color: #00f; - pointer-events: none; - background-color: #f0f6ff; - border-radius: 50%; - } -} - -@media (min-width:64em) { - .wsp-category-nav { - display: block; - flex-direction: inherit; - width: 15rem; - pointer-events: auto; - border: 0; - } - - @supports ((-webkit-clip-path:polygon(0 50%, 100% 100%, 100%0)) or (clip-path:polygon(0 50%, 100% 100%, 100%0))) { - .wsp-category-nav__item:first-child>.wsp-category-nav__link:before { - top: -1px; - height: 6rem; - -webkit-clip-path: polygon(100%0, 100% 100%, 0 0); - clip-path: polygon(100%0, 100% 100%, 0 0); - transform: none; - } - - .wsp-category-nav__item:last-child>.wsp-category-nav__link:before { - top: inherit; - bottom: -1px; - height: 6rem; - -webkit-clip-path: polygon(100%0, 100% 100%, 0 100%); - clip-path: polygon(100%0, 100% 100%, 0 100%); - transform: none; - } - - .wsp-category-nav__link:before { - position: absolute; - top: inherit; - right: -1px; - bottom: -3rem; - width: 90%; - height: 9rem; - -webkit-clip-path: polygon(0 50%, 100% 100%, 100%0); - clip-path: polygon(0 50%, 100% 100%, 100%0); - content: ""; - transform: none; - } - } -} - -.wsp-sub-nav { - border-bottom: 1px solid #aaa; - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - margin-bottom: 1.5rem; - background-color: #fff; -} - -@media (min-width:64em) { - .wsp-sub-nav { - border-bottom: 0; - } -} - -.wsp-sub-nav__item { - display: block; - border-top: 1px solid #aaa; -} - -@media (min-width:64em) { - .wsp-sub-nav__item { - border-top: 0; - } -} - -.wsp-sub-nav__item--collapse-after { - cursor: pointer; -} - -@media (min-width:64em) { - .wsp-sub-nav__item--collapse-after { - display: none; - } -} - -@media (max-width:63.9375em) { - .wsp-sub-nav__item--collapse-after~.wsp-sub-nav__item { - display: none; - } -} - -.wsp-sub-nav__title { - display: block; - padding: calc(2rem - 1px) 1rem .5rem; - margin-top: -1.5rem; - font-size: 1rem; - font-weight: 600; - color: #828282; - background-color: #f0f6ff; -} - -.wsp-sub-nav__link { - position: relative; - display: block; - width: 100%; - padding: 1rem 1rem calc(1rem - 1px); - margin: 0; - font-weight: inherit; - line-height: inherit; - color: #0a0a0a; - text-align: left; - text-decoration: none; - cursor: pointer; - background-color: transparent; - border: 0; -} - -@media (max-width:63.9375em) { - - .wsp-sub-nav__link--back:before, - .wsp-sub-nav__link--show-more:before, - .wsp-sub-nav__link:after { - position: absolute; - top: 50%; - width: 1.5em; - height: 1.5em; - pointer-events: none; - content: ""; - background-repeat: no-repeat; - background-position: center; - background-size: 1.5em; - transform: translateY(-50%); - } - - .wsp-sub-nav__link:after { - right: .5em; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M4.694 3.644a.508.508 0 010-.71.497.497 0 01.7-.006l4.06 4.084-4.055 4.054a.505.505 0 01-.707 0 .501.501 0 01.002-.71l3.352-3.351-3.352-3.36z'/%3E%3C/svg%3E"); - } - - .wsp-sub-nav__link--back, - .wsp-sub-nav__link--show-more { - padding-left: 2.5rem; - } - - .wsp-sub-nav__link--back:before, - .wsp-sub-nav__link--show-more:before { - right: auto; - left: .5rem; - } - - .wsp-sub-nav__link--back:after, - .wsp-sub-nav__link--show-more:after { - display: none; - } - - .wsp-sub-nav__link--back:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%280%2C0%2C255%29'%3E%3Cpath fill-rule='evenodd' d='M9.306 3.644a.508.508 0 000-.71.497.497 0 00-.7-.006l-4.06 4.084 4.055 4.054c.195.195.517.19.707 0a.501.501 0 00-.002-.71L5.954 7.006l3.352-3.36z'/%3E%3C/svg%3E"); - } - - .wsp-sub-nav__link--show-more { - font-weight: 600; - pointer-events: none; - } - - .wsp-sub-nav__link--show-more:before { - color: inherit; - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill=''%3E%3Cpath fill-rule='evenodd' d='M3.635 4.694a.508.508 0 00-.71 0 .497.497 0 00-.007.7l4.085 4.06 4.054-4.055a.505.505 0 000-.707.501.501 0 00-.71.002L6.997 8.046 3.635 4.694z'/%3E%3C/svg%3E"); - } -} - -@media (min-width:64em) { - .wsp-sub-nav__link { - padding: .25rem 0; - } -} - -.wsp-secundary-nav { - padding: 0; - margin-bottom: 0; - list-style: none; - display: none; - flex-wrap: nowrap; - margin-left: auto; - font-size: .75rem; -} - -.wsp-secundary-nav__item { - position: relative; - margin-left: 2rem; -} - -.wsp-secundary-nav__item:first-child { - margin-left: 0; -} - -.wsp-secundary-nav__link { - position: relative; - display: inline-block; - color: #0a0a0a; - text-decoration: none; - cursor: pointer; -} - -.wsp-secundary-nav__link:before { - opacity: 0; - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; -} - -@media (min-width:64em) { - .wsp-secundary-nav { - position: relative; - z-index: 110; - display: flex; - align-items: center; - height: 3.5rem; - } -} - -.nav-contextual { - margin-bottom: 1.5rem; - border-bottom: 1px solid #aaa; -} - -.nav-contextual__link { - padding: .75rem 1rem; - color: #0a0a0a; -} - -.nav-contextual__flagship-link, -.nav-contextual__link { - display: none; - width: 100%; - text-decoration: none; - cursor: pointer; -} - -@media (min-width:64em) { - - .nav-contextual__flagship-link, - .nav-contextual__link { - position: relative; - display: block; - width: auto; - padding: 0; - margin-left: 2rem; - line-height: initial; - border: 0; - } - - .nav-contextual__link:first-child { - margin-left: 0; - } - - .nav-contextual__link:before { - opacity: 0; - position: absolute; - bottom: 2px; - width: 100%; - height: 1px; - content: ""; - background-color: currentColor; - transition: opacity .3s ease-out; - } -} - -.nav-contextual__flagship-link { - display: flex; - align-items: center; - padding: 1.5rem 1rem; - color: #0000a4; - background-color: #f0f6ff; -} - -.nav-contextual__flagship-link .bol_header { - font-size: 1.125rem; -} - -.nav-contextual__flagship-link .svg-inline--bi { - margin-left: auto; -} - -@media (min-width:64em) { - .nav-contextual__flagship-link { - padding: 0; - color: #01982b; - background-color: transparent; - } - - .nav-contextual__flagship-link .bol_header { - font-size: 1.3125rem; - } - - .nav-contextual { - padding: .5rem 0; - margin-bottom: 0; - background-color: #f0f6ff; - border: 0; - } - - .nav-contextual__inner { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - } -} - -@media (min-width:64em) and (min-width:64em) { - .nav-contextual__inner { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.wsp-offcanvas { - width: 100%; -} - -@media (max-width:63.9375em) and (min-width:30em) { - .wsp-offcanvas:not(.wsp-offcanvas--no-max) { - width: 70%; - max-width: 480px; - } -} - -@media (max-width:63.9375em) { - .wsp-offcanvas { - position: fixed; - top: 0; - left: 0; - z-index: 300; - display: flex; - flex-direction: column; - height: 100%; - overflow: hidden; - background-color: #fafafa; - transform: translateX(-100%); - will-change: transform; - } - - .wsp-offcanvas__header { - display: flex; - flex: 0 0 3rem; - align-items: center; - justify-content: space-between; - background-color: #fff; - border-bottom: 1px solid #aaa; - } - - .wsp-offcanvas-action { - height: 3rem; - padding: .75rem; - margin: 0; - line-height: inherit; - color: #00f; - vertical-align: inherit; - cursor: pointer; - background-color: transparent; - border: 0; - } - - .wsp-offcanvas-action--close { - margin-left: auto; - } - - .wsp-offcanvas--scroll-pane { - flex: 1; - height: 100%; - overflow-x: hidden; - -webkit-overflow-scrolling: touch; - } - - .wsp-offcanvas--slide { - position: relative; - display: flex; - flex-direction: column; - transform: none; - will-change: transform; - } - - .wsp-offcanvas__slide-content { - position: relative; - display: flex; - flex-flow: column; - } - - .wsp-header .wsp-offcanvas__slide-content { - margin-top: -1px; - } -} - -@media (min-width:64em) { - .wsp-offcanvas { - display: block; - background-color: #fff; - } - - .wsp-offcanvas__header { - display: none; - } - - .wsp-offcanvas--scroll-pane { - position: relative; - } - - .wsp-offcanvas--slide { - width: auto; - height: auto; - overflow: visible; - transform: none; - } - - .wsp-offcanvas__slide-content { - max-width: initial; - } - - .wsp-header .wsp-offcanvas__slide-content { - margin-top: 0; - } -} - -body:before { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 100; - height: 200%; - pointer-events: none; - content: ""; - background-color: rgba(0, 0, 0, .5); - opacity: 0; - transition: opacity .3s cubic-bezier(0, 0, .3, 1); - will-change: opacity; -} - -.skip-link { - position: absolute; - width: 1px; - height: 1px; - overflow: hidden; - clip: rect(1px, 1px, 1px, 1px); - white-space: nowrap; -} - -@media (min-width:48em) { - .wsp-footer__link:not(.wsp-footer__link--social)> :first-child .svg-inline--bi { - display: none; - } -} - -@media (min-width:64em) { - .constrain { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.o-layout { - display: flex; - flex-wrap: wrap; - align-items: flex-start; - padding: 0; - margin: 0; - margin-left: -1.5rem; - list-style: none; -} - -.o-layout__item { - width: 100%; - padding-left: 1.5rem; -} - -@media (min-width:64em) { - .o-layout--fit-content\@screen-xl-up>.o-layout__item { - flex: 1; - width: 1%; - } -} - -.modal { - position: absolute; - top: 0; - right: 0; - left: 0; - width: 100%; - height: auto; - min-height: 100%; - z-index: 500; -} - -.modal__overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - background-color: rgba(0, 0, 0, .5); -} - -.modal__window { - background-color: #fff; - position: relative; - max-width: 90%; - padding: 1.5rem 1rem; - margin-top: 1.5rem; - margin-right: auto; - margin-bottom: 1.5rem; - margin-left: auto; - box-shadow: 0 0 5px rgba(0, 0, 0, .25); -} - -@media (min-width:30em) { - .modal__window { - max-width: 73%; - } -} - -@media (min-width:48em) { - .modal__window { - max-width: 50em; - margin-top: 3rem; - margin-bottom: 3rem; - } -} - -@media (min-width:75em) { - .modal__window { - margin-top: 4.5rem; - margin-bottom: 4.5rem; - } -} - -.modal__window--close-btn { - position: absolute; - top: 0; - right: 0; - width: 3rem; - height: 3rem; - cursor: pointer; - z-index: 500; - display: flex; - align-items: center; - justify-content: center; - margin: .5rem; - color: #0a0a0a; - background-color: rgba(255, 255, 255, .7); - border: 0; - border-radius: 50%; -} - -.modal__footer { - padding-top: calc(.75rem - 1px); -} - -.modal--is-open { - overflow-y: scroll; -} - -.modal--is-open .main { - position: fixed; - width: 100%; - filter: blur(.25em); -} - -.modal { - opacity: 0; - transition: opacity 250ms cubic-bezier(0, 0, .2, 1); -} - -.modal:before { - display: none; - content: "animated"; -} - -.modal--is-open .modal { - opacity: 1; - transition-timing-function: cubic-bezier(.4, 0, .6, 1); - transition-duration: 250ms; -} - -.modal--is-open .modal.modal--no-animation { - transition-duration: 0ms; -} - -.modal.modal--no-animation { - animation-duration: 0s; -} - -@media (min-width:48em) { - h1 { - font-size: 1.75rem; - } - - h1 .sub-title, - h4 { - font-size: 1.125rem; - } - - .banner__title, - h2, - h3 { - font-size: 1.25rem; - } - - h4 { - font-weight: 400; - } -} - -.ui-btn { - position: relative; - display: inline-flex; - flex-shrink: 0; - flex-wrap: nowrap; - align-items: center; - justify-content: center; - height: 3rem; - padding: 0 calc(1rem - 1px); - margin: 0; - overflow: hidden; - font-size: 14px; - font-weight: 400; - line-height: calc(3rem - 2px); - text-align: center; - text-decoration: none; - white-space: nowrap; - vertical-align: middle; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out; - -webkit-tap-highlight-color: transparent; - -webkit-touch-callout: none; - -webkit-user-select: none; - user-select: none; -} - -.ui-btn+.ui-btn { - margin-left: .5rem; -} - -.ui-btn:not(:disabled):not(.disabled):not(.is-loading) { - cursor: pointer; -} - -.ui-btn>svg { - margin-right: .5rem; - pointer-events: none; -} - -.ui-btn--primary { - color: #fff; - background-color: #00f; - border-color: #00f; - box-shadow: 0 4px 0-2px rgba(10, 10, 10, .25); -} - -.ui-btn--favorite { - background-color: transparent; -} - -.ui-btn--favorite, -.ui-btn--floating, -.ui-btn--tertiary { - color: #00f; - border-color: transparent; - box-shadow: none; -} - -.ui-btn--tertiary { - background-color: transparent; -} - -.ui-btn>.bi-show { - display: none; -} - -.ui-btn--floating, -.ui-btn--icon, -.ui-btn--square { - width: 3rem; - padding: 0; -} - -.ui-btn--floating { - position: absolute; - top: .5rem; - right: .5rem; - width: 2.5rem; - height: 2.5rem; - border-radius: 50%; - z-index: 10; - background-color: #fff; -} - -.ui-btn--floating>svg, -.ui-btn--icon>svg, -.ui-btn--square>svg { - margin: 0; -} - -@media (max-width:29.9375em) { - .ui-btn--block\@screen-small { - flex-shrink: 1; - width: 100%; - } - - .ui-btn--block\@screen-small+.ui-btn--block\@screen-small { - margin-top: 1rem; - margin-left: 0; - } -} - -.alert-banner { - position: relative; - display: flex; - padding: .75rem 0; - color: #0a0a0a; - background-color: #fff; - border-color: #000; - border-style: solid; - border-width: 0 0 1px; -} - -.alert-banner--info { - background-color: #fffae5; -} - -.alert-banner--info-light { - background-color: #fff; -} - -.alert-banner--warning { - background-color: #ffecec; -} - -.alert-banner__constrain { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; - display: flex; - flex-grow: 1; - align-items: center; -} - -@media (min-width:64em) { - .alert-banner__constrain { - padding-right: 2rem; - padding-left: 2rem; - } -} - -.alert-banner__figure { - margin: 0 1rem 0 0; -} - -.alert-banner__body { - position: relative; - flex: 1 1 auto; - width: 100%; - margin: 0; -} - -.alert-banner__title { - margin-bottom: 0; - font-size: .875rem; - font-weight: 600; -} - -.alert-banner__description { - margin: 0; -} - -.alert-banner__close-btn { - position: absolute; - top: -.75rem; - right: -1rem; -} - -@media (min-width:30em) { - .alert-banner__close-btn { - right: 0; - } -} - -.c-media { - display: flex; - align-items: flex-start; -} - -.c-media--center { - align-items: center; -} - -.c-media__figure { - display: flex; - margin: 0; - margin-right: 1rem; -} - -.c-media__body { - flex: 1 1 auto; - width: 100%; - overflow: hidden; -} - -.c-media__body, -.c-media__body> :last-child { - padding-bottom: 0; - margin-bottom: 0; -} - -.c-country-icon { - position: relative; - display: inline-block; - width: 2em; - height: 1.3125em; - overflow: hidden; - vertical-align: top; -} - -.c-country-icon:after, -.c-country-icon:before { - position: absolute; - content: ""; - border-style: solid; - border-width: 0; -} - -.c-country-icon--nl { - background-color: #fff; -} - -.c-country-icon--nl:after, -.c-country-icon--nl:before { - right: 0; - left: 0; - height: .4375em; -} - -.c-country-icon--nl:before { - top: 0; - background-color: #ae1c28; -} - -.c-country-icon--nl:after { - bottom: 0; - background-color: #21468b; -} - -@media (min-width:48em) { - h1 { - font-size: 1.75rem; - } - - h1 .sub-title, - h4 { - font-size: 1.125rem; - } - - .banner__title, - h2, - h3 { - font-size: 1.25rem; - } - - h4 { - font-weight: 400; - } -} - -h1, -h2 { - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; -} - -.banner__title, -h1, -h2, -h3, -h4, -h5 { - padding: 0; - margin: 0; - line-height: 1.25; -} - -.banner__title .sub-title, -h1, -h1 .sub-title, -h2, -h2 .sub-title { - color: #0a0a0a; -} - -h3, -h4, -h5 { - font-family: graphik, arial, helvetica, sans-serif; - font-weight: 600; - line-height: 1.5; -} - -h2, -h3, -h4, -h5 { - margin-bottom: .5rem; -} - -h1 { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -@media (min-width:48em) { - h1 { - font-size: 1.75rem; - } - - h1 .sub-title { - font-size: 1.125rem; - } -} - -.banner__title, -h2, -h3 { - font-size: 1.125rem; -} - -@media (min-width:48em) { - - .banner__title, - h2 { - font-size: 1.25rem; - } -} - -@media (min-width:48em) { - h3 { - font-size: 1.25rem; - } -} - -h4, -h5 { - font-size: 1rem; -} - -@media (min-width:48em) { - h4 { - font-size: 1.125rem; - font-weight: 400; - } -} - -.banner__explain, -.product-prices__list-price, -.small-text, -.small_details, -.smartbanner__content { - margin-bottom: .25rem; -} - -.banner__explain, -.product-prices__list-price, -.small-text, -.small_details { - font-size: .75rem; -} - -body, -html, -svg { - height: 100%; -} - -html { - box-sizing: border-box; - overflow-y: scroll; - -moz-osx-font-smoothing: grayscale; - -webkit-text-size-adjust: 100%; - text-size-adjust: 100%; - -webkit-font-smoothing: antialiased; -} - -*, -:after, -:before { - box-sizing: inherit; -} - -body { - min-width: 20em; - padding: 0; - margin: 0; - font-family: graphik, arial, helvetica, sans-serif; - font-size: 100%; - line-height: 1.5; - color: #0a0a0a; - background-color: #fff; -} - -body:after { - display: none; - content: "xsmall"; -} - -@media screen and (min-width:480px) { - body:after { - content: "xsmall,small"; - } -} - -@media screen and (min-width:768px) { - body:after { - content: "xsmall,small,medium"; - } -} - -@media screen and (min-width:1024px) { - body:after { - content: "xsmall,small,medium,large"; - } -} - -@media screen and (min-width:1200px) { - body:after { - content: "xsmall,small,medium,large,xlarge"; - } -} - -body>* { - font-size: .875rem; -} - -svg { - display: inline-block; - box-sizing: content-box; - width: 100%; - vertical-align: middle; - transform: translateX(0); -} - -h2 .icon-svg--select, -html { - font-size: 1em; -} - -.svg-inline--bi { - display: inline-block; - width: 1em; - height: 1em; - overflow: visible; - font-size: inherit; - vertical-align: -.125em; - fill: currentColor; -} - -.bi-lg { - font-size: 1.5em; - line-height: .66667em; - vertical-align: -.3125rem; -} - -.bi-1x { - font-size: 1em; -} - -.bi-2x { - font-size: 2em; -} - -.bi-3x { - font-size: 3em; -} - -.message-bar__text--emergency:before { - display: inline-block; - width: 1.5em; - height: 1.5em; - text-decoration: underline; - vertical-align: bottom; - content: ""; - background-repeat: no-repeat; - background-size: 1.5em; -} - -a img, -img { - margin: 0; - border: 0; -} - -.disable-pointer-events { - pointer-events: none; -} - -.constrain { - position: relative; - min-width: 18.25rem; - max-width: 76rem; - padding-right: 1rem; - padding-left: 1rem; - margin: 0 auto; -} - -@media (min-width:48em) { - .constrain { - padding-right: 2rem; - padding-left: 2rem; - } - - .constrain--main { - padding-top: 1.5rem; - } -} - -.constrain--light { - background-color: #fff; -} - -.wsp-header+.constrain--main { - padding-top: 0; -} - -.flexbanner { - position: relative; - z-index: 1; - display: flex; - flex-flow: column nowrap; - height: 100%; - min-height: 14.375rem; - overflow: hidden; - background-color: #f0f6ff; -} - -.flexbanner, -.smartbanner__close a:hover { - text-decoration: none; -} - -.flexbanner__extra { - margin: .125rem 0-.75rem; - font-size: .625rem; - line-height: 1; - color: #828282; - text-align: right; -} - -.flexbanner__image-wrapper { - position: relative; - display: flex; - flex-grow: 1; - margin-top: auto; -} - -.flexbanner--card .flexbanner__image-wrapper { - max-height: 9rem; -} - -.flexbanner__image { - position: relative; - width: 100%; - height: 100%; - min-height: 7rem; - margin: 0 auto; - overflow: hidden; - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} - -.flexbanner__image-wrapper .flexbanner__image { - position: absolute; -} - -.flexbanner__content { - display: flex; - flex-flow: column; - flex-shrink: 0; - padding: 1.5rem 1.5rem 0; -} - -.flexbanner__subtitle, -.flexbanner__title { - padding: 0; - font-family: produkt, arial, helvetica, sans-serif; - line-height: 1; - word-break: break-word; -} - -.flexbanner__title { - margin: 0 0 .25rem; - font-size: 1.125rem; - font-weight: 900; -} - -.flexbanner__title sup { - top: -12%; -} - -.flexbanner__subtitle { - margin: 0 0 .5rem; - font-size: 1rem; - font-weight: 300; -} - -@media (min-width:30em) { - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__title { - font-size: 1.5rem; - font-weight: 900; - } - - .flexbanner:not(.flexbanner--card):not(.flexbanner--portrait) .flexbanner__subtitle { - font-size: 1.3125rem; - } -} - -.flexbanner__button { - position: absolute; - bottom: 1.5rem; - left: 1.5rem; - z-index: 1; - display: flex; - width: 1.875rem; - padding: .5rem; - margin-right: auto; - color: #fff; - background: #00f; -} - -@media (min-width:30em) { - .flexbanner:not(.flexbanner--portrait) { - flex-flow: row; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__content, - .flexbanner:not(.flexbanner--portrait) .flexbanner__image-wrapper { - width: 50%; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__content { - padding-bottom: 1.5rem; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__image-wrapper { - margin-top: 0; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__image { - height: 100%; - } - - .flexbanner:not(.flexbanner--portrait) .flexbanner__button { - position: relative; - top: 0; - left: 0; - margin-top: auto; - } -} - -.flexbanner--contain { - height: auto; - min-height: 100%; -} - -.flexbanner-container { - position: relative; - flex-grow: 1; - min-width: 15rem; - height: auto; -} - -.smartbanner { - display: flex; - align-items: center; - z-index: 99999; - position: fixed; - bottom: 0; - width: calc(100% - 1rem); - padding-top: .75rem; - padding-right: .75rem; - padding-bottom: .75rem; - padding-left: 0; - margin: .5rem; - background-color: #fafafa; - border-color: #e6e6e6; - opacity: 100%; -} - -.smartbanner__close { - padding: .75rem; -} - -.smartbanner__close a { - font-size: 1.5em; - font-weight: 600; - color: #828282; -} - -.smartbanner__icon { - display: block; - width: 3.5em; - height: 3.5em; - margin-right: .75rem; - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} - -.smartbanner__icon--android, -.smartbanner__icon--ios { - background-image: url(/nl/static/assets/images/sass/app-icons/iosapp@2x.png); -} - -.smartbanner__content { - margin-right: auto; - font-size: .875rem; -} - -.banner { - position: relative; - padding: .75em; - margin-bottom: .5rem; - border: 1px solid #aaa; - border-style: dashed; - border-radius: .25em; - display: flex; -} - -.banner:after { - display: table; - clear: both; - content: ""; -} - -.banner> :last-child { - padding-bottom: 0; -} - -@media (min-width:30em) { - .banner { - padding: 0; - padding-top: 1rem; - } -} - -.banner__spacing { - margin-bottom: 1rem; -} - -.banner__close { - position: absolute; - top: .2em; - right: .2em; - float: right; - width: 1.5rem; - height: 1.5rem; - color: #aaa; - text-align: center; - cursor: pointer; -} - -@media (min-width:30em) { - .banner__close { - top: 1em; - right: 1em; - } -} - -.banner__close-hitarea { - position: absolute; - top: 0; - right: 0; - width: 3em; - height: 3em; - cursor: pointer; - z-index: 500; -} - -.banner__image { - float: left; - max-height: 80px; - align-self: flex-end; -} - -.banner__body { - padding: 0; - overflow: hidden; -} - -@media (min-width:30em) { - .banner__body { - padding: 1rem; - margin-right: 1rem; - } -} - -.banner__title { - margin-bottom: .25rem; - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 900; - color: #0000a4; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.banner__message { - margin-bottom: .5rem; -} - -@media (min-width:30em) { - .banner__message { - margin-bottom: 1rem; - } -} - -.banner__explain a { - color: #828282; - text-decoration: underline; -} - -.select-banner { - display: flex; - align-items: center; - flex-direction: column; - position: relative; - padding: 1rem; - overflow: hidden; - background-color: #e5f4e9; - border-radius: .25rem; -} - -.select-banner:before { - top: -50em; - width: 80em; - height: 60em; - content: ""; - background: rgba(255, 255, 255, .8); -} - -.select-banner__logo { - position: relative; - padding-bottom: 7.5rem; - font-size: 1.5em; -} - -.select-banner__logo span { - display: block; - color: #828282; -} - -.select-banner__logo svg { - margin: 0; - font-size: 1.75em; -} - -.select-banner:before, -.select-banner__price { - position: absolute; - left: 50%; - border-radius: 50%; - transform: translateX(-50%); -} - -.select-banner__price { - top: -6em; - display: block; - width: 5em; - height: 5em; - padding-top: .75rem; - line-height: 1.25; - color: #fff; - text-align: center; - background-color: #01ac3a; -} - -.select-banner__price .bol_header { - display: block; - font-size: 1.5em; - line-height: 1.25; -} - -.select-banner__price .sub_price { - display: block; - margin-top: -.5rem; -} - -.select-banner__content { - position: relative; - max-width: 100%; - color: #828282; -} - -.select-banner--simple { - background-color: #f2fbf5; -} - -.select-banner--simple:before { - content: normal; -} - -.select-banner--simple .select-banner__logo { - padding-bottom: 0; - font-size: 2.25rem; -} - -@media (min-width:48em) { - .select-banner--cols { - flex-direction: row; - padding: 2rem; - background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(255, 255, 255, .8) 40%, #e5f4e9 0); - } - - .select-banner--cols:before { - content: normal; - } - - .select-banner--cols .select-banner__logo { - padding-bottom: 0; - margin: 0 auto 0 5%; - } -} - -@media (min-width:64em) { - .select-banner--cols .select-banner__logo { - margin-left: 10%; - } -} - -@media (min-width:48em) { - .select-banner--cols .select-banner__price { - top: 50%; - left: -7em; - transform: translateY(-50%); - } - - .select-banner--cols .select-banner__content { - flex: 0 1 55%; - min-height: 0; - min-width: 0; - } -} - -.banner-attention { - position: relative; -} - -.banner-attention__top { - padding: 1rem; - color: #fff; - background-color: #01ac3a; -} - -.banner-attention .banner__close, -.banner-attention__header-title { - color: #fff; -} - -.banner-attention__bottom { - display: flex; - align-items: center; - padding: 1rem; - border-color: #e6e6e6; - border-style: solid; - border-width: 0 1px 1px; -} - -@media (max-width:29.9375em) { - .banner-attention__bottom { - flex-direction: column; - } -} - -.product-title { - display: inline-block; - margin-bottom: .5rem; - font-weight: 600; - color: #0a0a0a; -} - -@media (min-width:30em) { - .product-title { - margin-bottom: .25rem; - } -} - -.product-title .truncate { - display: inline-block; - display: -webkit-box; - max-height: 3em; - overflow: hidden; - line-height: 1.5; - text-overflow: ellipsis; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; -} - -.product-title--placeholder { - display: block; - height: 3em; - overflow: hidden; -} - -.consent-modal__description>span { - display: block; - margin-bottom: 1.5rem; -} - -.product-image { - position: relative; - display: block; - width: 100%; -} - -.product-image:after { - display: block; - padding-bottom: 100%; - content: ""; -} - -.product-image img { - position: absolute; - top: 0; - right: 0; - left: 0; - max-width: 100%; - max-height: 100%; - margin: auto; -} - -.product-image--square { - overflow: hidden; - isolation: isolate; -} - -.product-image--square, -.product-image--square .skeleton-image__container { - background-color: #fafafa; -} - -.product-image--square img { - bottom: 0; - padding: 12%; - mix-blend-mode: darken; -} - -.product-image--regular { - max-width: 13.625em; - margin: auto; -} - -.product-prices { - padding-bottom: .25rem; -} - -@media (min-width:48em) { - .product-prices { - padding-bottom: .5rem; - } -} - -.product-prices__currency { - white-space: nowrap; -} - -.product-prices__currency:before { - content: "€ "; -} - -.product-prices__bol-price { - display: inline-block; - padding-right: .25em; - color: #eb0400; -} - -.product-prices__bol-promo-price { - display: inline-block; - padding: 0 .25rem; - font-weight: 600; - color: #fff; - background-color: #eb0400; - border-radius: .25em; -} - -.product-prices__list-price { - color: #828282; -} - -.skeleton-image { - display: block; - min-height: 1px; - margin: auto; -} - -.skeleton-image__container { - min-height: 1px; -} - -.skeleton-image--with-placeholder .skeleton-image__container { - position: relative; - display: block; - overflow: hidden; - text-align: center; - isolation: isolate; -} - -.skeleton-image__img, -.skeleton-image__placeholder { - transition: opacity 500ms cubic-bezier(.215, .61, .355, 1); - will-change: opacity; -} - -.skeleton-image[loaded] .skeleton-image__placeholder, -.skeleton-image__img { - opacity: 0; -} - -.skeleton-image--with-placeholder .skeleton-image__img { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 2; - width: auto; - max-width: 100%; - height: auto; - max-height: 100%; - margin: 0 auto; - mix-blend-mode: multiply; -} - -.skeleton-image__placeholder { - z-index: 1; - width: auto; - max-width: 100%; - height: auto; - max-height: 100%; -} - -.skeleton-image[loaded] .skeleton-image__img { - opacity: 1; -} - -.skeleton-image--contain { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: flex; - align-items: center; -} - -.skeleton-image--contain .skeleton-image__container { - width: 100%; - height: 100%; -} - -.skeleton-image--contain .skeleton-image__placeholder { - position: absolute; - z-index: 2; -} - -.skeleton-image--contain .skeleton-image__img, -.skeleton-image--contain .skeleton-image__placeholder { - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 0; - margin: auto; -} - -.offcanvas-container { - position: fixed; - top: 0; - left: -16.25rem; - width: 16.25rem; - height: 100%; - overflow-x: hidden; - background-color: #fff; - transition: transform .2s ease; - transform: translate3d(0, 0, 0); - -webkit-overflow-scrolling: touch; - z-index: 300; -} - -@media (min-width:48em) { - .offcanvas-container { - left: -20rem; - width: 20rem; - } -} - -@media (min-width:64em) { - .offcanvas-container:not(.offcanvas-container--xlarge) { - position: static; - right: auto; - left: auto; - z-index: auto; - width: auto; - height: auto; - overflow: visible; - background-color: transparent; - transition: none; - transform: none; - } -} - -.offcanvas-container--right { - right: -16.25em; - left: auto; -} - -@media (min-width:48em) { - .offcanvas-container--right { - right: -20em; - } -} - -.offcanvas-header { - position: relative; - min-height: 3em; -} - -.offcanvas-header__title { - padding: .75em 1rem; - border-bottom: 1px solid #aaa; -} - -.offcanvas-header__close-btn { - position: absolute; - top: 0; - right: 0; - display: block; - width: 3em; - height: 3em; - line-height: 3; - color: #828282; - text-align: center; -} - -@media (min-width:64em) { - .offcanvas-header { - display: none; - } -} - -.message-bar { - padding: 1rem 0; - text-align: center; - background-color: #fff; - border-bottom: 1px solid #e6e6e6; -} - -.message-bar__text { - padding-bottom: 0; - text-align: left; -} - -.message-bar__text--cookie { - font-size: .625rem; -} - -.message-bar__text--emergency { - position: relative; - padding-left: 2.5rem; - font-size: .75rem; - color: #eb0400; -} - -.message-bar__text--emergency:before { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%28235%2C4%2C0%29'%3E%3Cpath fill-rule='evenodd' d='M7 1l7 12H0L7 1zm0 2l-5.25 9h10.5L7 3zm-.494 3.039a.508.508 0 01.507-.513H6.99c.282 0 .514.228.516.513l.024 2.448A.508.508 0 017.023 9h.023a.517.517 0 01-.516-.513L6.506 6.04zM7.003 11a.5.5 0 110-1 .5.5 0 010 1z'/%3E%3C/svg%3E"); - position: absolute; - left: 0; - margin-left: 0; - font-size: .67em; -} - -.message-bar__remove { - margin-top: 1rem; -} - -@media (min-width:48em) { - .message-bar__remove { - margin-top: 0; - text-align: right; - } -} - -.filmstrip { - display: flex; - padding: 0; - margin: 0 1rem 0 0; - overflow-x: visible; - transform: translateX(0); -} - -.filmstrip:after { - display: table; - clear: both; - flex-shrink: 0; - width: .5rem; - height: 1rem; - content: ""; - scroll-snap-align: start; -} - -.no-touch .filmstrip { - transition: transform 1s ease; - will-change: transform; -} - -.filmstrip-container { - position: relative; - display: flex; - flex-direction: column; - flex-grow: 1; - overflow: hidden; - margin-right: -1rem; - margin-left: -1rem; -} - -.filmstrip-container .region__footer, -.filmstrip-container .region__header { - padding-right: 1rem; - padding-left: 1rem; -} - -@media (min-width:48em) { - .filmstrip-container { - margin-right: 0; - margin-left: 0; - } - - .filmstrip-container .region__footer, - .filmstrip-container .region__header { - padding-right: 0; - padding-left: 0; - } -} - -.filmstrip-viewport { - flex-grow: 1; - margin: 0 .5rem; - overflow: hidden; -} - -@media (min-width:48em) { - .filmstrip-viewport { - margin: 0-.5rem; - } -} - -.filmstrip-container[no-snap] .filmstrip-viewport { - scroll-snap-type: none; -} - -.no-touch .filmstrip-viewport { - overflow: hidden; -} - -.filmstrip__card { - padding-left: .5rem; - list-style: inside none; - scroll-snap-align: start; -} - -@media (min-width:48em) { - .filmstrip__card { - height: auto; - } -} - -.filmstrip__card { - flex: none; -} - -.filmstrip__card--contain { - max-width: 15rem; - height: auto; - min-height: 100%; -} - -@media (min-width:48em) { - .filmstrip__card--contain { - max-width: none; - } -} - -.filmstrip-controls { - position: absolute; - top: 50%; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 2.5em; - height: 2.5em; - line-height: 1.25; - text-align: center; - background-color: #fff; - border-color: #aaa; - border-style: solid; - transform: translateY(-50%); -} - -.filmstrip-controls--inactive { - display: flex; - pointer-events: none; - opacity: .5; -} - -.filmstrip-controls--next { - right: 0; - border-width: 0 0 1px 1px; - border-radius: .25em 0 0 .25em; -} - -.filmstrip-controls--prev { - left: 0; - border-width: 0 1px 1px 0; - border-radius: 0 .25em .25em 0; -} - -.region .filmstrip-viewport { - margin: 0; -} - -@media (min-width:48em) { - .region .filmstrip-viewport { - margin: 0-1rem; - } -} - -.region .filmstrip:after { - width: 1rem; -} - -.promo-text { - margin-right: 5px; - font-weight: 600; - line-height: 1.2; - color: #ff4947; - text-align: right; - font-size: .75rem; -} - -.consent-modal { - display: flex; - flex-flow: column nowrap; - max-height: calc(100vh - 5rem); -} - -.consent-modal__description { - flex-shrink: 1; - margin: 0; - overflow-y: auto; -} - -.banner__explain { - color: #828282; -} - -.h-txt-center { - text-align: center; -} - -.creative_container { - display: flex; - flex-flow: column; - align-items: center; - overflow: hidden; -} - -.u-nosp .creative_container { - margin-bottom: .5rem; -} - -.creative_container--card { - justify-content: center; - max-width: 17.25rem; - height: 100%; - min-height: 14.375rem; - overflow: visible; -} - -.creative_container--card .creative-title { - position: relative; - bottom: -.125rem; - margin-bottom: -.625rem; - font-size: .625rem; - line-height: 1; -} - -.filmstrip__card--mms { - flex-basis: 25%; - justify-content: center; -} - -.filmstrip__card--mms+.filmstrip__card { - min-height: 14.375rem; -} - -.banner__close.sb { - color: transparent; -} - -.banner__close.sb:after { - background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='rgb%2810%2C10%2C10%29'%3E%3Cpath fill-rule='evenodd' d='M7 7.378l3.363 3.363a.496.496 0 00.703-.004c.19-.19.197-.51.004-.703L7.707 6.67l3.363-3.363a.496.496 0 00-.004-.703.502.502 0 00-.703-.004L7 5.964 3.637 2.6a.496.496 0 00-.703.004.502.502 0 00-.004.703L6.293 6.67 2.93 10.034a.496.496 0 00.004.703c.19.19.51.197.703.004L7 7.378z'/%3E%3C/svg%3E"); - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - content: ""; - background-repeat: no-repeat; - background-position: center; -} - -.h-block--inline { - display: inline-block; -} - -.h-flex { - display: flex; -} - -.h-flex-wrap { - flex-wrap: wrap; -} - -.vatop { - vertical-align: top; -} - -.fright { - float: right; -} - -.hit-area { - position: relative; -} - -.hit-area__link { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 2; -} - -@media (min-width:48em) { - .u-m--0\@screen-large-up { - margin: 0; - } - - .u-m--xxs\@screen-large-up { - margin: .25rem; - } - - .u-m--xs\@screen-large-up { - margin: .5rem; - } - - .u-m--sm\@screen-large-up { - margin: .75rem; - } - - .u-m--m\@screen-large-up, - .u-m\@screen-large-up { - margin: 1rem; - } - - .u-m--lg\@screen-large-up { - margin: 1.5rem; - } - - .u-m--xl\@screen-large-up { - margin: 2rem; - } - - .u-m--xxl\@screen-large-up { - margin: 3rem; - } - - .u-mt--0\@screen-large-up { - margin-top: 0; - } - - .u-mt--xxs\@screen-large-up { - margin-top: .25rem; - } - - .u-mt--xs\@screen-large-up { - margin-top: .5rem; - } - - .u-mt--sm\@screen-large-up { - margin-top: .75rem; - } - - .u-mt--m\@screen-large-up, - .u-mt\@screen-large-up { - margin-top: 1rem; - } - - .u-mt--lg\@screen-large-up { - margin-top: 1.5rem; - } - - .u-mt--xl\@screen-large-up { - margin-top: 2rem; - } - - .u-mt--xxl\@screen-large-up { - margin-top: 3rem; - } - - .u-mr--0\@screen-large-up { - margin-right: 0; - } - - .u-mr--xxs\@screen-large-up { - margin-right: .25rem; - } - - .u-mr--xs\@screen-large-up { - margin-right: .5rem; - } - - .u-mr--sm\@screen-large-up { - margin-right: .75rem; - } - - .u-mr--m\@screen-large-up, - .u-mr\@screen-large-up { - margin-right: 1rem; - } - - .u-mr--lg\@screen-large-up { - margin-right: 1.5rem; - } - - .u-mr--xl\@screen-large-up { - margin-right: 2rem; - } - - .u-mr--xxl\@screen-large-up { - margin-right: 3rem; - } - - .u-mb--0\@screen-large-up { - margin-bottom: 0; - } - - .u-mb--xxs\@screen-large-up { - margin-bottom: .25rem; - } - - .u-mb--xs\@screen-large-up { - margin-bottom: .5rem; - } - - .u-mb--sm\@screen-large-up { - margin-bottom: .75rem; - } - - .u-mb--m\@screen-large-up, - .u-mb\@screen-large-up { - margin-bottom: 1rem; - } - - .u-mb--lg\@screen-large-up { - margin-bottom: 1.5rem; - } - - .u-mb--xl\@screen-large-up { - margin-bottom: 2rem; - } - - .u-mb--xxl\@screen-large-up { - margin-bottom: 3rem; - } - - .u-ml--0\@screen-large-up { - margin-left: 0; - } - - .u-ml--xxs\@screen-large-up { - margin-left: .25rem; - } - - .u-ml--xs\@screen-large-up { - margin-left: .5rem; - } - - .u-ml--sm\@screen-large-up { - margin-left: .75rem; - } - - .u-ml--m\@screen-large-up, - .u-ml\@screen-large-up { - margin-left: 1rem; - } - - .u-ml--lg\@screen-large-up { - margin-left: 1.5rem; - } - - .u-ml--xl\@screen-large-up { - margin-left: 2rem; - } - - .u-ml--xxl\@screen-large-up { - margin-left: 3rem; - } - - .u-p--0\@screen-large-up { - padding: 0; - } - - .u-p--xxs\@screen-large-up { - padding: .25rem; - } - - .u-p--xs\@screen-large-up { - padding: .5rem; - } - - .u-p--sm\@screen-large-up { - padding: .75rem; - } - - .u-p--m\@screen-large-up, - .u-p\@screen-large-up { - padding: 1rem; - } - - .u-p--lg\@screen-large-up { - padding: 1.5rem; - } - - .u-p--xl\@screen-large-up { - padding: 2rem; - } - - .u-p--xxl\@screen-large-up { - padding: 3rem; - } - - .u-pt--0\@screen-large-up { - padding-top: 0; - } - - .u-pt--xxs\@screen-large-up { - padding-top: .25rem; - } - - .u-pt--xs\@screen-large-up { - padding-top: .5rem; - } - - .u-pt--sm\@screen-large-up { - padding-top: .75rem; - } - - .u-pt--m\@screen-large-up, - .u-pt\@screen-large-up { - padding-top: 1rem; - } - - .u-pt--lg\@screen-large-up { - padding-top: 1.5rem; - } - - .u-pt--xl\@screen-large-up { - padding-top: 2rem; - } - - .u-pt--xxl\@screen-large-up { - padding-top: 3rem; - } - - .u-pr--0\@screen-large-up { - padding-right: 0; - } - - .u-pr--xxs\@screen-large-up { - padding-right: .25rem; - } - - .u-pr--xs\@screen-large-up { - padding-right: .5rem; - } - - .u-pr--sm\@screen-large-up { - padding-right: .75rem; - } - - .u-pr--m\@screen-large-up, - .u-pr\@screen-large-up { - padding-right: 1rem; - } - - .u-pr--lg\@screen-large-up { - padding-right: 1.5rem; - } - - .u-pr--xl\@screen-large-up { - padding-right: 2rem; - } - - .u-pr--xxl\@screen-large-up { - padding-right: 3rem; - } - - .u-pb--0\@screen-large-up { - padding-bottom: 0; - } - - .u-pb--xxs\@screen-large-up { - padding-bottom: .25rem; - } - - .u-pb--xs\@screen-large-up { - padding-bottom: .5rem; - } - - .u-pb--sm\@screen-large-up { - padding-bottom: .75rem; - } - - .u-pb--m\@screen-large-up, - .u-pb\@screen-large-up { - padding-bottom: 1rem; - } - - .u-pb--lg\@screen-large-up { - padding-bottom: 1.5rem; - } - - .u-pb--xl\@screen-large-up { - padding-bottom: 2rem; - } - - .u-pb--xxl\@screen-large-up { - padding-bottom: 3rem; - } - - .u-pl--0\@screen-large-up { - padding-left: 0; - } - - .u-pl--xxs\@screen-large-up { - padding-left: .25rem; - } - - .u-pl--xs\@screen-large-up { - padding-left: .5rem; - } - - .u-pl--sm\@screen-large-up { - padding-left: .75rem; - } - - .u-pl--m\@screen-large-up, - .u-pl\@screen-large-up { - padding-left: 1rem; - } - - .u-pl--lg\@screen-large-up { - padding-left: 1.5rem; - } - - .u-pl--xl\@screen-large-up { - padding-left: 2rem; - } - - .u-pl--xxl\@screen-large-up { - padding-left: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mb\@screen-small-only { - margin-bottom: 1rem; - } -} - -@media (min-width:30em) { - .banner__explain--small { - display: none; - } -} - -.banner__explain--medium, -.banner__image { - display: none; -} - -@media (min-width:30em) { - - .banner__explain--medium, - .banner__image { - display: block; - } -} - -@media (min-width:48em) { - .medium--is-hidden { - display: none; - } -} - -.is-hidden { - display: none; -} - -.img-wrapper { - position: relative; - display: flex; - flex-flow: column; - align-items: flex-start; -} - -.day-deal__image .skeleton-image__container img, -.day-deal__image wsp-skeleton-image img, -.img-wrapper .img { - max-width: 100%; - max-height: 100%; -} - -.img-wrapper .img--stretch { - width: 100%; - height: 100%; -} - -.img-wrapper--center:not(.img-wrapper--fluid) { - align-items: center; - justify-content: center; -} - -.img-wrapper--fluid { - display: flex; - padding-bottom: 100%; - overflow: hidden; -} - -.img-wrapper--fluid .img { - position: absolute; -} - -.img-wrapper--fluid.img-wrapper--center .img { - top: 0; - right: 0; - bottom: 0; - left: 0; - margin: auto; -} - -wsp-skeleton-image { - min-width: 1px; - min-height: 1px; -} - -.region, -.region__header { - display: flex; - flex-flow: row wrap; - margin-bottom: 1rem; - margin-left: -1rem; -} - -.region { - flex-basis: 100%; -} - -.region__header { - width: calc(100% + 1rem); -} - -.feature>.region__header { - padding-left: 0; -} - -.region__header--more-link { - flex-basis: 100%; - max-width: max-content; -} - -.region__header-title { - flex-grow: 1; - padding-left: 1rem; - margin: 0; -} - -.feature { - position: relative; - display: flex; - flex-flow: column; - flex-shrink: 0; - padding-left: 1rem; - margin-bottom: 1rem; -} - -@media (max-width:29.9375em) { - .feature--full-screen-small { - flex-grow: 1; - padding-left: 0; - margin-right: -1rem; - } -} - -.editorial-card { - display: flex; - flex-flow: column; - flex-grow: 1; -} - -.editorial-card a { - color: inherit; -} - -.editorial-card__title { - font-weight: 600; -} - -.editorial-card__image { - padding-bottom: 50%; -} - -.image-card { - display: inline-block; -} - -.image-card__image-link { - display: block; - color: #0a0a0a; -} - -.image-card__image { - background: #fafafa; -} - -.image-card__title { - display: block; - font-size: 1rem; - text-align: center; -} - -.image-card--landscape { - max-width: 15rem; -} - -.image-card--landscape .image-card__image { - padding-bottom: 100%; -} - -.image-card--landscape .image-card__image .img { - margin-left: -73.5%; - width: auto; - max-width: 46.3125rem; - height: 100%; - max-height: 18.75rem; -} - -@media (min-width:30em) { - .image-card--landscape { - max-width: 46.3125rem; - } -} - -@media (min-width:48em) { - .image-card--landscape .image-card__image { - padding-bottom: 66.66667%; - } - - .image-card--landscape .image-card__image .img { - margin-left: -32.33333%; - } -} - -.product-card--skeleton .product-card__price { - visibility: hidden; -} - -.day-deal { - position: relative; - display: flex; - flex-flow: column wrap; - flex-grow: 1; - padding: 0 1rem 1rem; - background-color: #fafafa; -} - -@media (min-width:30em) { - .day-deal { - flex-flow: row; - padding: 0; - } -} - -.day-deal__countdown-wrapper { - z-index: 2; - display: flex; - flex-grow: 1; - justify-content: center; - width: 100%; - pointer-events: none; -} - -@media (min-width:30em) { - .day-deal__countdown-wrapper { - position: absolute; - top: 0; - } -} - -.day-deal__countdown { - align-self: center; - padding: .25rem 1rem; - margin: 0 1.5rem; - font-size: 1.125rem; - color: #ff4947; - background: #fff; - border-radius: 0 0 .25rem .25rem; - box-shadow: 1px 2px 4px 0 rgba(49, 49, 47, .3); -} - -.day-deal__countdown__title { - font-family: produkt, arial, helvetica, sans-serif; - font-weight: 700; -} - -@media (min-width:30em) { - .day-deal__countdown { - font-size: 1.25rem; - } -} - -.day-deal__image { - height: 15rem; - padding: 1.5rem 1rem; - background: #fafafa; - isolation: isolate; -} - -.day-deal__image .skeleton-image__container, -.day-deal__image wsp-skeleton-image { - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; -} - -.day-deal__image .img { - mix-blend-mode: darken; - will-change: opacity; -} - -@media (min-width:30em) { - .day-deal__content { - padding: 4.5rem 1.5rem 1.5rem; - } -} - -.day-deal__title { - font-weight: 600; - display: block; - font-size: .875rem; - margin-bottom: 1rem; - color: #0a0a0a; - word-break: break-word; -} - -.day-deal__disclaimer+.day-deal__cta { - margin-top: 1rem; -} - -.day-deal__disclaimer { - color: #828282; -} - -.day-deal-link { - max-width: -moz-fit-content; - max-width: fit-content; - margin-top: .5rem; - margin-bottom: -2rem; - line-height: 1.5rem; -} - -.region:first-child .flex-banner-main { - min-height: 10rem; - margin-top: -1.5rem; -} - -@media (min-width:30em) { - .region:first-child .flex-banner-main { - min-height: 11.375rem; - margin-top: 0; - } -} - -.flex-banner-main.img-wrapper--fluid { - padding-bottom: 43.58974%; -} - -@media (min-width:30em) { - .flex-banner-main.img-wrapper--fluid { - padding-bottom: 25.60764%; - } -} - -.account-nav { - padding: 0; - margin-bottom: 0; - margin-left: 0; - list-style: none; - font-size: .875rem; -} - -.account-dropdown .account-nav__item { - border-top: 1px solid #aaa; -} - -.account-dropdown .account-nav__item:first-child { - border-top: 0; -} - -.account-nav__link { - display: block; - padding: .75rem; - color: #0a0a0a; -} - -.account-dropdown .account-nav__link { - padding-left: .5rem; -} - -.u-rounded { - border-radius: .5rem; -} - -.u-nosp { - padding: 0; -} - -.u-m--0, -.u-nosp { - margin: 0; -} - -.u-m--xxs { - margin: .25rem; -} - -.u-m--xs { - margin: .5rem; -} - -.u-m--sm { - margin: .75rem; -} - -.u-m, -.u-m--m { - margin: 1rem; -} - -.u-m--lg { - margin: 1.5rem; -} - -.u-m--xl { - margin: 2rem; -} - -.u-m--xxl { - margin: 3rem; -} - -.u-mt--0 { - margin-top: 0; -} - -.u-mt--xxs { - margin-top: .25rem; -} - -.u-mt--xs { - margin-top: .5rem; -} - -.u-mt--sm { - margin-top: .75rem; -} - -.u-mt, -.u-mt--m { - margin-top: 1rem; -} - -.u-mt--lg { - margin-top: 1.5rem; -} - -.u-mt--xl { - margin-top: 2rem; -} - -.u-mt--xxl { - margin-top: 3rem; -} - -.u-mr--0 { - margin-right: 0; -} - -.u-mr--xxs { - margin-right: .25rem; -} - -.u-mr--xs { - margin-right: .5rem; -} - -.u-mr--sm { - margin-right: .75rem; -} - -.u-mr, -.u-mr--m { - margin-right: 1rem; -} - -.u-mr--lg { - margin-right: 1.5rem; -} - -.u-mr--xl { - margin-right: 2rem; -} - -.u-mr--xxl { - margin-right: 3rem; -} - -.u-mb--0 { - margin-bottom: 0; -} - -.u-mb--xxs { - margin-bottom: .25rem; -} - -.u-mb--xs { - margin-bottom: .5rem; -} - -.u-mb--sm { - margin-bottom: .75rem; -} - -.u-mb, -.u-mb--m { - margin-bottom: 1rem; -} - -.u-mb--lg { - margin-bottom: 1.5rem; -} - -.u-mb--xl { - margin-bottom: 2rem; -} - -.u-mb--xxl { - margin-bottom: 3rem; -} - -.u-ml--0 { - margin-left: 0; -} - -.u-ml--xxs { - margin-left: .25rem; -} - -.u-ml--xs { - margin-left: .5rem; -} - -.u-ml--sm { - margin-left: .75rem; -} - -.u-ml, -.u-ml--m { - margin-left: 1rem; -} - -.u-ml--lg { - margin-left: 1.5rem; -} - -.u-ml--xl { - margin-left: 2rem; -} - -.u-ml--xxl { - margin-left: 3rem; -} - -.u-p--0 { - padding: 0; -} - -.u-p--xxs { - padding: .25rem; -} - -.u-p--xs { - padding: .5rem; -} - -.u-p--sm { - padding: .75rem; -} - -.u-p, -.u-p--m { - padding: 1rem; -} - -.u-p--lg { - padding: 1.5rem; -} - -.u-p--xl { - padding: 2rem; -} - -.u-p--xxl { - padding: 3rem; -} - -.u-pt--0 { - padding-top: 0; -} - -.u-pt--xxs { - padding-top: .25rem; -} - -.u-pt--xs { - padding-top: .5rem; -} - -.u-pt--sm { - padding-top: .75rem; -} - -.u-pt, -.u-pt--m { - padding-top: 1rem; -} - -.u-pt--lg { - padding-top: 1.5rem; -} - -.u-pt--xl { - padding-top: 2rem; -} - -.u-pt--xxl { - padding-top: 3rem; -} - -.u-pr--0 { - padding-right: 0; -} - -.u-pr--xxs { - padding-right: .25rem; -} - -.u-pr--xs { - padding-right: .5rem; -} - -.u-pr--sm { - padding-right: .75rem; -} - -.u-pr, -.u-pr--m { - padding-right: 1rem; -} - -.u-pr--lg { - padding-right: 1.5rem; -} - -.u-pr--xl { - padding-right: 2rem; -} - -.u-pr--xxl { - padding-right: 3rem; -} - -.u-pb--0 { - padding-bottom: 0; -} - -.u-pb--xxs { - padding-bottom: .25rem; -} - -.u-pb--xs { - padding-bottom: .5rem; -} - -.u-pb--sm { - padding-bottom: .75rem; -} - -.u-pb, -.u-pb--m { - padding-bottom: 1rem; -} - -.u-pb--lg { - padding-bottom: 1.5rem; -} - -.u-pb--xl { - padding-bottom: 2rem; -} - -.u-pb--xxl { - padding-bottom: 3rem; -} - -.u-pl--0 { - padding-left: 0; -} - -.u-pl--xxs { - padding-left: .25rem; -} - -.u-pl--xs { - padding-left: .5rem; -} - -.u-pl--sm { - padding-left: .75rem; -} - -.u-pl, -.u-pl--m { - padding-left: 1rem; -} - -.u-pl--lg { - padding-left: 1.5rem; -} - -.u-pl--xl { - padding-left: 2rem; -} - -.u-pl--xxl { - padding-left: 3rem; -} - -@media (min-width:48em) { - .u-m--0\@screen-large-up { - margin: 0; - } - - .u-m--xxs\@screen-large-up { - margin: .25rem; - } - - .u-m--xs\@screen-large-up { - margin: .5rem; - } - - .u-m--sm\@screen-large-up { - margin: .75rem; - } - - .u-m--m\@screen-large-up, - .u-m\@screen-large-up { - margin: 1rem; - } - - .u-m--lg\@screen-large-up { - margin: 1.5rem; - } - - .u-m--xl\@screen-large-up { - margin: 2rem; - } - - .u-m--xxl\@screen-large-up { - margin: 3rem; - } - - .u-mt--0\@screen-large-up { - margin-top: 0; - } - - .u-mt--xxs\@screen-large-up { - margin-top: .25rem; - } - - .u-mt--xs\@screen-large-up { - margin-top: .5rem; - } - - .u-mt--sm\@screen-large-up { - margin-top: .75rem; - } - - .u-mt--m\@screen-large-up, - .u-mt\@screen-large-up { - margin-top: 1rem; - } - - .u-mt--lg\@screen-large-up { - margin-top: 1.5rem; - } - - .u-mt--xl\@screen-large-up { - margin-top: 2rem; - } - - .u-mt--xxl\@screen-large-up { - margin-top: 3rem; - } - - .u-mr--0\@screen-large-up { - margin-right: 0; - } - - .u-mr--xxs\@screen-large-up { - margin-right: .25rem; - } - - .u-mr--xs\@screen-large-up { - margin-right: .5rem; - } - - .u-mr--sm\@screen-large-up { - margin-right: .75rem; - } - - .u-mr--m\@screen-large-up, - .u-mr\@screen-large-up { - margin-right: 1rem; - } - - .u-mr--lg\@screen-large-up { - margin-right: 1.5rem; - } - - .u-mr--xl\@screen-large-up { - margin-right: 2rem; - } - - .u-mr--xxl\@screen-large-up { - margin-right: 3rem; - } - - .u-mb--0\@screen-large-up { - margin-bottom: 0; - } - - .u-mb--xxs\@screen-large-up { - margin-bottom: .25rem; - } - - .u-mb--xs\@screen-large-up { - margin-bottom: .5rem; - } - - .u-mb--sm\@screen-large-up { - margin-bottom: .75rem; - } - - .u-mb--m\@screen-large-up, - .u-mb\@screen-large-up { - margin-bottom: 1rem; - } - - .u-mb--lg\@screen-large-up { - margin-bottom: 1.5rem; - } - - .u-mb--xl\@screen-large-up { - margin-bottom: 2rem; - } - - .u-mb--xxl\@screen-large-up { - margin-bottom: 3rem; - } - - .u-ml--0\@screen-large-up { - margin-left: 0; - } - - .u-ml--xxs\@screen-large-up { - margin-left: .25rem; - } - - .u-ml--xs\@screen-large-up { - margin-left: .5rem; - } - - .u-ml--sm\@screen-large-up { - margin-left: .75rem; - } - - .u-ml--m\@screen-large-up, - .u-ml\@screen-large-up { - margin-left: 1rem; - } - - .u-ml--lg\@screen-large-up { - margin-left: 1.5rem; - } - - .u-ml--xl\@screen-large-up { - margin-left: 2rem; - } - - .u-ml--xxl\@screen-large-up { - margin-left: 3rem; - } - - .u-p--0\@screen-large-up { - padding: 0; - } - - .u-p--xxs\@screen-large-up { - padding: .25rem; - } - - .u-p--xs\@screen-large-up { - padding: .5rem; - } - - .u-p--sm\@screen-large-up { - padding: .75rem; - } - - .u-p--m\@screen-large-up, - .u-p\@screen-large-up { - padding: 1rem; - } - - .u-p--lg\@screen-large-up { - padding: 1.5rem; - } - - .u-p--xl\@screen-large-up { - padding: 2rem; - } - - .u-p--xxl\@screen-large-up { - padding: 3rem; - } - - .u-pt--0\@screen-large-up { - padding-top: 0; - } - - .u-pt--xxs\@screen-large-up { - padding-top: .25rem; - } - - .u-pt--xs\@screen-large-up { - padding-top: .5rem; - } - - .u-pt--sm\@screen-large-up { - padding-top: .75rem; - } - - .u-pt--m\@screen-large-up, - .u-pt\@screen-large-up { - padding-top: 1rem; - } - - .u-pt--lg\@screen-large-up { - padding-top: 1.5rem; - } - - .u-pt--xl\@screen-large-up { - padding-top: 2rem; - } - - .u-pt--xxl\@screen-large-up { - padding-top: 3rem; - } - - .u-pr--0\@screen-large-up { - padding-right: 0; - } - - .u-pr--xxs\@screen-large-up { - padding-right: .25rem; - } - - .u-pr--xs\@screen-large-up { - padding-right: .5rem; - } - - .u-pr--sm\@screen-large-up { - padding-right: .75rem; - } - - .u-pr--m\@screen-large-up, - .u-pr\@screen-large-up { - padding-right: 1rem; - } - - .u-pr--lg\@screen-large-up { - padding-right: 1.5rem; - } - - .u-pr--xl\@screen-large-up { - padding-right: 2rem; - } - - .u-pr--xxl\@screen-large-up { - padding-right: 3rem; - } - - .u-pb--0\@screen-large-up { - padding-bottom: 0; - } - - .u-pb--xxs\@screen-large-up { - padding-bottom: .25rem; - } - - .u-pb--xs\@screen-large-up { - padding-bottom: .5rem; - } - - .u-pb--sm\@screen-large-up { - padding-bottom: .75rem; - } - - .u-pb--m\@screen-large-up, - .u-pb\@screen-large-up { - padding-bottom: 1rem; - } - - .u-pb--lg\@screen-large-up { - padding-bottom: 1.5rem; - } - - .u-pb--xl\@screen-large-up { - padding-bottom: 2rem; - } - - .u-pb--xxl\@screen-large-up { - padding-bottom: 3rem; - } - - .u-pl--0\@screen-large-up { - padding-left: 0; - } - - .u-pl--xxs\@screen-large-up { - padding-left: .25rem; - } - - .u-pl--xs\@screen-large-up { - padding-left: .5rem; - } - - .u-pl--sm\@screen-large-up { - padding-left: .75rem; - } - - .u-pl--m\@screen-large-up, - .u-pl\@screen-large-up { - padding-left: 1rem; - } - - .u-pl--lg\@screen-large-up { - padding-left: 1.5rem; - } - - .u-pl--xl\@screen-large-up { - padding-left: 2rem; - } - - .u-pl--xxl\@screen-large-up { - padding-left: 3rem; - } -} - -@media (max-width:29.9375em) { - .u-mb\@screen-small-only { - margin-bottom: 1rem; - } -} - -.u-m-bleed--s { - margin-right: -.75rem; - margin-left: -.75rem; -} - -.u-hide { - display: none; -} - -.u-show-inline { - display: inline; -} - -.u-show-inline-block { - display: inline-block; -} - -.u-show-block { - display: block; -} - -.u-show-flex { - display: flex; -} - -.u-show-table { - display: table; -} - -.u-show-table-row { - display: table-row; -} - -.u-show-table-cell { - display: table-cell; -} - -@media (max-width:29.9375em) { - .u-hide\@screen-small-only { - display: none; - } -} - -.u-show-inline\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-inline\@screen-small-only { - display: inline; - } -} - -.u-show-inline-block\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-inline-block\@screen-small-only { - display: inline-block; - } -} - -.u-show-block\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-block\@screen-small-only { - display: block; - } -} - -.u-show-flex\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-flex\@screen-small-only { - display: flex; - } -} - -.u-show-table\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-table\@screen-small-only { - display: table; - } -} - -.u-show-table-row\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-table-row\@screen-small-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-small-only { - display: none; -} - -@media (max-width:29.9375em) { - .u-show-table-cell\@screen-small-only { - display: table-cell; - } -} - -@media (min-width:30em) { - .u-hide\@screen-medium-up { - display: none; - } -} - -.u-show-inline\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-inline\@screen-medium-up { - display: inline; - } -} - -.u-show-inline-block\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-inline-block\@screen-medium-up { - display: inline-block; - } -} - -.u-show-block\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-block\@screen-medium-up { - display: block; - } -} - -.u-show-flex\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-flex\@screen-medium-up { - display: flex; - } -} - -.u-show-table\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-table\@screen-medium-up { - display: table; - } -} - -.u-show-table-row\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-table-row\@screen-medium-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-medium-up { - display: none; -} - -@media (min-width:30em) { - .u-show-table-cell\@screen-medium-up { - display: table-cell; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-hide\@screen-medium-only { - display: none; - } -} - -.u-show-inline\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-inline\@screen-medium-only { - display: inline; - } -} - -.u-show-inline-block\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-inline-block\@screen-medium-only { - display: inline-block; - } -} - -.u-show-block\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-block\@screen-medium-only { - display: block; - } -} - -.u-show-flex\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-flex\@screen-medium-only { - display: flex; - } -} - -.u-show-table\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table\@screen-medium-only { - display: table; - } -} - -.u-show-table-row\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table-row\@screen-medium-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-medium-only { - display: none; -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-show-table-cell\@screen-medium-only { - display: table-cell; - } -} - -@media (min-width:48em) { - .u-hide\@screen-large-up { - display: none; - } -} - -.u-show-inline\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-inline\@screen-large-up { - display: inline; - } -} - -.u-show-inline-block\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-inline-block\@screen-large-up { - display: inline-block; - } -} - -.u-show-block\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-block\@screen-large-up { - display: block; - } -} - -.u-show-flex\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-flex\@screen-large-up { - display: flex; - } -} - -.u-show-table\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-table\@screen-large-up { - display: table; - } -} - -.u-show-table-row\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-table-row\@screen-large-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-large-up { - display: none; -} - -@media (min-width:48em) { - .u-show-table-cell\@screen-large-up { - display: table-cell; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-hide\@screen-large-only { - display: none; - } -} - -.u-show-inline\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-inline\@screen-large-only { - display: inline; - } -} - -.u-show-inline-block\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-inline-block\@screen-large-only { - display: inline-block; - } -} - -.u-show-block\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-block\@screen-large-only { - display: block; - } -} - -.u-show-flex\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-flex\@screen-large-only { - display: flex; - } -} - -.u-show-table\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table\@screen-large-only { - display: table; - } -} - -.u-show-table-row\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table-row\@screen-large-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-large-only { - display: none; -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-show-table-cell\@screen-large-only { - display: table-cell; - } -} - -@media (min-width:64em) { - .u-hide\@screen-xl-up { - display: none; - } -} - -.u-show-inline\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-inline\@screen-xl-up { - display: inline; - } -} - -.u-show-inline-block\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-inline-block\@screen-xl-up { - display: inline-block; - } -} - -.u-show-block\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-block\@screen-xl-up { - display: block; - } -} - -.u-show-flex\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-flex\@screen-xl-up { - display: flex; - } -} - -.u-show-table\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-table\@screen-xl-up { - display: table; - } -} - -.u-show-table-row\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-table-row\@screen-xl-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-xl-up { - display: none; -} - -@media (min-width:64em) { - .u-show-table-cell\@screen-xl-up { - display: table-cell; - } -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-hide\@screen-xl-only { - display: none; - } -} - -.u-show-inline\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-inline\@screen-xl-only { - display: inline; - } -} - -.u-show-inline-block\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-inline-block\@screen-xl-only { - display: inline-block; - } -} - -.u-show-block\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-block\@screen-xl-only { - display: block; - } -} - -.u-show-flex\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-flex\@screen-xl-only { - display: flex; - } -} - -.u-show-table\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table\@screen-xl-only { - display: table; - } -} - -.u-show-table-row\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table-row\@screen-xl-only { - display: table-row; - } -} - -.u-show-table-cell\@screen-xl-only { - display: none; -} - -@media (max-width:74.9375em) and (min-width:64em) { - .u-show-table-cell\@screen-xl-only { - display: table-cell; - } -} - -@media (min-width:75em) { - .u-hide\@screen-xxl-up { - display: none; - } -} - -.u-show-inline\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-inline\@screen-xxl-up { - display: inline; - } -} - -.u-show-inline-block\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-inline-block\@screen-xxl-up { - display: inline-block; - } -} - -.u-show-block\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-block\@screen-xxl-up { - display: block; - } -} - -.u-show-flex\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-flex\@screen-xxl-up { - display: flex; - } -} - -.u-show-table\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-table\@screen-xxl-up { - display: table; - } -} - -.u-show-table-row\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-table-row\@screen-xxl-up { - display: table-row; - } -} - -.u-show-table-cell\@screen-xxl-up { - display: none; -} - -@media (min-width:75em) { - .u-show-table-cell\@screen-xxl-up { - display: table-cell; - } -} - -.srt { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - white-space: nowrap; - border: 0; -} - -.u-text-center { - text-align: center; -} - -@media (max-width:29.9375em) { - .u-text-center\@screen-small { - text-align: center; - } -} - -@media (max-width:47.9375em) and (min-width:30em) { - .u-text-center\@screen-medium { - text-align: center; - } -} - -@media (max-width:63.9375em) and (min-width:48em) { - .u-text-center\@screen-large { - text-align: center; - } -} - -.u-text-right { - text-align: right; -} - -.u-text-left { - text-align: left; -} - -.u-text-cap-first-letter { - display: inline-block; -} - -.u-text-cap-first-letter:first-letter { - text-transform: capitalize; -} - -.h-color-brand { - color: #0000a4; -} - -.h-color-brand-ui { - color: #00f; -} - -.h-color-subtext { - color: #828282; -} - -.h-color-white-text { - color: #fff; -} - -.u-1\/1 { - width: 100%; -} - -.u-1\/2 { - width: 50%; -} - -.u-2\/2 { - width: 100%; -} - -.u-1\/3 { - width: 33.33333%; -} - -.u-2\/3 { - width: 66.66667%; -} - -.u-3\/3 { - width: 100%; -} - -.u-1\/4 { - width: 25%; -} - -.u-2\/4 { - width: 50%; -} - -.u-3\/4 { - width: 75%; -} - -.u-4\/4 { - width: 100%; -} - -.u-1\/5 { - width: 20%; -} - -.u-2\/5 { - width: 40%; -} - -.u-3\/5 { - width: 60%; -} - -.u-4\/5 { - width: 80%; -} - -.u-5\/5 { - width: 100%; -} - -.u-1\/6 { - width: 16.66667%; -} - -.u-2\/6 { - width: 33.33333%; -} - -.u-3\/6 { - width: 50%; -} - -.u-4\/6 { - width: 66.66667%; -} - -.u-5\/6 { - width: 83.33333%; -} - -.u-6\/6 { - width: 100%; -} - -.u-1\/7 { - width: 14.28571%; -} - -.u-2\/7 { - width: 28.57143%; -} - -.u-3\/7 { - width: 42.85714%; -} - -.u-4\/7 { - width: 57.14286%; -} - -.u-5\/7 { - width: 71.42857%; -} - -.u-6\/7 { - width: 85.71429%; -} - -.u-7\/7 { - width: 100%; -} - -.u-1\/8 { - width: 12.5%; -} - -.u-2\/8 { - width: 25%; -} - -.u-3\/8 { - width: 37.5%; -} - -.u-4\/8 { - width: 50%; -} - -.u-5\/8 { - width: 62.5%; -} - -.u-6\/8 { - width: 75%; -} - -.u-7\/8 { - width: 87.5%; -} - -.u-8\/8 { - width: 100%; -} - -@media (max-width:29.9375em) { - .u-1\/1\@screen-small-only { - width: 100%; - } - - .u-1\/2\@screen-small-only { - width: 50%; - } - - .u-2\/2\@screen-small-only { - width: 100%; - } - - .u-1\/3\@screen-small-only { - width: 33.33333%; - } - - .u-2\/3\@screen-small-only { - width: 66.66667%; - } - - .u-3\/3\@screen-small-only { - width: 100%; - } - - .u-1\/4\@screen-small-only { - width: 25%; - } - - .u-2\/4\@screen-small-only { - width: 50%; - } - - .u-3\/4\@screen-small-only { - width: 75%; - } - - .u-4\/4\@screen-small-only { - width: 100%; - } - - .u-1\/5\@screen-small-only { - width: 20%; - } - - .u-2\/5\@screen-small-only { - width: 40%; - } - - .u-3\/5\@screen-small-only { - width: 60%; - } - - .u-4\/5\@screen-small-only { - width: 80%; - } - - .u-5\/5\@screen-small-only { - width: 100%; - } - - .u-1\/6\@screen-small-only { - width: 16.66667%; - } - - .u-2\/6\@screen-small-only { - width: 33.33333%; - } - - .u-3\/6\@screen-small-only { - width: 50%; - } - - .u-4\/6\@screen-small-only { - width: 66.66667%; - } - - .u-5\/6\@screen-small-only { - width: 83.33333%; - } - - .u-6\/6\@screen-small-only { - width: 100%; - } - - .u-1\/7\@screen-small-only { - width: 14.28571%; - } - - .u-2\/7\@screen-small-only { - width: 28.57143%; - } - - .u-3\/7\@screen-small-only { - width: 42.85714%; - } - - .u-4\/7\@screen-small-only { - width: 57.14286%; - } - - .u-5\/7\@screen-small-only { - width: 71.42857%; - } - - .u-6\/7\@screen-small-only { - width: 85.71429%; - } - - .u-7\/7\@screen-small-only { - width: 100%; - } - - .u-1\/8\@screen-small-only { - width: 12.5%; - } - - .u-2\/8\@screen-small-only { - width: 25%; - } - - .u-3\/8\@screen-small-only { - width: 37.5%; - } - - .u-4\/8\@screen-small-only { - width: 50%; - } - - .u-5\/8\@screen-small-only { - width: 62.5%; - } - - .u-6\/8\@screen-small-only { - width: 75%; - } - - .u-7\/8\@screen-small-only { - width: 87.5%; - } - - .u-8\/8\@screen-small-only { - width: 100%; - } -} - -@media (min-width:30em) { - .u-1\/1\@screen-medium-up { - width: 100%; - } - - .u-1\/2\@screen-medium-up { - width: 50%; - } - - .u-2\/2\@screen-medium-up { - width: 100%; - } - - .u-1\/3\@screen-medium-up { - width: 33.33333%; - } - - .u-2\/3\@screen-medium-up { - width: 66.66667%; - } - - .u-3\/3\@screen-medium-up { - width: 100%; - } - - .u-1\/4\@screen-medium-up { - width: 25%; - } - - .u-2\/4\@screen-medium-up { - width: 50%; - } - - .u-3\/4\@screen-medium-up { - width: 75%; - } - - .u-4\/4\@screen-medium-up { - width: 100%; - } - - .u-1\/5\@screen-medium-up { - width: 20%; - } - - .u-2\/5\@screen-medium-up { - width: 40%; - } - - .u-3\/5\@screen-medium-up { - width: 60%; - } - - .u-4\/5\@screen-medium-up { - width: 80%; - } - - .u-5\/5\@screen-medium-up { - width: 100%; - } - - .u-1\/6\@screen-medium-up { - width: 16.66667%; - } - - .u-2\/6\@screen-medium-up { - width: 33.33333%; - } - - .u-3\/6\@screen-medium-up { - width: 50%; - } - - .u-4\/6\@screen-medium-up { - width: 66.66667%; - } - - .u-5\/6\@screen-medium-up { - width: 83.33333%; - } - - .u-6\/6\@screen-medium-up { - width: 100%; - } - - .u-1\/7\@screen-medium-up { - width: 14.28571%; - } - - .u-2\/7\@screen-medium-up { - width: 28.57143%; - } - - .u-3\/7\@screen-medium-up { - width: 42.85714%; - } - - .u-4\/7\@screen-medium-up { - width: 57.14286%; - } - - .u-5\/7\@screen-medium-up { - width: 71.42857%; - } - - .u-6\/7\@screen-medium-up { - width: 85.71429%; - } - - .u-7\/7\@screen-medium-up { - width: 100%; - } - - .u-1\/8\@screen-medium-up { - width: 12.5%; - } - - .u-2\/8\@screen-medium-up { - width: 25%; - } - - .u-3\/8\@screen-medium-up { - width: 37.5%; - } - - .u-4\/8\@screen-medium-up { - width: 50%; - } - - .u-5\/8\@screen-medium-up { - width: 62.5%; - } - - .u-6\/8\@screen-medium-up { - width: 75%; - } - - .u-7\/8\@screen-medium-up { - width: 87.5%; - } - - .u-8\/8\@screen-medium-up { - width: 100%; - } -} - -@media (min-width:48em) { - .u-1\/1\@screen-large-up { - width: 100%; - } - - .u-1\/2\@screen-large-up { - width: 50%; - } - - .u-2\/2\@screen-large-up { - width: 100%; - } - - .u-1\/3\@screen-large-up { - width: 33.33333%; - } - - .u-2\/3\@screen-large-up { - width: 66.66667%; - } - - .u-3\/3\@screen-large-up { - width: 100%; - } - - .u-1\/4\@screen-large-up { - width: 25%; - } - - .u-2\/4\@screen-large-up { - width: 50%; - } - - .u-3\/4\@screen-large-up { - width: 75%; - } - - .u-4\/4\@screen-large-up { - width: 100%; - } - - .u-1\/5\@screen-large-up { - width: 20%; - } - - .u-2\/5\@screen-large-up { - width: 40%; - } - - .u-3\/5\@screen-large-up { - width: 60%; - } - - .u-4\/5\@screen-large-up { - width: 80%; - } - - .u-5\/5\@screen-large-up { - width: 100%; - } - - .u-1\/6\@screen-large-up { - width: 16.66667%; - } - - .u-2\/6\@screen-large-up { - width: 33.33333%; - } - - .u-3\/6\@screen-large-up { - width: 50%; - } - - .u-4\/6\@screen-large-up { - width: 66.66667%; - } - - .u-5\/6\@screen-large-up { - width: 83.33333%; - } - - .u-6\/6\@screen-large-up { - width: 100%; - } - - .u-1\/7\@screen-large-up { - width: 14.28571%; - } - - .u-2\/7\@screen-large-up { - width: 28.57143%; - } - - .u-3\/7\@screen-large-up { - width: 42.85714%; - } - - .u-4\/7\@screen-large-up { - width: 57.14286%; - } - - .u-5\/7\@screen-large-up { - width: 71.42857%; - } - - .u-6\/7\@screen-large-up { - width: 85.71429%; - } - - .u-7\/7\@screen-large-up { - width: 100%; - } - - .u-1\/8\@screen-large-up { - width: 12.5%; - } - - .u-2\/8\@screen-large-up { - width: 25%; - } - - .u-3\/8\@screen-large-up { - width: 37.5%; - } - - .u-4\/8\@screen-large-up { - width: 50%; - } - - .u-5\/8\@screen-large-up { - width: 62.5%; - } - - .u-6\/8\@screen-large-up { - width: 75%; - } - - .u-7\/8\@screen-large-up { - width: 87.5%; - } - - .u-8\/8\@screen-large-up { - width: 100%; - } -} - -@media (min-width:64em) { - .u-1\/1\@screen-xl-up { - width: 100%; - } - - .u-1\/2\@screen-xl-up { - width: 50%; - } - - .u-2\/2\@screen-xl-up { - width: 100%; - } - - .u-1\/3\@screen-xl-up { - width: 33.33333%; - } - - .u-2\/3\@screen-xl-up { - width: 66.66667%; - } - - .u-3\/3\@screen-xl-up { - width: 100%; - } - - .u-1\/4\@screen-xl-up { - width: 25%; - } - - .u-2\/4\@screen-xl-up { - width: 50%; - } - - .u-3\/4\@screen-xl-up { - width: 75%; - } - - .u-4\/4\@screen-xl-up { - width: 100%; - } - - .u-1\/5\@screen-xl-up { - width: 20%; - } - - .u-2\/5\@screen-xl-up { - width: 40%; - } - - .u-3\/5\@screen-xl-up { - width: 60%; - } - - .u-4\/5\@screen-xl-up { - width: 80%; - } - - .u-5\/5\@screen-xl-up { - width: 100%; - } - - .u-1\/6\@screen-xl-up { - width: 16.66667%; - } - - .u-2\/6\@screen-xl-up { - width: 33.33333%; - } - - .u-3\/6\@screen-xl-up { - width: 50%; - } - - .u-4\/6\@screen-xl-up { - width: 66.66667%; - } - - .u-5\/6\@screen-xl-up { - width: 83.33333%; - } - - .u-6\/6\@screen-xl-up { - width: 100%; - } - - .u-1\/7\@screen-xl-up { - width: 14.28571%; - } - - .u-2\/7\@screen-xl-up { - width: 28.57143%; - } - - .u-3\/7\@screen-xl-up { - width: 42.85714%; - } - - .u-4\/7\@screen-xl-up { - width: 57.14286%; - } - - .u-5\/7\@screen-xl-up { - width: 71.42857%; - } - - .u-6\/7\@screen-xl-up { - width: 85.71429%; - } - - .u-7\/7\@screen-xl-up { - width: 100%; - } - - .u-1\/8\@screen-xl-up { - width: 12.5%; - } - - .u-2\/8\@screen-xl-up { - width: 25%; - } - - .u-3\/8\@screen-xl-up { - width: 37.5%; - } - - .u-4\/8\@screen-xl-up { - width: 50%; - } - - .u-5\/8\@screen-xl-up { - width: 62.5%; - } - - .u-6\/8\@screen-xl-up { - width: 75%; - } - - .u-7\/8\@screen-xl-up { - width: 87.5%; - } - - .u-8\/8\@screen-xl-up { - width: 100%; - } -} - -@media (min-width:75em) { - .u-1\/1\@screen-xxl-up { - width: 100%; - } - - .u-1\/2\@screen-xxl-up { - width: 50%; - } - - .u-2\/2\@screen-xxl-up { - width: 100%; - } - - .u-1\/3\@screen-xxl-up { - width: 33.33333%; - } - - .u-2\/3\@screen-xxl-up { - width: 66.66667%; - } - - .u-3\/3\@screen-xxl-up { - width: 100%; - } - - .u-1\/4\@screen-xxl-up { - width: 25%; - } - - .u-2\/4\@screen-xxl-up { - width: 50%; - } - - .u-3\/4\@screen-xxl-up { - width: 75%; - } - - .u-4\/4\@screen-xxl-up { - width: 100%; - } - - .u-1\/5\@screen-xxl-up { - width: 20%; - } - - .u-2\/5\@screen-xxl-up { - width: 40%; - } - - .u-3\/5\@screen-xxl-up { - width: 60%; - } - - .u-4\/5\@screen-xxl-up { - width: 80%; - } - - .u-5\/5\@screen-xxl-up { - width: 100%; - } - - .u-1\/6\@screen-xxl-up { - width: 16.66667%; - } - - .u-2\/6\@screen-xxl-up { - width: 33.33333%; - } - - .u-3\/6\@screen-xxl-up { - width: 50%; - } - - .u-4\/6\@screen-xxl-up { - width: 66.66667%; - } - - .u-5\/6\@screen-xxl-up { - width: 83.33333%; - } - - .u-6\/6\@screen-xxl-up { - width: 100%; - } - - .u-1\/7\@screen-xxl-up { - width: 14.28571%; - } - - .u-2\/7\@screen-xxl-up { - width: 28.57143%; - } - - .u-3\/7\@screen-xxl-up { - width: 42.85714%; - } - - .u-4\/7\@screen-xxl-up { - width: 57.14286%; - } - - .u-5\/7\@screen-xxl-up { - width: 71.42857%; - } - - .u-6\/7\@screen-xxl-up { - width: 85.71429%; - } - - .u-7\/7\@screen-xxl-up { - width: 100%; - } - - .u-1\/8\@screen-xxl-up { - width: 12.5%; - } - - .u-2\/8\@screen-xxl-up { - width: 25%; - } - - .u-3\/8\@screen-xxl-up { - width: 37.5%; - } - - .u-4\/8\@screen-xxl-up { - width: 50%; - } - - .u-5\/8\@screen-xxl-up { - width: 62.5%; - } - - .u-6\/8\@screen-xxl-up { - width: 75%; - } - - .u-7\/8\@screen-xxl-up { - width: 87.5%; - } - - .u-8\/8\@screen-xxl-up { - width: 100%; - } -} - -.modal__footer { - padding-top: 1rem; - border-top: 1px solid #e6e6e6; -} \ No newline at end of file diff --git a/src/__fixtures__/bol-com-20231008.json b/src/__fixtures__/bol-com-20231008.json deleted file mode 100644 index 4e5d67fc..00000000 --- a/src/__fixtures__/bol-com-20231008.json +++ /dev/null @@ -1,56676 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 18136, - "linesOfCode": 29247, - "size": 543848, - "complexity": 47099, - "comments": { - "total": 0, - "size": 0 - }, - "embeddedContent": { - "size": { - "total": 56847, - "ratio": 0.10452736794104235 - }, - "types": { - "total": 79, - "totalUnique": 2, - "uniquenessRatio": 0.02531645569620253, - "unique": { - "font/woff": { - "count": 1, - "size": 23408 - }, - "image/svg+xml": { - "count": 78, - "size": 33439 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 7, - "totalUnique": 7, - "unique": [ - { - "font-family": "\"Produkt\"", - "font-style": "normal", - "font-weight": "900", - "font-stretch": "normal", - "src": "url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Super-Web.woff2)format(\"woff2\"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Super-Web.woff)format(\"woff\")", - "font-display": "swap" - }, - { - "font-family": "\"Produkt\"", - "font-style": "normal", - "font-weight": "700", - "font-stretch": "normal", - "src": "url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Bold-Web.woff2)format(\"woff2\"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Bold-Web.woff)format(\"woff\")", - "font-display": "swap" - }, - { - "font-family": "\"Produkt\"", - "font-style": "normal", - "font-weight": "500", - "font-stretch": "normal", - "src": "url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Regular-Web.woff2)format(\"woff2\"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Regular-Web.woff)format(\"woff\")", - "font-display": "swap" - }, - { - "font-family": "\"Produkt\"", - "font-style": "normal", - "font-weight": "300", - "font-stretch": "normal", - "src": "url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Light-Web.woff2)format(\"woff2\"), url(https://css.s-bol.com/nl/static/assets/webfonts/Produkt/Produkt-Light-Web.woff)format(\"woff\")", - "font-display": "swap" - }, - { - "font-family": "\"Graphik\"", - "font-style": "normal", - "font-weight": "600", - "font-stretch": "normal", - "src": "url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Semibold-Web.woff2)format(\"woff2\"), url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Semibold-Web.woff)format(\"woff\")", - "font-display": "swap" - }, - { - "font-family": "\"Graphik\"", - "font-style": "normal", - "font-weight": "400", - "font-stretch": "normal", - "src": "url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Regular-Web.woff2)format(\"woff2\"), url(https://css.s-bol.com/nl/static/assets/webfonts/Graphik/Graphik-Regular-Web.woff)format(\"woff\")", - "font-display": "swap" - }, - { - "font-display": "fallback", - "font-family": "\"Bol Symbols\"", - "font-style": "normal", - "font-weight": "400", - "src": "url(data:font/woff;charset=utf-8;base64,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)format(\"woff\")" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 1027, - "totalUnique": 27, - "unique": { - "(min-width:30em)": 95, - "(min-width:48em)": 338, - "(min-width:37.5em)": 1, - "(max-width:47.9375em)": 14, - "(min-width:64em)": 149, - "(min-width:64em) and (min-width:64em)": 11, - "(max-width:22.1875rem)": 2, - "(max-width:63.9375em)": 21, - "(max-width:63.9375em) and (hover:none) and (pointer:coarse)": 1, - "(hover:none) and (pointer:coarse)": 2, - "(min-width:64em) and (hover:none)": 4, - "(max-width:29.9375em)": 241, - "(max-width:63.9375em) and (min-width:30em)": 2, - "(min-width:75em)": 31, - "(hover:none)": 6, - "screen and (min-width:480px)": 5, - "screen and (min-width:768px)": 4, - "screen and (min-width:1024px)": 4, - "screen and (min-width:1200px)": 2, - "(max-width:63.9375em) and (min-width:48em)": 27, - "print": 4, - "(max-width:74.9375em)": 2, - "(max-width:47.9375em) and (min-width:30em)": 26, - "(max-width:74.9375em) and (min-width:64em)": 24, - "(min-width:30em) and (max-width:48em)": 3, - "(min-width:41.25em)": 4, - "(min-width:41.25em) and (max-width:48em)": 4 - }, - "uniquenessRatio": 0.02629016553067186, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "charset": { - "total": 2, - "totalUnique": 1, - "unique": { - "\"UTF-8\"": 2 - }, - "uniquenessRatio": 0.5 - }, - "supports": { - "total": 5, - "totalUnique": 3, - "unique": { - "((-webkit-clip-path:polygon(0 50%, 100% 100%, 100%0)) or (clip-path:polygon(0 50%, 100% 100%, 100%0)))": 3, - "(-webkit-clip-path:polygon(0 50%, 100% 50%, 100%0))": 1, - "(-webkit-clip-path:polygon(0 50%, 100% 20%, 100% 80%))": 1 - }, - "uniquenessRatio": 0.6, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 20, - "totalUnique": 20, - "unique": { - "@keyframes popup-bounce": 1, - "@keyframes pop-open-bounce": 1, - "@keyframes minimize": 1, - "@keyframes slide-in-bottom": 1, - "@keyframes slide-in-from-right": 1, - "@keyframes slide-in-from-left": 1, - "@keyframes slide-out-to-left": 1, - "@keyframes animate-in": 1, - "@keyframes grow-in": 1, - "@keyframes fade-in": 1, - "@keyframes fade-out": 1, - "@keyframes load6": 1, - "@keyframes typing": 1, - "@keyframes wiggle": 1, - "@keyframes chat-loader": 1, - "@keyframes fadeinloader": 1, - "@keyframes spin": 1, - "@keyframes asyncPlaceholderFadeIn": 1, - "@keyframes fadeInRegion": 1, - "@keyframes shimmer": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 1061, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 1061 - } - }, - "rules": { - "total": 5003, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 73, - "mean": 3.4047571457125723, - "mode": 2, - "range": 71, - "sum": 17034, - "items": [ - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 2, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 11, - 2, - 4, - 5, - 2, - 4, - 4, - 3, - 2, - 3, - 2, - 6, - 2, - 2, - 4, - 3, - 2, - 9, - 3, - 3, - 2, - 5, - 6, - 5, - 6, - 3, - 2, - 4, - 3, - 4, - 4, - 4, - 2, - 3, - 8, - 9, - 2, - 3, - 3, - 3, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 5, - 3, - 3, - 5, - 7, - 4, - 4, - 8, - 3, - 8, - 4, - 9, - 3, - 2, - 7, - 4, - 7, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 3, - 3, - 6, - 3, - 3, - 5, - 3, - 2, - 2, - 2, - 4, - 20, - 7, - 2, - 2, - 5, - 4, - 3, - 2, - 7, - 2, - 3, - 11, - 5, - 3, - 3, - 10, - 4, - 3, - 4, - 2, - 2, - 4, - 3, - 2, - 4, - 7, - 2, - 6, - 3, - 12, - 2, - 3, - 4, - 3, - 4, - 5, - 4, - 5, - 2, - 9, - 10, - 2, - 2, - 5, - 7, - 4, - 2, - 10, - 6, - 4, - 3, - 4, - 11, - 3, - 3, - 3, - 13, - 3, - 3, - 3, - 3, - 5, - 4, - 2, - 2, - 3, - 2, - 2, - 6, - 5, - 3, - 3, - 2, - 11, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 16, - 3, - 2, - 14, - 2, - 2, - 3, - 2, - 4, - 9, - 12, - 2, - 2, - 12, - 2, - 4, - 4, - 2, - 7, - 3, - 4, - 3, - 2, - 9, - 3, - 3, - 2, - 2, - 2, - 5, - 2, - 10, - 2, - 5, - 4, - 2, - 8, - 9, - 3, - 11, - 3, - 3, - 2, - 7, - 4, - 2, - 2, - 7, - 9, - 3, - 6, - 2, - 2, - 5, - 2, - 3, - 9, - 3, - 12, - 4, - 3, - 3, - 11, - 8, - 2, - 6, - 4, - 8, - 7, - 7, - 5, - 2, - 2, - 2, - 2, - 4, - 8, - 8, - 8, - 8, - 16, - 2, - 3, - 8, - 13, - 2, - 5, - 3, - 3, - 2, - 2, - 3, - 8, - 2, - 2, - 2, - 8, - 3, - 2, - 9, - 2, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 2, - 3, - 3, - 3, - 5, - 6, - 6, - 9, - 2, - 2, - 2, - 2, - 3, - 3, - 10, - 3, - 4, - 2, - 11, - 15, - 3, - 5, - 3, - 4, - 4, - 5, - 4, - 3, - 4, - 4, - 3, - 4, - 6, - 12, - 2, - 4, - 3, - 10, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 16, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 17, - 3, - 2, - 2, - 3, - 3, - 3, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 7, - 3, - 15, - 2, - 3, - 3, - 3, - 2, - 10, - 2, - 2, - 6, - 6, - 3, - 2, - 2, - 15, - 6, - 7, - 3, - 2, - 3, - 7, - 7, - 2, - 2, - 6, - 5, - 4, - 3, - 2, - 2, - 4, - 2, - 2, - 10, - 4, - 5, - 4, - 4, - 4, - 6, - 9, - 2, - 6, - 17, - 2, - 2, - 2, - 12, - 3, - 4, - 6, - 6, - 6, - 2, - 2, - 2, - 7, - 2, - 3, - 2, - 10, - 8, - 3, - 2, - 5, - 2, - 8, - 2, - 11, - 6, - 2, - 5, - 4, - 6, - 7, - 11, - 10, - 2, - 2, - 7, - 18, - 7, - 2, - 2, - 7, - 6, - 3, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 8, - 2, - 3, - 2, - 9, - 8, - 3, - 2, - 7, - 2, - 6, - 5, - 4, - 6, - 7, - 11, - 8, - 2, - 3, - 2, - 2, - 2, - 3, - 5, - 4, - 8, - 14, - 4, - 13, - 3, - 3, - 4, - 3, - 2, - 3, - 3, - 2, - 3, - 5, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 2, - 7, - 5, - 6, - 2, - 3, - 2, - 9, - 6, - 6, - 11, - 2, - 2, - 4, - 2, - 3, - 15, - 2, - 4, - 12, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 13, - 2, - 5, - 8, - 2, - 2, - 3, - 2, - 11, - 2, - 9, - 8, - 3, - 2, - 2, - 6, - 13, - 5, - 4, - 2, - 2, - 6, - 9, - 5, - 3, - 6, - 3, - 3, - 3, - 6, - 9, - 3, - 2, - 9, - 2, - 3, - 6, - 2, - 2, - 4, - 2, - 5, - 11, - 3, - 2, - 3, - 12, - 2, - 2, - 2, - 3, - 2, - 7, - 8, - 10, - 4, - 2, - 3, - 10, - 2, - 3, - 5, - 6, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 4, - 3, - 14, - 7, - 13, - 3, - 5, - 3, - 5, - 3, - 11, - 3, - 3, - 2, - 4, - 3, - 4, - 3, - 7, - 3, - 3, - 8, - 2, - 2, - 3, - 2, - 3, - 3, - 5, - 3, - 2, - 3, - 3, - 2, - 6, - 3, - 3, - 3, - 2, - 3, - 4, - 5, - 2, - 3, - 6, - 3, - 8, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 5, - 6, - 3, - 2, - 3, - 5, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 3, - 3, - 8, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 9, - 7, - 3, - 9, - 5, - 2, - 4, - 3, - 11, - 9, - 9, - 7, - 4, - 3, - 7, - 7, - 10, - 2, - 2, - 2, - 4, - 5, - 2, - 2, - 2, - 4, - 3, - 3, - 2, - 4, - 2, - 3, - 7, - 3, - 3, - 3, - 5, - 6, - 5, - 2, - 2, - 3, - 6, - 2, - 8, - 4, - 2, - 4, - 5, - 2, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 10, - 7, - 2, - 3, - 3, - 27, - 4, - 2, - 3, - 6, - 10, - 4, - 2, - 3, - 2, - 3, - 6, - 3, - 5, - 5, - 8, - 3, - 6, - 6, - 7, - 7, - 7, - 7, - 6, - 3, - 5, - 5, - 6, - 3, - 5, - 5, - 2, - 3, - 2, - 6, - 3, - 3, - 8, - 3, - 6, - 6, - 2, - 8, - 9, - 4, - 8, - 6, - 2, - 4, - 2, - 4, - 5, - 2, - 4, - 5, - 4, - 3, - 4, - 8, - 3, - 3, - 4, - 4, - 4, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 4, - 3, - 3, - 3, - 4, - 2, - 2, - 10, - 2, - 3, - 6, - 5, - 3, - 3, - 3, - 5, - 4, - 9, - 2, - 2, - 4, - 3, - 9, - 2, - 2, - 2, - 10, - 3, - 3, - 5, - 4, - 2, - 4, - 2, - 8, - 4, - 5, - 3, - 2, - 2, - 2, - 4, - 2, - 4, - 3, - 3, - 2, - 2, - 4, - 4, - 4, - 7, - 3, - 3, - 3, - 6, - 2, - 5, - 3, - 3, - 2, - 5, - 3, - 3, - 8, - 8, - 6, - 6, - 3, - 12, - 7, - 4, - 7, - 3, - 7, - 3, - 3, - 2, - 2, - 4, - 6, - 10, - 4, - 4, - 5, - 5, - 2, - 3, - 2, - 3, - 6, - 4, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 4, - 3, - 4, - 4, - 2, - 10, - 3, - 4, - 4, - 3, - 2, - 3, - 4, - 4, - 9, - 3, - 5, - 2, - 9, - 7, - 10, - 9, - 4, - 14, - 3, - 2, - 3, - 12, - 13, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 5, - 3, - 4, - 5, - 4, - 7, - 4, - 6, - 3, - 3, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 4, - 24, - 3, - 9, - 3, - 5, - 3, - 2, - 3, - 8, - 4, - 9, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 17, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 2, - 3, - 4, - 4, - 4, - 4, - 2, - 3, - 3, - 4, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 13, - 4, - 4, - 2, - 2, - 3, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 4, - 3, - 3, - 3, - 2, - 7, - 4, - 3, - 2, - 5, - 3, - 3, - 3, - 2, - 5, - 3, - 3, - 3, - 2, - 8, - 3, - 5, - 7, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 4, - 4, - 2, - 6, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 6, - 9, - 20, - 7, - 7, - 6, - 5, - 3, - 5, - 2, - 5, - 4, - 5, - 3, - 4, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 11, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 4, - 3, - 4, - 2, - 2, - 6, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 7, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 3, - 7, - 7, - 6, - 6, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 3, - 15, - 21, - 7, - 6, - 9, - 73, - 2, - 7, - 3, - 2, - 5, - 3, - 15, - 7, - 6, - 9, - 3, - 10, - 9, - 22, - 22, - 3, - 13, - 7, - 9, - 3, - 2, - 10, - 10, - 23, - 41, - 10, - 12, - 2, - 7, - 5, - 6, - 8, - 10, - 10, - 3, - 13, - 7, - 2, - 4, - 4, - 2, - 3, - 3, - 3, - 12, - 5, - 2, - 7, - 9, - 3, - 2, - 10, - 9, - 23, - 37, - 6, - 2, - 5, - 9, - 5, - 5, - 4, - 2, - 4, - 6, - 2, - 7, - 3, - 4, - 2, - 6, - 2, - 7, - 3, - 2, - 3, - 2, - 9, - 4, - 6, - 5, - 2, - 10, - 2, - 5, - 3, - 5, - 2, - 6, - 4, - 2, - 2, - 4, - 2, - 2, - 3, - 2, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 3, - 2, - 7, - 2, - 3, - 2, - 2, - 2, - 5, - 2, - 3, - 2, - 2, - 3, - 5, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 6, - 2, - 3, - 4, - 5, - 5, - 3, - 2, - 4, - 2, - 4, - 5, - 2, - 5, - 2, - 7, - 3, - 5, - 2, - 2, - 6, - 3, - 4, - 4, - 2, - 2, - 4, - 3, - 7, - 4, - 2, - 3, - 4, - 2, - 2, - 3, - 2, - 5, - 4, - 2, - 2, - 2, - 6, - 15, - 2, - 2, - 4, - 8, - 3, - 3, - 2, - 6, - 3, - 2, - 2, - 3, - 6, - 2, - 4, - 3, - 2, - 2, - 3, - 6, - 4, - 3, - 4, - 17, - 2, - 8, - 6, - 3, - 4, - 4, - 2, - 4, - 11, - 5, - 6, - 6, - 3, - 5, - 8, - 6, - 3, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 8, - 4, - 2, - 3, - 2, - 10, - 3, - 8, - 4, - 3, - 3, - 7, - 2, - 2, - 3, - 9, - 6, - 4, - 3, - 3, - 6, - 10, - 4, - 3, - 4, - 2, - 2, - 3, - 9, - 2, - 3, - 2, - 4, - 4, - 2, - 4, - 2, - 2, - 4, - 3, - 7, - 2, - 4, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 5, - 2, - 10, - 4, - 5, - 7, - 2, - 3, - 2, - 4, - 3, - 2, - 2, - 7, - 3, - 4, - 12, - 2, - 2, - 4, - 3, - 11, - 3, - 2, - 2, - 4, - 2, - 7, - 2, - 4, - 3, - 2, - 5, - 3, - 2, - 3, - 7, - 2, - 4, - 2, - 2, - 3, - 4, - 2, - 5, - 6, - 3, - 5, - 4, - 4, - 2, - 9, - 5, - 3, - 3, - 3, - 3, - 3, - 4, - 2, - 8, - 2, - 2, - 2, - 2, - 3, - 7, - 6, - 5, - 3, - 8, - 5, - 2, - 3, - 4, - 3, - 8, - 2, - 7, - 2, - 3, - 10, - 2, - 2, - 3, - 5, - 4, - 2, - 2, - 9, - 2, - 2, - 2, - 2, - 4, - 7, - 4, - 2, - 4, - 3, - 6, - 2, - 3, - 2, - 2, - 4, - 2, - 6, - 5, - 2, - 12, - 5, - 2, - 2, - 2, - 8, - 3, - 3, - 8, - 2, - 12, - 3, - 11, - 11, - 2, - 3, - 2, - 2, - 7, - 2, - 2, - 4, - 2, - 9, - 3, - 3, - 2, - 10, - 5, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 3, - 6, - 4, - 6, - 6, - 4, - 4, - 6, - 2, - 4, - 2, - 2, - 2, - 2, - 5, - 3, - 2, - 8, - 2, - 3, - 2, - 4, - 6, - 2, - 5, - 4, - 4, - 3, - 8, - 5, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 11, - 2, - 4, - 4, - 2, - 4, - 3, - 4, - 3, - 7, - 5, - 3, - 5, - 2, - 2, - 4, - 8, - 2, - 3, - 3, - 9, - 2, - 2, - 3, - 4, - 4, - 6, - 5, - 7, - 2, - 5, - 2, - 2, - 5, - 11, - 4, - 2, - 11, - 2, - 7, - 9, - 5, - 12, - 3, - 6, - 12, - 2, - 5, - 7, - 3, - 3, - 2, - 2, - 3, - 12, - 3, - 3, - 4, - 3, - 8, - 3, - 7, - 3, - 7, - 2, - 7, - 3, - 3, - 2, - 2, - 11, - 3, - 2, - 5, - 3, - 2, - 5, - 6, - 2, - 3, - 2, - 11, - 4, - 4, - 2, - 6, - 4, - 3, - 2, - 5, - 2, - 2, - 2, - 3, - 4, - 2, - 10, - 3, - 10, - 2, - 10, - 3, - 3, - 3, - 6, - 8, - 3, - 8, - 4, - 3, - 2, - 4, - 2, - 3, - 2, - 3, - 4, - 2, - 9, - 3, - 2, - 2, - 3, - 5, - 3, - 3, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 5, - 2, - 6, - 2, - 15, - 2, - 2, - 4, - 4, - 4, - 4, - 3, - 10, - 2, - 2, - 4, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 8, - 7, - 6, - 3, - 3, - 3, - 4, - 2, - 3, - 4, - 2, - 2, - 10, - 2, - 4, - 3, - 6, - 5, - 4, - 4, - 4, - 2, - 3, - 6, - 3, - 2, - 3, - 7, - 2, - 5, - 3, - 3, - 6, - 9, - 3, - 4, - 10, - 2, - 12, - 2, - 4, - 3, - 5, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 5, - 4, - 2, - 4, - 3, - 3, - 2, - 3, - 9, - 4, - 2, - 3, - 5, - 5, - 2, - 6, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 5, - 4, - 9, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 10, - 3, - 2, - 4, - 16, - 2, - 2, - 2, - 9, - 5, - 2, - 2, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 5, - 4, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 4, - 3, - 3, - 2, - 3, - 2, - 4, - 2, - 2, - 3, - 2, - 17, - 2, - 2, - 7, - 2, - 4, - 2, - 3, - 5, - 3, - 3, - 2, - 2, - 3, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 5, - 4, - 2, - 4, - 4, - 6, - 4, - 2, - 3, - 7, - 3, - 6, - 11, - 3, - 3, - 2, - 5, - 3, - 4, - 3, - 4, - 8, - 5, - 5, - 4, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 5, - 3, - 5, - 5, - 5, - 3, - 5, - 5, - 4, - 3, - 2, - 3, - 4, - 4, - 2, - 3, - 4, - 4, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 5, - 2, - 4, - 2, - 2, - 4, - 3, - 4, - 3, - 3, - 2, - 6, - 3, - 2, - 3, - 2, - 3, - 4, - 7, - 2, - 2, - 5, - 2, - 2, - 6, - 2, - 2, - 2, - 4, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 4, - 2, - 5, - 2, - 6, - 6, - 3, - 2, - 2, - 11, - 11, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 7, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 20, - 7, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 2, - 3, - 2, - 7, - 14, - 7, - 2, - 2, - 5, - 3, - 3, - 3, - 3, - 2, - 3, - 4, - 2, - 6, - 2, - 5, - 2, - 3, - 5, - 2, - 3, - 6, - 2, - 2, - 2, - 6, - 2, - 3, - 2, - 3, - 4, - 4, - 2, - 6, - 2, - 5, - 2, - 2, - 2, - 7, - 4, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 6, - 2, - 2, - 6, - 2, - 2, - 2, - 4, - 2, - 4, - 12, - 3, - 2, - 4, - 2, - 6, - 3, - 5, - 3, - 8, - 3, - 2, - 2, - 2, - 6, - 3, - 3, - 3, - 4, - 4, - 3, - 6, - 2, - 2, - 2, - 3, - 3, - 7, - 2, - 6, - 4, - 9, - 6, - 6, - 6, - 2, - 2, - 8, - 7, - 4, - 4, - 6, - 9, - 13, - 2, - 5, - 5, - 2, - 2, - 2, - 9, - 3, - 2, - 3, - 6, - 3, - 4, - 3, - 2, - 2, - 2, - 9, - 2, - 4, - 2, - 4, - 3, - 4, - 3, - 2, - 2, - 2, - 11, - 3, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 3, - 2, - 3, - 3, - 3, - 6, - 3, - 10, - 2, - 3, - 2, - 4, - 3, - 3, - 4, - 3, - 6, - 2, - 5, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 2, - 2, - 2, - 2, - 12, - 4, - 3, - 2, - 2, - 2, - 4, - 3, - 2, - 8, - 3, - 4, - 4, - 2, - 2, - 10, - 4, - 10, - 5, - 3, - 2, - 3, - 3, - 2, - 2, - 11, - 7, - 3, - 2, - 3, - 3, - 10, - 2, - 2, - 2, - 4, - 3, - 6, - 2, - 6, - 3, - 3, - 15, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 4, - 2, - 3, - 4, - 2, - 6, - 2, - 6, - 2, - 7, - 3, - 5, - 5, - 4, - 3, - 4, - 6, - 4, - 3, - 3, - 4, - 4, - 9, - 9, - 2, - 4, - 3, - 2, - 16, - 3, - 2, - 2, - 2, - 4, - 9, - 12, - 4, - 4, - 3, - 9, - 3, - 3, - 5, - 10, - 4, - 2, - 8, - 9, - 3, - 11, - 2, - 7, - 4, - 2, - 2, - 7, - 9, - 3, - 6, - 2, - 2, - 3, - 2, - 3, - 3, - 12, - 11, - 8, - 6, - 4, - 6, - 10, - 2, - 2, - 2, - 2, - 13, - 8, - 9, - 3, - 10, - 4, - 2, - 11, - 15, - 2, - 5, - 3, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 6, - 12, - 2, - 4, - 3, - 10, - 2, - 6, - 12, - 13, - 2, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 15, - 10, - 2, - 2, - 6, - 6, - 3, - 2, - 2, - 15, - 7, - 3, - 7, - 7, - 6, - 5, - 10, - 4, - 5, - 4, - 9, - 2, - 17, - 2, - 12, - 2, - 6, - 6, - 2, - 2, - 2, - 7, - 10, - 8, - 3, - 2, - 5, - 2, - 8, - 2, - 11, - 6, - 6, - 7, - 11, - 8, - 2, - 3, - 2, - 2, - 2, - 2, - 8, - 14, - 13, - 3, - 3, - 4, - 3, - 2, - 3, - 3, - 2, - 8, - 3, - 2, - 6, - 9, - 6, - 3, - 3, - 6, - 9, - 2, - 9, - 6, - 2, - 2, - 4, - 2, - 5, - 11, - 3, - 2, - 3, - 12, - 7, - 10, - 2, - 5, - 6, - 4, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 14, - 7, - 2, - 3, - 8, - 3, - 3, - 9, - 7, - 10, - 2, - 4, - 3, - 16, - 2, - 2, - 4, - 3, - 3, - 4, - 2, - 2, - 2, - 3, - 4, - 2, - 26, - 2, - 2, - 3, - 5, - 2, - 6, - 2, - 2, - 5, - 9, - 4, - 3, - 3, - 9, - 2, - 2, - 2, - 10, - 3, - 2, - 5, - 4, - 2, - 4, - 2, - 3, - 2, - 4, - 4, - 4, - 7, - 6, - 2, - 5, - 3, - 3, - 2, - 3, - 4, - 2, - 4, - 9, - 6, - 6, - 5, - 3, - 2, - 2, - 4, - 3, - 2, - 3, - 3, - 6, - 5, - 4, - 7, - 4, - 9, - 3, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 8, - 4, - 2, - 2, - 2, - 9, - 4, - 2, - 7, - 3, - 2, - 2, - 2, - 9, - 3, - 6, - 5, - 2, - 10, - 2, - 5, - 6, - 4, - 2, - 4, - 3, - 2, - 11, - 2, - 3, - 2, - 2, - 2, - 5, - 3, - 5, - 15, - 2, - 4, - 8, - 3, - 3, - 8, - 4, - 2, - 3, - 2, - 10, - 3, - 8, - 4, - 3, - 3, - 7, - 2, - 2, - 3, - 9, - 6, - 4, - 3, - 3, - 6, - 10, - 4, - 3, - 4, - 2, - 2, - 3, - 4, - 2, - 3, - 2, - 4, - 4, - 2, - 4, - 3, - 7, - 2, - 5, - 2, - 9, - 4, - 3, - 4, - 4, - 8, - 3, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 4, - 7, - 2, - 4, - 2, - 6, - 4, - 3, - 12, - 6, - 2, - 8, - 3, - 3, - 8, - 12, - 3, - 11, - 3, - 2, - 3, - 3, - 10, - 2, - 5, - 3, - 2, - 5, - 6, - 2, - 3, - 6, - 8, - 3, - 8, - 4, - 3, - 4, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 15, - 4, - 4, - 4, - 2, - 2, - 2, - 7, - 4, - 4, - 2, - 2, - 5, - 2, - 6, - 6, - 3, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 5, - 5, - 3, - 3, - 4, - 2, - 6, - 3, - 6, - 2, - 2, - 2, - 3, - 4, - 7, - 4, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 7, - 3, - 7, - 3, - 9, - 3, - 2, - 5, - 7, - 3, - 2, - 7, - 2, - 2, - 6, - 3, - 3, - 2, - 2, - 6, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3 - ], - "total": 5003, - "totalUnique": 27, - "unique": { - "2": 2852, - "3": 769, - "4": 411, - "5": 323, - "6": 178, - "7": 120, - "8": 78, - "9": 79, - "10": 58, - "11": 40, - "12": 33, - "13": 14, - "14": 7, - "15": 14, - "16": 6, - "17": 6, - "18": 1, - "20": 3, - "21": 1, - "22": 2, - "23": 2, - "24": 1, - "26": 1, - "27": 1, - "37": 1, - "41": 1, - "73": 1 - }, - "uniquenessRatio": 0.005396761942834299 - }, - "selectors": { - "min": 1, - "max": 70, - "mean": 1.3260043973615832, - "mode": 1, - "range": 69, - "sum": 6634, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 5, - 2, - 2, - 1, - 3, - 4, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 7, - 7, - 1, - 2, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 19, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 9, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 2, - 1, - 1, - 4, - 6, - 3, - 1, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 4, - 1, - 3, - 1, - 4, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 23, - 2, - 8, - 2, - 4, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 1, - 3, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 3, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 12, - 6, - 5, - 5, - 3, - 2, - 3, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 5, - 20, - 5, - 5, - 5, - 70, - 1, - 6, - 2, - 1, - 4, - 1, - 5, - 5, - 5, - 5, - 2, - 5, - 8, - 20, - 20, - 1, - 5, - 5, - 5, - 2, - 1, - 5, - 9, - 20, - 40, - 5, - 10, - 1, - 2, - 1, - 5, - 5, - 1, - 5, - 1, - 5, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 4, - 1, - 5, - 5, - 2, - 1, - 5, - 8, - 20, - 36, - 4, - 1, - 3, - 8, - 4, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 4, - 2, - 4, - 4, - 4, - 2, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 6, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 1, - 1, - 4, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 6, - 5, - 3, - 4, - 1, - 1, - 1, - 3, - 2, - 1, - 2, - 1, - 5, - 4, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 5003, - "totalUnique": 17, - "unique": { - "1": 4255, - "2": 451, - "3": 69, - "4": 163, - "5": 33, - "6": 10, - "7": 2, - "8": 4, - "9": 3, - "10": 2, - "12": 1, - "19": 1, - "20": 5, - "23": 1, - "36": 1, - "40": 1, - "70": 1 - }, - "uniquenessRatio": 0.0033979612232660403 - }, - "declarations": { - "min": 1, - "max": 26, - "mean": 2.0787527483509893, - "mode": 1, - "range": 25, - "sum": 10400, - "items": [ - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 5, - 2, - 1, - 2, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 6, - 1, - 6, - 2, - 6, - 2, - 1, - 6, - 3, - 6, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 4, - 3, - 2, - 1, - 6, - 1, - 1, - 9, - 3, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 6, - 1, - 5, - 2, - 11, - 1, - 2, - 3, - 2, - 3, - 4, - 1, - 2, - 1, - 7, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 2, - 1, - 1, - 2, - 9, - 1, - 1, - 1, - 11, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 4, - 3, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 15, - 2, - 1, - 13, - 1, - 1, - 1, - 1, - 3, - 8, - 11, - 1, - 1, - 11, - 1, - 2, - 3, - 1, - 6, - 2, - 3, - 2, - 1, - 8, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 9, - 1, - 4, - 3, - 1, - 7, - 8, - 2, - 10, - 1, - 1, - 1, - 6, - 3, - 1, - 1, - 6, - 8, - 2, - 5, - 1, - 1, - 1, - 1, - 2, - 8, - 2, - 11, - 2, - 1, - 1, - 10, - 7, - 1, - 5, - 3, - 7, - 4, - 5, - 4, - 1, - 1, - 1, - 1, - 3, - 7, - 7, - 7, - 7, - 15, - 1, - 2, - 7, - 12, - 1, - 4, - 1, - 2, - 1, - 1, - 2, - 7, - 1, - 1, - 1, - 7, - 2, - 1, - 8, - 1, - 4, - 2, - 2, - 2, - 1, - 2, - 4, - 1, - 2, - 2, - 2, - 3, - 5, - 3, - 8, - 1, - 1, - 1, - 1, - 2, - 2, - 9, - 1, - 3, - 1, - 10, - 14, - 1, - 4, - 2, - 3, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 5, - 11, - 1, - 3, - 2, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 15, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 16, - 1, - 1, - 1, - 2, - 2, - 2, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 5, - 1, - 14, - 1, - 2, - 2, - 2, - 1, - 9, - 1, - 1, - 5, - 5, - 2, - 1, - 1, - 14, - 5, - 6, - 1, - 1, - 2, - 5, - 6, - 1, - 1, - 5, - 4, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 8, - 2, - 4, - 3, - 2, - 3, - 5, - 8, - 1, - 4, - 16, - 1, - 1, - 1, - 11, - 1, - 3, - 5, - 5, - 5, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 9, - 7, - 2, - 1, - 4, - 1, - 7, - 1, - 10, - 5, - 1, - 4, - 3, - 5, - 6, - 10, - 9, - 1, - 1, - 6, - 17, - 6, - 1, - 1, - 6, - 5, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 8, - 7, - 2, - 1, - 6, - 1, - 5, - 4, - 3, - 5, - 6, - 10, - 7, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 2, - 7, - 13, - 2, - 10, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 6, - 4, - 5, - 1, - 2, - 1, - 8, - 5, - 5, - 10, - 1, - 1, - 1, - 1, - 1, - 14, - 1, - 3, - 11, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 4, - 7, - 1, - 1, - 2, - 1, - 10, - 1, - 8, - 7, - 2, - 1, - 1, - 5, - 12, - 4, - 3, - 1, - 1, - 5, - 8, - 1, - 1, - 5, - 2, - 1, - 2, - 4, - 7, - 1, - 1, - 8, - 1, - 1, - 5, - 1, - 1, - 3, - 1, - 4, - 10, - 2, - 1, - 2, - 11, - 1, - 1, - 1, - 1, - 1, - 6, - 7, - 9, - 2, - 1, - 2, - 9, - 1, - 2, - 4, - 5, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 13, - 6, - 12, - 2, - 4, - 2, - 4, - 2, - 10, - 2, - 2, - 1, - 3, - 2, - 3, - 2, - 1, - 2, - 2, - 7, - 1, - 1, - 2, - 1, - 2, - 2, - 4, - 2, - 1, - 2, - 2, - 1, - 5, - 2, - 2, - 2, - 1, - 2, - 3, - 4, - 1, - 1, - 5, - 2, - 7, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 4, - 2, - 1, - 2, - 4, - 2, - 2, - 1, - 2, - 3, - 2, - 2, - 1, - 2, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 8, - 6, - 1, - 8, - 4, - 1, - 3, - 2, - 10, - 7, - 8, - 6, - 2, - 2, - 6, - 6, - 8, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 1, - 1, - 4, - 2, - 1, - 1, - 4, - 5, - 4, - 1, - 1, - 2, - 5, - 1, - 7, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 9, - 6, - 1, - 2, - 2, - 26, - 2, - 1, - 1, - 4, - 7, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 4, - 4, - 2, - 4, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 4, - 1, - 4, - 8, - 1, - 7, - 2, - 1, - 2, - 1, - 1, - 4, - 1, - 3, - 3, - 3, - 2, - 2, - 7, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 9, - 1, - 2, - 5, - 4, - 2, - 2, - 2, - 4, - 3, - 8, - 1, - 1, - 2, - 2, - 8, - 1, - 1, - 1, - 9, - 2, - 2, - 4, - 3, - 1, - 3, - 1, - 7, - 3, - 4, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 2, - 2, - 1, - 1, - 3, - 3, - 2, - 6, - 2, - 1, - 1, - 4, - 1, - 3, - 2, - 2, - 1, - 3, - 2, - 2, - 7, - 7, - 5, - 5, - 1, - 11, - 6, - 1, - 5, - 2, - 6, - 2, - 2, - 1, - 1, - 2, - 4, - 6, - 2, - 2, - 3, - 1, - 1, - 2, - 1, - 2, - 5, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 9, - 2, - 3, - 2, - 1, - 1, - 2, - 1, - 2, - 8, - 2, - 4, - 1, - 8, - 6, - 9, - 8, - 3, - 13, - 2, - 1, - 2, - 11, - 12, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 6, - 3, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 8, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 1, - 2, - 2, - 1, - 6, - 2, - 2, - 1, - 3, - 2, - 2, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 7, - 2, - 4, - 6, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 8, - 8, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 4, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 10, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 6, - 6, - 5, - 5, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 10, - 1, - 2, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 10, - 2, - 1, - 4, - 1, - 5, - 1, - 2, - 2, - 2, - 8, - 2, - 4, - 1, - 1, - 5, - 1, - 3, - 1, - 5, - 2, - 1, - 5, - 4, - 1, - 3, - 9, - 5, - 2, - 8, - 2, - 1, - 3, - 2, - 1, - 2, - 2, - 2, - 7, - 1, - 1, - 2, - 4, - 1, - 1, - 5, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 2, - 5, - 1, - 6, - 2, - 3, - 1, - 5, - 1, - 6, - 2, - 1, - 2, - 1, - 8, - 1, - 5, - 4, - 1, - 9, - 1, - 4, - 2, - 4, - 1, - 4, - 3, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 2, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 5, - 1, - 1, - 3, - 4, - 4, - 1, - 1, - 3, - 1, - 3, - 4, - 1, - 4, - 1, - 6, - 2, - 4, - 1, - 1, - 5, - 2, - 3, - 3, - 1, - 1, - 3, - 1, - 6, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 1, - 5, - 14, - 1, - 1, - 3, - 7, - 1, - 2, - 1, - 5, - 1, - 1, - 1, - 2, - 4, - 1, - 3, - 2, - 1, - 1, - 2, - 5, - 3, - 2, - 3, - 16, - 1, - 6, - 5, - 2, - 3, - 3, - 1, - 3, - 10, - 4, - 5, - 5, - 2, - 4, - 7, - 5, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 7, - 3, - 1, - 2, - 1, - 9, - 2, - 7, - 3, - 2, - 2, - 6, - 1, - 1, - 2, - 8, - 5, - 3, - 2, - 2, - 4, - 9, - 3, - 2, - 3, - 1, - 1, - 2, - 8, - 1, - 2, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 6, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 9, - 3, - 4, - 6, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 6, - 2, - 3, - 11, - 1, - 1, - 3, - 2, - 10, - 1, - 1, - 1, - 3, - 1, - 6, - 1, - 3, - 2, - 1, - 4, - 1, - 1, - 1, - 6, - 1, - 3, - 1, - 1, - 2, - 3, - 1, - 2, - 5, - 2, - 4, - 3, - 3, - 1, - 7, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 6, - 1, - 1, - 1, - 1, - 2, - 6, - 5, - 4, - 2, - 7, - 4, - 1, - 2, - 3, - 2, - 7, - 1, - 6, - 1, - 2, - 9, - 1, - 1, - 2, - 4, - 3, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 3, - 6, - 3, - 1, - 3, - 2, - 5, - 1, - 2, - 1, - 1, - 3, - 1, - 5, - 3, - 1, - 11, - 4, - 1, - 1, - 1, - 7, - 2, - 2, - 6, - 1, - 11, - 2, - 10, - 10, - 1, - 2, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 8, - 2, - 2, - 1, - 9, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 5, - 3, - 5, - 5, - 3, - 3, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 7, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 3, - 2, - 2, - 7, - 4, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 10, - 1, - 3, - 3, - 1, - 3, - 2, - 3, - 2, - 6, - 4, - 2, - 4, - 1, - 1, - 3, - 7, - 1, - 2, - 2, - 7, - 1, - 1, - 2, - 3, - 3, - 2, - 3, - 6, - 1, - 4, - 1, - 1, - 3, - 10, - 3, - 1, - 10, - 1, - 6, - 8, - 4, - 11, - 2, - 5, - 11, - 1, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 11, - 2, - 1, - 3, - 2, - 7, - 2, - 6, - 2, - 6, - 1, - 6, - 2, - 2, - 1, - 1, - 10, - 2, - 1, - 4, - 2, - 1, - 4, - 5, - 1, - 2, - 1, - 10, - 3, - 3, - 1, - 4, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 3, - 1, - 8, - 1, - 8, - 1, - 9, - 2, - 2, - 2, - 5, - 7, - 2, - 7, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 8, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 4, - 1, - 5, - 1, - 14, - 1, - 1, - 3, - 3, - 3, - 3, - 2, - 9, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 7, - 4, - 5, - 2, - 2, - 2, - 3, - 1, - 2, - 3, - 1, - 1, - 9, - 1, - 2, - 1, - 5, - 4, - 2, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 2, - 6, - 1, - 3, - 1, - 1, - 5, - 8, - 2, - 2, - 9, - 1, - 11, - 1, - 1, - 1, - 4, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 4, - 3, - 1, - 3, - 1, - 2, - 1, - 2, - 8, - 3, - 1, - 2, - 3, - 4, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 3, - 7, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 9, - 1, - 1, - 2, - 15, - 1, - 1, - 1, - 8, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 4, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 16, - 1, - 1, - 6, - 1, - 3, - 1, - 2, - 4, - 2, - 2, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 3, - 1, - 3, - 3, - 5, - 2, - 1, - 2, - 6, - 2, - 5, - 10, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 6, - 4, - 4, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 2, - 1, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 1, - 4, - 1, - 3, - 1, - 1, - 3, - 2, - 3, - 2, - 2, - 1, - 5, - 2, - 1, - 2, - 1, - 2, - 2, - 3, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 4, - 1, - 5, - 5, - 2, - 1, - 1, - 10, - 10, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 19, - 6, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 13, - 2, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 5, - 1, - 4, - 1, - 2, - 4, - 1, - 2, - 5, - 1, - 1, - 1, - 5, - 1, - 2, - 1, - 2, - 3, - 3, - 1, - 5, - 1, - 4, - 1, - 1, - 1, - 6, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 5, - 1, - 1, - 1, - 3, - 1, - 3, - 11, - 2, - 1, - 3, - 1, - 5, - 2, - 4, - 2, - 7, - 1, - 1, - 1, - 1, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 5, - 1, - 1, - 1, - 2, - 2, - 6, - 1, - 5, - 3, - 8, - 5, - 5, - 5, - 1, - 1, - 7, - 6, - 3, - 3, - 5, - 8, - 12, - 1, - 4, - 4, - 1, - 1, - 1, - 8, - 2, - 1, - 1, - 5, - 2, - 3, - 2, - 1, - 1, - 1, - 8, - 1, - 3, - 1, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 10, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 5, - 2, - 9, - 1, - 2, - 1, - 3, - 2, - 2, - 3, - 2, - 5, - 1, - 4, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 11, - 3, - 2, - 1, - 1, - 1, - 3, - 2, - 1, - 7, - 2, - 3, - 3, - 1, - 1, - 9, - 2, - 9, - 4, - 2, - 1, - 2, - 2, - 1, - 1, - 10, - 6, - 2, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 3, - 1, - 5, - 1, - 5, - 2, - 2, - 13, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 1, - 5, - 1, - 5, - 2, - 2, - 2, - 1, - 2, - 3, - 2, - 2, - 2, - 2, - 1, - 3, - 8, - 8, - 1, - 3, - 2, - 1, - 15, - 2, - 1, - 1, - 1, - 3, - 8, - 11, - 3, - 3, - 2, - 8, - 2, - 2, - 4, - 9, - 3, - 1, - 7, - 8, - 2, - 10, - 1, - 6, - 3, - 1, - 1, - 6, - 8, - 2, - 5, - 1, - 1, - 1, - 1, - 2, - 2, - 11, - 10, - 7, - 5, - 3, - 4, - 9, - 1, - 1, - 1, - 1, - 12, - 7, - 8, - 2, - 9, - 3, - 1, - 10, - 14, - 1, - 4, - 2, - 3, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 5, - 11, - 1, - 3, - 2, - 9, - 1, - 4, - 11, - 12, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 14, - 9, - 1, - 1, - 5, - 5, - 2, - 1, - 1, - 14, - 6, - 2, - 5, - 6, - 5, - 4, - 8, - 2, - 4, - 3, - 8, - 1, - 16, - 1, - 11, - 1, - 5, - 5, - 1, - 1, - 1, - 6, - 9, - 7, - 2, - 1, - 4, - 1, - 7, - 1, - 10, - 5, - 5, - 6, - 10, - 7, - 1, - 2, - 1, - 1, - 1, - 1, - 7, - 13, - 10, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 7, - 2, - 1, - 5, - 8, - 5, - 2, - 2, - 4, - 7, - 1, - 8, - 5, - 1, - 1, - 3, - 1, - 4, - 10, - 2, - 1, - 2, - 11, - 6, - 9, - 1, - 4, - 5, - 3, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 13, - 6, - 1, - 2, - 7, - 2, - 2, - 8, - 6, - 9, - 1, - 3, - 2, - 15, - 1, - 1, - 3, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 25, - 1, - 1, - 2, - 4, - 1, - 3, - 1, - 1, - 2, - 8, - 1, - 2, - 2, - 8, - 1, - 1, - 1, - 9, - 2, - 1, - 4, - 3, - 1, - 3, - 1, - 2, - 1, - 3, - 3, - 2, - 6, - 4, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 6, - 1, - 8, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 7, - 3, - 1, - 1, - 1, - 8, - 2, - 1, - 6, - 2, - 1, - 1, - 1, - 8, - 1, - 5, - 4, - 1, - 9, - 1, - 4, - 4, - 3, - 1, - 3, - 2, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 4, - 14, - 1, - 3, - 7, - 1, - 2, - 7, - 3, - 1, - 2, - 1, - 9, - 2, - 7, - 3, - 2, - 2, - 6, - 1, - 1, - 2, - 8, - 5, - 3, - 2, - 2, - 4, - 9, - 3, - 2, - 3, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 3, - 3, - 1, - 3, - 1, - 6, - 1, - 4, - 1, - 8, - 3, - 2, - 3, - 3, - 7, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 6, - 1, - 3, - 1, - 5, - 2, - 1, - 11, - 5, - 1, - 7, - 2, - 2, - 6, - 11, - 2, - 10, - 2, - 1, - 2, - 2, - 9, - 1, - 4, - 2, - 1, - 4, - 5, - 1, - 2, - 5, - 7, - 2, - 7, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 14, - 3, - 3, - 3, - 1, - 1, - 1, - 6, - 3, - 3, - 1, - 1, - 4, - 1, - 5, - 5, - 2, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 3, - 1, - 5, - 2, - 4, - 1, - 1, - 1, - 2, - 3, - 6, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 6, - 2, - 6, - 2, - 8, - 2, - 1, - 4, - 5, - 2, - 1, - 6, - 1, - 1, - 5, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2 - ], - "total": 5003, - "totalUnique": 20, - "unique": { - "1": 3339, - "2": 632, - "3": 308, - "4": 178, - "5": 145, - "6": 96, - "7": 75, - "8": 71, - "9": 45, - "10": 40, - "11": 33, - "12": 7, - "13": 8, - "14": 11, - "15": 6, - "16": 5, - "17": 1, - "19": 1, - "25": 1, - "26": 1 - }, - "uniquenessRatio": 0.003997601439136518 - } - }, - "selectors": { - "total": 6578, - "totalUnique": 4297, - "uniquenessRatio": 0.6532380662815446, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 0, - 7, - 1 - ], - "sum": [ - 0, - 9281, - 2298 - ], - "mean": [ - 0, - 1.410915171784737, - 0.349346305868045 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ] - ], - "total": 6578, - "totalUnique": 24, - "unique": { - "0,0,1": 179, - "0,1,1": 759, - "0,1,0": 3399, - "0,0,2": 19, - "0,2,0": 863, - "0,2,1": 349, - "0,3,0": 242, - "0,3,1": 226, - "0,4,0": 91, - "0,5,0": 29, - "0,4,1": 79, - "0,1,2": 286, - "0,2,2": 24, - "0,5,1": 10, - "0,3,2": 3, - "0,1,3": 5, - "0,0,0": 2, - "0,6,0": 2, - "0,2,3": 1, - "0,6,1": 5, - "0,4,2": 1, - "0,7,1": 1, - "0,5,2": 1, - "0,6,2": 2 - }, - "uniquenessRatio": 0.0036485253876558225 - }, - "complexity": { - "min": 1, - "max": 13, - "mean": 2.2189115232593495, - "mode": 1, - "range": 12, - "sum": 14596, - "total": 6578, - "totalUnique": 13, - "unique": { - "1": 3563, - "2": 789, - "3": 916, - "4": 632, - "5": 274, - "6": 184, - "7": 122, - "8": 61, - "9": 23, - "10": 5, - "11": 3, - "12": 5, - "13": 1 - }, - "uniquenessRatio": 0.001976284584980237, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 3, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 6, - 6, - 6, - 8, - 8, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 5, - 4, - 4, - 3, - 6, - 8, - 8, - 8, - 5, - 1, - 1, - 3, - 1, - 3, - 4, - 4, - 4, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 4, - 4, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 4, - 4, - 6, - 8, - 8, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 8, - 3, - 3, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 2, - 4, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 8, - 7, - 8, - 5, - 4, - 5, - 2, - 1, - 1, - 3, - 3, - 4, - 2, - 3, - 4, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 4, - 5, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 6, - 4, - 1, - 3, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 2, - 2, - 2, - 3, - 4, - 4, - 4, - 5, - 7, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 3, - 4, - 4, - 1, - 2, - 3, - 3, - 1, - 1, - 3, - 4, - 5, - 4, - 3, - 7, - 6, - 7, - 4, - 9, - 6, - 6, - 7, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 2, - 2, - 3, - 1, - 2, - 2, - 4, - 2, - 1, - 2, - 1, - 3, - 4, - 4, - 4, - 2, - 2, - 1, - 2, - 3, - 4, - 4, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 4, - 4, - 1, - 2, - 4, - 3, - 1, - 3, - 1, - 5, - 3, - 3, - 1, - 2, - 1, - 2, - 3, - 2, - 1, - 3, - 4, - 3, - 4, - 3, - 4, - 4, - 4, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 4, - 4, - 1, - 1, - 4, - 4, - 1, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 5, - 6, - 3, - 1, - 1, - 4, - 4, - 5, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 2, - 4, - 4, - 5, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 7, - 7, - 5, - 5, - 3, - 1, - 5, - 3, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 1, - 1, - 1, - 4, - 4, - 5, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 4, - 3, - 3, - 7, - 6, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 2, - 3, - 3, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 2, - 1, - 4, - 6, - 4, - 1, - 1, - 1, - 3, - 4, - 4, - 6, - 4, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 6, - 5, - 1, - 1, - 3, - 3, - 1, - 3, - 5, - 7, - 1, - 2, - 1, - 3, - 1, - 3, - 1, - 3, - 4, - 1, - 3, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 5, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 5, - 5, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 2, - 3, - 3, - 5, - 6, - 4, - 4, - 6, - 6, - 6, - 8, - 8, - 4, - 2, - 3, - 5, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 4, - 5, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 5, - 3, - 5, - 1, - 2, - 1, - 3, - 3, - 1, - 2, - 2, - 4, - 9, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 4, - 4, - 7, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 6, - 4, - 4, - 3, - 3, - 3, - 9, - 9, - 4, - 4, - 2, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 2, - 2, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 5, - 4, - 4, - 4, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 3, - 4, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 3, - 4, - 3, - 4, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 2, - 4, - 6, - 5, - 5, - 4, - 5, - 5, - 6, - 5, - 1, - 3, - 4, - 6, - 4, - 5, - 10, - 5, - 4, - 5, - 5, - 6, - 5, - 1, - 3, - 1, - 2, - 2, - 4, - 4, - 2, - 1, - 3, - 3, - 2, - 2, - 2, - 1, - 3, - 2, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 4, - 2, - 2, - 2, - 3, - 4, - 4, - 6, - 6, - 4, - 5, - 3, - 5, - 4, - 6, - 5, - 6, - 5, - 5, - 5, - 6, - 7, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 7, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 3, - 2, - 2, - 1, - 2, - 2, - 2, - 3, - 3, - 4, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 1, - 4, - 4, - 1, - 1, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 4, - 2, - 3, - 3, - 4, - 4, - 1, - 3, - 5, - 6, - 5, - 7, - 6, - 3, - 1, - 2, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 1, - 3, - 1, - 3, - 4, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 4, - 5, - 4, - 3, - 3, - 4, - 4, - 5, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 2, - 4, - 4, - 6, - 6, - 6, - 5, - 5, - 7, - 7, - 7, - 5, - 5, - 7, - 7, - 7, - 5, - 5, - 7, - 7, - 7, - 6, - 6, - 8, - 8, - 8, - 5, - 5, - 7, - 7, - 7, - 5, - 5, - 7, - 7, - 7, - 6, - 6, - 8, - 8, - 8, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 9, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 6, - 6, - 8, - 8, - 1, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 6, - 6, - 6, - 4, - 4, - 6, - 6, - 6, - 5, - 5, - 7, - 7, - 7, - 1, - 3, - 4, - 4, - 6, - 6, - 6, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 6, - 6, - 6, - 4, - 4, - 6, - 6, - 6, - 4, - 4, - 6, - 6, - 6, - 4, - 4, - 6, - 6, - 6, - 1, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 6, - 6, - 6, - 5, - 5, - 7, - 7, - 7, - 1, - 3, - 3, - 4, - 4, - 6, - 6, - 6, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 2, - 4, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 4, - 3, - 3, - 5, - 5, - 5, - 2, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 6, - 6, - 6, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 3, - 4, - 4, - 6, - 6, - 6, - 5, - 5, - 7, - 7, - 7, - 3, - 3, - 3, - 4, - 4, - 6, - 6, - 6, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 6, - 5, - 1, - 1, - 2, - 4, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 6, - 8, - 7, - 7, - 9, - 9, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 3, - 3, - 3, - 3, - 3, - 6, - 3, - 2, - 2, - 4, - 4, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 3, - 3, - 1, - 2, - 1, - 3, - 5, - 7, - 9, - 8, - 7, - 1, - 1, - 3, - 3, - 4, - 3, - 3, - 4, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 6, - 4, - 3, - 5, - 1, - 2, - 3, - 3, - 3, - 1, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 3, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 1, - 2, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 6, - 7, - 4, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 4, - 5, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 2, - 4, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 2, - 1, - 3, - 4, - 3, - 5, - 1, - 2, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 5, - 3, - 2, - 3, - 1, - 2, - 3, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 4, - 4, - 5, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 1, - 3, - 1, - 2, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 3, - 3, - 1, - 3, - 3, - 2, - 5, - 4, - 5, - 4, - 1, - 3, - 3, - 1, - 3, - 3, - 4, - 1, - 3, - 4, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 3, - 3, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 1, - 5, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 3, - 6, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 3, - 6, - 7, - 4, - 3, - 6, - 6, - 6, - 8, - 6, - 3, - 1, - 4, - 5, - 4, - 1, - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 4, - 1, - 3, - 1, - 2, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 4, - 1, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 1, - 2, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 5, - 3, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 2, - 2, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 4, - 1, - 2, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 4, - 4, - 4, - 4, - 3, - 3, - 2, - 4, - 3, - 2, - 4, - 3, - 3, - 4, - 4, - 5, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 4, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 12, - 8, - 10, - 10, - 11, - 13, - 9, - 11, - 12, - 11, - 12, - 12, - 12, - 3, - 5, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 7, - 7, - 3, - 5, - 5, - 5, - 5, - 3, - 4, - 7, - 4, - 4, - 3, - 5, - 3, - 9, - 3, - 5, - 1, - 3, - 5, - 5, - 6, - 6, - 7, - 2, - 1, - 1, - 3, - 3, - 3, - 5, - 3, - 5, - 3, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 5, - 8, - 4, - 6, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 5, - 5, - 5, - 2, - 5, - 5, - 5, - 5, - 5, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 8, - 1, - 1, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 4, - 3, - 1, - 1, - 3, - 2, - 3, - 3, - 5, - 3, - 6, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 2, - 3, - 3, - 3, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 2, - 3, - 3, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 4, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 4, - 1, - 3, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 5, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 4, - 5, - 4, - 5, - 3, - 7, - 6, - 6, - 7, - 6, - 5, - 7, - 7, - 5, - 3, - 7, - 6, - 6, - 7, - 6, - 5, - 3, - 7, - 6, - 5, - 5, - 6, - 7, - 5, - 3, - 7, - 2, - 6, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 9, - 9, - 9, - 9, - 9, - 4, - 4, - 4, - 5, - 6, - 7, - 2, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 1, - 4, - 2, - 3, - 4, - 4, - 5, - 1, - 2, - 4, - 3, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 4, - 4, - 4, - 3, - 4, - 4, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 3, - 3, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 4, - 5, - 3, - 7, - 6, - 7, - 9, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 2, - 3, - 4, - 4, - 1, - 2, - 4, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 5, - 6, - 3, - 1, - 5, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 7, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 4, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 7, - 7, - 1, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 3, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 1, - 2, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 2, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 3, - 3, - 3, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 4, - 4, - 2, - 2, - 1, - 3, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - }, - "id": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "pseudoClasses": { - "total": 2010, - "totalUnique": 26, - "unique": { - "not": 167, - "root": 3, - "-moz-focusring": 8, - "focus": 94, - "focus-visible": 66, - "first-child": 57, - "after": 447, - "before": 586, - "hover": 280, - "active": 131, - "has": 2, - "last-child": 45, - "checked": 35, - "focus-within": 13, - "empty": 1, - "-moz-placeholder": 3, - "-ms-input-placeholder": 3, - "last-of-type": 5, - "nth-of-type": 11, - "first-of-type": 2, - "nth-child": 4, - "disabled": 34, - "placeholder-shown": 6, - "only-child": 2, - "indeterminate": 3, - "first-letter": 2 - }, - "uniquenessRatio": 0.012935323383084577 - }, - "accessibility": { - "total": 2, - "totalUnique": 2, - "unique": { - ".wsp-main-nav-constrain[aria-hidden=false]": 1, - "body:has(> div[role=dialog]) wsp-email-opt-in-toaster": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0003040437823046519 - }, - "keyframes": { - "total": 56, - "totalUnique": 13, - "unique": { - "0%": 17, - "80%": 1, - "to": 19, - "50%": 2, - "70%": 2, - "5%": 2, - "95%": 2, - "10%": 2, - "59%": 2, - "20%": 3, - "38%": 2, - "30%": 1, - "60%": 1 - }, - "uniquenessRatio": 0.23214285714285715 - }, - "prefixed": { - "total": 59, - "totalUnique": 48, - "unique": { - "[type=button]::-moz-focus-inner": 2, - "[type=reset]::-moz-focus-inner": 1, - "[type=submit]::-moz-focus-inner": 2, - "button::-moz-focus-inner": 2, - "[type=button]:-moz-focusring": 2, - "[type=reset]:-moz-focusring": 1, - "[type=submit]:-moz-focusring": 2, - "button:-moz-focusring": 2, - "[type=number]::-webkit-inner-spin-button": 1, - "[type=number]::-webkit-outer-spin-button": 1, - "[type=search]::-webkit-search-cancel-button": 1, - "[type=search]::-webkit-search-decoration": 1, - "::-webkit-file-upload-button": 2, - ".wsp-search__input:-moz-placeholder": 2, - ".wsp-search__input::-moz-placeholder": 2, - ".wsp-search__input:-ms-input-placeholder": 2, - ".wsp-search__input::-webkit-input-placeholder": 2, - ".wsp-search__input--full:-moz-placeholder": 1, - ".wsp-search__input--full::-moz-placeholder": 1, - ".wsp-search__input--full:-ms-input-placeholder": 1, - ".wsp-search__input--full::-webkit-input-placeholder": 1, - ".wsp-search__select::-ms-expand": 1, - ".wsp-search__select:-moz-focusring": 1, - ".ui-input-text__control[type=number]::-webkit-inner-spin-button": 1, - ".ui-input-text__control[type=number]::-webkit-outer-spin-button": 1, - ".c-btn-primary a::-moz-focus-inner": 1, - ".c-btn-primary button::-moz-focus-inner": 1, - ".c-btn-primary input[type=button]::-moz-focus-inner": 1, - ".c-btn-primary input[type=reset]::-moz-focus-inner": 1, - ".c-btn-primary input[type=submit]::-moz-focus-inner": 1, - ".c-btn-tertiary a::-moz-focus-inner": 1, - ".c-btn-tertiary button::-moz-focus-inner": 1, - ".c-btn-tertiary input[type=button]::-moz-focus-inner": 1, - ".c-btn-tertiary input[type=reset]::-moz-focus-inner": 1, - ".c-btn-tertiary input[type=submit]::-moz-focus-inner": 1, - ".c-btn-tertiary-toggle a::-moz-focus-inner": 1, - ".c-btn-tertiary-toggle button::-moz-focus-inner": 1, - ".c-btn-tertiary-toggle input[type=button]::-moz-focus-inner": 1, - ".c-btn-tertiary-toggle input[type=reset]::-moz-focus-inner": 1, - ".c-btn-tertiary-toggle input[type=submit]::-moz-focus-inner": 1, - "[class*=c-btn-] a::-moz-focus-inner": 1, - "[class*=c-btn-] button::-moz-focus-inner": 1, - "[class*=c-btn-] input[type=button]::-moz-focus-inner": 1, - "[class*=c-btn-] input[type=reset]::-moz-focus-inner": 1, - "[class*=c-btn-] input[type=submit]::-moz-focus-inner": 1, - ".touch_supported .filmstrip-viewport::-webkit-scrollbar": 1, - ".deals-from-brands__brand-badges::-webkit-scrollbar": 1, - ".personalised-product-carousels__badges::-webkit-scrollbar": 1 - }, - "uniquenessRatio": 0.8135593220338984, - "ratio": 0.00896929157798723 - }, - "combinators": { - "total": 2292, - "totalUnique": 4, - "unique": { - " ": 1543, - ">": 572, - "+": 138, - "~": 39 - }, - "uniquenessRatio": 0.0017452006980802793 - } - }, - "declarations": { - "total": 10441, - "totalUnique": 1778, - "uniquenessRatio": 0.17029020208792262, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 10441 - } - }, - "properties": { - "total": 10441, - "totalUnique": 174, - "unique": { - "opacity": 89, - "transform": 121, - "right": 146, - "left": 153, - "box-shadow": 52, - "background-position": 36, - "font-family": 62, - "font-style": 12, - "font-weight": 115, - "font-stretch": 6, - "src": 7, - "font-display": 7, - "line-height": 117, - "min-height": 58, - "display": 1003, - "font-size": 295, - "box-sizing": 21, - "height": 300, - "overflow": 121, - "background-color": 402, - "-webkit-text-decoration-skip": 2, - "text-decoration-skip": 2, - "-webkit-text-decoration": 1, - "text-decoration": 99, - "border-bottom": 84, - "color": 404, - "position": 402, - "vertical-align": 60, - "bottom": 86, - "top": 195, - "margin": 278, - "text-transform": 9, - "appearance": 14, - "-webkit-appearance": 19, - "padding": 371, - "border-style": 26, - "outline": 47, - "max-width": 119, - "white-space": 32, - "outline-offset": 17, - "font": 2, - "margin-bottom": 288, - "border-spacing": 1, - "border-collapse": 1, - "min-width": 45, - "border": 139, - "text-align": 104, - "width": 952, - "flex-wrap": 44, - "align-items": 141, - "margin-right": 193, - "justify-content": 74, - "flex": 45, - "list-style-position": 2, - "list-style-type": 4, - "-webkit-hyphens": 1, - "hyphens": 1, - "word-break": 6, - "margin-left": 261, - "list-style": 26, - "max-height": 54, - "overflow-y": 13, - "padding-top": 140, - "padding-right": 173, - "padding-bottom": 172, - "padding-left": 243, - "border-top": 42, - "border-top-color": 2, - "background-repeat": 41, - "background-size": 45, - "content": 274, - "filter": 5, - "background-image": 90, - "pointer-events": 61, - "cursor": 85, - "align-self": 20, - "transition": 77, - "z-index": 107, - "border-radius": 111, - "background": 40, - "-webkit-tap-highlight-color": 4, - "-webkit-touch-callout": 10, - "-webkit-user-select": 10, - "user-select": 10, - "flex-grow": 51, - "order": 14, - "margin-top": 159, - "fill": 15, - "flex-flow": 34, - "visibility": 21, - "-moz-appearance": 2, - "flex-shrink": 25, - "text-indent": 2, - "text-overflow": 18, - "border-left": 6, - "text-shadow": 1, - "flex-direction": 57, - "transition-delay": 13, - "border-color": 93, - "border-width": 32, - "-webkit-clip-path": 16, - "clip-path": 16, - "border-right": 9, - "animation": 12, - "overflow-wrap": 1, - "-o-object-fit": 7, - "object-fit": 7, - "will-change": 14, - "overflow-x": 10, - "-webkit-overflow-scrolling": 5, - "clip": 7, - "float": 45, - "grid-template-columns": 9, - "grid-row": 2, - "grid-column": 3, - "justify-self": 1, - "transition-timing-function": 14, - "transition-duration": 7, - "animation-name": 3, - "animation-duration": 3, - "animation-timing-function": 1, - "animation-fill-mode": 1, - "transition-property": 1, - "border-left-color": 2, - "border-left-width": 1, - "touch-action": 1, - "transform-origin": 1, - "-moz-osx-font-smoothing": 7, - "-webkit-text-size-adjust": 2, - "text-size-adjust": 2, - "-webkit-font-smoothing": 7, - "font-variant": 3, - "speak": 3, - "stroke": 1, - "letter-spacing": 2, - "flex-basis": 13, - "clear": 7, - "direction": 2, - "aspect-ratio": 7, - "-webkit-flex-direction": 1, - "-ms-flex-direction": 1, - "word-wrap": 6, - "-webkit-box-orient": 4, - "-webkit-line-clamp": 5, - "gap": 4, - "isolation": 4, - "mix-blend-mode": 6, - "border-bottom-style": 5, - "border-bottom-width": 9, - "border-top-style": 1, - "scroll-snap-align": 7, - "-ms-scroll-chaining": 1, - "scroll-snap-type": 5, - "transform-style": 1, - "counter-reset": 1, - "counter-increment": 1, - "-ms-flex-grow": 1, - "align-content": 1, - "table-layout": 3, - "grid-template-areas": 7, - "grid-area": 4, - "place-items": 1, - "place-content": 1, - "background-position-x": 1, - "scroll-behavior": 2, - "scrollbar-width": 2, - "-ms-overflow-style": 2, - "border-top-left-radius": 1, - "border-top-right-radius": 1, - "border-bottom-right-radius": 1, - "border-bottom-left-radius": 1, - "outline-color": 1, - "grid-template-rows": 1, - "grid-row-gap": 1 - }, - "uniquenessRatio": 0.01666507039555598, - "prefixed": { - "total": 108, - "totalUnique": 21, - "unique": { - "-webkit-text-decoration-skip": 2, - "-webkit-text-decoration": 1, - "-webkit-appearance": 19, - "-webkit-hyphens": 1, - "-webkit-tap-highlight-color": 4, - "-webkit-touch-callout": 10, - "-webkit-user-select": 10, - "-moz-appearance": 2, - "-webkit-clip-path": 16, - "-o-object-fit": 7, - "-webkit-overflow-scrolling": 5, - "-moz-osx-font-smoothing": 7, - "-webkit-text-size-adjust": 2, - "-webkit-font-smoothing": 7, - "-webkit-flex-direction": 1, - "-ms-flex-direction": 1, - "-webkit-box-orient": 4, - "-webkit-line-clamp": 5, - "-ms-scroll-chaining": 1, - "-ms-flex-grow": 1, - "-ms-overflow-style": 2 - }, - "uniquenessRatio": 0.19444444444444445, - "ratio": 0.010343836797241643 - }, - "custom": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0103438367972417, - "mode": 1, - "range": 1, - "sum": 10549 - } - }, - "values": { - "colors": { - "total": 1150, - "totalUnique": 101, - "unique": { - "transparent": 84, - "#000": 6, - "#ff0": 1, - "ButtonText": 2, - "#33f": 13, - "#03031a": 73, - "#e6e6e8": 97, - "#01ac3a": 8, - "#0000a4": 44, - "#b3b3ba": 64, - "#00f": 89, - "currentColor": 23, - "#3c3eff": 13, - "#0000ca": 13, - "#fff": 178, - "rgba(49, 49, 47, .3)": 6, - "#f91906": 34, - "rgba(3, 3, 26, .25)": 14, - "#f0f6ff": 35, - "#007000": 16, - "#00a127": 11, - "rgba(0, 0, 0, .5)": 9, - "#686876": 46, - "rgba(255, 255, 255, .25)": 19, - "#febd00": 9, - "#fafafa": 11, - "#90cdfe": 10, - "rgba(0, 0, 0, .25)": 7, - "rgba(255, 255, 255, .7)": 2, - "#dddbd5": 1, - "#81818c": 2, - "#fed600": 2, - "#fea400": 2, - "#00b434": 7, - "#009019": 7, - "#f8f8f8": 5, - "#fffde5": 2, - "#e5f8e9": 9, - "#ffe7e6": 4, - "#ae1c28": 3, - "#21468b": 3, - "#fdda24": 1, - "#ef3340": 1, - "rgba(255, 255, 255, .75)": 2, - "#3b5998": 1, - "#cc2127": 1, - "#3f729b": 1, - "#cd201f": 1, - "#00a0e1": 1, - "#00854f": 1, - "#f6ab13": 1, - "#f01616": 1, - "#ffe936": 1, - "#ff0f21": 1, - "#e2f9ed": 3, - "#dceeff": 3, - "#f2fbf5": 4, - "#fff162": 2, - "#fff59e": 3, - "#fffade": 2, - "#ffb072": 2, - "#ffd2ad": 2, - "#fed": 2, - "#ff667e": 2, - "#ffa4b4": 2, - "#ffd9e1": 2, - "#fe73dc": 3, - "#ffa4eb": 3, - "#ffd9f5": 2, - "#71e9b4": 3, - "#aff2d3": 4, - "#1eadff": 2, - "rgba(0, 0, 0, .35)": 4, - "#868691": 10, - "#e6e6e6": 5, - "#bbb": 2, - "rgba(255, 255, 255, .8)": 7, - "rgba(255, 255, 255, .6)": 1, - "rgba(49, 49, 47, .8)": 1, - "#d30000": 2, - "#ddd": 1, - "rgba(0, 0, 0, .08)": 1, - "#ff240d": 2, - "#0a1398": 1, - "rgba(179, 179, 186, 0)": 2, - "rgba(179, 179, 186, .2)": 1, - "rgba(179, 179, 186, .5)": 1, - "#f7faff": 1, - "#53c0a0": 1, - "#cba88a": 1, - "#0a0a0a": 15, - "#aaa": 22, - "rgba(10, 10, 10, .25)": 2, - "#01982b": 2, - "#ffe900": 1, - "#828282": 11, - "#fffae5": 1, - "#ffecec": 1, - "#e5f4e9": 2, - "#eb0400": 3, - "#ff4947": 2 - }, - "uniquenessRatio": 0.08782608695652173, - "itemsPerContext": { - "background-color": { - "total": 391, - "totalUnique": 71, - "unique": { - "transparent": 52, - "#ff0": 1, - "#e6e6e8": 21, - "currentColor": 10, - "#00f": 14, - "#f91906": 7, - "#fff": 89, - "#0000a4": 7, - "rgba(0, 0, 0, .5)": 9, - "#b3b3ba": 4, - "#f0f6ff": 27, - "rgba(255, 255, 255, .25)": 19, - "#febd00": 4, - "#fafafa": 7, - "#90cdfe": 6, - "rgba(255, 255, 255, .7)": 2, - "#3c3eff": 3, - "#0000ca": 3, - "#fed600": 1, - "#fea400": 1, - "#00a127": 5, - "#00b434": 3, - "#009019": 3, - "#f8f8f8": 5, - "#fffde5": 2, - "#e5f8e9": 4, - "#ffe7e6": 4, - "#ae1c28": 3, - "#21468b": 3, - "#fdda24": 1, - "#000": 2, - "#ef3340": 1, - "rgba(255, 255, 255, .75)": 2, - "#007000": 2, - "#686876": 2, - "#3b5998": 1, - "#3f729b": 1, - "#cd201f": 1, - "#ffe936": 1, - "#ff0f21": 1, - "#fff162": 2, - "#fff59e": 3, - "#fffade": 2, - "#ffb072": 2, - "#ffd2ad": 2, - "#fed": 2, - "#ff667e": 2, - "#ffa4b4": 2, - "#ffd9e1": 2, - "#fe73dc": 2, - "#ffa4eb": 2, - "#ffd9f5": 2, - "#71e9b4": 2, - "#aff2d3": 3, - "#e2f9ed": 2, - "#1eadff": 2, - "#dceeff": 2, - "#33f": 2, - "#bbb": 1, - "#01ac3a": 4, - "#f2fbf5": 3, - "rgba(255, 255, 255, .6)": 1, - "rgba(49, 49, 47, .8)": 1, - "#ff240d": 2, - "#f7faff": 1, - "#cba88a": 1, - "#ffe900": 1, - "#fffae5": 1, - "#ffecec": 1, - "#e5f4e9": 1, - "#eb0400": 1 - }, - "uniquenessRatio": 0.1815856777493606 - }, - "color": { - "total": 390, - "totalUnique": 33, - "unique": { - "#000": 2, - "#03031a": 66, - "#01ac3a": 4, - "#0000a4": 33, - "#b3b3ba": 19, - "#00f": 48, - "#3c3eff": 1, - "#0000ca": 4, - "currentColor": 5, - "#fff": 61, - "#007000": 10, - "#00a127": 2, - "transparent": 7, - "#686876": 40, - "#81818c": 1, - "#f91906": 23, - "#cc2127": 1, - "#00a0e1": 1, - "#00854f": 1, - "#f6ab13": 1, - "#f01616": 1, - "#868691": 10, - "#d30000": 2, - "#e6e6e8": 7, - "#0a1398": 1, - "#febd00": 1, - "#53c0a0": 1, - "#0a0a0a": 15, - "#01982b": 2, - "#aaa": 5, - "#828282": 11, - "#eb0400": 2, - "#ff4947": 2 - }, - "uniquenessRatio": 0.08461538461538462 - }, - "outline": { - "total": 18, - "totalUnique": 5, - "unique": { - "ButtonText": 2, - "#33f": 10, - "#90cdfe": 3, - "#3c3eff": 2, - "#0000ca": 1 - }, - "uniquenessRatio": 0.2777777777777778 - }, - "border-top": { - "total": 29, - "totalUnique": 4, - "unique": { - "#e6e6e8": 20, - "#b3b3ba": 5, - "#aaa": 3, - "#e6e6e6": 1 - }, - "uniquenessRatio": 0.13793103448275862 - }, - "border-top-color": { - "total": 2, - "totalUnique": 1, - "unique": { - "transparent": 2 - }, - "uniquenessRatio": 0.5 - }, - "box-shadow": { - "total": 28, - "totalUnique": 6, - "unique": { - "rgba(49, 49, 47, .3)": 6, - "rgba(3, 3, 26, .25)": 14, - "rgba(0, 0, 0, .25)": 3, - "#00f": 2, - "rgba(0, 0, 0, .08)": 1, - "rgba(10, 10, 10, .25)": 2 - }, - "uniquenessRatio": 0.21428571428571427 - }, - "background": { - "total": 34, - "totalUnique": 7, - "unique": { - "#fff": 15, - "#f0f6ff": 6, - "#0000a4": 2, - "#03031a": 1, - "#00f": 4, - "rgba(255, 255, 255, .8)": 2, - "#fafafa": 4 - }, - "uniquenessRatio": 0.20588235294117646 - }, - "border": { - "total": 51, - "totalUnique": 12, - "unique": { - "#b3b3ba": 9, - "#fff": 13, - "transparent": 3, - "#686876": 3, - "#e6e6e8": 8, - "#00f": 5, - "#03031a": 2, - "#bbb": 1, - "currentColor": 2, - "#33f": 1, - "#ddd": 1, - "#aaa": 3 - }, - "uniquenessRatio": 0.23529411764705882 - }, - "border-bottom": { - "total": 63, - "totalUnique": 12, - "unique": { - "#b3b3ba": 14, - "#00f": 5, - "#e6e6e8": 20, - "#dddbd5": 1, - "currentColor": 1, - "#686876": 1, - "rgba(0, 0, 0, .35)": 4, - "rgba(0, 0, 0, .25)": 4, - "transparent": 2, - "#f0f6ff": 1, - "#aaa": 9, - "#e6e6e6": 1 - }, - "uniquenessRatio": 0.19047619047619047 - }, - "-webkit-tap-highlight-color": { - "total": 4, - "totalUnique": 1, - "unique": { - "transparent": 4 - }, - "uniquenessRatio": 0.25 - }, - "fill": { - "total": 15, - "totalUnique": 11, - "unique": { - "currentColor": 4, - "transparent": 2, - "#e2f9ed": 1, - "#dceeff": 1, - "#90cdfe": 1, - "#f2fbf5": 1, - "#ffa4eb": 1, - "#fe73dc": 1, - "#aff2d3": 1, - "#71e9b4": 1, - "#f91906": 1 - }, - "uniquenessRatio": 0.7333333333333333 - }, - "border-left": { - "total": 6, - "totalUnique": 3, - "unique": { - "#03031a": 1, - "#e6e6e8": 4, - "#b3b3ba": 1 - }, - "uniquenessRatio": 0.5 - }, - "text-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "border-color": { - "total": 94, - "totalUnique": 22, - "unique": { - "transparent": 11, - "#b3b3ba": 9, - "#e6e6e8": 13, - "#00f": 11, - "#3c3eff": 7, - "#0000ca": 5, - "#febd00": 4, - "#fed600": 1, - "#fea400": 1, - "#00a127": 4, - "#00b434": 4, - "#009019": 4, - "#007000": 4, - "#03031a": 2, - "#f91906": 3, - "#e6e6e6": 3, - "#81818c": 1, - "#0000a4": 2, - "#e5f8e9": 1, - "#f0f6ff": 1, - "#aaa": 2, - "#000": 1 - }, - "uniquenessRatio": 0.23404255319148937 - }, - "border-right": { - "total": 7, - "totalUnique": 2, - "unique": { - "#e6e6e8": 4, - "#b3b3ba": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "border-left-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#03031a": 1 - }, - "uniquenessRatio": 1 - }, - "stroke": { - "total": 1, - "totalUnique": 1, - "unique": { - "currentColor": 1 - }, - "uniquenessRatio": 1 - }, - "background-image": { - "total": 14, - "totalUnique": 6, - "unique": { - "rgba(255, 255, 255, .8)": 5, - "#e5f8e9": 4, - "rgba(179, 179, 186, 0)": 2, - "rgba(179, 179, 186, .2)": 1, - "rgba(179, 179, 186, .5)": 1, - "#e5f4e9": 1 - }, - "uniquenessRatio": 0.42857142857142855 - }, - "outline-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 1150, - "totalUnique": 6, - "unique": { - "transparent": 84, - "hex3": 314, - "system": 2, - "hex6": 648, - "currentcolor": 23, - "rgba": 79 - }, - "uniquenessRatio": 0.0052173913043478265 - } - }, - "gradients": { - "total": 6, - "totalUnique": 6, - "unique": { - "-webkit-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "-moz-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "-o-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "radial-gradient(circle farthest-corner at 0 100%, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "linear-gradient(90deg, rgba(179, 179, 186, 0)0, rgba(179, 179, 186, .2) 20%, rgba(179, 179, 186, .5) 60%, rgba(179, 179, 186, 0))": 1, - "radial-gradient(circle farthest-corner at 0 100%, rgba(255, 255, 255, .8) 40%, #e5f4e9 0)": 1 - }, - "uniquenessRatio": 1 - }, - "fontFamilies": { - "total": 51, - "totalUnique": 8, - "unique": { - "\"Produkt\"": 4, - "\"Graphik\"": 2, - "\"Bol Symbols\"": 3, - "monospace, monospace": 1, - "sans-serif": 2, - "produkt, arial, helvetica, sans-serif": 23, - "graphik, arial, helvetica, sans-serif": 13, - "\"Bol Symbols\", Graphik": 3 - }, - "uniquenessRatio": 0.1568627450980392 - }, - "fontSizes": { - "total": 291, - "totalUnique": 65, - "unique": { - "0": 1, - "2em": 12, - "1em": 15, - "80%": 1, - "75%": 2, - "100%": 5, - "3em": 5, - "4em": 4, - "5em": 4, - "6em": 4, - "7em": 3, - "8em": 3, - "9em": 3, - "10em": 3, - "1.25rem": 15, - "1.75rem": 8, - "1.125rem": 28, - "1rem": 13, - ".75rem": 26, - "1.5rem": 8, - ".9375rem": 2, - "1.0625rem": 2, - ".625rem": 11, - "110%": 2, - "12px": 4, - ".875rem": 21, - ".8125rem": 2, - ".6875rem": 3, - "1.3125rem": 6, - "1.3em": 1, - "14px": 4, - "2rem": 9, - "3rem": 2, - "calc(1em*1)": 1, - "1.3333333333em": 1, - "1.5em": 14, - ".75em": 2, - "2.5em": 1, - ".875em": 1, - "4.5rem": 1, - "1.1666666667em": 1, - "1.25em": 1, - "1.625rem": 5, - "2.25rem": 3, - ".85714em": 1, - "1.75em": 3, - ".8em": 1, - ".5714285714em": 1, - "10px": 1, - "120%": 1, - "11px": 1, - ".67em": 2, - ".1875rem": 1, - ".8rem": 2, - "1.8725em": 1, - ".15em": 1, - "1.875rem": 1, - "1.375rem": 1, - "32px": 1, - "18px": 3, - "26px": 1, - "16px": 1, - "2.75rem": 2, - "3.25rem": 1, - "2.5rem": 1 - }, - "uniquenessRatio": 0.22336769759450173 - }, - "lineHeights": { - "total": 92, - "totalUnique": 24, - "unique": { - "0": 4, - "1": 15, - "3": 2, - "1.15": 4, - "1.25": 17, - "1.5": 16, - "21px": 1, - "1.5rem": 5, - "24px": 2, - "3rem": 2, - "calc(3rem - 2px)": 2, - "calc(3rem - 4px)": 2, - "1.25rem": 4, - ".6666666667em": 1, - "2.5em": 4, - "1.5em": 2, - "1.1": 1, - "1.75": 1, - "2.5": 1, - "1.2": 2, - "1.4285714286em": 1, - "1.3": 1, - "2rem": 1, - ".66667em": 1 - }, - "uniquenessRatio": 0.2608695652173913 - }, - "zindexes": { - "total": 104, - "totalUnique": 23, - "unique": { - "0": 5, - "1": 22, - "2": 13, - "3": 3, - "4": 1, - "10": 4, - "16": 1, - "99": 1, - "100": 7, - "101": 2, - "110": 6, - "115": 2, - "120": 4, - "130": 1, - "140": 2, - "200": 1, - "300": 4, - "500": 8, - "1000": 1, - "10000": 2, - "99999": 3, - "-1": 9, - "-10": 2 - }, - "uniquenessRatio": 0.22115384615384615 - }, - "textShadows": { - "total": 1, - "totalUnique": 1, - "unique": { - "0 0 0#000": 1 - }, - "uniquenessRatio": 1 - }, - "boxShadows": { - "total": 38, - "totalUnique": 18, - "unique": { - "0-2.25em 0-1em, 0-2.25em 0-1.1em, 0-2.25em 0-1.2em, 0-2.25em 0-1.3em, 0-2.25em 0-1.35em": 1, - "0-2.25em 0-1em, -.6em -2.1em 0-1.1em, -1.05em -1.85em 0-1.2em, -1.35em -1.65em 0-1.3em, -1.5em -1.5em 0-1.35em": 1, - "0-2.25em 0-1em, -1.05em -2.1em 0-1.1em, -1.8em -1.65em 0-1.2em, -2.25em -1.15em 0-1.3em, -2.5em -.65em 0-1.35em": 1, - "0-2.25em 0-1em, -1.15em -2.05em 0-1.1em, -1.95em -1.45em 0-1.2em, -2.35em -.75em 0-1.3em, -2.5em 0 0-1.35em": 1, - "1.5rem 0 0-.5rem, 2.5rem 0 0-.5rem, 3.5rem 0 0-.5rem": 1, - "1.5rem 0 0-.35rem, 2.5rem 0 0-.5rem, 3.5rem 0 0-.5rem": 1, - "1.5rem 0 0-.5rem, 2.5rem 0 0-.35rem, 3.5rem 0 0-.5rem": 1, - "1.5rem 0 0-.5rem, 2.5rem 0 0-.5rem, 3.5rem 0 0-.35rem": 1, - "1px 2px 4px 0 rgba(49, 49, 47, .3)": 4, - "0 4px 0-2px rgba(3, 3, 26, .25)": 14, - "0 0 5px rgba(0, 0, 0, .25)": 3, - "0-2px 4px rgba(49, 49, 47, .3)": 2, - "-.05em -.02em, .09em -.2em, -.58em .07em 0-.07em, -.73em -.3em 0-.05em, -.65em -.5em 0-.02em": 1, - "-.5em -.18em 0-.02em, -.47em .07em 0-.07em, -.35em .16em 0-.07em, -.35em .26em 0-.09em, .2em -.06em 0-.06em, -.3em -.53em 0 .05em, .05em .1em 0-.03em, -.03em -.25em 0-.06em, .19em -.33em 0 .05em": 1, - "inset 0 0 0 1px #00f": 1, - "0-4px 16px rgba(0, 0, 0, .08)": 1, - "inset .25rem 0 0 0#00f": 1, - "0 4px 0-2px rgba(10, 10, 10, .25)": 2 - }, - "uniquenessRatio": 0.47368421052631576 - }, - "borderRadiuses": { - "total": 115, - "totalUnique": 29, - "unique": { - "0": 12, - "50%": 30, - "11px": 1, - "1.5rem": 5, - ".75rem": 4, - ".25rem": 11, - "4rem": 1, - "100%": 5, - ".05em": 1, - "2px": 1, - ".5em": 1, - "4px 0 0 4px": 6, - "0 4px 4px 0": 7, - ".25em": 4, - "1em": 2, - "8px": 1, - ".3333333333em": 1, - ".3333333333em 0 0 .3333333333em": 1, - "0 .3333333333em .3333333333em 0": 1, - "0 .2222222222em .2222222222em 0": 1, - ".25em 0 0 .25em": 2, - "0 .25em .25em 0": 2, - "0 5px 5px 0": 1, - "0 0 .25em .25em": 1, - ".5rem": 6, - "0 0 .5em .5em": 1, - "1.375rem 50%": 4, - "1rem": 1, - "0 0 .25rem .25rem": 1 - }, - "uniquenessRatio": 0.25217391304347825, - "itemsPerContext": { - "border-radius": { - "total": 111, - "totalUnique": 28, - "unique": { - "0": 12, - "50%": 30, - "11px": 1, - "1.5rem": 5, - ".75rem": 4, - ".25rem": 11, - "4rem": 1, - "100%": 5, - ".05em": 1, - "2px": 1, - ".5em": 1, - "4px 0 0 4px": 6, - "0 4px 4px 0": 7, - ".25em": 4, - "1em": 2, - "8px": 1, - ".3333333333em": 1, - ".3333333333em 0 0 .3333333333em": 1, - "0 .3333333333em .3333333333em 0": 1, - "0 .2222222222em .2222222222em 0": 1, - ".25em 0 0 .25em": 2, - "0 .25em .25em 0": 2, - "0 5px 5px 0": 1, - "0 0 .25em .25em": 1, - ".5rem": 6, - "0 0 .5em .5em": 1, - "1rem": 1, - "0 0 .25rem .25rem": 1 - }, - "uniquenessRatio": 0.25225225225225223 - }, - "border-top-left-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "1.375rem 50%": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-right-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "1.375rem 50%": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-right-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "1.375rem 50%": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-left-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "1.375rem 50%": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "animations": { - "durations": { - "total": 113, - "totalUnique": 17, - "unique": { - "0": 1, - ".3s": 20, - ".15s": 32, - "0s": 12, - ".5s": 8, - "330ms": 1, - "130ms": 2, - "250ms": 7, - "0ms": 2, - "2s": 1, - "1s": 6, - "1.4s": 1, - ".25s": 10, - "500ms": 2, - ".2s": 3, - "200ms": 2, - "1.5s": 3 - }, - "uniquenessRatio": 0.1504424778761062 - }, - "timingFunctions": { - "total": 87, - "totalUnique": 13, - "unique": { - "ease-out": 10, - "ease-in-out": 27, - "ease-in": 14, - "cubic-bezier(0, 0, .3, 1)": 2, - "cubic-bezier(0, 0, .2, 1)": 3, - "cubic-bezier(.4, 0, .6, 1)": 4, - "cubic-bezier(0, 1, 0, 1)": 5, - "cubic-bezier(1, 0, 1, 0)": 5, - "linear": 4, - "steps(8)": 1, - "cubic-bezier(.175, .885, .32, 1.275)": 2, - "cubic-bezier(.215, .61, .355, 1)": 2, - "ease": 8 - }, - "uniquenessRatio": 0.14942528735632185 - } - }, - "prefixes": { - "total": 11, - "totalUnique": 5, - "unique": { - "-webkit-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "-moz-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "-o-radial-gradient(0 100%, circle farthest-corner, rgba(255, 255, 255, .8) 40%, #e5f8e9 0)": 1, - "-webkit-box": 4, - "-moz-fit-content": 4 - }, - "uniquenessRatio": 0.45454545454545453 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 3602, - "totalUnique": 9, - "unique": { - "deg": 19, - "px": 608, - "em": 591, - "rem": 2239, - "vh": 5, - "s": 110, - "ms": 16, - "fr": 13, - "vw": 1 - }, - "uniquenessRatio": 0.002498611882287618, - "itemsPerContext": { - "transform": { - "total": 27, - "totalUnique": 3, - "unique": { - "deg": 18, - "px": 2, - "rem": 7 - }, - "uniquenessRatio": 0.1111111111111111 - }, - "box-shadow": { - "total": 170, - "totalUnique": 3, - "unique": { - "em": 91, - "rem": 25, - "px": 54 - }, - "uniquenessRatio": 0.01764705882352941 - }, - "background-position": { - "total": 18, - "totalUnique": 2, - "unique": { - "px": 13, - "rem": 5 - }, - "uniquenessRatio": 0.1111111111111111 - }, - "font-size": { - "total": 279, - "totalUnique": 3, - "unique": { - "em": 89, - "rem": 174, - "px": 16 - }, - "uniquenessRatio": 0.010752688172043012 - }, - "bottom": { - "total": 32, - "totalUnique": 3, - "unique": { - "em": 3, - "px": 12, - "rem": 17 - }, - "uniquenessRatio": 0.09375 - }, - "top": { - "total": 43, - "totalUnique": 3, - "unique": { - "em": 14, - "px": 17, - "rem": 12 - }, - "uniquenessRatio": 0.06976744186046512 - }, - "outline": { - "total": 18, - "totalUnique": 1, - "unique": { - "px": 18 - }, - "uniquenessRatio": 0.05555555555555555 - }, - "outline-offset": { - "total": 17, - "totalUnique": 1, - "unique": { - "px": 17 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "margin": { - "total": 165, - "totalUnique": 3, - "unique": { - "rem": 142, - "px": 13, - "em": 10 - }, - "uniquenessRatio": 0.01818181818181818 - }, - "padding": { - "total": 340, - "totalUnique": 3, - "unique": { - "rem": 283, - "em": 24, - "px": 33 - }, - "uniquenessRatio": 0.008823529411764706 - }, - "margin-right": { - "total": 163, - "totalUnique": 3, - "unique": { - "rem": 140, - "px": 11, - "em": 12 - }, - "uniquenessRatio": 0.018404907975460124 - }, - "margin-bottom": { - "total": 206, - "totalUnique": 2, - "unique": { - "rem": 202, - "em": 4 - }, - "uniquenessRatio": 0.009708737864077669 - }, - "right": { - "total": 45, - "totalUnique": 3, - "unique": { - "rem": 13, - "em": 25, - "px": 7 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "max-height": { - "total": 41, - "totalUnique": 4, - "unique": { - "vh": 5, - "px": 17, - "rem": 10, - "em": 9 - }, - "uniquenessRatio": 0.0975609756097561 - }, - "padding-top": { - "total": 120, - "totalUnique": 3, - "unique": { - "rem": 108, - "px": 7, - "em": 5 - }, - "uniquenessRatio": 0.025 - }, - "padding-right": { - "total": 147, - "totalUnique": 3, - "unique": { - "rem": 137, - "em": 8, - "px": 2 - }, - "uniquenessRatio": 0.02040816326530612 - }, - "padding-bottom": { - "total": 119, - "totalUnique": 2, - "unique": { - "rem": 113, - "px": 6 - }, - "uniquenessRatio": 0.01680672268907563 - }, - "padding-left": { - "total": 207, - "totalUnique": 3, - "unique": { - "rem": 187, - "em": 19, - "px": 1 - }, - "uniquenessRatio": 0.014492753623188406 - }, - "border-top": { - "total": 30, - "totalUnique": 1, - "unique": { - "px": 30 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "width": { - "total": 217, - "totalUnique": 4, - "unique": { - "rem": 106, - "em": 79, - "px": 31, - "vw": 1 - }, - "uniquenessRatio": 0.018433179723502304 - }, - "height": { - "total": 202, - "totalUnique": 3, - "unique": { - "rem": 100, - "px": 36, - "em": 66 - }, - "uniquenessRatio": 0.01485148514851485 - }, - "background-size": { - "total": 42, - "totalUnique": 2, - "unique": { - "rem": 21, - "em": 21 - }, - "uniquenessRatio": 0.047619047619047616 - }, - "flex": { - "total": 7, - "totalUnique": 2, - "unique": { - "rem": 5, - "em": 2 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "margin-left": { - "total": 172, - "totalUnique": 3, - "unique": { - "rem": 156, - "em": 12, - "px": 4 - }, - "uniquenessRatio": 0.01744186046511628 - }, - "transition": { - "total": 89, - "totalUnique": 2, - "unique": { - "s": 80, - "ms": 9 - }, - "uniquenessRatio": 0.02247191011235955 - }, - "left": { - "total": 31, - "totalUnique": 3, - "unique": { - "em": 11, - "rem": 15, - "px": 5 - }, - "uniquenessRatio": 0.0967741935483871 - }, - "min-width": { - "total": 36, - "totalUnique": 3, - "unique": { - "px": 3, - "rem": 27, - "em": 6 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "line-height": { - "total": 32, - "totalUnique": 3, - "unique": { - "px": 7, - "rem": 16, - "em": 9 - }, - "uniquenessRatio": 0.09375 - }, - "border-radius": { - "total": 88, - "totalUnique": 3, - "unique": { - "px": 31, - "rem": 30, - "em": 27 - }, - "uniquenessRatio": 0.03409090909090909 - }, - "border": { - "total": 52, - "totalUnique": 1, - "unique": { - "px": 52 - }, - "uniquenessRatio": 0.019230769230769232 - }, - "border-bottom": { - "total": 63, - "totalUnique": 1, - "unique": { - "px": 63 - }, - "uniquenessRatio": 0.015873015873015872 - }, - "max-width": { - "total": 68, - "totalUnique": 3, - "unique": { - "rem": 45, - "px": 5, - "em": 18 - }, - "uniquenessRatio": 0.04411764705882353 - }, - "margin-top": { - "total": 122, - "totalUnique": 3, - "unique": { - "rem": 109, - "px": 6, - "em": 7 - }, - "uniquenessRatio": 0.02459016393442623 - }, - "text-indent": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "em": 1 - }, - "uniquenessRatio": 1 - }, - "border-left": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "min-height": { - "total": 39, - "totalUnique": 3, - "unique": { - "rem": 22, - "px": 9, - "em": 8 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "transition-delay": { - "total": 13, - "totalUnique": 1, - "unique": { - "s": 13 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "border-width": { - "total": 50, - "totalUnique": 2, - "unique": { - "px": 45, - "em": 5 - }, - "uniquenessRatio": 0.04 - }, - "vertical-align": { - "total": 10, - "totalUnique": 3, - "unique": { - "rem": 4, - "em": 3, - "px": 3 - }, - "uniquenessRatio": 0.3 - }, - "border-right": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "animation": { - "total": 15, - "totalUnique": 1, - "unique": { - "s": 15 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "clip": { - "total": 8, - "totalUnique": 1, - "unique": { - "px": 8 - }, - "uniquenessRatio": 0.125 - }, - "grid-template-columns": { - "total": 11, - "totalUnique": 1, - "unique": { - "fr": 11 - }, - "uniquenessRatio": 0.09090909090909091 - }, - "filter": { - "total": 2, - "totalUnique": 1, - "unique": { - "em": 2 - }, - "uniquenessRatio": 0.5 - }, - "transition-duration": { - "total": 6, - "totalUnique": 1, - "unique": { - "ms": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "animation-duration": { - "total": 3, - "totalUnique": 2, - "unique": { - "ms": 1, - "s": 2 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "letter-spacing": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "gap": { - "total": 4, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 3 - }, - "uniquenessRatio": 0.5 - }, - "border-bottom-width": { - "total": 9, - "totalUnique": 1, - "unique": { - "px": 9 - }, - "uniquenessRatio": 0.1111111111111111 - }, - "background-image": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-left-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-right-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-right-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-left-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "grid-template-rows": { - "total": 2, - "totalUnique": 1, - "unique": { - "fr": 2 - }, - "uniquenessRatio": 0.5 - }, - "grid-row-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0010535389330524, - "mode": 1, - "range": 1, - "sum": 10452 - }, - "keywords": { - "total": 930, - "totalUnique": 5, - "unique": { - "none": 574, - "inherit": 89, - "auto": 231, - "initial": 33, - "unset": 3 - }, - "uniquenessRatio": 0.005376344086021506 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/bootstrap-5.3.2.css b/src/__fixtures__/bootstrap-5.3.2.css deleted file mode 100644 index 26a43852..00000000 --- a/src/__fixtures__/bootstrap-5.3.2.css +++ /dev/null @@ -1,13899 +0,0 @@ -@charset "UTF-8"; - -/*! - * Bootstrap v5.3.2 (https://getbootstrap.com/) - * Copyright 2011-2023 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ - -:root, -[data-bs-theme=light] { - --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-black: #000; - --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-primary-text-emphasis: #052c65; - --bs-secondary-text-emphasis: #2b2f32; - --bs-success-text-emphasis: #0a3622; - --bs-info-text-emphasis: #055160; - --bs-warning-text-emphasis: #664d03; - --bs-danger-text-emphasis: #58151c; - --bs-light-text-emphasis: #495057; - --bs-dark-text-emphasis: #495057; - --bs-primary-bg-subtle: #cfe2ff; - --bs-secondary-bg-subtle: #e2e3e5; - --bs-success-bg-subtle: #d1e7dd; - --bs-info-bg-subtle: #cff4fc; - --bs-warning-bg-subtle: #fff3cd; - --bs-danger-bg-subtle: #f8d7da; - --bs-light-bg-subtle: #fcfcfd; - --bs-dark-bg-subtle: #ced4da; - --bs-primary-border-subtle: #9ec5fe; - --bs-secondary-border-subtle: #c4c8cb; - --bs-success-border-subtle: #a3cfbb; - --bs-info-border-subtle: #9eeaf9; - --bs-warning-border-subtle: #ffe69c; - --bs-danger-border-subtle: #f1aeb5; - --bs-light-border-subtle: #e9ecef; - --bs-dark-border-subtle: #adb5bd; - --bs-white-rgb: 255, 255, 255; - --bs-black-rgb: 0, 0, 0; - --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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-color-rgb: 33, 37, 41; - --bs-body-bg: #fff; - --bs-body-bg-rgb: 255, 255, 255; - --bs-emphasis-color: #000; - --bs-emphasis-color-rgb: 0, 0, 0; - --bs-secondary-color: rgba(33, 37, 41, 0.75); - --bs-secondary-color-rgb: 33, 37, 41; - --bs-secondary-bg: #e9ecef; - --bs-secondary-bg-rgb: 233, 236, 239; - --bs-tertiary-color: rgba(33, 37, 41, 0.5); - --bs-tertiary-color-rgb: 33, 37, 41; - --bs-tertiary-bg: #f8f9fa; - --bs-tertiary-bg-rgb: 248, 249, 250; - --bs-heading-color: inherit; - --bs-link-color: #0d6efd; - --bs-link-color-rgb: 13, 110, 253; - --bs-link-decoration: underline; - --bs-link-hover-color: #0a58ca; - --bs-link-hover-color-rgb: 10, 88, 202; - --bs-code-color: #d63384; - --bs-highlight-color: #212529; - --bs-highlight-bg: #fff3cd; - --bs-border-width: 1px; - --bs-border-style: solid; - --bs-border-color: #dee2e6; - --bs-border-color-translucent: rgba(0, 0, 0, 0.175); - --bs-border-radius: 0.375rem; - --bs-border-radius-sm: 0.25rem; - --bs-border-radius-lg: 0.5rem; - --bs-border-radius-xl: 1rem; - --bs-border-radius-xxl: 2rem; - --bs-border-radius-2xl: var(--bs-border-radius-xxl); - --bs-border-radius-pill: 50rem; - --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); - --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); - --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175); - --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075); - --bs-focus-ring-width: 0.25rem; - --bs-focus-ring-opacity: 0.25; - --bs-focus-ring-color: rgba(13, 110, 253, 0.25); - --bs-form-valid-color: #198754; - --bs-form-valid-border-color: #198754; - --bs-form-invalid-color: #dc3545; - --bs-form-invalid-border-color: #dc3545; -} - -[data-bs-theme=dark] { - color-scheme: dark; - --bs-body-color: #dee2e6; - --bs-body-color-rgb: 222, 226, 230; - --bs-body-bg: #212529; - --bs-body-bg-rgb: 33, 37, 41; - --bs-emphasis-color: #fff; - --bs-emphasis-color-rgb: 255, 255, 255; - --bs-secondary-color: rgba(222, 226, 230, 0.75); - --bs-secondary-color-rgb: 222, 226, 230; - --bs-secondary-bg: #343a40; - --bs-secondary-bg-rgb: 52, 58, 64; - --bs-tertiary-color: rgba(222, 226, 230, 0.5); - --bs-tertiary-color-rgb: 222, 226, 230; - --bs-tertiary-bg: #2b3035; - --bs-tertiary-bg-rgb: 43, 48, 53; - --bs-primary-text-emphasis: #6ea8fe; - --bs-secondary-text-emphasis: #a7acb1; - --bs-success-text-emphasis: #75b798; - --bs-info-text-emphasis: #6edff6; - --bs-warning-text-emphasis: #ffda6a; - --bs-danger-text-emphasis: #ea868f; - --bs-light-text-emphasis: #f8f9fa; - --bs-dark-text-emphasis: #dee2e6; - --bs-primary-bg-subtle: #031633; - --bs-secondary-bg-subtle: #161719; - --bs-success-bg-subtle: #051b11; - --bs-info-bg-subtle: #032830; - --bs-warning-bg-subtle: #332701; - --bs-danger-bg-subtle: #2c0b0e; - --bs-light-bg-subtle: #343a40; - --bs-dark-bg-subtle: #1a1d20; - --bs-primary-border-subtle: #084298; - --bs-secondary-border-subtle: #41464b; - --bs-success-border-subtle: #0f5132; - --bs-info-border-subtle: #087990; - --bs-warning-border-subtle: #997404; - --bs-danger-border-subtle: #842029; - --bs-light-border-subtle: #495057; - --bs-dark-border-subtle: #343a40; - --bs-heading-color: inherit; - --bs-link-color: #6ea8fe; - --bs-link-hover-color: #8bb9fe; - --bs-link-color-rgb: 110, 168, 254; - --bs-link-hover-color-rgb: 139, 185, 254; - --bs-code-color: #e685b5; - --bs-highlight-color: #dee2e6; - --bs-highlight-bg: #664d03; - --bs-border-color: #495057; - --bs-border-color-translucent: rgba(255, 255, 255, 0.15); - --bs-form-valid-color: #75b798; - --bs-form-valid-border-color: #75b798; - --bs-form-invalid-color: #ea868f; - --bs-form-invalid-border-color: #ea868f; -} - -*, -*::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; - border: 0; - border-top: var(--bs-border-width) solid; - opacity: 0.25; -} - -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; - color: var(--bs-heading-color); -} - -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] { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - -webkit-text-decoration-skip-ink: none; - 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.1875em; - color: var(--bs-highlight-color); - background-color: var(--bs-highlight-bg); -} - -sub, -sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -a { - color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); - text-decoration: underline; -} - -a:hover { - --bs-link-color-rgb: var(--bs-link-hover-color-rgb); -} - -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; -} - -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: var(--bs-code-color); - word-wrap: break-word; -} - -a>code { - color: inherit; -} - -kbd { - padding: 0.1875rem 0.375rem; - font-size: 0.875em; - color: var(--bs-body-bg); - background-color: var(--bs-body-color); - border-radius: 0.25rem; -} - -kbd kbd { - padding: 0; - font-size: 1em; -} - -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: var(--bs-secondary-color); - 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]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-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] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-color-swatch-wrapper { - padding: 0; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -::file-selector-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; -} - -.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: var(--bs-body-bg); - border: var(--bs-border-width) solid var(--bs-border-color); - border-radius: var(--bs-border-radius); - 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: var(--bs-secondary-color); -} - -.container, -.container-fluid, -.container-xxl, -.container-xl, -.container-lg, -.container-md, -.container-sm { - --bs-gutter-x: 1.5rem; - --bs-gutter-y: 0; - width: 100%; - padding-right: calc(var(--bs-gutter-x) * 0.5); - padding-left: calc(var(--bs-gutter-x) * 0.5); - 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; - } -} - -:root { - --bs-breakpoint-xs: 0; - --bs-breakpoint-sm: 576px; - --bs-breakpoint-md: 768px; - --bs-breakpoint-lg: 992px; - --bs-breakpoint-xl: 1200px; - --bs-breakpoint-xxl: 1400px; -} - -.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.33333333%; -} - -.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.66666667%; -} - -.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.33333333%; - } - - .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.66666667%; - } - - .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.33333333%; - } - - .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.66666667%; - } - - .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.33333333%; - } - - .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.66666667%; - } - - .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.33333333%; - } - - .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.66666667%; - } - - .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.33333333%; - } - - .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.66666667%; - } - - .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-color-type: initial; - --bs-table-bg-type: initial; - --bs-table-color-state: initial; - --bs-table-bg-state: initial; - --bs-table-color: var(--bs-emphasis-color); - --bs-table-bg: var(--bs-body-bg); - --bs-table-border-color: var(--bs-border-color); - --bs-table-accent-bg: transparent; - --bs-table-striped-color: var(--bs-emphasis-color); - --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05); - --bs-table-active-color: var(--bs-emphasis-color); - --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1); - --bs-table-hover-color: var(--bs-emphasis-color); - --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075); - width: 100%; - margin-bottom: 1rem; - vertical-align: top; - border-color: var(--bs-table-border-color); -} - -.table> :not(caption)>*>* { - padding: 0.5rem 0.5rem; - color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color))); - background-color: var(--bs-table-bg); - border-bottom-width: var(--bs-border-width); - box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg))); -} - -.table>tbody { - vertical-align: inherit; -} - -.table>thead { - vertical-align: bottom; -} - -.table-group-divider { - border-top: calc(var(--bs-border-width) * 2) solid currentcolor; -} - -.caption-top { - caption-side: top; -} - -.table-sm> :not(caption)>*>* { - padding: 0.25rem 0.25rem; -} - -.table-bordered> :not(caption)>* { - border-width: var(--bs-border-width) 0; -} - -.table-bordered> :not(caption)>*>* { - border-width: 0 var(--bs-border-width); -} - -.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-color-type: var(--bs-table-striped-color); - --bs-table-bg-type: var(--bs-table-striped-bg); -} - -.table-striped-columns> :not(caption)>tr> :nth-child(even) { - --bs-table-color-type: var(--bs-table-striped-color); - --bs-table-bg-type: var(--bs-table-striped-bg); -} - -.table-active { - --bs-table-color-state: var(--bs-table-active-color); - --bs-table-bg-state: var(--bs-table-active-bg); -} - -.table-hover>tbody>tr:hover>* { - --bs-table-color-state: var(--bs-table-hover-color); - --bs-table-bg-state: var(--bs-table-hover-bg); -} - -.table-primary { - --bs-table-color: #000; - --bs-table-bg: #cfe2ff; - --bs-table-border-color: #a6b5cc; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-secondary { - --bs-table-color: #000; - --bs-table-bg: #e2e3e5; - --bs-table-border-color: #b5b6b7; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-success { - --bs-table-color: #000; - --bs-table-bg: #d1e7dd; - --bs-table-border-color: #a7b9b1; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-info { - --bs-table-color: #000; - --bs-table-bg: #cff4fc; - --bs-table-border-color: #a6c3ca; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-warning { - --bs-table-color: #000; - --bs-table-bg: #fff3cd; - --bs-table-border-color: #ccc2a4; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-danger { - --bs-table-color: #000; - --bs-table-bg: #f8d7da; - --bs-table-border-color: #c6acae; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-light { - --bs-table-color: #000; - --bs-table-bg: #f8f9fa; - --bs-table-border-color: #c6c7c8; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.table-dark { - --bs-table-color: #fff; - --bs-table-bg: #212529; - --bs-table-border-color: #4d5154; - --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: var(--bs-table-color); - border-color: var(--bs-table-border-color); -} - -.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 + var(--bs-border-width)); - padding-bottom: calc(0.375rem + var(--bs-border-width)); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + var(--bs-border-width)); - padding-bottom: calc(0.5rem + var(--bs-border-width)); - font-size: 1.25rem; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + var(--bs-border-width)); - padding-bottom: calc(0.25rem + var(--bs-border-width)); - font-size: 0.875rem; -} - -.form-text { - margin-top: 0.25rem; - font-size: 0.875em; - color: var(--bs-secondary-color); -} - -.form-control { - display: block; - width: 100%; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: var(--bs-body-color); - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: var(--bs-body-bg); - background-clip: padding-box; - border: var(--bs-border-width) solid var(--bs-border-color); - border-radius: var(--bs-border-radius); - 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: var(--bs-body-color); - background-color: var(--bs-body-bg); - 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 { - min-width: 85px; - height: 1.5em; - margin: 0; -} - -.form-control::-webkit-datetime-edit { - display: block; - padding: 0; -} - -.form-control::-moz-placeholder { - color: var(--bs-secondary-color); - opacity: 1; -} - -.form-control::placeholder { - color: var(--bs-secondary-color); - opacity: 1; -} - -.form-control:disabled { - background-color: var(--bs-secondary-bg); - opacity: 1; -} - -.form-control::-webkit-file-upload-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - -webkit-margin-end: 0.75rem; - margin-inline-end: 0.75rem; - color: var(--bs-body-color); - background-color: var(--bs-tertiary-bg); - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: var(--bs-border-width); - border-radius: 0; - -webkit-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; - 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; -} - -.form-control::file-selector-button { - padding: 0.375rem 0.75rem; - margin: -0.375rem -0.75rem; - -webkit-margin-end: 0.75rem; - margin-inline-end: 0.75rem; - color: var(--bs-body-color); - background-color: var(--bs-tertiary-bg); - pointer-events: none; - border-color: inherit; - border-style: solid; - border-width: 0; - border-inline-end-width: var(--bs-border-width); - 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 { - -webkit-transition: none; - transition: none; - } - - .form-control::file-selector-button { - transition: none; - } -} - -.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { - background-color: var(--bs-secondary-bg); -} - -.form-control:hover:not(:disabled):not([readonly])::file-selector-button { - background-color: var(--bs-secondary-bg); -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - line-height: 1.5; - color: var(--bs-body-color); - background-color: transparent; - border: solid transparent; - border-width: var(--bs-border-width) 0; -} - -.form-control-plaintext:focus { - outline: 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 + calc(var(--bs-border-width) * 2)); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - border-radius: var(--bs-border-radius-sm); -} - -.form-control-sm::-webkit-file-upload-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - -webkit-margin-end: 0.5rem; - margin-inline-end: 0.5rem; -} - -.form-control-sm::file-selector-button { - padding: 0.25rem 0.5rem; - margin: -0.25rem -0.5rem; - -webkit-margin-end: 0.5rem; - margin-inline-end: 0.5rem; -} - -.form-control-lg { - min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); - padding: 0.5rem 1rem; - font-size: 1.25rem; - border-radius: var(--bs-border-radius-lg); -} - -.form-control-lg::-webkit-file-upload-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - -webkit-margin-end: 1rem; - margin-inline-end: 1rem; -} - -.form-control-lg::file-selector-button { - padding: 0.5rem 1rem; - margin: -0.5rem -1rem; - -webkit-margin-end: 1rem; - margin-inline-end: 1rem; -} - -textarea.form-control { - min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2)); -} - -textarea.form-control-sm { - min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); -} - -textarea.form-control-lg { - min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); -} - -.form-control-color { - width: 3rem; - height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2)); - padding: 0.375rem; -} - -.form-control-color:not(:disabled):not([readonly]) { - cursor: pointer; -} - -.form-control-color::-moz-color-swatch { - border: 0; - border-radius: var(--bs-border-radius); -} - -.form-control-color::-webkit-color-swatch { - border: 0; - border-radius: var(--bs-border-radius); -} - -.form-control-color.form-control-sm { - height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); -} - -.form-control-color.form-control-lg { - height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); -} - -.form-select { - --bs-form-select-bg-img: 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 5 6 6 6-6'/%3e%3c/svg%3e"); - display: block; - width: 100%; - padding: 0.375rem 2.25rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: var(--bs-body-color); - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: var(--bs-body-bg); - background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none); - background-repeat: no-repeat; - background-position: right 0.75rem center; - background-size: 16px 12px; - border: var(--bs-border-width) solid var(--bs-border-color); - border-radius: var(--bs-border-radius); - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} - -@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: var(--bs-secondary-bg); -} - -.form-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 var(--bs-body-color); -} - -.form-select-sm { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; - border-radius: var(--bs-border-radius-sm); -} - -.form-select-lg { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; - border-radius: var(--bs-border-radius-lg); -} - -[data-bs-theme=dark] .form-select { - --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); -} - -.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-reverse { - padding-right: 1.5em; - padding-left: 0; - text-align: right; -} - -.form-check-reverse .form-check-input { - float: right; - margin-right: -1.5em; - margin-left: 0; -} - -.form-check-input { - --bs-form-check-bg: var(--bs-body-bg); - flex-shrink: 0; - width: 1em; - height: 1em; - margin-top: 0.25em; - vertical-align: top; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: var(--bs-form-check-bg); - background-image: var(--bs-form-check-bg-image); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - border: var(--bs-border-width) solid var(--bs-border-color); - -webkit-print-color-adjust: exact; - color-adjust: exact; - print-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] { - --bs-form-check-bg-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 10 3 3 6-6'/%3e%3c/svg%3e"); -} - -.form-check-input:checked[type=radio] { - --bs-form-check-bg-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; - --bs-form-check-bg-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 { - cursor: default; - opacity: 0.5; -} - -.form-switch { - padding-left: 2.5em; -} - -.form-switch .form-check-input { - --bs-form-switch-bg: 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"); - width: 2em; - margin-left: -2.5em; - background-image: var(--bs-form-switch-bg); - 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 { - --bs-form-switch-bg: 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; - --bs-form-switch-bg: 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-switch.form-check-reverse { - padding-right: 2.5em; - padding-left: 0; -} - -.form-switch.form-check-reverse .form-check-input { - margin-right: -2.5em; - margin-left: 0; -} - -.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; -} - -[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) { - --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e"); -} - -.form-range { - width: 100%; - height: 1.5rem; - padding: 0; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: transparent; -} - -.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; - -webkit-appearance: none; - appearance: none; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - 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) { - .form-range::-webkit-slider-thumb { - -webkit-transition: none; - 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: var(--bs-secondary-bg); - border-color: transparent; - border-radius: 1rem; -} - -.form-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - -moz-appearance: none; - appearance: none; - background-color: #0d6efd; - border: 0; - border-radius: 1rem; - -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - 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) { - .form-range::-moz-range-thumb { - -moz-transition: none; - 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: var(--bs-secondary-bg); - border-color: transparent; - border-radius: 1rem; -} - -.form-range:disabled { - pointer-events: none; -} - -.form-range:disabled::-webkit-slider-thumb { - background-color: var(--bs-secondary-color); -} - -.form-range:disabled::-moz-range-thumb { - background-color: var(--bs-secondary-color); -} - -.form-floating { - position: relative; -} - -.form-floating>.form-control, -.form-floating>.form-control-plaintext, -.form-floating>.form-select { - height: calc(3.5rem + calc(var(--bs-border-width) * 2)); - min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)); - line-height: 1.25; -} - -.form-floating>label { - position: absolute; - top: 0; - left: 0; - z-index: 2; - height: 100%; - padding: 1rem 0.75rem; - overflow: hidden; - text-align: start; - text-overflow: ellipsis; - white-space: nowrap; - pointer-events: none; - border: var(--bs-border-width) 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, -.form-floating>.form-control-plaintext { - padding: 1rem 0.75rem; -} - -.form-floating>.form-control::-moz-placeholder, -.form-floating>.form-control-plaintext::-moz-placeholder { - color: transparent; -} - -.form-floating>.form-control::placeholder, -.form-floating>.form-control-plaintext::placeholder { - color: transparent; -} - -.form-floating>.form-control:not(:-moz-placeholder-shown), -.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; -} - -.form-floating>.form-control:focus, -.form-floating>.form-control:not(:placeholder-shown), -.form-floating>.form-control-plaintext:focus, -.form-floating>.form-control-plaintext:not(:placeholder-shown) { - padding-top: 1.625rem; - padding-bottom: 0.625rem; -} - -.form-floating>.form-control:-webkit-autofill, -.form-floating>.form-control-plaintext:-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:not(:-moz-placeholder-shown)~label { - color: rgba(var(--bs-body-color-rgb), 0.65); - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); -} - -.form-floating>.form-control:focus~label, -.form-floating>.form-control:not(:placeholder-shown)~label, -.form-floating>.form-control-plaintext~label, -.form-floating>.form-select~label { - color: rgba(var(--bs-body-color-rgb), 0.65); - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); -} - -.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after { - position: absolute; - inset: 1rem 0.375rem; - z-index: -1; - height: 1.5em; - content: ""; - background-color: var(--bs-body-bg); - border-radius: var(--bs-border-radius); -} - -.form-floating>.form-control:focus~label::after, -.form-floating>.form-control:not(:placeholder-shown)~label::after, -.form-floating>.form-control-plaintext~label::after, -.form-floating>.form-select~label::after { - position: absolute; - inset: 1rem 0.375rem; - z-index: -1; - height: 1.5em; - content: ""; - background-color: var(--bs-body-bg); - border-radius: var(--bs-border-radius); -} - -.form-floating>.form-control:-webkit-autofill~label { - color: rgba(var(--bs-body-color-rgb), 0.65); - transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); -} - -.form-floating>.form-control-plaintext~label { - border-width: var(--bs-border-width) 0; -} - -.form-floating> :disabled~label, -.form-floating>.form-control:disabled~label { - color: #6c757d; -} - -.form-floating> :disabled~label::after, -.form-floating>.form-control:disabled~label::after { - background-color: var(--bs-secondary-bg); -} - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; -} - -.input-group>.form-control, -.input-group>.form-select, -.input-group>.form-floating { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; -} - -.input-group>.form-control:focus, -.input-group>.form-select:focus, -.input-group>.form-floating:focus-within { - z-index: 5; -} - -.input-group .btn { - position: relative; - z-index: 2; -} - -.input-group .btn:focus { - z-index: 5; -} - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: var(--bs-body-color); - text-align: center; - white-space: nowrap; - background-color: var(--bs-tertiary-bg); - border: var(--bs-border-width) solid var(--bs-border-color); - border-radius: var(--bs-border-radius); -} - -.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: var(--bs-border-radius-lg); -} - -.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: var(--bs-border-radius-sm); -} - -.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):not(.form-floating), -.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(1n + 3), -.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, -.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group.has-validation> :nth-last-child(1n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), -.input-group.has-validation>.dropdown-toggle:nth-last-child(1n + 4), -.input-group.has-validation>.form-floating:nth-last-child(1n + 3)>.form-control, -.input-group.has-validation>.form-floating:nth-last-child(1n + 3)>.form-select { - 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: calc(var(--bs-border-width) * -1); - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group>.form-floating:not(:first-child)>.form-control, -.input-group>.form-floating:not(:first-child)>.form-select { - 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: var(--bs-form-valid-color); -} - -.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: var(--bs-success); - border-radius: var(--bs-border-radius); -} - -.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: var(--bs-form-valid-border-color); - 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.73.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: var(--bs-form-valid-border-color); - box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 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: var(--bs-form-valid-border-color); -} - -.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"] { - --bs-form-select-bg-icon: 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.73.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"); - padding-right: 4.125rem; - 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: var(--bs-form-valid-border-color); - box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25); -} - -.was-validated .form-control-color:valid, -.form-control-color.is-valid { - width: calc(3rem + calc(1.5em + 0.75rem)); -} - -.was-validated .form-check-input:valid, -.form-check-input.is-valid { - border-color: var(--bs-form-valid-border-color); -} - -.was-validated .form-check-input:valid:checked, -.form-check-input.is-valid:checked { - background-color: var(--bs-form-valid-color); -} - -.was-validated .form-check-input:valid:focus, -.form-check-input.is-valid:focus { - box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25); -} - -.was-validated .form-check-input:valid~.form-check-label, -.form-check-input.is-valid~.form-check-label { - color: var(--bs-form-valid-color); -} - -.form-check-inline .form-check-input~.valid-feedback { - margin-left: 0.5em; -} - -.was-validated .input-group>.form-control:not(:focus):valid, -.input-group>.form-control:not(:focus).is-valid, -.was-validated .input-group>.form-select:not(:focus):valid, -.input-group>.form-select:not(:focus).is-valid, -.was-validated .input-group>.form-floating:not(:focus-within):valid, -.input-group>.form-floating:not(:focus-within).is-valid { - z-index: 3; -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 0.875em; - color: var(--bs-form-invalid-color); -} - -.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: var(--bs-danger); - border-radius: var(--bs-border-radius); -} - -.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: var(--bs-form-invalid-border-color); - 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: var(--bs-form-invalid-border-color); - box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 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: var(--bs-form-invalid-border-color); -} - -.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"] { - --bs-form-select-bg-icon: 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"); - padding-right: 4.125rem; - 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: var(--bs-form-invalid-border-color); - box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25); -} - -.was-validated .form-control-color:invalid, -.form-control-color.is-invalid { - width: calc(3rem + calc(1.5em + 0.75rem)); -} - -.was-validated .form-check-input:invalid, -.form-check-input.is-invalid { - border-color: var(--bs-form-invalid-border-color); -} - -.was-validated .form-check-input:invalid:checked, -.form-check-input.is-invalid:checked { - background-color: var(--bs-form-invalid-color); -} - -.was-validated .form-check-input:invalid:focus, -.form-check-input.is-invalid:focus { - box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25); -} - -.was-validated .form-check-input:invalid~.form-check-label, -.form-check-input.is-invalid~.form-check-label { - color: var(--bs-form-invalid-color); -} - -.form-check-inline .form-check-input~.invalid-feedback { - margin-left: 0.5em; -} - -.was-validated .input-group>.form-control:not(:focus):invalid, -.input-group>.form-control:not(:focus).is-invalid, -.was-validated .input-group>.form-select:not(:focus):invalid, -.input-group>.form-select:not(:focus).is-invalid, -.was-validated .input-group>.form-floating:not(:focus-within):invalid, -.input-group>.form-floating:not(:focus-within).is-invalid { - z-index: 4; -} - -.btn { - --bs-btn-padding-x: 0.75rem; - --bs-btn-padding-y: 0.375rem; - --bs-btn-font-family: ; - --bs-btn-font-size: 1rem; - --bs-btn-font-weight: 400; - --bs-btn-line-height: 1.5; - --bs-btn-color: var(--bs-body-color); - --bs-btn-bg: transparent; - --bs-btn-border-width: var(--bs-border-width); - --bs-btn-border-color: transparent; - --bs-btn-border-radius: var(--bs-border-radius); - --bs-btn-hover-border-color: transparent; - --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); - --bs-btn-disabled-opacity: 0.65; - --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5); - display: inline-block; - padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x); - font-family: var(--bs-btn-font-family); - font-size: var(--bs-btn-font-size); - font-weight: var(--bs-btn-font-weight); - line-height: var(--bs-btn-line-height); - color: var(--bs-btn-color); - text-align: center; - text-decoration: none; - vertical-align: middle; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - border: var(--bs-btn-border-width) solid var(--bs-btn-border-color); - border-radius: var(--bs-btn-border-radius); - background-color: var(--bs-btn-bg); - 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: var(--bs-btn-hover-color); - background-color: var(--bs-btn-hover-bg); - border-color: var(--bs-btn-hover-border-color); -} - -.btn-check+.btn:hover { - color: var(--bs-btn-color); - background-color: var(--bs-btn-bg); - border-color: var(--bs-btn-border-color); -} - -.btn:focus-visible { - color: var(--bs-btn-hover-color); - background-color: var(--bs-btn-hover-bg); - border-color: var(--bs-btn-hover-border-color); - outline: 0; - box-shadow: var(--bs-btn-focus-box-shadow); -} - -.btn-check:focus-visible+.btn { - border-color: var(--bs-btn-hover-border-color); - outline: 0; - box-shadow: var(--bs-btn-focus-box-shadow); -} - -.btn-check:checked+.btn, -:not(.btn-check)+.btn:active, -.btn:first-child:active, -.btn.active, -.btn.show { - color: var(--bs-btn-active-color); - background-color: var(--bs-btn-active-bg); - border-color: var(--bs-btn-active-border-color); -} - -.btn-check:checked+.btn:focus-visible, -:not(.btn-check)+.btn:active:focus-visible, -.btn:first-child:active:focus-visible, -.btn.active:focus-visible, -.btn.show:focus-visible { - box-shadow: var(--bs-btn-focus-box-shadow); -} - -.btn:disabled, -.btn.disabled, -fieldset:disabled .btn { - color: var(--bs-btn-disabled-color); - pointer-events: none; - background-color: var(--bs-btn-disabled-bg); - border-color: var(--bs-btn-disabled-border-color); - opacity: var(--bs-btn-disabled-opacity); -} - -.btn-primary { - --bs-btn-color: #fff; - --bs-btn-bg: #0d6efd; - --bs-btn-border-color: #0d6efd; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #0b5ed7; - --bs-btn-hover-border-color: #0a58ca; - --bs-btn-focus-shadow-rgb: 49, 132, 253; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #0a58ca; - --bs-btn-active-border-color: #0a53be; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #fff; - --bs-btn-disabled-bg: #0d6efd; - --bs-btn-disabled-border-color: #0d6efd; -} - -.btn-secondary { - --bs-btn-color: #fff; - --bs-btn-bg: #6c757d; - --bs-btn-border-color: #6c757d; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #5c636a; - --bs-btn-hover-border-color: #565e64; - --bs-btn-focus-shadow-rgb: 130, 138, 145; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #565e64; - --bs-btn-active-border-color: #51585e; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #fff; - --bs-btn-disabled-bg: #6c757d; - --bs-btn-disabled-border-color: #6c757d; -} - -.btn-success { - --bs-btn-color: #fff; - --bs-btn-bg: #198754; - --bs-btn-border-color: #198754; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #157347; - --bs-btn-hover-border-color: #146c43; - --bs-btn-focus-shadow-rgb: 60, 153, 110; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #146c43; - --bs-btn-active-border-color: #13653f; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #fff; - --bs-btn-disabled-bg: #198754; - --bs-btn-disabled-border-color: #198754; -} - -.btn-info { - --bs-btn-color: #000; - --bs-btn-bg: #0dcaf0; - --bs-btn-border-color: #0dcaf0; - --bs-btn-hover-color: #000; - --bs-btn-hover-bg: #31d2f2; - --bs-btn-hover-border-color: #25cff2; - --bs-btn-focus-shadow-rgb: 11, 172, 204; - --bs-btn-active-color: #000; - --bs-btn-active-bg: #3dd5f3; - --bs-btn-active-border-color: #25cff2; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #000; - --bs-btn-disabled-bg: #0dcaf0; - --bs-btn-disabled-border-color: #0dcaf0; -} - -.btn-warning { - --bs-btn-color: #000; - --bs-btn-bg: #ffc107; - --bs-btn-border-color: #ffc107; - --bs-btn-hover-color: #000; - --bs-btn-hover-bg: #ffca2c; - --bs-btn-hover-border-color: #ffc720; - --bs-btn-focus-shadow-rgb: 217, 164, 6; - --bs-btn-active-color: #000; - --bs-btn-active-bg: #ffcd39; - --bs-btn-active-border-color: #ffc720; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #000; - --bs-btn-disabled-bg: #ffc107; - --bs-btn-disabled-border-color: #ffc107; -} - -.btn-danger { - --bs-btn-color: #fff; - --bs-btn-bg: #dc3545; - --bs-btn-border-color: #dc3545; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #bb2d3b; - --bs-btn-hover-border-color: #b02a37; - --bs-btn-focus-shadow-rgb: 225, 83, 97; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #b02a37; - --bs-btn-active-border-color: #a52834; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #fff; - --bs-btn-disabled-bg: #dc3545; - --bs-btn-disabled-border-color: #dc3545; -} - -.btn-light { - --bs-btn-color: #000; - --bs-btn-bg: #f8f9fa; - --bs-btn-border-color: #f8f9fa; - --bs-btn-hover-color: #000; - --bs-btn-hover-bg: #d3d4d5; - --bs-btn-hover-border-color: #c6c7c8; - --bs-btn-focus-shadow-rgb: 211, 212, 213; - --bs-btn-active-color: #000; - --bs-btn-active-bg: #c6c7c8; - --bs-btn-active-border-color: #babbbc; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #000; - --bs-btn-disabled-bg: #f8f9fa; - --bs-btn-disabled-border-color: #f8f9fa; -} - -.btn-dark { - --bs-btn-color: #fff; - --bs-btn-bg: #212529; - --bs-btn-border-color: #212529; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #424649; - --bs-btn-hover-border-color: #373b3e; - --bs-btn-focus-shadow-rgb: 66, 70, 73; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #4d5154; - --bs-btn-active-border-color: #373b3e; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #fff; - --bs-btn-disabled-bg: #212529; - --bs-btn-disabled-border-color: #212529; -} - -.btn-outline-primary { - --bs-btn-color: #0d6efd; - --bs-btn-border-color: #0d6efd; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #0d6efd; - --bs-btn-hover-border-color: #0d6efd; - --bs-btn-focus-shadow-rgb: 13, 110, 253; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #0d6efd; - --bs-btn-active-border-color: #0d6efd; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #0d6efd; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #0d6efd; - --bs-gradient: none; -} - -.btn-outline-secondary { - --bs-btn-color: #6c757d; - --bs-btn-border-color: #6c757d; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #6c757d; - --bs-btn-hover-border-color: #6c757d; - --bs-btn-focus-shadow-rgb: 108, 117, 125; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #6c757d; - --bs-btn-active-border-color: #6c757d; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #6c757d; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #6c757d; - --bs-gradient: none; -} - -.btn-outline-success { - --bs-btn-color: #198754; - --bs-btn-border-color: #198754; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #198754; - --bs-btn-hover-border-color: #198754; - --bs-btn-focus-shadow-rgb: 25, 135, 84; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #198754; - --bs-btn-active-border-color: #198754; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #198754; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #198754; - --bs-gradient: none; -} - -.btn-outline-info { - --bs-btn-color: #0dcaf0; - --bs-btn-border-color: #0dcaf0; - --bs-btn-hover-color: #000; - --bs-btn-hover-bg: #0dcaf0; - --bs-btn-hover-border-color: #0dcaf0; - --bs-btn-focus-shadow-rgb: 13, 202, 240; - --bs-btn-active-color: #000; - --bs-btn-active-bg: #0dcaf0; - --bs-btn-active-border-color: #0dcaf0; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #0dcaf0; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #0dcaf0; - --bs-gradient: none; -} - -.btn-outline-warning { - --bs-btn-color: #ffc107; - --bs-btn-border-color: #ffc107; - --bs-btn-hover-color: #000; - --bs-btn-hover-bg: #ffc107; - --bs-btn-hover-border-color: #ffc107; - --bs-btn-focus-shadow-rgb: 255, 193, 7; - --bs-btn-active-color: #000; - --bs-btn-active-bg: #ffc107; - --bs-btn-active-border-color: #ffc107; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #ffc107; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #ffc107; - --bs-gradient: none; -} - -.btn-outline-danger { - --bs-btn-color: #dc3545; - --bs-btn-border-color: #dc3545; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #dc3545; - --bs-btn-hover-border-color: #dc3545; - --bs-btn-focus-shadow-rgb: 220, 53, 69; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #dc3545; - --bs-btn-active-border-color: #dc3545; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #dc3545; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #dc3545; - --bs-gradient: none; -} - -.btn-outline-light { - --bs-btn-color: #f8f9fa; - --bs-btn-border-color: #f8f9fa; - --bs-btn-hover-color: #000; - --bs-btn-hover-bg: #f8f9fa; - --bs-btn-hover-border-color: #f8f9fa; - --bs-btn-focus-shadow-rgb: 248, 249, 250; - --bs-btn-active-color: #000; - --bs-btn-active-bg: #f8f9fa; - --bs-btn-active-border-color: #f8f9fa; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #f8f9fa; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #f8f9fa; - --bs-gradient: none; -} - -.btn-outline-dark { - --bs-btn-color: #212529; - --bs-btn-border-color: #212529; - --bs-btn-hover-color: #fff; - --bs-btn-hover-bg: #212529; - --bs-btn-hover-border-color: #212529; - --bs-btn-focus-shadow-rgb: 33, 37, 41; - --bs-btn-active-color: #fff; - --bs-btn-active-bg: #212529; - --bs-btn-active-border-color: #212529; - --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - --bs-btn-disabled-color: #212529; - --bs-btn-disabled-bg: transparent; - --bs-btn-disabled-border-color: #212529; - --bs-gradient: none; -} - -.btn-link { - --bs-btn-font-weight: 400; - --bs-btn-color: var(--bs-link-color); - --bs-btn-bg: transparent; - --bs-btn-border-color: transparent; - --bs-btn-hover-color: var(--bs-link-hover-color); - --bs-btn-hover-border-color: transparent; - --bs-btn-active-color: var(--bs-link-hover-color); - --bs-btn-active-border-color: transparent; - --bs-btn-disabled-color: #6c757d; - --bs-btn-disabled-border-color: transparent; - --bs-btn-box-shadow: 0 0 0 #000; - --bs-btn-focus-shadow-rgb: 49, 132, 253; - text-decoration: underline; -} - -.btn-link:focus-visible { - color: var(--bs-btn-color); -} - -.btn-link:hover { - color: var(--bs-btn-hover-color); -} - -.btn-lg, -.btn-group-lg>.btn { - --bs-btn-padding-y: 0.5rem; - --bs-btn-padding-x: 1rem; - --bs-btn-font-size: 1.25rem; - --bs-btn-border-radius: var(--bs-border-radius-lg); -} - -.btn-sm, -.btn-group-sm>.btn { - --bs-btn-padding-y: 0.25rem; - --bs-btn-padding-x: 0.5rem; - --bs-btn-font-size: 0.875rem; - --bs-btn-border-radius: var(--bs-border-radius-sm); -} - -.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, -.dropup-center, -.dropdown-center { - 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 { - --bs-dropdown-zindex: 1000; - --bs-dropdown-min-width: 10rem; - --bs-dropdown-padding-x: 0; - --bs-dropdown-padding-y: 0.5rem; - --bs-dropdown-spacer: 0.125rem; - --bs-dropdown-font-size: 1rem; - --bs-dropdown-color: var(--bs-body-color); - --bs-dropdown-bg: var(--bs-body-bg); - --bs-dropdown-border-color: var(--bs-border-color-translucent); - --bs-dropdown-border-radius: var(--bs-border-radius); - --bs-dropdown-border-width: var(--bs-border-width); - --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width)); - --bs-dropdown-divider-bg: var(--bs-border-color-translucent); - --bs-dropdown-divider-margin-y: 0.5rem; - --bs-dropdown-box-shadow: var(--bs-box-shadow); - --bs-dropdown-link-color: var(--bs-body-color); - --bs-dropdown-link-hover-color: var(--bs-body-color); - --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg); - --bs-dropdown-link-active-color: #fff; - --bs-dropdown-link-active-bg: #0d6efd; - --bs-dropdown-link-disabled-color: var(--bs-tertiary-color); - --bs-dropdown-item-padding-x: 1rem; - --bs-dropdown-item-padding-y: 0.25rem; - --bs-dropdown-header-color: #6c757d; - --bs-dropdown-header-padding-x: 1rem; - --bs-dropdown-header-padding-y: 0.5rem; - position: absolute; - z-index: var(--bs-dropdown-zindex); - display: none; - min-width: var(--bs-dropdown-min-width); - padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x); - margin: 0; - font-size: var(--bs-dropdown-font-size); - color: var(--bs-dropdown-color); - text-align: left; - list-style: none; - background-color: var(--bs-dropdown-bg); - background-clip: padding-box; - border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color); - border-radius: var(--bs-dropdown-border-radius); -} - -.dropdown-menu[data-bs-popper] { - top: 100%; - left: 0; - margin-top: var(--bs-dropdown-spacer); -} - -.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: var(--bs-dropdown-spacer); -} - -.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: var(--bs-dropdown-spacer); -} - -.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: var(--bs-dropdown-spacer); -} - -.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: var(--bs-dropdown-divider-margin-y) 0; - overflow: hidden; - border-top: 1px solid var(--bs-dropdown-divider-bg); - opacity: 1; -} - -.dropdown-item { - display: block; - width: 100%; - padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); - clear: both; - font-weight: 400; - color: var(--bs-dropdown-link-color); - text-align: inherit; - text-decoration: none; - white-space: nowrap; - background-color: transparent; - border: 0; - border-radius: var(--bs-dropdown-item-border-radius, 0); -} - -.dropdown-item:hover, -.dropdown-item:focus { - color: var(--bs-dropdown-link-hover-color); - background-color: var(--bs-dropdown-link-hover-bg); -} - -.dropdown-item.active, -.dropdown-item:active { - color: var(--bs-dropdown-link-active-color); - text-decoration: none; - background-color: var(--bs-dropdown-link-active-bg); -} - -.dropdown-item.disabled, -.dropdown-item:disabled { - color: var(--bs-dropdown-link-disabled-color); - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x); - margin-bottom: 0; - font-size: 0.875rem; - color: var(--bs-dropdown-header-color); - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); - color: var(--bs-dropdown-link-color); -} - -.dropdown-menu-dark { - --bs-dropdown-color: #dee2e6; - --bs-dropdown-bg: #343a40; - --bs-dropdown-border-color: var(--bs-border-color-translucent); - --bs-dropdown-box-shadow: ; - --bs-dropdown-link-color: #dee2e6; - --bs-dropdown-link-hover-color: #fff; - --bs-dropdown-divider-bg: var(--bs-border-color-translucent); - --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15); - --bs-dropdown-link-active-color: #fff; - --bs-dropdown-link-active-bg: #0d6efd; - --bs-dropdown-link-disabled-color: #adb5bd; - --bs-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 { - border-radius: var(--bs-border-radius); -} - -.btn-group> :not(.btn-check:first-child)+.btn, -.btn-group>.btn-group:not(:first-child) { - margin-left: calc(var(--bs-border-width) * -1); -} - -.btn-group>.btn:not(:last-child):not(.dropdown-toggle), -.btn-group>.btn.dropdown-toggle-split:first-child, -.btn-group>.btn-group:not(:last-child)>.btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-group>.btn:nth-child(1n + 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: calc(var(--bs-border-width) * -1); -} - -.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 { - --bs-nav-link-padding-x: 1rem; - --bs-nav-link-padding-y: 0.5rem; - --bs-nav-link-font-weight: ; - --bs-nav-link-color: var(--bs-link-color); - --bs-nav-link-hover-color: var(--bs-link-hover-color); - --bs-nav-link-disabled-color: var(--bs-secondary-color); - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x); - font-size: var(--bs-nav-link-font-size); - font-weight: var(--bs-nav-link-font-weight); - color: var(--bs-nav-link-color); - text-decoration: none; - background: none; - border: 0; - 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: var(--bs-nav-link-hover-color); -} - -.nav-link:focus-visible { - outline: 0; - box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); -} - -.nav-link.disabled, -.nav-link:disabled { - color: var(--bs-nav-link-disabled-color); - pointer-events: none; - cursor: default; -} - -.nav-tabs { - --bs-nav-tabs-border-width: var(--bs-border-width); - --bs-nav-tabs-border-color: var(--bs-border-color); - --bs-nav-tabs-border-radius: var(--bs-border-radius); - --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color); - --bs-nav-tabs-link-active-color: var(--bs-emphasis-color); - --bs-nav-tabs-link-active-bg: var(--bs-body-bg); - --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg); - border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color); -} - -.nav-tabs .nav-link { - margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width)); - border: var(--bs-nav-tabs-border-width) solid transparent; - border-top-left-radius: var(--bs-nav-tabs-border-radius); - border-top-right-radius: var(--bs-nav-tabs-border-radius); -} - -.nav-tabs .nav-link:hover, -.nav-tabs .nav-link:focus { - isolation: isolate; - border-color: var(--bs-nav-tabs-link-hover-border-color); -} - -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: var(--bs-nav-tabs-link-active-color); - background-color: var(--bs-nav-tabs-link-active-bg); - border-color: var(--bs-nav-tabs-link-active-border-color); -} - -.nav-tabs .dropdown-menu { - margin-top: calc(-1 * var(--bs-nav-tabs-border-width)); - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills { - --bs-nav-pills-border-radius: var(--bs-border-radius); - --bs-nav-pills-link-active-color: #fff; - --bs-nav-pills-link-active-bg: #0d6efd; -} - -.nav-pills .nav-link { - border-radius: var(--bs-nav-pills-border-radius); -} - -.nav-pills .nav-link.active, -.nav-pills .show>.nav-link { - color: var(--bs-nav-pills-link-active-color); - background-color: var(--bs-nav-pills-link-active-bg); -} - -.nav-underline { - --bs-nav-underline-gap: 1rem; - --bs-nav-underline-border-width: 0.125rem; - --bs-nav-underline-link-active-color: var(--bs-emphasis-color); - gap: var(--bs-nav-underline-gap); -} - -.nav-underline .nav-link { - padding-right: 0; - padding-left: 0; - border-bottom: var(--bs-nav-underline-border-width) solid transparent; -} - -.nav-underline .nav-link:hover, -.nav-underline .nav-link:focus { - border-bottom-color: currentcolor; -} - -.nav-underline .nav-link.active, -.nav-underline .show>.nav-link { - font-weight: 700; - color: var(--bs-nav-underline-link-active-color); - border-bottom-color: currentcolor; -} - -.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 { - --bs-navbar-padding-x: 0; - --bs-navbar-padding-y: 0.5rem; - --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65); - --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8); - --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3); - --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1); - --bs-navbar-brand-padding-y: 0.3125rem; - --bs-navbar-brand-margin-end: 1rem; - --bs-navbar-brand-font-size: 1.25rem; - --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1); - --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1); - --bs-navbar-nav-link-padding-x: 0.5rem; - --bs-navbar-toggler-padding-y: 0.25rem; - --bs-navbar-toggler-padding-x: 0.75rem; - --bs-navbar-toggler-font-size: 1.25rem; - --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); - --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15); - --bs-navbar-toggler-border-radius: var(--bs-border-radius); - --bs-navbar-toggler-focus-width: 0.25rem; - --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out; - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x); -} - -.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: var(--bs-navbar-brand-padding-y); - padding-bottom: var(--bs-navbar-brand-padding-y); - margin-right: var(--bs-navbar-brand-margin-end); - font-size: var(--bs-navbar-brand-font-size); - color: var(--bs-navbar-brand-color); - text-decoration: none; - white-space: nowrap; -} - -.navbar-brand:hover, -.navbar-brand:focus { - color: var(--bs-navbar-brand-hover-color); -} - -.navbar-nav { - --bs-nav-link-padding-x: 0; - --bs-nav-link-padding-y: 0.5rem; - --bs-nav-link-font-weight: ; - --bs-nav-link-color: var(--bs-navbar-color); - --bs-nav-link-hover-color: var(--bs-navbar-hover-color); - --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color); - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.navbar-nav .nav-link.active, -.navbar-nav .nav-link.show { - color: var(--bs-navbar-active-color); -} - -.navbar-nav .dropdown-menu { - position: static; -} - -.navbar-text { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: var(--bs-navbar-color); -} - -.navbar-text a, -.navbar-text a:hover, -.navbar-text a:focus { - color: var(--bs-navbar-active-color); -} - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; -} - -.navbar-toggler { - padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x); - font-size: var(--bs-navbar-toggler-font-size); - line-height: 1; - color: var(--bs-navbar-color); - background-color: transparent; - border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color); - border-radius: var(--bs-navbar-toggler-border-radius); - transition: var(--bs-navbar-toggler-transition); -} - -@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 var(--bs-navbar-toggler-focus-width); -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - background-image: var(--bs-navbar-toggler-icon-bg); - 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: var(--bs-navbar-nav-link-padding-x); - padding-left: var(--bs-navbar-nav-link-padding-x); - } - - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible; - } - - .navbar-expand-sm .navbar-collapse { - display: flex; - flex-basis: auto; - } - - .navbar-expand-sm .navbar-toggler { - display: none; - } - - .navbar-expand-sm .offcanvas { - position: static; - z-index: auto; - flex-grow: 1; - width: auto; - height: auto; - visibility: visible; - background-color: transparent; - border: 0; - transform: none; - transition: none; - } - - .navbar-expand-sm .offcanvas .offcanvas-header { - display: none; - } - - .navbar-expand-sm .offcanvas .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: var(--bs-navbar-nav-link-padding-x); - padding-left: var(--bs-navbar-nav-link-padding-x); - } - - .navbar-expand-md .navbar-nav-scroll { - overflow: visible; - } - - .navbar-expand-md .navbar-collapse { - display: flex; - flex-basis: auto; - } - - .navbar-expand-md .navbar-toggler { - display: none; - } - - .navbar-expand-md .offcanvas { - position: static; - z-index: auto; - flex-grow: 1; - width: auto; - height: auto; - visibility: visible; - background-color: transparent; - border: 0; - transform: none; - transition: none; - } - - .navbar-expand-md .offcanvas .offcanvas-header { - display: none; - } - - .navbar-expand-md .offcanvas .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: var(--bs-navbar-nav-link-padding-x); - padding-left: var(--bs-navbar-nav-link-padding-x); - } - - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible; - } - - .navbar-expand-lg .navbar-collapse { - display: flex; - flex-basis: auto; - } - - .navbar-expand-lg .navbar-toggler { - display: none; - } - - .navbar-expand-lg .offcanvas { - position: static; - z-index: auto; - flex-grow: 1; - width: auto; - height: auto; - visibility: visible; - background-color: transparent; - border: 0; - transform: none; - transition: none; - } - - .navbar-expand-lg .offcanvas .offcanvas-header { - display: none; - } - - .navbar-expand-lg .offcanvas .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: var(--bs-navbar-nav-link-padding-x); - padding-left: var(--bs-navbar-nav-link-padding-x); - } - - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible; - } - - .navbar-expand-xl .navbar-collapse { - display: flex; - flex-basis: auto; - } - - .navbar-expand-xl .navbar-toggler { - display: none; - } - - .navbar-expand-xl .offcanvas { - position: static; - z-index: auto; - flex-grow: 1; - width: auto; - height: auto; - visibility: visible; - background-color: transparent; - border: 0; - transform: none; - transition: none; - } - - .navbar-expand-xl .offcanvas .offcanvas-header { - display: none; - } - - .navbar-expand-xl .offcanvas .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: var(--bs-navbar-nav-link-padding-x); - padding-left: var(--bs-navbar-nav-link-padding-x); - } - - .navbar-expand-xxl .navbar-nav-scroll { - overflow: visible; - } - - .navbar-expand-xxl .navbar-collapse { - display: flex; - flex-basis: auto; - } - - .navbar-expand-xxl .navbar-toggler { - display: none; - } - - .navbar-expand-xxl .offcanvas { - position: static; - z-index: auto; - flex-grow: 1; - width: auto; - height: auto; - visibility: visible; - background-color: transparent; - border: 0; - transform: none; - transition: none; - } - - .navbar-expand-xxl .offcanvas .offcanvas-header { - display: none; - } - - .navbar-expand-xxl .offcanvas .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: var(--bs-navbar-nav-link-padding-x); - padding-left: var(--bs-navbar-nav-link-padding-x); -} - -.navbar-expand .navbar-nav-scroll { - overflow: visible; -} - -.navbar-expand .navbar-collapse { - display: flex; - flex-basis: auto; -} - -.navbar-expand .navbar-toggler { - display: none; -} - -.navbar-expand .offcanvas { - position: static; - z-index: auto; - flex-grow: 1; - width: auto; - height: auto; - visibility: visible; - background-color: transparent; - border: 0; - transform: none; - transition: none; -} - -.navbar-expand .offcanvas .offcanvas-header { - display: none; -} - -.navbar-expand .offcanvas .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; -} - -.navbar-dark, -.navbar[data-bs-theme=dark] { - --bs-navbar-color: rgba(255, 255, 255, 0.55); - --bs-navbar-hover-color: rgba(255, 255, 255, 0.75); - --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25); - --bs-navbar-active-color: #fff; - --bs-navbar-brand-color: #fff; - --bs-navbar-brand-hover-color: #fff; - --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1); - --bs-navbar-toggler-icon-bg: 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"); -} - -[data-bs-theme=dark] .navbar-toggler-icon { - --bs-navbar-toggler-icon-bg: 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"); -} - -.card { - --bs-card-spacer-y: 1rem; - --bs-card-spacer-x: 1rem; - --bs-card-title-spacer-y: 0.5rem; - --bs-card-title-color: ; - --bs-card-subtitle-color: ; - --bs-card-border-width: var(--bs-border-width); - --bs-card-border-color: var(--bs-border-color-translucent); - --bs-card-border-radius: var(--bs-border-radius); - --bs-card-box-shadow: ; - --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width))); - --bs-card-cap-padding-y: 0.5rem; - --bs-card-cap-padding-x: 1rem; - --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03); - --bs-card-cap-color: ; - --bs-card-height: ; - --bs-card-color: ; - --bs-card-bg: var(--bs-body-bg); - --bs-card-img-overlay-padding: 1rem; - --bs-card-group-margin: 0.75rem; - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - height: var(--bs-card-height); - color: var(--bs-body-color); - word-wrap: break-word; - background-color: var(--bs-card-bg); - background-clip: border-box; - border: var(--bs-card-border-width) solid var(--bs-card-border-color); - border-radius: var(--bs-card-border-radius); -} - -.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: var(--bs-card-inner-border-radius); - border-top-right-radius: var(--bs-card-inner-border-radius); -} - -.card>.list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: var(--bs-card-inner-border-radius); - border-bottom-left-radius: var(--bs-card-inner-border-radius); -} - -.card>.card-header+.list-group, -.card>.list-group+.card-footer { - border-top: 0; -} - -.card-body { - flex: 1 1 auto; - padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); - color: var(--bs-card-color); -} - -.card-title { - margin-bottom: var(--bs-card-title-spacer-y); - color: var(--bs-card-title-color); -} - -.card-subtitle { - margin-top: calc(-0.5 * var(--bs-card-title-spacer-y)); - margin-bottom: 0; - color: var(--bs-card-subtitle-color); -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link+.card-link { - margin-left: var(--bs-card-spacer-x); -} - -.card-header { - padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); - margin-bottom: 0; - color: var(--bs-card-cap-color); - background-color: var(--bs-card-cap-bg); - border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); -} - -.card-header:first-child { - border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; -} - -.card-footer { - padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); - color: var(--bs-card-cap-color); - background-color: var(--bs-card-cap-bg); - border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); -} - -.card-footer:last-child { - border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); -} - -.card-header-tabs { - margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); - margin-bottom: calc(-1 * var(--bs-card-cap-padding-y)); - margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); - border-bottom: 0; -} - -.card-header-tabs .nav-link.active { - background-color: var(--bs-card-bg); - border-bottom-color: var(--bs-card-bg); -} - -.card-header-pills { - margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); - margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: var(--bs-card-img-overlay-padding); - border-radius: var(--bs-card-inner-border-radius); -} - -.card-img, -.card-img-top, -.card-img-bottom { - width: 100%; -} - -.card-img, -.card-img-top { - border-top-left-radius: var(--bs-card-inner-border-radius); - border-top-right-radius: var(--bs-card-inner-border-radius); -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: var(--bs-card-inner-border-radius); - border-bottom-left-radius: var(--bs-card-inner-border-radius); -} - -.card-group>.card { - margin-bottom: var(--bs-card-group-margin); -} - -@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 { - --bs-accordion-color: var(--bs-body-color); - --bs-accordion-bg: var(--bs-body-bg); - --bs-accordion-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; - --bs-accordion-border-color: var(--bs-border-color); - --bs-accordion-border-width: var(--bs-border-width); - --bs-accordion-border-radius: var(--bs-border-radius); - --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width))); - --bs-accordion-btn-padding-x: 1.25rem; - --bs-accordion-btn-padding-y: 1rem; - --bs-accordion-btn-color: var(--bs-body-color); - --bs-accordion-btn-bg: var(--bs-accordion-bg); - --bs-accordion-btn-icon: 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"); - --bs-accordion-btn-icon-width: 1.25rem; - --bs-accordion-btn-icon-transform: rotate(-180deg); - --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out; - --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%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"); - --bs-accordion-btn-focus-border-color: #86b7fe; - --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); - --bs-accordion-body-padding-x: 1.25rem; - --bs-accordion-body-padding-y: 1rem; - --bs-accordion-active-color: var(--bs-primary-text-emphasis); - --bs-accordion-active-bg: var(--bs-primary-bg-subtle); -} - -.accordion-button { - position: relative; - display: flex; - align-items: center; - width: 100%; - padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x); - font-size: 1rem; - color: var(--bs-accordion-btn-color); - text-align: left; - background-color: var(--bs-accordion-btn-bg); - border: 0; - border-radius: 0; - overflow-anchor: none; - transition: var(--bs-accordion-transition); -} - -@media (prefers-reduced-motion: reduce) { - .accordion-button { - transition: none; - } -} - -.accordion-button:not(.collapsed) { - color: var(--bs-accordion-active-color); - background-color: var(--bs-accordion-active-bg); - box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); -} - -.accordion-button:not(.collapsed)::after { - background-image: var(--bs-accordion-btn-active-icon); - transform: var(--bs-accordion-btn-icon-transform); -} - -.accordion-button::after { - flex-shrink: 0; - width: var(--bs-accordion-btn-icon-width); - height: var(--bs-accordion-btn-icon-width); - margin-left: auto; - content: ""; - background-image: var(--bs-accordion-btn-icon); - background-repeat: no-repeat; - background-size: var(--bs-accordion-btn-icon-width); - transition: var(--bs-accordion-btn-icon-transition); -} - -@media (prefers-reduced-motion: reduce) { - .accordion-button::after { - transition: none; - } -} - -.accordion-button:hover { - z-index: 2; -} - -.accordion-button:focus { - z-index: 3; - border-color: var(--bs-accordion-btn-focus-border-color); - outline: 0; - box-shadow: var(--bs-accordion-btn-focus-box-shadow); -} - -.accordion-header { - margin-bottom: 0; -} - -.accordion-item { - color: var(--bs-accordion-color); - background-color: var(--bs-accordion-bg); - border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); -} - -.accordion-item:first-of-type { - border-top-left-radius: var(--bs-accordion-border-radius); - border-top-right-radius: var(--bs-accordion-border-radius); -} - -.accordion-item:first-of-type .accordion-button { - border-top-left-radius: var(--bs-accordion-inner-border-radius); - border-top-right-radius: var(--bs-accordion-inner-border-radius); -} - -.accordion-item:not(:first-of-type) { - border-top: 0; -} - -.accordion-item:last-of-type { - border-bottom-right-radius: var(--bs-accordion-border-radius); - border-bottom-left-radius: var(--bs-accordion-border-radius); -} - -.accordion-item:last-of-type .accordion-button.collapsed { - border-bottom-right-radius: var(--bs-accordion-inner-border-radius); - border-bottom-left-radius: var(--bs-accordion-inner-border-radius); -} - -.accordion-item:last-of-type .accordion-collapse { - border-bottom-right-radius: var(--bs-accordion-border-radius); - border-bottom-left-radius: var(--bs-accordion-border-radius); -} - -.accordion-body { - padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); -} - -.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, -.accordion-flush .accordion-item .accordion-button.collapsed { - border-radius: 0; -} - -[data-bs-theme=dark] .accordion-button::after { - --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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"); - --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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"); -} - -.breadcrumb { - --bs-breadcrumb-padding-x: 0; - --bs-breadcrumb-padding-y: 0; - --bs-breadcrumb-margin-bottom: 1rem; - --bs-breadcrumb-bg: ; - --bs-breadcrumb-border-radius: ; - --bs-breadcrumb-divider-color: var(--bs-secondary-color); - --bs-breadcrumb-item-padding-x: 0.5rem; - --bs-breadcrumb-item-active-color: var(--bs-secondary-color); - display: flex; - flex-wrap: wrap; - padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x); - margin-bottom: var(--bs-breadcrumb-margin-bottom); - font-size: var(--bs-breadcrumb-font-size); - list-style: none; - background-color: var(--bs-breadcrumb-bg); - border-radius: var(--bs-breadcrumb-border-radius); -} - -.breadcrumb-item+.breadcrumb-item { - padding-left: var(--bs-breadcrumb-item-padding-x); -} - -.breadcrumb-item+.breadcrumb-item::before { - float: left; - padding-right: var(--bs-breadcrumb-item-padding-x); - color: var(--bs-breadcrumb-divider-color); - content: var(--bs-breadcrumb-divider, "/") - /* rtl: var(--bs-breadcrumb-divider, "/") */ - ; -} - -.breadcrumb-item.active { - color: var(--bs-breadcrumb-item-active-color); -} - -.pagination { - --bs-pagination-padding-x: 0.75rem; - --bs-pagination-padding-y: 0.375rem; - --bs-pagination-font-size: 1rem; - --bs-pagination-color: var(--bs-link-color); - --bs-pagination-bg: var(--bs-body-bg); - --bs-pagination-border-width: var(--bs-border-width); - --bs-pagination-border-color: var(--bs-border-color); - --bs-pagination-border-radius: var(--bs-border-radius); - --bs-pagination-hover-color: var(--bs-link-hover-color); - --bs-pagination-hover-bg: var(--bs-tertiary-bg); - --bs-pagination-hover-border-color: var(--bs-border-color); - --bs-pagination-focus-color: var(--bs-link-hover-color); - --bs-pagination-focus-bg: var(--bs-secondary-bg); - --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); - --bs-pagination-active-color: #fff; - --bs-pagination-active-bg: #0d6efd; - --bs-pagination-active-border-color: #0d6efd; - --bs-pagination-disabled-color: var(--bs-secondary-color); - --bs-pagination-disabled-bg: var(--bs-secondary-bg); - --bs-pagination-disabled-border-color: var(--bs-border-color); - display: flex; - padding-left: 0; - list-style: none; -} - -.page-link { - position: relative; - display: block; - padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x); - font-size: var(--bs-pagination-font-size); - color: var(--bs-pagination-color); - text-decoration: none; - background-color: var(--bs-pagination-bg); - border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color); - 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: var(--bs-pagination-hover-color); - background-color: var(--bs-pagination-hover-bg); - border-color: var(--bs-pagination-hover-border-color); -} - -.page-link:focus { - z-index: 3; - color: var(--bs-pagination-focus-color); - background-color: var(--bs-pagination-focus-bg); - outline: 0; - box-shadow: var(--bs-pagination-focus-box-shadow); -} - -.page-link.active, -.active>.page-link { - z-index: 3; - color: var(--bs-pagination-active-color); - background-color: var(--bs-pagination-active-bg); - border-color: var(--bs-pagination-active-border-color); -} - -.page-link.disabled, -.disabled>.page-link { - color: var(--bs-pagination-disabled-color); - pointer-events: none; - background-color: var(--bs-pagination-disabled-bg); - border-color: var(--bs-pagination-disabled-border-color); -} - -.page-item:not(:first-child) .page-link { - margin-left: calc(var(--bs-border-width) * -1); -} - -.page-item:first-child .page-link { - border-top-left-radius: var(--bs-pagination-border-radius); - border-bottom-left-radius: var(--bs-pagination-border-radius); -} - -.page-item:last-child .page-link { - border-top-right-radius: var(--bs-pagination-border-radius); - border-bottom-right-radius: var(--bs-pagination-border-radius); -} - -.pagination-lg { - --bs-pagination-padding-x: 1.5rem; - --bs-pagination-padding-y: 0.75rem; - --bs-pagination-font-size: 1.25rem; - --bs-pagination-border-radius: var(--bs-border-radius-lg); -} - -.pagination-sm { - --bs-pagination-padding-x: 0.5rem; - --bs-pagination-padding-y: 0.25rem; - --bs-pagination-font-size: 0.875rem; - --bs-pagination-border-radius: var(--bs-border-radius-sm); -} - -.badge { - --bs-badge-padding-x: 0.65em; - --bs-badge-padding-y: 0.35em; - --bs-badge-font-size: 0.75em; - --bs-badge-font-weight: 700; - --bs-badge-color: #fff; - --bs-badge-border-radius: var(--bs-border-radius); - display: inline-block; - padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x); - font-size: var(--bs-badge-font-size); - font-weight: var(--bs-badge-font-weight); - line-height: 1; - color: var(--bs-badge-color); - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: var(--bs-badge-border-radius); -} - -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.alert { - --bs-alert-bg: transparent; - --bs-alert-padding-x: 1rem; - --bs-alert-padding-y: 1rem; - --bs-alert-margin-bottom: 1rem; - --bs-alert-color: inherit; - --bs-alert-border-color: transparent; - --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color); - --bs-alert-border-radius: var(--bs-border-radius); - --bs-alert-link-color: inherit; - position: relative; - padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x); - margin-bottom: var(--bs-alert-margin-bottom); - color: var(--bs-alert-color); - background-color: var(--bs-alert-bg); - border: var(--bs-alert-border); - border-radius: var(--bs-alert-border-radius); -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; - color: var(--bs-alert-link-color); -} - -.alert-dismissible { - padding-right: 3rem; -} - -.alert-dismissible .btn-close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 1.25rem 1rem; -} - -.alert-primary { - --bs-alert-color: var(--bs-primary-text-emphasis); - --bs-alert-bg: var(--bs-primary-bg-subtle); - --bs-alert-border-color: var(--bs-primary-border-subtle); - --bs-alert-link-color: var(--bs-primary-text-emphasis); -} - -.alert-secondary { - --bs-alert-color: var(--bs-secondary-text-emphasis); - --bs-alert-bg: var(--bs-secondary-bg-subtle); - --bs-alert-border-color: var(--bs-secondary-border-subtle); - --bs-alert-link-color: var(--bs-secondary-text-emphasis); -} - -.alert-success { - --bs-alert-color: var(--bs-success-text-emphasis); - --bs-alert-bg: var(--bs-success-bg-subtle); - --bs-alert-border-color: var(--bs-success-border-subtle); - --bs-alert-link-color: var(--bs-success-text-emphasis); -} - -.alert-info { - --bs-alert-color: var(--bs-info-text-emphasis); - --bs-alert-bg: var(--bs-info-bg-subtle); - --bs-alert-border-color: var(--bs-info-border-subtle); - --bs-alert-link-color: var(--bs-info-text-emphasis); -} - -.alert-warning { - --bs-alert-color: var(--bs-warning-text-emphasis); - --bs-alert-bg: var(--bs-warning-bg-subtle); - --bs-alert-border-color: var(--bs-warning-border-subtle); - --bs-alert-link-color: var(--bs-warning-text-emphasis); -} - -.alert-danger { - --bs-alert-color: var(--bs-danger-text-emphasis); - --bs-alert-bg: var(--bs-danger-bg-subtle); - --bs-alert-border-color: var(--bs-danger-border-subtle); - --bs-alert-link-color: var(--bs-danger-text-emphasis); -} - -.alert-light { - --bs-alert-color: var(--bs-light-text-emphasis); - --bs-alert-bg: var(--bs-light-bg-subtle); - --bs-alert-border-color: var(--bs-light-border-subtle); - --bs-alert-link-color: var(--bs-light-text-emphasis); -} - -.alert-dark { - --bs-alert-color: var(--bs-dark-text-emphasis); - --bs-alert-bg: var(--bs-dark-bg-subtle); - --bs-alert-border-color: var(--bs-dark-border-subtle); - --bs-alert-link-color: var(--bs-dark-text-emphasis); -} - -@keyframes progress-bar-stripes { - 0% { - background-position-x: 1rem; - } -} - -.progress, -.progress-stacked { - --bs-progress-height: 1rem; - --bs-progress-font-size: 0.75rem; - --bs-progress-bg: var(--bs-secondary-bg); - --bs-progress-border-radius: var(--bs-border-radius); - --bs-progress-box-shadow: var(--bs-box-shadow-inset); - --bs-progress-bar-color: #fff; - --bs-progress-bar-bg: #0d6efd; - --bs-progress-bar-transition: width 0.6s ease; - display: flex; - height: var(--bs-progress-height); - overflow: hidden; - font-size: var(--bs-progress-font-size); - background-color: var(--bs-progress-bg); - border-radius: var(--bs-progress-border-radius); -} - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: var(--bs-progress-bar-color); - text-align: center; - white-space: nowrap; - background-color: var(--bs-progress-bar-bg); - transition: var(--bs-progress-bar-transition); -} - -@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: var(--bs-progress-height) var(--bs-progress-height); -} - -.progress-stacked>.progress { - overflow: visible; -} - -.progress-stacked>.progress>.progress-bar { - width: 100%; -} - -.progress-bar-animated { - animation: 1s linear infinite progress-bar-stripes; -} - -@media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - animation: none; - } -} - -.list-group { - --bs-list-group-color: var(--bs-body-color); - --bs-list-group-bg: var(--bs-body-bg); - --bs-list-group-border-color: var(--bs-border-color); - --bs-list-group-border-width: var(--bs-border-width); - --bs-list-group-border-radius: var(--bs-border-radius); - --bs-list-group-item-padding-x: 1rem; - --bs-list-group-item-padding-y: 0.5rem; - --bs-list-group-action-color: var(--bs-secondary-color); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-tertiary-bg); - --bs-list-group-action-active-color: var(--bs-body-color); - --bs-list-group-action-active-bg: var(--bs-secondary-bg); - --bs-list-group-disabled-color: var(--bs-secondary-color); - --bs-list-group-disabled-bg: var(--bs-body-bg); - --bs-list-group-active-color: #fff; - --bs-list-group-active-bg: #0d6efd; - --bs-list-group-active-border-color: #0d6efd; - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: var(--bs-list-group-border-radius); -} - -.list-group-numbered { - list-style-type: none; - counter-reset: section; -} - -.list-group-numbered>.list-group-item::before { - content: counters(section, ".") ". "; - counter-increment: section; -} - -.list-group-item-action { - width: 100%; - color: var(--bs-list-group-action-color); - text-align: inherit; -} - -.list-group-item-action:hover, -.list-group-item-action:focus { - z-index: 1; - color: var(--bs-list-group-action-hover-color); - text-decoration: none; - background-color: var(--bs-list-group-action-hover-bg); -} - -.list-group-item-action:active { - color: var(--bs-list-group-action-active-color); - background-color: var(--bs-list-group-action-active-bg); -} - -.list-group-item { - position: relative; - display: block; - padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x); - color: var(--bs-list-group-color); - text-decoration: none; - background-color: var(--bs-list-group-bg); - border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color); -} - -.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: var(--bs-list-group-disabled-color); - pointer-events: none; - background-color: var(--bs-list-group-disabled-bg); -} - -.list-group-item.active { - z-index: 2; - color: var(--bs-list-group-active-color); - background-color: var(--bs-list-group-active-bg); - border-color: var(--bs-list-group-active-border-color); -} - -.list-group-item+.list-group-item { - border-top-width: 0; -} - -.list-group-item+.list-group-item.active { - margin-top: calc(-1 * var(--bs-list-group-border-width)); - border-top-width: var(--bs-list-group-border-width); -} - -.list-group-horizontal { - flex-direction: row; -} - -.list-group-horizontal>.list-group-item:first-child:not(:last-child) { - border-bottom-left-radius: var(--bs-list-group-border-radius); - border-top-right-radius: 0; -} - -.list-group-horizontal>.list-group-item:last-child:not(:first-child) { - border-top-right-radius: var(--bs-list-group-border-radius); - 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: var(--bs-list-group-border-width); - border-left-width: 0; -} - -.list-group-horizontal>.list-group-item+.list-group-item.active { - margin-left: calc(-1 * var(--bs-list-group-border-width)); - border-left-width: var(--bs-list-group-border-width); -} - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; - } - - .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) { - border-bottom-left-radius: var(--bs-list-group-border-radius); - border-top-right-radius: 0; - } - - .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) { - border-top-right-radius: var(--bs-list-group-border-radius); - 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: var(--bs-list-group-border-width); - border-left-width: 0; - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item.active { - margin-left: calc(-1 * var(--bs-list-group-border-width)); - border-left-width: var(--bs-list-group-border-width); - } -} - -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; - } - - .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) { - border-bottom-left-radius: var(--bs-list-group-border-radius); - border-top-right-radius: 0; - } - - .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) { - border-top-right-radius: var(--bs-list-group-border-radius); - 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: var(--bs-list-group-border-width); - border-left-width: 0; - } - - .list-group-horizontal-md>.list-group-item+.list-group-item.active { - margin-left: calc(-1 * var(--bs-list-group-border-width)); - border-left-width: var(--bs-list-group-border-width); - } -} - -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; - } - - .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) { - border-bottom-left-radius: var(--bs-list-group-border-radius); - border-top-right-radius: 0; - } - - .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) { - border-top-right-radius: var(--bs-list-group-border-radius); - 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: var(--bs-list-group-border-width); - border-left-width: 0; - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item.active { - margin-left: calc(-1 * var(--bs-list-group-border-width)); - border-left-width: var(--bs-list-group-border-width); - } -} - -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; - } - - .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) { - border-bottom-left-radius: var(--bs-list-group-border-radius); - border-top-right-radius: 0; - } - - .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) { - border-top-right-radius: var(--bs-list-group-border-radius); - 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: var(--bs-list-group-border-width); - border-left-width: 0; - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item.active { - margin-left: calc(-1 * var(--bs-list-group-border-width)); - border-left-width: var(--bs-list-group-border-width); - } -} - -@media (min-width: 1400px) { - .list-group-horizontal-xxl { - flex-direction: row; - } - - .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) { - border-bottom-left-radius: var(--bs-list-group-border-radius); - border-top-right-radius: 0; - } - - .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) { - border-top-right-radius: var(--bs-list-group-border-radius); - 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: var(--bs-list-group-border-width); - border-left-width: 0; - } - - .list-group-horizontal-xxl>.list-group-item+.list-group-item.active { - margin-left: calc(-1 * var(--bs-list-group-border-width)); - border-left-width: var(--bs-list-group-border-width); - } -} - -.list-group-flush { - border-radius: 0; -} - -.list-group-flush>.list-group-item { - border-width: 0 0 var(--bs-list-group-border-width); -} - -.list-group-flush>.list-group-item:last-child { - border-bottom-width: 0; -} - -.list-group-item-primary { - --bs-list-group-color: var(--bs-primary-text-emphasis); - --bs-list-group-bg: var(--bs-primary-bg-subtle); - --bs-list-group-border-color: var(--bs-primary-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-primary-border-subtle); - --bs-list-group-active-color: var(--bs-primary-bg-subtle); - --bs-list-group-active-bg: var(--bs-primary-text-emphasis); - --bs-list-group-active-border-color: var(--bs-primary-text-emphasis); -} - -.list-group-item-secondary { - --bs-list-group-color: var(--bs-secondary-text-emphasis); - --bs-list-group-bg: var(--bs-secondary-bg-subtle); - --bs-list-group-border-color: var(--bs-secondary-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle); - --bs-list-group-active-color: var(--bs-secondary-bg-subtle); - --bs-list-group-active-bg: var(--bs-secondary-text-emphasis); - --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis); -} - -.list-group-item-success { - --bs-list-group-color: var(--bs-success-text-emphasis); - --bs-list-group-bg: var(--bs-success-bg-subtle); - --bs-list-group-border-color: var(--bs-success-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-success-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-success-border-subtle); - --bs-list-group-active-color: var(--bs-success-bg-subtle); - --bs-list-group-active-bg: var(--bs-success-text-emphasis); - --bs-list-group-active-border-color: var(--bs-success-text-emphasis); -} - -.list-group-item-info { - --bs-list-group-color: var(--bs-info-text-emphasis); - --bs-list-group-bg: var(--bs-info-bg-subtle); - --bs-list-group-border-color: var(--bs-info-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-info-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-info-border-subtle); - --bs-list-group-active-color: var(--bs-info-bg-subtle); - --bs-list-group-active-bg: var(--bs-info-text-emphasis); - --bs-list-group-active-border-color: var(--bs-info-text-emphasis); -} - -.list-group-item-warning { - --bs-list-group-color: var(--bs-warning-text-emphasis); - --bs-list-group-bg: var(--bs-warning-bg-subtle); - --bs-list-group-border-color: var(--bs-warning-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-warning-border-subtle); - --bs-list-group-active-color: var(--bs-warning-bg-subtle); - --bs-list-group-active-bg: var(--bs-warning-text-emphasis); - --bs-list-group-active-border-color: var(--bs-warning-text-emphasis); -} - -.list-group-item-danger { - --bs-list-group-color: var(--bs-danger-text-emphasis); - --bs-list-group-bg: var(--bs-danger-bg-subtle); - --bs-list-group-border-color: var(--bs-danger-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-danger-border-subtle); - --bs-list-group-active-color: var(--bs-danger-bg-subtle); - --bs-list-group-active-bg: var(--bs-danger-text-emphasis); - --bs-list-group-active-border-color: var(--bs-danger-text-emphasis); -} - -.list-group-item-light { - --bs-list-group-color: var(--bs-light-text-emphasis); - --bs-list-group-bg: var(--bs-light-bg-subtle); - --bs-list-group-border-color: var(--bs-light-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-light-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-light-border-subtle); - --bs-list-group-active-color: var(--bs-light-bg-subtle); - --bs-list-group-active-bg: var(--bs-light-text-emphasis); - --bs-list-group-active-border-color: var(--bs-light-text-emphasis); -} - -.list-group-item-dark { - --bs-list-group-color: var(--bs-dark-text-emphasis); - --bs-list-group-bg: var(--bs-dark-bg-subtle); - --bs-list-group-border-color: var(--bs-dark-border-subtle); - --bs-list-group-action-hover-color: var(--bs-emphasis-color); - --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle); - --bs-list-group-action-active-color: var(--bs-emphasis-color); - --bs-list-group-action-active-bg: var(--bs-dark-border-subtle); - --bs-list-group-active-color: var(--bs-dark-bg-subtle); - --bs-list-group-active-bg: var(--bs-dark-text-emphasis); - --bs-list-group-active-border-color: var(--bs-dark-text-emphasis); -} - -.btn-close { - --bs-btn-close-color: #000; - --bs-btn-close-bg: 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 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e"); - --bs-btn-close-opacity: 0.5; - --bs-btn-close-hover-opacity: 0.75; - --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); - --bs-btn-close-focus-opacity: 1; - --bs-btn-close-disabled-opacity: 0.25; - --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%); - box-sizing: content-box; - width: 1em; - height: 1em; - padding: 0.25em 0.25em; - color: var(--bs-btn-close-color); - background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat; - border: 0; - border-radius: 0.375rem; - opacity: var(--bs-btn-close-opacity); -} - -.btn-close:hover { - color: var(--bs-btn-close-color); - text-decoration: none; - opacity: var(--bs-btn-close-hover-opacity); -} - -.btn-close:focus { - outline: 0; - box-shadow: var(--bs-btn-close-focus-shadow); - opacity: var(--bs-btn-close-focus-opacity); -} - -.btn-close:disabled, -.btn-close.disabled { - pointer-events: none; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; - opacity: var(--bs-btn-close-disabled-opacity); -} - -.btn-close-white { - filter: var(--bs-btn-close-white-filter); -} - -[data-bs-theme=dark] .btn-close { - filter: var(--bs-btn-close-white-filter); -} - -.toast { - --bs-toast-zindex: 1090; - --bs-toast-padding-x: 0.75rem; - --bs-toast-padding-y: 0.5rem; - --bs-toast-spacing: 1.5rem; - --bs-toast-max-width: 350px; - --bs-toast-font-size: 0.875rem; - --bs-toast-color: ; - --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85); - --bs-toast-border-width: var(--bs-border-width); - --bs-toast-border-color: var(--bs-border-color-translucent); - --bs-toast-border-radius: var(--bs-border-radius); - --bs-toast-box-shadow: var(--bs-box-shadow); - --bs-toast-header-color: var(--bs-secondary-color); - --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85); - --bs-toast-header-border-color: var(--bs-border-color-translucent); - width: var(--bs-toast-max-width); - max-width: 100%; - font-size: var(--bs-toast-font-size); - color: var(--bs-toast-color); - pointer-events: auto; - background-color: var(--bs-toast-bg); - background-clip: padding-box; - border: var(--bs-toast-border-width) solid var(--bs-toast-border-color); - box-shadow: var(--bs-toast-box-shadow); - border-radius: var(--bs-toast-border-radius); -} - -.toast.showing { - opacity: 0; -} - -.toast:not(.show) { - display: none; -} - -.toast-container { - --bs-toast-zindex: 1090; - position: absolute; - z-index: var(--bs-toast-zindex); - width: -webkit-max-content; - width: -moz-max-content; - width: max-content; - max-width: 100%; - pointer-events: none; -} - -.toast-container> :not(:last-child) { - margin-bottom: var(--bs-toast-spacing); -} - -.toast-header { - display: flex; - align-items: center; - padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x); - color: var(--bs-toast-header-color); - background-color: var(--bs-toast-header-bg); - background-clip: padding-box; - border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color); - border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); - border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); -} - -.toast-header .btn-close { - margin-right: calc(-0.5 * var(--bs-toast-padding-x)); - margin-left: var(--bs-toast-padding-x); -} - -.toast-body { - padding: var(--bs-toast-padding-x); - word-wrap: break-word; -} - -.modal { - --bs-modal-zindex: 1055; - --bs-modal-width: 500px; - --bs-modal-padding: 1rem; - --bs-modal-margin: 0.5rem; - --bs-modal-color: ; - --bs-modal-bg: var(--bs-body-bg); - --bs-modal-border-color: var(--bs-border-color-translucent); - --bs-modal-border-width: var(--bs-border-width); - --bs-modal-border-radius: var(--bs-border-radius-lg); - --bs-modal-box-shadow: var(--bs-box-shadow-sm); - --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width))); - --bs-modal-header-padding-x: 1rem; - --bs-modal-header-padding-y: 1rem; - --bs-modal-header-padding: 1rem 1rem; - --bs-modal-header-border-color: var(--bs-border-color); - --bs-modal-header-border-width: var(--bs-border-width); - --bs-modal-title-line-height: 1.5; - --bs-modal-footer-gap: 0.5rem; - --bs-modal-footer-bg: ; - --bs-modal-footer-border-color: var(--bs-border-color); - --bs-modal-footer-border-width: var(--bs-border-width); - position: fixed; - top: 0; - left: 0; - z-index: var(--bs-modal-zindex); - display: none; - width: 100%; - height: 100%; - overflow-x: hidden; - overflow-y: auto; - outline: 0; -} - -.modal-dialog { - position: relative; - width: auto; - margin: var(--bs-modal-margin); - 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% - var(--bs-modal-margin) * 2); -} - -.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% - var(--bs-modal-margin) * 2); -} - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - color: var(--bs-modal-color); - pointer-events: auto; - background-color: var(--bs-modal-bg); - background-clip: padding-box; - border: var(--bs-modal-border-width) solid var(--bs-modal-border-color); - border-radius: var(--bs-modal-border-radius); - outline: 0; -} - -.modal-backdrop { - --bs-backdrop-zindex: 1050; - --bs-backdrop-bg: #000; - --bs-backdrop-opacity: 0.5; - position: fixed; - top: 0; - left: 0; - z-index: var(--bs-backdrop-zindex); - width: 100vw; - height: 100vh; - background-color: var(--bs-backdrop-bg); -} - -.modal-backdrop.fade { - opacity: 0; -} - -.modal-backdrop.show { - opacity: var(--bs-backdrop-opacity); -} - -.modal-header { - display: flex; - flex-shrink: 0; - align-items: center; - justify-content: space-between; - padding: var(--bs-modal-header-padding); - border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); - border-top-left-radius: var(--bs-modal-inner-border-radius); - border-top-right-radius: var(--bs-modal-inner-border-radius); -} - -.modal-header .btn-close { - padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5); - margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto; -} - -.modal-title { - margin-bottom: 0; - line-height: var(--bs-modal-title-line-height); -} - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: var(--bs-modal-padding); -} - -.modal-footer { - display: flex; - flex-shrink: 0; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5); - background-color: var(--bs-modal-footer-bg); - border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color); - border-bottom-right-radius: var(--bs-modal-inner-border-radius); - border-bottom-left-radius: var(--bs-modal-inner-border-radius); -} - -.modal-footer>* { - margin: calc(var(--bs-modal-footer-gap) * 0.5); -} - -@media (min-width: 576px) { - .modal { - --bs-modal-margin: 1.75rem; - --bs-modal-box-shadow: var(--bs-box-shadow); - } - - .modal-dialog { - max-width: var(--bs-modal-width); - margin-right: auto; - margin-left: auto; - } - - .modal-sm { - --bs-modal-width: 300px; - } -} - -@media (min-width: 992px) { - - .modal-lg, - .modal-xl { - --bs-modal-width: 800px; - } -} - -@media (min-width: 1200px) { - .modal-xl { - --bs-modal-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, -.modal-fullscreen .modal-footer { - border-radius: 0; -} - -.modal-fullscreen .modal-body { - overflow-y: auto; -} - -@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, - .modal-fullscreen-sm-down .modal-footer { - border-radius: 0; - } - - .modal-fullscreen-sm-down .modal-body { - overflow-y: auto; - } -} - -@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, - .modal-fullscreen-md-down .modal-footer { - border-radius: 0; - } - - .modal-fullscreen-md-down .modal-body { - overflow-y: auto; - } -} - -@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, - .modal-fullscreen-lg-down .modal-footer { - border-radius: 0; - } - - .modal-fullscreen-lg-down .modal-body { - overflow-y: auto; - } -} - -@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, - .modal-fullscreen-xl-down .modal-footer { - border-radius: 0; - } - - .modal-fullscreen-xl-down .modal-body { - overflow-y: auto; - } -} - -@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, - .modal-fullscreen-xxl-down .modal-footer { - border-radius: 0; - } - - .modal-fullscreen-xxl-down .modal-body { - overflow-y: auto; - } -} - -.tooltip { - --bs-tooltip-zindex: 1080; - --bs-tooltip-max-width: 200px; - --bs-tooltip-padding-x: 0.5rem; - --bs-tooltip-padding-y: 0.25rem; - --bs-tooltip-margin: ; - --bs-tooltip-font-size: 0.875rem; - --bs-tooltip-color: var(--bs-body-bg); - --bs-tooltip-bg: var(--bs-emphasis-color); - --bs-tooltip-border-radius: var(--bs-border-radius); - --bs-tooltip-opacity: 0.9; - --bs-tooltip-arrow-width: 0.8rem; - --bs-tooltip-arrow-height: 0.4rem; - z-index: var(--bs-tooltip-zindex); - display: block; - margin: var(--bs-tooltip-margin); - 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; - white-space: normal; - word-spacing: normal; - line-break: auto; - font-size: var(--bs-tooltip-font-size); - word-wrap: break-word; - opacity: 0; -} - -.tooltip.show { - opacity: var(--bs-tooltip-opacity); -} - -.tooltip .tooltip-arrow { - display: block; - width: var(--bs-tooltip-arrow-width); - height: var(--bs-tooltip-arrow-height); -} - -.tooltip .tooltip-arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top .tooltip-arrow, -.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow { - bottom: calc(-1 * var(--bs-tooltip-arrow-height)); -} - -.bs-tooltip-top .tooltip-arrow::before, -.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { - top: -1px; - border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; - border-top-color: var(--bs-tooltip-bg); -} - -.bs-tooltip-end .tooltip-arrow, -.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow { - left: calc(-1 * var(--bs-tooltip-arrow-height)); - width: var(--bs-tooltip-arrow-height); - height: var(--bs-tooltip-arrow-width); -} - -.bs-tooltip-end .tooltip-arrow::before, -.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before { - right: -1px; - border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; - border-right-color: var(--bs-tooltip-bg); -} - -.bs-tooltip-bottom .tooltip-arrow, -.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow { - top: calc(-1 * var(--bs-tooltip-arrow-height)); -} - -.bs-tooltip-bottom .tooltip-arrow::before, -.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before { - bottom: -1px; - border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); - border-bottom-color: var(--bs-tooltip-bg); -} - -.bs-tooltip-start .tooltip-arrow, -.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow { - right: calc(-1 * var(--bs-tooltip-arrow-height)); - width: var(--bs-tooltip-arrow-height); - height: var(--bs-tooltip-arrow-width); -} - -.bs-tooltip-start .tooltip-arrow::before, -.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before { - left: -1px; - border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); - border-left-color: var(--bs-tooltip-bg); -} - -.tooltip-inner { - max-width: var(--bs-tooltip-max-width); - padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x); - color: var(--bs-tooltip-color); - text-align: center; - background-color: var(--bs-tooltip-bg); - border-radius: var(--bs-tooltip-border-radius); -} - -.popover { - --bs-popover-zindex: 1070; - --bs-popover-max-width: 276px; - --bs-popover-font-size: 0.875rem; - --bs-popover-bg: var(--bs-body-bg); - --bs-popover-border-width: var(--bs-border-width); - --bs-popover-border-color: var(--bs-border-color-translucent); - --bs-popover-border-radius: var(--bs-border-radius-lg); - --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width)); - --bs-popover-box-shadow: var(--bs-box-shadow); - --bs-popover-header-padding-x: 1rem; - --bs-popover-header-padding-y: 0.5rem; - --bs-popover-header-font-size: 1rem; - --bs-popover-header-color: inherit; - --bs-popover-header-bg: var(--bs-secondary-bg); - --bs-popover-body-padding-x: 1rem; - --bs-popover-body-padding-y: 1rem; - --bs-popover-body-color: var(--bs-body-color); - --bs-popover-arrow-width: 1rem; - --bs-popover-arrow-height: 0.5rem; - --bs-popover-arrow-border: var(--bs-popover-border-color); - z-index: var(--bs-popover-zindex); - display: block; - max-width: var(--bs-popover-max-width); - 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; - white-space: normal; - word-spacing: normal; - line-break: auto; - font-size: var(--bs-popover-font-size); - word-wrap: break-word; - background-color: var(--bs-popover-bg); - background-clip: padding-box; - border: var(--bs-popover-border-width) solid var(--bs-popover-border-color); - border-radius: var(--bs-popover-border-radius); -} - -.popover .popover-arrow { - display: block; - width: var(--bs-popover-arrow-width); - height: var(--bs-popover-arrow-height); -} - -.popover .popover-arrow::before, -.popover .popover-arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; - border-width: 0; -} - -.bs-popover-top>.popover-arrow, -.bs-popover-auto[data-popper-placement^=top]>.popover-arrow { - bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); -} - -.bs-popover-top>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before, -.bs-popover-top>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after { - border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; -} - -.bs-popover-top>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before { - bottom: 0; - border-top-color: var(--bs-popover-arrow-border); -} - -.bs-popover-top>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after { - bottom: var(--bs-popover-border-width); - border-top-color: var(--bs-popover-bg); -} - -.bs-popover-end>.popover-arrow, -.bs-popover-auto[data-popper-placement^=right]>.popover-arrow { - left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); - width: var(--bs-popover-arrow-height); - height: var(--bs-popover-arrow-width); -} - -.bs-popover-end>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before, -.bs-popover-end>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after { - border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; -} - -.bs-popover-end>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before { - left: 0; - border-right-color: var(--bs-popover-arrow-border); -} - -.bs-popover-end>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after { - left: var(--bs-popover-border-width); - border-right-color: var(--bs-popover-bg); -} - -.bs-popover-bottom>.popover-arrow, -.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow { - top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); -} - -.bs-popover-bottom>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before, -.bs-popover-bottom>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after { - border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); -} - -.bs-popover-bottom>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before { - top: 0; - border-bottom-color: var(--bs-popover-arrow-border); -} - -.bs-popover-bottom>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after { - top: var(--bs-popover-border-width); - border-bottom-color: var(--bs-popover-bg); -} - -.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: var(--bs-popover-arrow-width); - margin-left: calc(-0.5 * var(--bs-popover-arrow-width)); - content: ""; - border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg); -} - -.bs-popover-start>.popover-arrow, -.bs-popover-auto[data-popper-placement^=left]>.popover-arrow { - right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); - width: var(--bs-popover-arrow-height); - height: var(--bs-popover-arrow-width); -} - -.bs-popover-start>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before, -.bs-popover-start>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after { - border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); -} - -.bs-popover-start>.popover-arrow::before, -.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before { - right: 0; - border-left-color: var(--bs-popover-arrow-border); -} - -.bs-popover-start>.popover-arrow::after, -.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after { - right: var(--bs-popover-border-width); - border-left-color: var(--bs-popover-bg); -} - -.popover-header { - padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x); - margin-bottom: 0; - font-size: var(--bs-popover-header-font-size); - color: var(--bs-popover-header-color); - background-color: var(--bs-popover-header-bg); - border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color); - border-top-left-radius: var(--bs-popover-inner-border-radius); - border-top-right-radius: var(--bs-popover-inner-border-radius); -} - -.popover-header:empty { - display: none; -} - -.popover-body { - padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x); - color: var(--bs-popover-body-color); -} - -.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%; - -webkit-backface-visibility: hidden; - 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; -} - -.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%); -} - -.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%; -} - -.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%; -} - -.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; -} - -[data-bs-theme=dark] .carousel .carousel-control-prev-icon, -[data-bs-theme=dark] .carousel .carousel-control-next-icon, -[data-bs-theme=dark].carousel .carousel-control-prev-icon, -[data-bs-theme=dark].carousel .carousel-control-next-icon { - filter: invert(1) grayscale(100); -} - -[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], -[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] { - background-color: #000; -} - -[data-bs-theme=dark] .carousel .carousel-caption, -[data-bs-theme=dark].carousel .carousel-caption { - color: #000; -} - -.spinner-grow, -.spinner-border { - display: inline-block; - width: var(--bs-spinner-width); - height: var(--bs-spinner-height); - vertical-align: var(--bs-spinner-vertical-align); - border-radius: 50%; - animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name); -} - -@keyframes spinner-border { - to { - transform: rotate(360deg) - /* rtl:ignore */ - ; - } -} - -.spinner-border { - --bs-spinner-width: 2rem; - --bs-spinner-height: 2rem; - --bs-spinner-vertical-align: -0.125em; - --bs-spinner-border-width: 0.25em; - --bs-spinner-animation-speed: 0.75s; - --bs-spinner-animation-name: spinner-border; - border: var(--bs-spinner-border-width) solid currentcolor; - border-right-color: transparent; -} - -.spinner-border-sm { - --bs-spinner-width: 1rem; - --bs-spinner-height: 1rem; - --bs-spinner-border-width: 0.2em; -} - -@keyframes spinner-grow { - 0% { - transform: scale(0); - } - - 50% { - opacity: 1; - transform: none; - } -} - -.spinner-grow { - --bs-spinner-width: 2rem; - --bs-spinner-height: 2rem; - --bs-spinner-vertical-align: -0.125em; - --bs-spinner-animation-speed: 0.75s; - --bs-spinner-animation-name: spinner-grow; - background-color: currentcolor; - opacity: 0; -} - -.spinner-grow-sm { - --bs-spinner-width: 1rem; - --bs-spinner-height: 1rem; -} - -@media (prefers-reduced-motion: reduce) { - - .spinner-border, - .spinner-grow { - --bs-spinner-animation-speed: 1.5s; - } -} - -.offcanvas, -.offcanvas-xxl, -.offcanvas-xl, -.offcanvas-lg, -.offcanvas-md, -.offcanvas-sm { - --bs-offcanvas-zindex: 1045; - --bs-offcanvas-width: 400px; - --bs-offcanvas-height: 30vh; - --bs-offcanvas-padding-x: 1rem; - --bs-offcanvas-padding-y: 1rem; - --bs-offcanvas-color: var(--bs-body-color); - --bs-offcanvas-bg: var(--bs-body-bg); - --bs-offcanvas-border-width: var(--bs-border-width); - --bs-offcanvas-border-color: var(--bs-border-color-translucent); - --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm); - --bs-offcanvas-transition: transform 0.3s ease-in-out; - --bs-offcanvas-title-line-height: 1.5; -} - -@media (max-width: 575.98px) { - .offcanvas-sm { - position: fixed; - bottom: 0; - z-index: var(--bs-offcanvas-zindex); - display: flex; - flex-direction: column; - max-width: 100%; - color: var(--bs-offcanvas-color); - visibility: hidden; - background-color: var(--bs-offcanvas-bg); - background-clip: padding-box; - outline: 0; - transition: var(--bs-offcanvas-transition); - } -} - -@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) { - .offcanvas-sm { - transition: none; - } -} - -@media (max-width: 575.98px) { - .offcanvas-sm.offcanvas-start { - top: 0; - left: 0; - width: var(--bs-offcanvas-width); - border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(-100%); - } - - .offcanvas-sm.offcanvas-end { - top: 0; - right: 0; - width: var(--bs-offcanvas-width); - border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(100%); - } - - .offcanvas-sm.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(-100%); - } - - .offcanvas-sm.offcanvas-bottom { - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(100%); - } - - .offcanvas-sm.showing, - .offcanvas-sm.show:not(.hiding) { - transform: none; - } - - .offcanvas-sm.showing, - .offcanvas-sm.hiding, - .offcanvas-sm.show { - visibility: visible; - } -} - -@media (min-width: 576px) { - .offcanvas-sm { - --bs-offcanvas-height: auto; - --bs-offcanvas-border-width: 0; - background-color: transparent; - } - - .offcanvas-sm .offcanvas-header { - display: none; - } - - .offcanvas-sm .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - background-color: transparent; - } -} - -@media (max-width: 767.98px) { - .offcanvas-md { - position: fixed; - bottom: 0; - z-index: var(--bs-offcanvas-zindex); - display: flex; - flex-direction: column; - max-width: 100%; - color: var(--bs-offcanvas-color); - visibility: hidden; - background-color: var(--bs-offcanvas-bg); - background-clip: padding-box; - outline: 0; - transition: var(--bs-offcanvas-transition); - } -} - -@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) { - .offcanvas-md { - transition: none; - } -} - -@media (max-width: 767.98px) { - .offcanvas-md.offcanvas-start { - top: 0; - left: 0; - width: var(--bs-offcanvas-width); - border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(-100%); - } - - .offcanvas-md.offcanvas-end { - top: 0; - right: 0; - width: var(--bs-offcanvas-width); - border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(100%); - } - - .offcanvas-md.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(-100%); - } - - .offcanvas-md.offcanvas-bottom { - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(100%); - } - - .offcanvas-md.showing, - .offcanvas-md.show:not(.hiding) { - transform: none; - } - - .offcanvas-md.showing, - .offcanvas-md.hiding, - .offcanvas-md.show { - visibility: visible; - } -} - -@media (min-width: 768px) { - .offcanvas-md { - --bs-offcanvas-height: auto; - --bs-offcanvas-border-width: 0; - background-color: transparent; - } - - .offcanvas-md .offcanvas-header { - display: none; - } - - .offcanvas-md .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - background-color: transparent; - } -} - -@media (max-width: 991.98px) { - .offcanvas-lg { - position: fixed; - bottom: 0; - z-index: var(--bs-offcanvas-zindex); - display: flex; - flex-direction: column; - max-width: 100%; - color: var(--bs-offcanvas-color); - visibility: hidden; - background-color: var(--bs-offcanvas-bg); - background-clip: padding-box; - outline: 0; - transition: var(--bs-offcanvas-transition); - } -} - -@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) { - .offcanvas-lg { - transition: none; - } -} - -@media (max-width: 991.98px) { - .offcanvas-lg.offcanvas-start { - top: 0; - left: 0; - width: var(--bs-offcanvas-width); - border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(-100%); - } - - .offcanvas-lg.offcanvas-end { - top: 0; - right: 0; - width: var(--bs-offcanvas-width); - border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(100%); - } - - .offcanvas-lg.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(-100%); - } - - .offcanvas-lg.offcanvas-bottom { - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(100%); - } - - .offcanvas-lg.showing, - .offcanvas-lg.show:not(.hiding) { - transform: none; - } - - .offcanvas-lg.showing, - .offcanvas-lg.hiding, - .offcanvas-lg.show { - visibility: visible; - } -} - -@media (min-width: 992px) { - .offcanvas-lg { - --bs-offcanvas-height: auto; - --bs-offcanvas-border-width: 0; - background-color: transparent; - } - - .offcanvas-lg .offcanvas-header { - display: none; - } - - .offcanvas-lg .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - background-color: transparent; - } -} - -@media (max-width: 1199.98px) { - .offcanvas-xl { - position: fixed; - bottom: 0; - z-index: var(--bs-offcanvas-zindex); - display: flex; - flex-direction: column; - max-width: 100%; - color: var(--bs-offcanvas-color); - visibility: hidden; - background-color: var(--bs-offcanvas-bg); - background-clip: padding-box; - outline: 0; - transition: var(--bs-offcanvas-transition); - } -} - -@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) { - .offcanvas-xl { - transition: none; - } -} - -@media (max-width: 1199.98px) { - .offcanvas-xl.offcanvas-start { - top: 0; - left: 0; - width: var(--bs-offcanvas-width); - border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(-100%); - } - - .offcanvas-xl.offcanvas-end { - top: 0; - right: 0; - width: var(--bs-offcanvas-width); - border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(100%); - } - - .offcanvas-xl.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(-100%); - } - - .offcanvas-xl.offcanvas-bottom { - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(100%); - } - - .offcanvas-xl.showing, - .offcanvas-xl.show:not(.hiding) { - transform: none; - } - - .offcanvas-xl.showing, - .offcanvas-xl.hiding, - .offcanvas-xl.show { - visibility: visible; - } -} - -@media (min-width: 1200px) { - .offcanvas-xl { - --bs-offcanvas-height: auto; - --bs-offcanvas-border-width: 0; - background-color: transparent; - } - - .offcanvas-xl .offcanvas-header { - display: none; - } - - .offcanvas-xl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - background-color: transparent; - } -} - -@media (max-width: 1399.98px) { - .offcanvas-xxl { - position: fixed; - bottom: 0; - z-index: var(--bs-offcanvas-zindex); - display: flex; - flex-direction: column; - max-width: 100%; - color: var(--bs-offcanvas-color); - visibility: hidden; - background-color: var(--bs-offcanvas-bg); - background-clip: padding-box; - outline: 0; - transition: var(--bs-offcanvas-transition); - } -} - -@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) { - .offcanvas-xxl { - transition: none; - } -} - -@media (max-width: 1399.98px) { - .offcanvas-xxl.offcanvas-start { - top: 0; - left: 0; - width: var(--bs-offcanvas-width); - border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(-100%); - } - - .offcanvas-xxl.offcanvas-end { - top: 0; - right: 0; - width: var(--bs-offcanvas-width); - border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(100%); - } - - .offcanvas-xxl.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(-100%); - } - - .offcanvas-xxl.offcanvas-bottom { - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(100%); - } - - .offcanvas-xxl.showing, - .offcanvas-xxl.show:not(.hiding) { - transform: none; - } - - .offcanvas-xxl.showing, - .offcanvas-xxl.hiding, - .offcanvas-xxl.show { - visibility: visible; - } -} - -@media (min-width: 1400px) { - .offcanvas-xxl { - --bs-offcanvas-height: auto; - --bs-offcanvas-border-width: 0; - background-color: transparent; - } - - .offcanvas-xxl .offcanvas-header { - display: none; - } - - .offcanvas-xxl .offcanvas-body { - display: flex; - flex-grow: 0; - padding: 0; - overflow-y: visible; - background-color: transparent; - } -} - -.offcanvas { - position: fixed; - bottom: 0; - z-index: var(--bs-offcanvas-zindex); - display: flex; - flex-direction: column; - max-width: 100%; - color: var(--bs-offcanvas-color); - visibility: hidden; - background-color: var(--bs-offcanvas-bg); - background-clip: padding-box; - outline: 0; - transition: var(--bs-offcanvas-transition); -} - -@media (prefers-reduced-motion: reduce) { - .offcanvas { - transition: none; - } -} - -.offcanvas.offcanvas-start { - top: 0; - left: 0; - width: var(--bs-offcanvas-width); - border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(-100%); -} - -.offcanvas.offcanvas-end { - top: 0; - right: 0; - width: var(--bs-offcanvas-width); - border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateX(100%); -} - -.offcanvas.offcanvas-top { - top: 0; - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(-100%); -} - -.offcanvas.offcanvas-bottom { - right: 0; - left: 0; - height: var(--bs-offcanvas-height); - max-height: 100%; - border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); - transform: translateY(100%); -} - -.offcanvas.showing, -.offcanvas.show:not(.hiding) { - transform: none; -} - -.offcanvas.showing, -.offcanvas.hiding, -.offcanvas.show { - visibility: visible; -} - -.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: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); -} - -.offcanvas-header .btn-close { - padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5); - margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y)); - margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x)); - margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y)); -} - -.offcanvas-title { - margin-bottom: 0; - line-height: var(--bs-offcanvas-title-line-height); -} - -.offcanvas-body { - flex-grow: 1; - padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); - overflow-y: auto; -} - -.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 { - -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); - mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); - -webkit-mask-size: 200% 100%; - mask-size: 200% 100%; - animation: placeholder-wave 2s linear infinite; -} - -@keyframes placeholder-wave { - 100% { - -webkit-mask-position: -200% 0%; - mask-position: -200% 0%; - } -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.text-bg-primary { - color: #fff; - background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-secondary { - color: #fff; - background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-success { - color: #fff; - background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-info { - color: #000; - background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-warning { - color: #000; - background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-danger { - color: #fff; - background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-light { - color: #000; - background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)); -} - -.text-bg-dark { - color: #fff; - background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)); -} - -.link-primary { - color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-primary:hover, -.link-primary:focus { - color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)); -} - -.link-secondary { - color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-secondary:hover, -.link-secondary:focus { - color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)); -} - -.link-success { - color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-success:hover, -.link-success:focus { - color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)); -} - -.link-info { - color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-info:hover, -.link-info:focus { - color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)); -} - -.link-warning { - color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-warning:hover, -.link-warning:focus { - color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)); -} - -.link-danger { - color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-danger:hover, -.link-danger:focus { - color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)); -} - -.link-light { - color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-light:hover, -.link-light:focus { - color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)); -} - -.link-dark { - color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-dark:hover, -.link-dark:focus { - color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)); -} - -.link-body-emphasis { - color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)); - -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-body-emphasis:hover, -.link-body-emphasis:focus { - color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)); - -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)); - text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)); -} - -.focus-ring:focus { - outline: 0; - box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color); -} - -.icon-link { - display: inline-flex; - gap: 0.375rem; - align-items: center; - -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5)); - text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5)); - text-underline-offset: 0.25em; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.icon-link>.bi { - flex-shrink: 0; - width: 1em; - height: 1em; - fill: currentcolor; - transition: 0.2s ease-in-out transform; -} - -@media (prefers-reduced-motion: reduce) { - .icon-link>.bi { - transition: none; - } -} - -.icon-link-hover:hover>.bi, -.icon-link-hover:focus-visible>.bi { - transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0)); -} - -.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: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; -} - -.sticky-bottom { - position: -webkit-sticky; - position: sticky; - bottom: 0; - z-index: 1020; -} - -@media (min-width: 576px) { - .sticky-sm-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } - - .sticky-sm-bottom { - position: -webkit-sticky; - position: sticky; - bottom: 0; - z-index: 1020; - } -} - -@media (min-width: 768px) { - .sticky-md-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } - - .sticky-md-bottom { - position: -webkit-sticky; - position: sticky; - bottom: 0; - z-index: 1020; - } -} - -@media (min-width: 992px) { - .sticky-lg-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } - - .sticky-lg-bottom { - position: -webkit-sticky; - position: sticky; - bottom: 0; - z-index: 1020; - } -} - -@media (min-width: 1200px) { - .sticky-xl-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } - - .sticky-xl-bottom { - position: -webkit-sticky; - position: sticky; - bottom: 0; - z-index: 1020; - } -} - -@media (min-width: 1400px) { - .sticky-xxl-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } - - .sticky-xxl-bottom { - position: -webkit-sticky; - position: sticky; - bottom: 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) { - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} - -.visually-hidden:not(caption), -.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) { - position: absolute; -} - -.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: var(--bs-border-width); - min-height: 1em; - background-color: currentcolor; - opacity: 0.25; -} - -.align-baseline { - vertical-align: baseline; -} - -.align-top { - vertical-align: top; -} - -.align-middle { - vertical-align: middle; -} - -.align-bottom { - vertical-align: bottom; -} - -.align-text-bottom { - vertical-align: text-bottom; -} - -.align-text-top { - vertical-align: text-top; -} - -.float-start { - float: left; -} - -.float-end { - float: right; -} - -.float-none { - float: none; -} - -.object-fit-contain { - -o-object-fit: contain; - object-fit: contain; -} - -.object-fit-cover { - -o-object-fit: cover; - object-fit: cover; -} - -.object-fit-fill { - -o-object-fit: fill; - object-fit: fill; -} - -.object-fit-scale { - -o-object-fit: scale-down; - object-fit: scale-down; -} - -.object-fit-none { - -o-object-fit: none; - object-fit: none; -} - -.opacity-0 { - opacity: 0; -} - -.opacity-25 { - opacity: 0.25; -} - -.opacity-50 { - opacity: 0.5; -} - -.opacity-75 { - opacity: 0.75; -} - -.opacity-100 { - opacity: 1; -} - -.overflow-auto { - overflow: auto; -} - -.overflow-hidden { - overflow: hidden; -} - -.overflow-visible { - overflow: visible; -} - -.overflow-scroll { - overflow: scroll; -} - -.overflow-x-auto { - overflow-x: auto; -} - -.overflow-x-hidden { - overflow-x: hidden; -} - -.overflow-x-visible { - overflow-x: visible; -} - -.overflow-x-scroll { - overflow-x: scroll; -} - -.overflow-y-auto { - overflow-y: auto; -} - -.overflow-y-hidden { - overflow-y: hidden; -} - -.overflow-y-visible { - overflow-y: visible; -} - -.overflow-y-scroll { - overflow-y: scroll; -} - -.d-inline { - display: inline; -} - -.d-inline-block { - display: inline-block; -} - -.d-block { - display: block; -} - -.d-grid { - display: grid; -} - -.d-inline-grid { - display: inline-grid; -} - -.d-table { - display: table; -} - -.d-table-row { - display: table-row; -} - -.d-table-cell { - display: table-cell; -} - -.d-flex { - display: flex; -} - -.d-inline-flex { - display: inline-flex; -} - -.d-none { - display: none; -} - -.shadow { - box-shadow: var(--bs-box-shadow); -} - -.shadow-sm { - box-shadow: var(--bs-box-shadow-sm); -} - -.shadow-lg { - box-shadow: var(--bs-box-shadow-lg); -} - -.shadow-none { - box-shadow: none; -} - -.focus-ring-primary { - --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-secondary { - --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-success { - --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-info { - --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-warning { - --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-danger { - --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-light { - --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity)); -} - -.focus-ring-dark { - --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity)); -} - -.position-static { - position: static; -} - -.position-relative { - position: relative; -} - -.position-absolute { - position: absolute; -} - -.position-fixed { - position: fixed; -} - -.position-sticky { - position: -webkit-sticky; - position: sticky; -} - -.top-0 { - top: 0; -} - -.top-50 { - top: 50%; -} - -.top-100 { - top: 100%; -} - -.bottom-0 { - bottom: 0; -} - -.bottom-50 { - bottom: 50%; -} - -.bottom-100 { - bottom: 100%; -} - -.start-0 { - left: 0; -} - -.start-50 { - left: 50%; -} - -.start-100 { - left: 100%; -} - -.end-0 { - right: 0; -} - -.end-50 { - right: 50%; -} - -.end-100 { - right: 100%; -} - -.translate-middle { - transform: translate(-50%, -50%); -} - -.translate-middle-x { - transform: translateX(-50%); -} - -.translate-middle-y { - transform: translateY(-50%); -} - -.border { - border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color); -} - -.border-0 { - border: 0; -} - -.border-top { - border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color); -} - -.border-top-0 { - border-top: 0; -} - -.border-end { - border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color); -} - -.border-end-0 { - border-right: 0; -} - -.border-bottom { - border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color); -} - -.border-bottom-0 { - border-bottom: 0; -} - -.border-start { - border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color); -} - -.border-start-0 { - border-left: 0; -} - -.border-primary { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)); -} - -.border-secondary { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)); -} - -.border-success { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)); -} - -.border-info { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)); -} - -.border-warning { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)); -} - -.border-danger { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)); -} - -.border-light { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)); -} - -.border-dark { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)); -} - -.border-black { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)); -} - -.border-white { - --bs-border-opacity: 1; - border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)); -} - -.border-primary-subtle { - border-color: var(--bs-primary-border-subtle); -} - -.border-secondary-subtle { - border-color: var(--bs-secondary-border-subtle); -} - -.border-success-subtle { - border-color: var(--bs-success-border-subtle); -} - -.border-info-subtle { - border-color: var(--bs-info-border-subtle); -} - -.border-warning-subtle { - border-color: var(--bs-warning-border-subtle); -} - -.border-danger-subtle { - border-color: var(--bs-danger-border-subtle); -} - -.border-light-subtle { - border-color: var(--bs-light-border-subtle); -} - -.border-dark-subtle { - border-color: var(--bs-dark-border-subtle); -} - -.border-1 { - border-width: 1px; -} - -.border-2 { - border-width: 2px; -} - -.border-3 { - border-width: 3px; -} - -.border-4 { - border-width: 4px; -} - -.border-5 { - border-width: 5px; -} - -.border-opacity-10 { - --bs-border-opacity: 0.1; -} - -.border-opacity-25 { - --bs-border-opacity: 0.25; -} - -.border-opacity-50 { - --bs-border-opacity: 0.5; -} - -.border-opacity-75 { - --bs-border-opacity: 0.75; -} - -.border-opacity-100 { - --bs-border-opacity: 1; -} - -.w-25 { - width: 25%; -} - -.w-50 { - width: 50%; -} - -.w-75 { - width: 75%; -} - -.w-100 { - width: 100%; -} - -.w-auto { - width: auto; -} - -.mw-100 { - max-width: 100%; -} - -.vw-100 { - width: 100vw; -} - -.min-vw-100 { - min-width: 100vw; -} - -.h-25 { - height: 25%; -} - -.h-50 { - height: 50%; -} - -.h-75 { - height: 75%; -} - -.h-100 { - height: 100%; -} - -.h-auto { - height: auto; -} - -.mh-100 { - max-height: 100%; -} - -.vh-100 { - height: 100vh; -} - -.min-vh-100 { - min-height: 100vh; -} - -.flex-fill { - flex: 1 1 auto; -} - -.flex-row { - flex-direction: row; -} - -.flex-column { - flex-direction: column; -} - -.flex-row-reverse { - flex-direction: row-reverse; -} - -.flex-column-reverse { - flex-direction: column-reverse; -} - -.flex-grow-0 { - flex-grow: 0; -} - -.flex-grow-1 { - flex-grow: 1; -} - -.flex-shrink-0 { - flex-shrink: 0; -} - -.flex-shrink-1 { - flex-shrink: 1; -} - -.flex-wrap { - flex-wrap: wrap; -} - -.flex-nowrap { - flex-wrap: nowrap; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse; -} - -.justify-content-start { - justify-content: flex-start; -} - -.justify-content-end { - justify-content: flex-end; -} - -.justify-content-center { - justify-content: center; -} - -.justify-content-between { - justify-content: space-between; -} - -.justify-content-around { - justify-content: space-around; -} - -.justify-content-evenly { - justify-content: space-evenly; -} - -.align-items-start { - align-items: flex-start; -} - -.align-items-end { - align-items: flex-end; -} - -.align-items-center { - align-items: center; -} - -.align-items-baseline { - align-items: baseline; -} - -.align-items-stretch { - align-items: stretch; -} - -.align-content-start { - align-content: flex-start; -} - -.align-content-end { - align-content: flex-end; -} - -.align-content-center { - align-content: center; -} - -.align-content-between { - align-content: space-between; -} - -.align-content-around { - align-content: space-around; -} - -.align-content-stretch { - align-content: stretch; -} - -.align-self-auto { - align-self: auto; -} - -.align-self-start { - align-self: flex-start; -} - -.align-self-end { - align-self: flex-end; -} - -.align-self-center { - align-self: center; -} - -.align-self-baseline { - align-self: baseline; -} - -.align-self-stretch { - align-self: stretch; -} - -.order-first { - order: -1; -} - -.order-0 { - order: 0; -} - -.order-1 { - order: 1; -} - -.order-2 { - order: 2; -} - -.order-3 { - order: 3; -} - -.order-4 { - order: 4; -} - -.order-5 { - order: 5; -} - -.order-last { - order: 6; -} - -.m-0 { - margin: 0; -} - -.m-1 { - margin: 0.25rem; -} - -.m-2 { - margin: 0.5rem; -} - -.m-3 { - margin: 1rem; -} - -.m-4 { - margin: 1.5rem; -} - -.m-5 { - margin: 3rem; -} - -.m-auto { - margin: auto; -} - -.mx-0 { - margin-right: 0; - margin-left: 0; -} - -.mx-1 { - margin-right: 0.25rem; - margin-left: 0.25rem; -} - -.mx-2 { - margin-right: 0.5rem; - margin-left: 0.5rem; -} - -.mx-3 { - margin-right: 1rem; - margin-left: 1rem; -} - -.mx-4 { - margin-right: 1.5rem; - margin-left: 1.5rem; -} - -.mx-5 { - margin-right: 3rem; - margin-left: 3rem; -} - -.mx-auto { - margin-right: auto; - margin-left: auto; -} - -.my-0 { - margin-top: 0; - margin-bottom: 0; -} - -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; -} - -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; -} - -.my-3 { - margin-top: 1rem; - margin-bottom: 1rem; -} - -.my-4 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; -} - -.my-5 { - margin-top: 3rem; - margin-bottom: 3rem; -} - -.my-auto { - margin-top: auto; - margin-bottom: auto; -} - -.mt-0 { - margin-top: 0; -} - -.mt-1 { - margin-top: 0.25rem; -} - -.mt-2 { - margin-top: 0.5rem; -} - -.mt-3 { - margin-top: 1rem; -} - -.mt-4 { - margin-top: 1.5rem; -} - -.mt-5 { - margin-top: 3rem; -} - -.mt-auto { - margin-top: auto; -} - -.me-0 { - margin-right: 0; -} - -.me-1 { - margin-right: 0.25rem; -} - -.me-2 { - margin-right: 0.5rem; -} - -.me-3 { - margin-right: 1rem; -} - -.me-4 { - margin-right: 1.5rem; -} - -.me-5 { - margin-right: 3rem; -} - -.me-auto { - margin-right: auto; -} - -.mb-0 { - margin-bottom: 0; -} - -.mb-1 { - margin-bottom: 0.25rem; -} - -.mb-2 { - margin-bottom: 0.5rem; -} - -.mb-3 { - margin-bottom: 1rem; -} - -.mb-4 { - margin-bottom: 1.5rem; -} - -.mb-5 { - margin-bottom: 3rem; -} - -.mb-auto { - margin-bottom: auto; -} - -.ms-0 { - margin-left: 0; -} - -.ms-1 { - margin-left: 0.25rem; -} - -.ms-2 { - margin-left: 0.5rem; -} - -.ms-3 { - margin-left: 1rem; -} - -.ms-4 { - margin-left: 1.5rem; -} - -.ms-5 { - margin-left: 3rem; -} - -.ms-auto { - margin-left: auto; -} - -.p-0 { - padding: 0; -} - -.p-1 { - padding: 0.25rem; -} - -.p-2 { - padding: 0.5rem; -} - -.p-3 { - padding: 1rem; -} - -.p-4 { - padding: 1.5rem; -} - -.p-5 { - padding: 3rem; -} - -.px-0 { - padding-right: 0; - padding-left: 0; -} - -.px-1 { - padding-right: 0.25rem; - padding-left: 0.25rem; -} - -.px-2 { - padding-right: 0.5rem; - padding-left: 0.5rem; -} - -.px-3 { - padding-right: 1rem; - padding-left: 1rem; -} - -.px-4 { - padding-right: 1.5rem; - padding-left: 1.5rem; -} - -.px-5 { - padding-right: 3rem; - padding-left: 3rem; -} - -.py-0 { - padding-top: 0; - padding-bottom: 0; -} - -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; -} - -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.py-3 { - padding-top: 1rem; - padding-bottom: 1rem; -} - -.py-4 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; -} - -.py-5 { - padding-top: 3rem; - padding-bottom: 3rem; -} - -.pt-0 { - padding-top: 0; -} - -.pt-1 { - padding-top: 0.25rem; -} - -.pt-2 { - padding-top: 0.5rem; -} - -.pt-3 { - padding-top: 1rem; -} - -.pt-4 { - padding-top: 1.5rem; -} - -.pt-5 { - padding-top: 3rem; -} - -.pe-0 { - padding-right: 0; -} - -.pe-1 { - padding-right: 0.25rem; -} - -.pe-2 { - padding-right: 0.5rem; -} - -.pe-3 { - padding-right: 1rem; -} - -.pe-4 { - padding-right: 1.5rem; -} - -.pe-5 { - padding-right: 3rem; -} - -.pb-0 { - padding-bottom: 0; -} - -.pb-1 { - padding-bottom: 0.25rem; -} - -.pb-2 { - padding-bottom: 0.5rem; -} - -.pb-3 { - padding-bottom: 1rem; -} - -.pb-4 { - padding-bottom: 1.5rem; -} - -.pb-5 { - padding-bottom: 3rem; -} - -.ps-0 { - padding-left: 0; -} - -.ps-1 { - padding-left: 0.25rem; -} - -.ps-2 { - padding-left: 0.5rem; -} - -.ps-3 { - padding-left: 1rem; -} - -.ps-4 { - padding-left: 1.5rem; -} - -.ps-5 { - padding-left: 3rem; -} - -.gap-0 { - gap: 0; -} - -.gap-1 { - gap: 0.25rem; -} - -.gap-2 { - gap: 0.5rem; -} - -.gap-3 { - gap: 1rem; -} - -.gap-4 { - gap: 1.5rem; -} - -.gap-5 { - gap: 3rem; -} - -.row-gap-0 { - row-gap: 0; -} - -.row-gap-1 { - row-gap: 0.25rem; -} - -.row-gap-2 { - row-gap: 0.5rem; -} - -.row-gap-3 { - row-gap: 1rem; -} - -.row-gap-4 { - row-gap: 1.5rem; -} - -.row-gap-5 { - row-gap: 3rem; -} - -.column-gap-0 { - -moz-column-gap: 0; - column-gap: 0; -} - -.column-gap-1 { - -moz-column-gap: 0.25rem; - column-gap: 0.25rem; -} - -.column-gap-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; -} - -.column-gap-3 { - -moz-column-gap: 1rem; - column-gap: 1rem; -} - -.column-gap-4 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; -} - -.column-gap-5 { - -moz-column-gap: 3rem; - column-gap: 3rem; -} - -.font-monospace { - font-family: var(--bs-font-monospace); -} - -.fs-1 { - font-size: calc(1.375rem + 1.5vw); -} - -.fs-2 { - font-size: calc(1.325rem + 0.9vw); -} - -.fs-3 { - font-size: calc(1.3rem + 0.6vw); -} - -.fs-4 { - font-size: calc(1.275rem + 0.3vw); -} - -.fs-5 { - font-size: 1.25rem; -} - -.fs-6 { - font-size: 1rem; -} - -.fst-italic { - font-style: italic; -} - -.fst-normal { - font-style: normal; -} - -.fw-lighter { - font-weight: lighter; -} - -.fw-light { - font-weight: 300; -} - -.fw-normal { - font-weight: 400; -} - -.fw-medium { - font-weight: 500; -} - -.fw-semibold { - font-weight: 600; -} - -.fw-bold { - font-weight: 700; -} - -.fw-bolder { - font-weight: bolder; -} - -.lh-1 { - line-height: 1; -} - -.lh-sm { - line-height: 1.25; -} - -.lh-base { - line-height: 1.5; -} - -.lh-lg { - line-height: 2; -} - -.text-start { - text-align: left; -} - -.text-end { - text-align: right; -} - -.text-center { - text-align: center; -} - -.text-decoration-none { - text-decoration: none; -} - -.text-decoration-underline { - text-decoration: underline; -} - -.text-decoration-line-through { - text-decoration: line-through; -} - -.text-lowercase { - text-transform: lowercase; -} - -.text-uppercase { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-wrap { - white-space: normal; -} - -.text-nowrap { - white-space: nowrap; -} - -.text-break { - word-wrap: break-word; - word-break: break-word; -} - -.text-primary { - --bs-text-opacity: 1; - color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)); -} - -.text-secondary { - --bs-text-opacity: 1; - color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)); -} - -.text-success { - --bs-text-opacity: 1; - color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)); -} - -.text-info { - --bs-text-opacity: 1; - color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)); -} - -.text-warning { - --bs-text-opacity: 1; - color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)); -} - -.text-danger { - --bs-text-opacity: 1; - color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)); -} - -.text-light { - --bs-text-opacity: 1; - color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)); -} - -.text-dark { - --bs-text-opacity: 1; - color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)); -} - -.text-black { - --bs-text-opacity: 1; - color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)); -} - -.text-white { - --bs-text-opacity: 1; - color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)); -} - -.text-body { - --bs-text-opacity: 1; - color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)); -} - -.text-muted { - --bs-text-opacity: 1; - color: var(--bs-secondary-color); -} - -.text-black-50 { - --bs-text-opacity: 1; - color: rgba(0, 0, 0, 0.5); -} - -.text-white-50 { - --bs-text-opacity: 1; - color: rgba(255, 255, 255, 0.5); -} - -.text-body-secondary { - --bs-text-opacity: 1; - color: var(--bs-secondary-color); -} - -.text-body-tertiary { - --bs-text-opacity: 1; - color: var(--bs-tertiary-color); -} - -.text-body-emphasis { - --bs-text-opacity: 1; - color: var(--bs-emphasis-color); -} - -.text-reset { - --bs-text-opacity: 1; - color: inherit; -} - -.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; -} - -.text-primary-emphasis { - color: var(--bs-primary-text-emphasis); -} - -.text-secondary-emphasis { - color: var(--bs-secondary-text-emphasis); -} - -.text-success-emphasis { - color: var(--bs-success-text-emphasis); -} - -.text-info-emphasis { - color: var(--bs-info-text-emphasis); -} - -.text-warning-emphasis { - color: var(--bs-warning-text-emphasis); -} - -.text-danger-emphasis { - color: var(--bs-danger-text-emphasis); -} - -.text-light-emphasis { - color: var(--bs-light-text-emphasis); -} - -.text-dark-emphasis { - color: var(--bs-dark-text-emphasis); -} - -.link-opacity-10 { - --bs-link-opacity: 0.1; -} - -.link-opacity-10-hover:hover { - --bs-link-opacity: 0.1; -} - -.link-opacity-25 { - --bs-link-opacity: 0.25; -} - -.link-opacity-25-hover:hover { - --bs-link-opacity: 0.25; -} - -.link-opacity-50 { - --bs-link-opacity: 0.5; -} - -.link-opacity-50-hover:hover { - --bs-link-opacity: 0.5; -} - -.link-opacity-75 { - --bs-link-opacity: 0.75; -} - -.link-opacity-75-hover:hover { - --bs-link-opacity: 0.75; -} - -.link-opacity-100 { - --bs-link-opacity: 1; -} - -.link-opacity-100-hover:hover { - --bs-link-opacity: 1; -} - -.link-offset-1 { - text-underline-offset: 0.125em; -} - -.link-offset-1-hover:hover { - text-underline-offset: 0.125em; -} - -.link-offset-2 { - text-underline-offset: 0.25em; -} - -.link-offset-2-hover:hover { - text-underline-offset: 0.25em; -} - -.link-offset-3 { - text-underline-offset: 0.375em; -} - -.link-offset-3-hover:hover { - text-underline-offset: 0.375em; -} - -.link-underline-primary { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-secondary { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-success { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-info { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-warning { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-danger { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-light { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline-dark { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)); - text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)); -} - -.link-underline { - --bs-link-underline-opacity: 1; - -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)); - text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)); -} - -.link-underline-opacity-0 { - --bs-link-underline-opacity: 0; -} - -.link-underline-opacity-0-hover:hover { - --bs-link-underline-opacity: 0; -} - -.link-underline-opacity-10 { - --bs-link-underline-opacity: 0.1; -} - -.link-underline-opacity-10-hover:hover { - --bs-link-underline-opacity: 0.1; -} - -.link-underline-opacity-25 { - --bs-link-underline-opacity: 0.25; -} - -.link-underline-opacity-25-hover:hover { - --bs-link-underline-opacity: 0.25; -} - -.link-underline-opacity-50 { - --bs-link-underline-opacity: 0.5; -} - -.link-underline-opacity-50-hover:hover { - --bs-link-underline-opacity: 0.5; -} - -.link-underline-opacity-75 { - --bs-link-underline-opacity: 0.75; -} - -.link-underline-opacity-75-hover:hover { - --bs-link-underline-opacity: 0.75; -} - -.link-underline-opacity-100 { - --bs-link-underline-opacity: 1; -} - -.link-underline-opacity-100-hover:hover { - --bs-link-underline-opacity: 1; -} - -.bg-primary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)); -} - -.bg-secondary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)); -} - -.bg-success { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)); -} - -.bg-info { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)); -} - -.bg-warning { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)); -} - -.bg-danger { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)); -} - -.bg-light { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)); -} - -.bg-dark { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)); -} - -.bg-black { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)); -} - -.bg-white { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)); -} - -.bg-body { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)); -} - -.bg-transparent { - --bs-bg-opacity: 1; - background-color: transparent; -} - -.bg-body-secondary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)); -} - -.bg-body-tertiary { - --bs-bg-opacity: 1; - background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)); -} - -.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-primary-subtle { - background-color: var(--bs-primary-bg-subtle); -} - -.bg-secondary-subtle { - background-color: var(--bs-secondary-bg-subtle); -} - -.bg-success-subtle { - background-color: var(--bs-success-bg-subtle); -} - -.bg-info-subtle { - background-color: var(--bs-info-bg-subtle); -} - -.bg-warning-subtle { - background-color: var(--bs-warning-bg-subtle); -} - -.bg-danger-subtle { - background-color: var(--bs-danger-bg-subtle); -} - -.bg-light-subtle { - background-color: var(--bs-light-bg-subtle); -} - -.bg-dark-subtle { - background-color: var(--bs-dark-bg-subtle); -} - -.bg-gradient { - background-image: var(--bs-gradient); -} - -.user-select-all { - -webkit-user-select: all; - -moz-user-select: all; - user-select: all; -} - -.user-select-auto { - -webkit-user-select: auto; - -moz-user-select: auto; - user-select: auto; -} - -.user-select-none { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; -} - -.pe-none { - pointer-events: none; -} - -.pe-auto { - pointer-events: auto; -} - -.rounded { - border-radius: var(--bs-border-radius); -} - -.rounded-0 { - border-radius: 0; -} - -.rounded-1 { - border-radius: var(--bs-border-radius-sm); -} - -.rounded-2 { - border-radius: var(--bs-border-radius); -} - -.rounded-3 { - border-radius: var(--bs-border-radius-lg); -} - -.rounded-4 { - border-radius: var(--bs-border-radius-xl); -} - -.rounded-5 { - border-radius: var(--bs-border-radius-xxl); -} - -.rounded-circle { - border-radius: 50%; -} - -.rounded-pill { - border-radius: var(--bs-border-radius-pill); -} - -.rounded-top { - border-top-left-radius: var(--bs-border-radius); - border-top-right-radius: var(--bs-border-radius); -} - -.rounded-top-0 { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.rounded-top-1 { - border-top-left-radius: var(--bs-border-radius-sm); - border-top-right-radius: var(--bs-border-radius-sm); -} - -.rounded-top-2 { - border-top-left-radius: var(--bs-border-radius); - border-top-right-radius: var(--bs-border-radius); -} - -.rounded-top-3 { - border-top-left-radius: var(--bs-border-radius-lg); - border-top-right-radius: var(--bs-border-radius-lg); -} - -.rounded-top-4 { - border-top-left-radius: var(--bs-border-radius-xl); - border-top-right-radius: var(--bs-border-radius-xl); -} - -.rounded-top-5 { - border-top-left-radius: var(--bs-border-radius-xxl); - border-top-right-radius: var(--bs-border-radius-xxl); -} - -.rounded-top-circle { - border-top-left-radius: 50%; - border-top-right-radius: 50%; -} - -.rounded-top-pill { - border-top-left-radius: var(--bs-border-radius-pill); - border-top-right-radius: var(--bs-border-radius-pill); -} - -.rounded-end { - border-top-right-radius: var(--bs-border-radius); - border-bottom-right-radius: var(--bs-border-radius); -} - -.rounded-end-0 { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.rounded-end-1 { - border-top-right-radius: var(--bs-border-radius-sm); - border-bottom-right-radius: var(--bs-border-radius-sm); -} - -.rounded-end-2 { - border-top-right-radius: var(--bs-border-radius); - border-bottom-right-radius: var(--bs-border-radius); -} - -.rounded-end-3 { - border-top-right-radius: var(--bs-border-radius-lg); - border-bottom-right-radius: var(--bs-border-radius-lg); -} - -.rounded-end-4 { - border-top-right-radius: var(--bs-border-radius-xl); - border-bottom-right-radius: var(--bs-border-radius-xl); -} - -.rounded-end-5 { - border-top-right-radius: var(--bs-border-radius-xxl); - border-bottom-right-radius: var(--bs-border-radius-xxl); -} - -.rounded-end-circle { - border-top-right-radius: 50%; - border-bottom-right-radius: 50%; -} - -.rounded-end-pill { - border-top-right-radius: var(--bs-border-radius-pill); - border-bottom-right-radius: var(--bs-border-radius-pill); -} - -.rounded-bottom { - border-bottom-right-radius: var(--bs-border-radius); - border-bottom-left-radius: var(--bs-border-radius); -} - -.rounded-bottom-0 { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.rounded-bottom-1 { - border-bottom-right-radius: var(--bs-border-radius-sm); - border-bottom-left-radius: var(--bs-border-radius-sm); -} - -.rounded-bottom-2 { - border-bottom-right-radius: var(--bs-border-radius); - border-bottom-left-radius: var(--bs-border-radius); -} - -.rounded-bottom-3 { - border-bottom-right-radius: var(--bs-border-radius-lg); - border-bottom-left-radius: var(--bs-border-radius-lg); -} - -.rounded-bottom-4 { - border-bottom-right-radius: var(--bs-border-radius-xl); - border-bottom-left-radius: var(--bs-border-radius-xl); -} - -.rounded-bottom-5 { - border-bottom-right-radius: var(--bs-border-radius-xxl); - border-bottom-left-radius: var(--bs-border-radius-xxl); -} - -.rounded-bottom-circle { - border-bottom-right-radius: 50%; - border-bottom-left-radius: 50%; -} - -.rounded-bottom-pill { - border-bottom-right-radius: var(--bs-border-radius-pill); - border-bottom-left-radius: var(--bs-border-radius-pill); -} - -.rounded-start { - border-bottom-left-radius: var(--bs-border-radius); - border-top-left-radius: var(--bs-border-radius); -} - -.rounded-start-0 { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.rounded-start-1 { - border-bottom-left-radius: var(--bs-border-radius-sm); - border-top-left-radius: var(--bs-border-radius-sm); -} - -.rounded-start-2 { - border-bottom-left-radius: var(--bs-border-radius); - border-top-left-radius: var(--bs-border-radius); -} - -.rounded-start-3 { - border-bottom-left-radius: var(--bs-border-radius-lg); - border-top-left-radius: var(--bs-border-radius-lg); -} - -.rounded-start-4 { - border-bottom-left-radius: var(--bs-border-radius-xl); - border-top-left-radius: var(--bs-border-radius-xl); -} - -.rounded-start-5 { - border-bottom-left-radius: var(--bs-border-radius-xxl); - border-top-left-radius: var(--bs-border-radius-xxl); -} - -.rounded-start-circle { - border-bottom-left-radius: 50%; - border-top-left-radius: 50%; -} - -.rounded-start-pill { - border-bottom-left-radius: var(--bs-border-radius-pill); - border-top-left-radius: var(--bs-border-radius-pill); -} - -.visible { - visibility: visible; -} - -.invisible { - visibility: hidden; -} - -.z-n1 { - z-index: -1; -} - -.z-0 { - z-index: 0; -} - -.z-1 { - z-index: 1; -} - -.z-2 { - z-index: 2; -} - -.z-3 { - z-index: 3; -} - -@media (min-width: 576px) { - .float-sm-start { - float: left; - } - - .float-sm-end { - float: right; - } - - .float-sm-none { - float: none; - } - - .object-fit-sm-contain { - -o-object-fit: contain; - object-fit: contain; - } - - .object-fit-sm-cover { - -o-object-fit: cover; - object-fit: cover; - } - - .object-fit-sm-fill { - -o-object-fit: fill; - object-fit: fill; - } - - .object-fit-sm-scale { - -o-object-fit: scale-down; - object-fit: scale-down; - } - - .object-fit-sm-none { - -o-object-fit: none; - object-fit: none; - } - - .d-sm-inline { - display: inline; - } - - .d-sm-inline-block { - display: inline-block; - } - - .d-sm-block { - display: block; - } - - .d-sm-grid { - display: grid; - } - - .d-sm-inline-grid { - display: inline-grid; - } - - .d-sm-table { - display: table; - } - - .d-sm-table-row { - display: table-row; - } - - .d-sm-table-cell { - display: table-cell; - } - - .d-sm-flex { - display: flex; - } - - .d-sm-inline-flex { - display: inline-flex; - } - - .d-sm-none { - display: none; - } - - .flex-sm-fill { - flex: 1 1 auto; - } - - .flex-sm-row { - flex-direction: row; - } - - .flex-sm-column { - flex-direction: column; - } - - .flex-sm-row-reverse { - flex-direction: row-reverse; - } - - .flex-sm-column-reverse { - flex-direction: column-reverse; - } - - .flex-sm-grow-0 { - flex-grow: 0; - } - - .flex-sm-grow-1 { - flex-grow: 1; - } - - .flex-sm-shrink-0 { - flex-shrink: 0; - } - - .flex-sm-shrink-1 { - flex-shrink: 1; - } - - .flex-sm-wrap { - flex-wrap: wrap; - } - - .flex-sm-nowrap { - flex-wrap: nowrap; - } - - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .justify-content-sm-start { - justify-content: flex-start; - } - - .justify-content-sm-end { - justify-content: flex-end; - } - - .justify-content-sm-center { - justify-content: center; - } - - .justify-content-sm-between { - justify-content: space-between; - } - - .justify-content-sm-around { - justify-content: space-around; - } - - .justify-content-sm-evenly { - justify-content: space-evenly; - } - - .align-items-sm-start { - align-items: flex-start; - } - - .align-items-sm-end { - align-items: flex-end; - } - - .align-items-sm-center { - align-items: center; - } - - .align-items-sm-baseline { - align-items: baseline; - } - - .align-items-sm-stretch { - align-items: stretch; - } - - .align-content-sm-start { - align-content: flex-start; - } - - .align-content-sm-end { - align-content: flex-end; - } - - .align-content-sm-center { - align-content: center; - } - - .align-content-sm-between { - align-content: space-between; - } - - .align-content-sm-around { - align-content: space-around; - } - - .align-content-sm-stretch { - align-content: stretch; - } - - .align-self-sm-auto { - align-self: auto; - } - - .align-self-sm-start { - align-self: flex-start; - } - - .align-self-sm-end { - align-self: flex-end; - } - - .align-self-sm-center { - align-self: center; - } - - .align-self-sm-baseline { - align-self: baseline; - } - - .align-self-sm-stretch { - align-self: stretch; - } - - .order-sm-first { - order: -1; - } - - .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-last { - order: 6; - } - - .m-sm-0 { - margin: 0; - } - - .m-sm-1 { - margin: 0.25rem; - } - - .m-sm-2 { - margin: 0.5rem; - } - - .m-sm-3 { - margin: 1rem; - } - - .m-sm-4 { - margin: 1.5rem; - } - - .m-sm-5 { - margin: 3rem; - } - - .m-sm-auto { - margin: auto; - } - - .mx-sm-0 { - margin-right: 0; - margin-left: 0; - } - - .mx-sm-1 { - margin-right: 0.25rem; - margin-left: 0.25rem; - } - - .mx-sm-2 { - margin-right: 0.5rem; - margin-left: 0.5rem; - } - - .mx-sm-3 { - margin-right: 1rem; - margin-left: 1rem; - } - - .mx-sm-4 { - margin-right: 1.5rem; - margin-left: 1.5rem; - } - - .mx-sm-5 { - margin-right: 3rem; - margin-left: 3rem; - } - - .mx-sm-auto { - margin-right: auto; - margin-left: auto; - } - - .my-sm-0 { - margin-top: 0; - margin-bottom: 0; - } - - .my-sm-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - - .my-sm-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - - .my-sm-3 { - margin-top: 1rem; - margin-bottom: 1rem; - } - - .my-sm-4 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - - .my-sm-5 { - margin-top: 3rem; - margin-bottom: 3rem; - } - - .my-sm-auto { - margin-top: auto; - margin-bottom: auto; - } - - .mt-sm-0 { - margin-top: 0; - } - - .mt-sm-1 { - margin-top: 0.25rem; - } - - .mt-sm-2 { - margin-top: 0.5rem; - } - - .mt-sm-3 { - margin-top: 1rem; - } - - .mt-sm-4 { - margin-top: 1.5rem; - } - - .mt-sm-5 { - margin-top: 3rem; - } - - .mt-sm-auto { - margin-top: auto; - } - - .me-sm-0 { - margin-right: 0; - } - - .me-sm-1 { - margin-right: 0.25rem; - } - - .me-sm-2 { - margin-right: 0.5rem; - } - - .me-sm-3 { - margin-right: 1rem; - } - - .me-sm-4 { - margin-right: 1.5rem; - } - - .me-sm-5 { - margin-right: 3rem; - } - - .me-sm-auto { - margin-right: auto; - } - - .mb-sm-0 { - margin-bottom: 0; - } - - .mb-sm-1 { - margin-bottom: 0.25rem; - } - - .mb-sm-2 { - margin-bottom: 0.5rem; - } - - .mb-sm-3 { - margin-bottom: 1rem; - } - - .mb-sm-4 { - margin-bottom: 1.5rem; - } - - .mb-sm-5 { - margin-bottom: 3rem; - } - - .mb-sm-auto { - margin-bottom: auto; - } - - .ms-sm-0 { - margin-left: 0; - } - - .ms-sm-1 { - margin-left: 0.25rem; - } - - .ms-sm-2 { - margin-left: 0.5rem; - } - - .ms-sm-3 { - margin-left: 1rem; - } - - .ms-sm-4 { - margin-left: 1.5rem; - } - - .ms-sm-5 { - margin-left: 3rem; - } - - .ms-sm-auto { - margin-left: auto; - } - - .p-sm-0 { - padding: 0; - } - - .p-sm-1 { - padding: 0.25rem; - } - - .p-sm-2 { - padding: 0.5rem; - } - - .p-sm-3 { - padding: 1rem; - } - - .p-sm-4 { - padding: 1.5rem; - } - - .p-sm-5 { - padding: 3rem; - } - - .px-sm-0 { - padding-right: 0; - padding-left: 0; - } - - .px-sm-1 { - padding-right: 0.25rem; - padding-left: 0.25rem; - } - - .px-sm-2 { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - - .px-sm-3 { - padding-right: 1rem; - padding-left: 1rem; - } - - .px-sm-4 { - padding-right: 1.5rem; - padding-left: 1.5rem; - } - - .px-sm-5 { - padding-right: 3rem; - padding-left: 3rem; - } - - .py-sm-0 { - padding-top: 0; - padding-bottom: 0; - } - - .py-sm-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - } - - .py-sm-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - } - - .py-sm-3 { - padding-top: 1rem; - padding-bottom: 1rem; - } - - .py-sm-4 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } - - .py-sm-5 { - padding-top: 3rem; - padding-bottom: 3rem; - } - - .pt-sm-0 { - padding-top: 0; - } - - .pt-sm-1 { - padding-top: 0.25rem; - } - - .pt-sm-2 { - padding-top: 0.5rem; - } - - .pt-sm-3 { - padding-top: 1rem; - } - - .pt-sm-4 { - padding-top: 1.5rem; - } - - .pt-sm-5 { - padding-top: 3rem; - } - - .pe-sm-0 { - padding-right: 0; - } - - .pe-sm-1 { - padding-right: 0.25rem; - } - - .pe-sm-2 { - padding-right: 0.5rem; - } - - .pe-sm-3 { - padding-right: 1rem; - } - - .pe-sm-4 { - padding-right: 1.5rem; - } - - .pe-sm-5 { - padding-right: 3rem; - } - - .pb-sm-0 { - padding-bottom: 0; - } - - .pb-sm-1 { - padding-bottom: 0.25rem; - } - - .pb-sm-2 { - padding-bottom: 0.5rem; - } - - .pb-sm-3 { - padding-bottom: 1rem; - } - - .pb-sm-4 { - padding-bottom: 1.5rem; - } - - .pb-sm-5 { - padding-bottom: 3rem; - } - - .ps-sm-0 { - padding-left: 0; - } - - .ps-sm-1 { - padding-left: 0.25rem; - } - - .ps-sm-2 { - padding-left: 0.5rem; - } - - .ps-sm-3 { - padding-left: 1rem; - } - - .ps-sm-4 { - padding-left: 1.5rem; - } - - .ps-sm-5 { - padding-left: 3rem; - } - - .gap-sm-0 { - gap: 0; - } - - .gap-sm-1 { - gap: 0.25rem; - } - - .gap-sm-2 { - gap: 0.5rem; - } - - .gap-sm-3 { - gap: 1rem; - } - - .gap-sm-4 { - gap: 1.5rem; - } - - .gap-sm-5 { - gap: 3rem; - } - - .row-gap-sm-0 { - row-gap: 0; - } - - .row-gap-sm-1 { - row-gap: 0.25rem; - } - - .row-gap-sm-2 { - row-gap: 0.5rem; - } - - .row-gap-sm-3 { - row-gap: 1rem; - } - - .row-gap-sm-4 { - row-gap: 1.5rem; - } - - .row-gap-sm-5 { - row-gap: 3rem; - } - - .column-gap-sm-0 { - -moz-column-gap: 0; - column-gap: 0; - } - - .column-gap-sm-1 { - -moz-column-gap: 0.25rem; - column-gap: 0.25rem; - } - - .column-gap-sm-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; - } - - .column-gap-sm-3 { - -moz-column-gap: 1rem; - column-gap: 1rem; - } - - .column-gap-sm-4 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; - } - - .column-gap-sm-5 { - -moz-column-gap: 3rem; - column-gap: 3rem; - } - - .text-sm-start { - text-align: left; - } - - .text-sm-end { - text-align: right; - } - - .text-sm-center { - text-align: center; - } -} - -@media (min-width: 768px) { - .float-md-start { - float: left; - } - - .float-md-end { - float: right; - } - - .float-md-none { - float: none; - } - - .object-fit-md-contain { - -o-object-fit: contain; - object-fit: contain; - } - - .object-fit-md-cover { - -o-object-fit: cover; - object-fit: cover; - } - - .object-fit-md-fill { - -o-object-fit: fill; - object-fit: fill; - } - - .object-fit-md-scale { - -o-object-fit: scale-down; - object-fit: scale-down; - } - - .object-fit-md-none { - -o-object-fit: none; - object-fit: none; - } - - .d-md-inline { - display: inline; - } - - .d-md-inline-block { - display: inline-block; - } - - .d-md-block { - display: block; - } - - .d-md-grid { - display: grid; - } - - .d-md-inline-grid { - display: inline-grid; - } - - .d-md-table { - display: table; - } - - .d-md-table-row { - display: table-row; - } - - .d-md-table-cell { - display: table-cell; - } - - .d-md-flex { - display: flex; - } - - .d-md-inline-flex { - display: inline-flex; - } - - .d-md-none { - display: none; - } - - .flex-md-fill { - flex: 1 1 auto; - } - - .flex-md-row { - flex-direction: row; - } - - .flex-md-column { - flex-direction: column; - } - - .flex-md-row-reverse { - flex-direction: row-reverse; - } - - .flex-md-column-reverse { - flex-direction: column-reverse; - } - - .flex-md-grow-0 { - flex-grow: 0; - } - - .flex-md-grow-1 { - flex-grow: 1; - } - - .flex-md-shrink-0 { - flex-shrink: 0; - } - - .flex-md-shrink-1 { - flex-shrink: 1; - } - - .flex-md-wrap { - flex-wrap: wrap; - } - - .flex-md-nowrap { - flex-wrap: nowrap; - } - - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .justify-content-md-start { - justify-content: flex-start; - } - - .justify-content-md-end { - justify-content: flex-end; - } - - .justify-content-md-center { - justify-content: center; - } - - .justify-content-md-between { - justify-content: space-between; - } - - .justify-content-md-around { - justify-content: space-around; - } - - .justify-content-md-evenly { - justify-content: space-evenly; - } - - .align-items-md-start { - align-items: flex-start; - } - - .align-items-md-end { - align-items: flex-end; - } - - .align-items-md-center { - align-items: center; - } - - .align-items-md-baseline { - align-items: baseline; - } - - .align-items-md-stretch { - align-items: stretch; - } - - .align-content-md-start { - align-content: flex-start; - } - - .align-content-md-end { - align-content: flex-end; - } - - .align-content-md-center { - align-content: center; - } - - .align-content-md-between { - align-content: space-between; - } - - .align-content-md-around { - align-content: space-around; - } - - .align-content-md-stretch { - align-content: stretch; - } - - .align-self-md-auto { - align-self: auto; - } - - .align-self-md-start { - align-self: flex-start; - } - - .align-self-md-end { - align-self: flex-end; - } - - .align-self-md-center { - align-self: center; - } - - .align-self-md-baseline { - align-self: baseline; - } - - .align-self-md-stretch { - align-self: stretch; - } - - .order-md-first { - order: -1; - } - - .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-last { - order: 6; - } - - .m-md-0 { - margin: 0; - } - - .m-md-1 { - margin: 0.25rem; - } - - .m-md-2 { - margin: 0.5rem; - } - - .m-md-3 { - margin: 1rem; - } - - .m-md-4 { - margin: 1.5rem; - } - - .m-md-5 { - margin: 3rem; - } - - .m-md-auto { - margin: auto; - } - - .mx-md-0 { - margin-right: 0; - margin-left: 0; - } - - .mx-md-1 { - margin-right: 0.25rem; - margin-left: 0.25rem; - } - - .mx-md-2 { - margin-right: 0.5rem; - margin-left: 0.5rem; - } - - .mx-md-3 { - margin-right: 1rem; - margin-left: 1rem; - } - - .mx-md-4 { - margin-right: 1.5rem; - margin-left: 1.5rem; - } - - .mx-md-5 { - margin-right: 3rem; - margin-left: 3rem; - } - - .mx-md-auto { - margin-right: auto; - margin-left: auto; - } - - .my-md-0 { - margin-top: 0; - margin-bottom: 0; - } - - .my-md-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - - .my-md-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - - .my-md-3 { - margin-top: 1rem; - margin-bottom: 1rem; - } - - .my-md-4 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - - .my-md-5 { - margin-top: 3rem; - margin-bottom: 3rem; - } - - .my-md-auto { - margin-top: auto; - margin-bottom: auto; - } - - .mt-md-0 { - margin-top: 0; - } - - .mt-md-1 { - margin-top: 0.25rem; - } - - .mt-md-2 { - margin-top: 0.5rem; - } - - .mt-md-3 { - margin-top: 1rem; - } - - .mt-md-4 { - margin-top: 1.5rem; - } - - .mt-md-5 { - margin-top: 3rem; - } - - .mt-md-auto { - margin-top: auto; - } - - .me-md-0 { - margin-right: 0; - } - - .me-md-1 { - margin-right: 0.25rem; - } - - .me-md-2 { - margin-right: 0.5rem; - } - - .me-md-3 { - margin-right: 1rem; - } - - .me-md-4 { - margin-right: 1.5rem; - } - - .me-md-5 { - margin-right: 3rem; - } - - .me-md-auto { - margin-right: auto; - } - - .mb-md-0 { - margin-bottom: 0; - } - - .mb-md-1 { - margin-bottom: 0.25rem; - } - - .mb-md-2 { - margin-bottom: 0.5rem; - } - - .mb-md-3 { - margin-bottom: 1rem; - } - - .mb-md-4 { - margin-bottom: 1.5rem; - } - - .mb-md-5 { - margin-bottom: 3rem; - } - - .mb-md-auto { - margin-bottom: auto; - } - - .ms-md-0 { - margin-left: 0; - } - - .ms-md-1 { - margin-left: 0.25rem; - } - - .ms-md-2 { - margin-left: 0.5rem; - } - - .ms-md-3 { - margin-left: 1rem; - } - - .ms-md-4 { - margin-left: 1.5rem; - } - - .ms-md-5 { - margin-left: 3rem; - } - - .ms-md-auto { - margin-left: auto; - } - - .p-md-0 { - padding: 0; - } - - .p-md-1 { - padding: 0.25rem; - } - - .p-md-2 { - padding: 0.5rem; - } - - .p-md-3 { - padding: 1rem; - } - - .p-md-4 { - padding: 1.5rem; - } - - .p-md-5 { - padding: 3rem; - } - - .px-md-0 { - padding-right: 0; - padding-left: 0; - } - - .px-md-1 { - padding-right: 0.25rem; - padding-left: 0.25rem; - } - - .px-md-2 { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - - .px-md-3 { - padding-right: 1rem; - padding-left: 1rem; - } - - .px-md-4 { - padding-right: 1.5rem; - padding-left: 1.5rem; - } - - .px-md-5 { - padding-right: 3rem; - padding-left: 3rem; - } - - .py-md-0 { - padding-top: 0; - padding-bottom: 0; - } - - .py-md-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - } - - .py-md-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - } - - .py-md-3 { - padding-top: 1rem; - padding-bottom: 1rem; - } - - .py-md-4 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } - - .py-md-5 { - padding-top: 3rem; - padding-bottom: 3rem; - } - - .pt-md-0 { - padding-top: 0; - } - - .pt-md-1 { - padding-top: 0.25rem; - } - - .pt-md-2 { - padding-top: 0.5rem; - } - - .pt-md-3 { - padding-top: 1rem; - } - - .pt-md-4 { - padding-top: 1.5rem; - } - - .pt-md-5 { - padding-top: 3rem; - } - - .pe-md-0 { - padding-right: 0; - } - - .pe-md-1 { - padding-right: 0.25rem; - } - - .pe-md-2 { - padding-right: 0.5rem; - } - - .pe-md-3 { - padding-right: 1rem; - } - - .pe-md-4 { - padding-right: 1.5rem; - } - - .pe-md-5 { - padding-right: 3rem; - } - - .pb-md-0 { - padding-bottom: 0; - } - - .pb-md-1 { - padding-bottom: 0.25rem; - } - - .pb-md-2 { - padding-bottom: 0.5rem; - } - - .pb-md-3 { - padding-bottom: 1rem; - } - - .pb-md-4 { - padding-bottom: 1.5rem; - } - - .pb-md-5 { - padding-bottom: 3rem; - } - - .ps-md-0 { - padding-left: 0; - } - - .ps-md-1 { - padding-left: 0.25rem; - } - - .ps-md-2 { - padding-left: 0.5rem; - } - - .ps-md-3 { - padding-left: 1rem; - } - - .ps-md-4 { - padding-left: 1.5rem; - } - - .ps-md-5 { - padding-left: 3rem; - } - - .gap-md-0 { - gap: 0; - } - - .gap-md-1 { - gap: 0.25rem; - } - - .gap-md-2 { - gap: 0.5rem; - } - - .gap-md-3 { - gap: 1rem; - } - - .gap-md-4 { - gap: 1.5rem; - } - - .gap-md-5 { - gap: 3rem; - } - - .row-gap-md-0 { - row-gap: 0; - } - - .row-gap-md-1 { - row-gap: 0.25rem; - } - - .row-gap-md-2 { - row-gap: 0.5rem; - } - - .row-gap-md-3 { - row-gap: 1rem; - } - - .row-gap-md-4 { - row-gap: 1.5rem; - } - - .row-gap-md-5 { - row-gap: 3rem; - } - - .column-gap-md-0 { - -moz-column-gap: 0; - column-gap: 0; - } - - .column-gap-md-1 { - -moz-column-gap: 0.25rem; - column-gap: 0.25rem; - } - - .column-gap-md-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; - } - - .column-gap-md-3 { - -moz-column-gap: 1rem; - column-gap: 1rem; - } - - .column-gap-md-4 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; - } - - .column-gap-md-5 { - -moz-column-gap: 3rem; - column-gap: 3rem; - } - - .text-md-start { - text-align: left; - } - - .text-md-end { - text-align: right; - } - - .text-md-center { - text-align: center; - } -} - -@media (min-width: 992px) { - .float-lg-start { - float: left; - } - - .float-lg-end { - float: right; - } - - .float-lg-none { - float: none; - } - - .object-fit-lg-contain { - -o-object-fit: contain; - object-fit: contain; - } - - .object-fit-lg-cover { - -o-object-fit: cover; - object-fit: cover; - } - - .object-fit-lg-fill { - -o-object-fit: fill; - object-fit: fill; - } - - .object-fit-lg-scale { - -o-object-fit: scale-down; - object-fit: scale-down; - } - - .object-fit-lg-none { - -o-object-fit: none; - object-fit: none; - } - - .d-lg-inline { - display: inline; - } - - .d-lg-inline-block { - display: inline-block; - } - - .d-lg-block { - display: block; - } - - .d-lg-grid { - display: grid; - } - - .d-lg-inline-grid { - display: inline-grid; - } - - .d-lg-table { - display: table; - } - - .d-lg-table-row { - display: table-row; - } - - .d-lg-table-cell { - display: table-cell; - } - - .d-lg-flex { - display: flex; - } - - .d-lg-inline-flex { - display: inline-flex; - } - - .d-lg-none { - display: none; - } - - .flex-lg-fill { - flex: 1 1 auto; - } - - .flex-lg-row { - flex-direction: row; - } - - .flex-lg-column { - flex-direction: column; - } - - .flex-lg-row-reverse { - flex-direction: row-reverse; - } - - .flex-lg-column-reverse { - flex-direction: column-reverse; - } - - .flex-lg-grow-0 { - flex-grow: 0; - } - - .flex-lg-grow-1 { - flex-grow: 1; - } - - .flex-lg-shrink-0 { - flex-shrink: 0; - } - - .flex-lg-shrink-1 { - flex-shrink: 1; - } - - .flex-lg-wrap { - flex-wrap: wrap; - } - - .flex-lg-nowrap { - flex-wrap: nowrap; - } - - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .justify-content-lg-start { - justify-content: flex-start; - } - - .justify-content-lg-end { - justify-content: flex-end; - } - - .justify-content-lg-center { - justify-content: center; - } - - .justify-content-lg-between { - justify-content: space-between; - } - - .justify-content-lg-around { - justify-content: space-around; - } - - .justify-content-lg-evenly { - justify-content: space-evenly; - } - - .align-items-lg-start { - align-items: flex-start; - } - - .align-items-lg-end { - align-items: flex-end; - } - - .align-items-lg-center { - align-items: center; - } - - .align-items-lg-baseline { - align-items: baseline; - } - - .align-items-lg-stretch { - align-items: stretch; - } - - .align-content-lg-start { - align-content: flex-start; - } - - .align-content-lg-end { - align-content: flex-end; - } - - .align-content-lg-center { - align-content: center; - } - - .align-content-lg-between { - align-content: space-between; - } - - .align-content-lg-around { - align-content: space-around; - } - - .align-content-lg-stretch { - align-content: stretch; - } - - .align-self-lg-auto { - align-self: auto; - } - - .align-self-lg-start { - align-self: flex-start; - } - - .align-self-lg-end { - align-self: flex-end; - } - - .align-self-lg-center { - align-self: center; - } - - .align-self-lg-baseline { - align-self: baseline; - } - - .align-self-lg-stretch { - align-self: stretch; - } - - .order-lg-first { - order: -1; - } - - .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-last { - order: 6; - } - - .m-lg-0 { - margin: 0; - } - - .m-lg-1 { - margin: 0.25rem; - } - - .m-lg-2 { - margin: 0.5rem; - } - - .m-lg-3 { - margin: 1rem; - } - - .m-lg-4 { - margin: 1.5rem; - } - - .m-lg-5 { - margin: 3rem; - } - - .m-lg-auto { - margin: auto; - } - - .mx-lg-0 { - margin-right: 0; - margin-left: 0; - } - - .mx-lg-1 { - margin-right: 0.25rem; - margin-left: 0.25rem; - } - - .mx-lg-2 { - margin-right: 0.5rem; - margin-left: 0.5rem; - } - - .mx-lg-3 { - margin-right: 1rem; - margin-left: 1rem; - } - - .mx-lg-4 { - margin-right: 1.5rem; - margin-left: 1.5rem; - } - - .mx-lg-5 { - margin-right: 3rem; - margin-left: 3rem; - } - - .mx-lg-auto { - margin-right: auto; - margin-left: auto; - } - - .my-lg-0 { - margin-top: 0; - margin-bottom: 0; - } - - .my-lg-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - - .my-lg-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - - .my-lg-3 { - margin-top: 1rem; - margin-bottom: 1rem; - } - - .my-lg-4 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - - .my-lg-5 { - margin-top: 3rem; - margin-bottom: 3rem; - } - - .my-lg-auto { - margin-top: auto; - margin-bottom: auto; - } - - .mt-lg-0 { - margin-top: 0; - } - - .mt-lg-1 { - margin-top: 0.25rem; - } - - .mt-lg-2 { - margin-top: 0.5rem; - } - - .mt-lg-3 { - margin-top: 1rem; - } - - .mt-lg-4 { - margin-top: 1.5rem; - } - - .mt-lg-5 { - margin-top: 3rem; - } - - .mt-lg-auto { - margin-top: auto; - } - - .me-lg-0 { - margin-right: 0; - } - - .me-lg-1 { - margin-right: 0.25rem; - } - - .me-lg-2 { - margin-right: 0.5rem; - } - - .me-lg-3 { - margin-right: 1rem; - } - - .me-lg-4 { - margin-right: 1.5rem; - } - - .me-lg-5 { - margin-right: 3rem; - } - - .me-lg-auto { - margin-right: auto; - } - - .mb-lg-0 { - margin-bottom: 0; - } - - .mb-lg-1 { - margin-bottom: 0.25rem; - } - - .mb-lg-2 { - margin-bottom: 0.5rem; - } - - .mb-lg-3 { - margin-bottom: 1rem; - } - - .mb-lg-4 { - margin-bottom: 1.5rem; - } - - .mb-lg-5 { - margin-bottom: 3rem; - } - - .mb-lg-auto { - margin-bottom: auto; - } - - .ms-lg-0 { - margin-left: 0; - } - - .ms-lg-1 { - margin-left: 0.25rem; - } - - .ms-lg-2 { - margin-left: 0.5rem; - } - - .ms-lg-3 { - margin-left: 1rem; - } - - .ms-lg-4 { - margin-left: 1.5rem; - } - - .ms-lg-5 { - margin-left: 3rem; - } - - .ms-lg-auto { - margin-left: auto; - } - - .p-lg-0 { - padding: 0; - } - - .p-lg-1 { - padding: 0.25rem; - } - - .p-lg-2 { - padding: 0.5rem; - } - - .p-lg-3 { - padding: 1rem; - } - - .p-lg-4 { - padding: 1.5rem; - } - - .p-lg-5 { - padding: 3rem; - } - - .px-lg-0 { - padding-right: 0; - padding-left: 0; - } - - .px-lg-1 { - padding-right: 0.25rem; - padding-left: 0.25rem; - } - - .px-lg-2 { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - - .px-lg-3 { - padding-right: 1rem; - padding-left: 1rem; - } - - .px-lg-4 { - padding-right: 1.5rem; - padding-left: 1.5rem; - } - - .px-lg-5 { - padding-right: 3rem; - padding-left: 3rem; - } - - .py-lg-0 { - padding-top: 0; - padding-bottom: 0; - } - - .py-lg-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - } - - .py-lg-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - } - - .py-lg-3 { - padding-top: 1rem; - padding-bottom: 1rem; - } - - .py-lg-4 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } - - .py-lg-5 { - padding-top: 3rem; - padding-bottom: 3rem; - } - - .pt-lg-0 { - padding-top: 0; - } - - .pt-lg-1 { - padding-top: 0.25rem; - } - - .pt-lg-2 { - padding-top: 0.5rem; - } - - .pt-lg-3 { - padding-top: 1rem; - } - - .pt-lg-4 { - padding-top: 1.5rem; - } - - .pt-lg-5 { - padding-top: 3rem; - } - - .pe-lg-0 { - padding-right: 0; - } - - .pe-lg-1 { - padding-right: 0.25rem; - } - - .pe-lg-2 { - padding-right: 0.5rem; - } - - .pe-lg-3 { - padding-right: 1rem; - } - - .pe-lg-4 { - padding-right: 1.5rem; - } - - .pe-lg-5 { - padding-right: 3rem; - } - - .pb-lg-0 { - padding-bottom: 0; - } - - .pb-lg-1 { - padding-bottom: 0.25rem; - } - - .pb-lg-2 { - padding-bottom: 0.5rem; - } - - .pb-lg-3 { - padding-bottom: 1rem; - } - - .pb-lg-4 { - padding-bottom: 1.5rem; - } - - .pb-lg-5 { - padding-bottom: 3rem; - } - - .ps-lg-0 { - padding-left: 0; - } - - .ps-lg-1 { - padding-left: 0.25rem; - } - - .ps-lg-2 { - padding-left: 0.5rem; - } - - .ps-lg-3 { - padding-left: 1rem; - } - - .ps-lg-4 { - padding-left: 1.5rem; - } - - .ps-lg-5 { - padding-left: 3rem; - } - - .gap-lg-0 { - gap: 0; - } - - .gap-lg-1 { - gap: 0.25rem; - } - - .gap-lg-2 { - gap: 0.5rem; - } - - .gap-lg-3 { - gap: 1rem; - } - - .gap-lg-4 { - gap: 1.5rem; - } - - .gap-lg-5 { - gap: 3rem; - } - - .row-gap-lg-0 { - row-gap: 0; - } - - .row-gap-lg-1 { - row-gap: 0.25rem; - } - - .row-gap-lg-2 { - row-gap: 0.5rem; - } - - .row-gap-lg-3 { - row-gap: 1rem; - } - - .row-gap-lg-4 { - row-gap: 1.5rem; - } - - .row-gap-lg-5 { - row-gap: 3rem; - } - - .column-gap-lg-0 { - -moz-column-gap: 0; - column-gap: 0; - } - - .column-gap-lg-1 { - -moz-column-gap: 0.25rem; - column-gap: 0.25rem; - } - - .column-gap-lg-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; - } - - .column-gap-lg-3 { - -moz-column-gap: 1rem; - column-gap: 1rem; - } - - .column-gap-lg-4 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; - } - - .column-gap-lg-5 { - -moz-column-gap: 3rem; - column-gap: 3rem; - } - - .text-lg-start { - text-align: left; - } - - .text-lg-end { - text-align: right; - } - - .text-lg-center { - text-align: center; - } -} - -@media (min-width: 1200px) { - .float-xl-start { - float: left; - } - - .float-xl-end { - float: right; - } - - .float-xl-none { - float: none; - } - - .object-fit-xl-contain { - -o-object-fit: contain; - object-fit: contain; - } - - .object-fit-xl-cover { - -o-object-fit: cover; - object-fit: cover; - } - - .object-fit-xl-fill { - -o-object-fit: fill; - object-fit: fill; - } - - .object-fit-xl-scale { - -o-object-fit: scale-down; - object-fit: scale-down; - } - - .object-fit-xl-none { - -o-object-fit: none; - object-fit: none; - } - - .d-xl-inline { - display: inline; - } - - .d-xl-inline-block { - display: inline-block; - } - - .d-xl-block { - display: block; - } - - .d-xl-grid { - display: grid; - } - - .d-xl-inline-grid { - display: inline-grid; - } - - .d-xl-table { - display: table; - } - - .d-xl-table-row { - display: table-row; - } - - .d-xl-table-cell { - display: table-cell; - } - - .d-xl-flex { - display: flex; - } - - .d-xl-inline-flex { - display: inline-flex; - } - - .d-xl-none { - display: none; - } - - .flex-xl-fill { - flex: 1 1 auto; - } - - .flex-xl-row { - flex-direction: row; - } - - .flex-xl-column { - flex-direction: column; - } - - .flex-xl-row-reverse { - flex-direction: row-reverse; - } - - .flex-xl-column-reverse { - flex-direction: column-reverse; - } - - .flex-xl-grow-0 { - flex-grow: 0; - } - - .flex-xl-grow-1 { - flex-grow: 1; - } - - .flex-xl-shrink-0 { - flex-shrink: 0; - } - - .flex-xl-shrink-1 { - flex-shrink: 1; - } - - .flex-xl-wrap { - flex-wrap: wrap; - } - - .flex-xl-nowrap { - flex-wrap: nowrap; - } - - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .justify-content-xl-start { - justify-content: flex-start; - } - - .justify-content-xl-end { - justify-content: flex-end; - } - - .justify-content-xl-center { - justify-content: center; - } - - .justify-content-xl-between { - justify-content: space-between; - } - - .justify-content-xl-around { - justify-content: space-around; - } - - .justify-content-xl-evenly { - justify-content: space-evenly; - } - - .align-items-xl-start { - align-items: flex-start; - } - - .align-items-xl-end { - align-items: flex-end; - } - - .align-items-xl-center { - align-items: center; - } - - .align-items-xl-baseline { - align-items: baseline; - } - - .align-items-xl-stretch { - align-items: stretch; - } - - .align-content-xl-start { - align-content: flex-start; - } - - .align-content-xl-end { - align-content: flex-end; - } - - .align-content-xl-center { - align-content: center; - } - - .align-content-xl-between { - align-content: space-between; - } - - .align-content-xl-around { - align-content: space-around; - } - - .align-content-xl-stretch { - align-content: stretch; - } - - .align-self-xl-auto { - align-self: auto; - } - - .align-self-xl-start { - align-self: flex-start; - } - - .align-self-xl-end { - align-self: flex-end; - } - - .align-self-xl-center { - align-self: center; - } - - .align-self-xl-baseline { - align-self: baseline; - } - - .align-self-xl-stretch { - align-self: stretch; - } - - .order-xl-first { - order: -1; - } - - .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-last { - order: 6; - } - - .m-xl-0 { - margin: 0; - } - - .m-xl-1 { - margin: 0.25rem; - } - - .m-xl-2 { - margin: 0.5rem; - } - - .m-xl-3 { - margin: 1rem; - } - - .m-xl-4 { - margin: 1.5rem; - } - - .m-xl-5 { - margin: 3rem; - } - - .m-xl-auto { - margin: auto; - } - - .mx-xl-0 { - margin-right: 0; - margin-left: 0; - } - - .mx-xl-1 { - margin-right: 0.25rem; - margin-left: 0.25rem; - } - - .mx-xl-2 { - margin-right: 0.5rem; - margin-left: 0.5rem; - } - - .mx-xl-3 { - margin-right: 1rem; - margin-left: 1rem; - } - - .mx-xl-4 { - margin-right: 1.5rem; - margin-left: 1.5rem; - } - - .mx-xl-5 { - margin-right: 3rem; - margin-left: 3rem; - } - - .mx-xl-auto { - margin-right: auto; - margin-left: auto; - } - - .my-xl-0 { - margin-top: 0; - margin-bottom: 0; - } - - .my-xl-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - - .my-xl-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - - .my-xl-3 { - margin-top: 1rem; - margin-bottom: 1rem; - } - - .my-xl-4 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - - .my-xl-5 { - margin-top: 3rem; - margin-bottom: 3rem; - } - - .my-xl-auto { - margin-top: auto; - margin-bottom: auto; - } - - .mt-xl-0 { - margin-top: 0; - } - - .mt-xl-1 { - margin-top: 0.25rem; - } - - .mt-xl-2 { - margin-top: 0.5rem; - } - - .mt-xl-3 { - margin-top: 1rem; - } - - .mt-xl-4 { - margin-top: 1.5rem; - } - - .mt-xl-5 { - margin-top: 3rem; - } - - .mt-xl-auto { - margin-top: auto; - } - - .me-xl-0 { - margin-right: 0; - } - - .me-xl-1 { - margin-right: 0.25rem; - } - - .me-xl-2 { - margin-right: 0.5rem; - } - - .me-xl-3 { - margin-right: 1rem; - } - - .me-xl-4 { - margin-right: 1.5rem; - } - - .me-xl-5 { - margin-right: 3rem; - } - - .me-xl-auto { - margin-right: auto; - } - - .mb-xl-0 { - margin-bottom: 0; - } - - .mb-xl-1 { - margin-bottom: 0.25rem; - } - - .mb-xl-2 { - margin-bottom: 0.5rem; - } - - .mb-xl-3 { - margin-bottom: 1rem; - } - - .mb-xl-4 { - margin-bottom: 1.5rem; - } - - .mb-xl-5 { - margin-bottom: 3rem; - } - - .mb-xl-auto { - margin-bottom: auto; - } - - .ms-xl-0 { - margin-left: 0; - } - - .ms-xl-1 { - margin-left: 0.25rem; - } - - .ms-xl-2 { - margin-left: 0.5rem; - } - - .ms-xl-3 { - margin-left: 1rem; - } - - .ms-xl-4 { - margin-left: 1.5rem; - } - - .ms-xl-5 { - margin-left: 3rem; - } - - .ms-xl-auto { - margin-left: auto; - } - - .p-xl-0 { - padding: 0; - } - - .p-xl-1 { - padding: 0.25rem; - } - - .p-xl-2 { - padding: 0.5rem; - } - - .p-xl-3 { - padding: 1rem; - } - - .p-xl-4 { - padding: 1.5rem; - } - - .p-xl-5 { - padding: 3rem; - } - - .px-xl-0 { - padding-right: 0; - padding-left: 0; - } - - .px-xl-1 { - padding-right: 0.25rem; - padding-left: 0.25rem; - } - - .px-xl-2 { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - - .px-xl-3 { - padding-right: 1rem; - padding-left: 1rem; - } - - .px-xl-4 { - padding-right: 1.5rem; - padding-left: 1.5rem; - } - - .px-xl-5 { - padding-right: 3rem; - padding-left: 3rem; - } - - .py-xl-0 { - padding-top: 0; - padding-bottom: 0; - } - - .py-xl-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - } - - .py-xl-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - } - - .py-xl-3 { - padding-top: 1rem; - padding-bottom: 1rem; - } - - .py-xl-4 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } - - .py-xl-5 { - padding-top: 3rem; - padding-bottom: 3rem; - } - - .pt-xl-0 { - padding-top: 0; - } - - .pt-xl-1 { - padding-top: 0.25rem; - } - - .pt-xl-2 { - padding-top: 0.5rem; - } - - .pt-xl-3 { - padding-top: 1rem; - } - - .pt-xl-4 { - padding-top: 1.5rem; - } - - .pt-xl-5 { - padding-top: 3rem; - } - - .pe-xl-0 { - padding-right: 0; - } - - .pe-xl-1 { - padding-right: 0.25rem; - } - - .pe-xl-2 { - padding-right: 0.5rem; - } - - .pe-xl-3 { - padding-right: 1rem; - } - - .pe-xl-4 { - padding-right: 1.5rem; - } - - .pe-xl-5 { - padding-right: 3rem; - } - - .pb-xl-0 { - padding-bottom: 0; - } - - .pb-xl-1 { - padding-bottom: 0.25rem; - } - - .pb-xl-2 { - padding-bottom: 0.5rem; - } - - .pb-xl-3 { - padding-bottom: 1rem; - } - - .pb-xl-4 { - padding-bottom: 1.5rem; - } - - .pb-xl-5 { - padding-bottom: 3rem; - } - - .ps-xl-0 { - padding-left: 0; - } - - .ps-xl-1 { - padding-left: 0.25rem; - } - - .ps-xl-2 { - padding-left: 0.5rem; - } - - .ps-xl-3 { - padding-left: 1rem; - } - - .ps-xl-4 { - padding-left: 1.5rem; - } - - .ps-xl-5 { - padding-left: 3rem; - } - - .gap-xl-0 { - gap: 0; - } - - .gap-xl-1 { - gap: 0.25rem; - } - - .gap-xl-2 { - gap: 0.5rem; - } - - .gap-xl-3 { - gap: 1rem; - } - - .gap-xl-4 { - gap: 1.5rem; - } - - .gap-xl-5 { - gap: 3rem; - } - - .row-gap-xl-0 { - row-gap: 0; - } - - .row-gap-xl-1 { - row-gap: 0.25rem; - } - - .row-gap-xl-2 { - row-gap: 0.5rem; - } - - .row-gap-xl-3 { - row-gap: 1rem; - } - - .row-gap-xl-4 { - row-gap: 1.5rem; - } - - .row-gap-xl-5 { - row-gap: 3rem; - } - - .column-gap-xl-0 { - -moz-column-gap: 0; - column-gap: 0; - } - - .column-gap-xl-1 { - -moz-column-gap: 0.25rem; - column-gap: 0.25rem; - } - - .column-gap-xl-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; - } - - .column-gap-xl-3 { - -moz-column-gap: 1rem; - column-gap: 1rem; - } - - .column-gap-xl-4 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; - } - - .column-gap-xl-5 { - -moz-column-gap: 3rem; - column-gap: 3rem; - } - - .text-xl-start { - text-align: left; - } - - .text-xl-end { - text-align: right; - } - - .text-xl-center { - text-align: center; - } -} - -@media (min-width: 1400px) { - .float-xxl-start { - float: left; - } - - .float-xxl-end { - float: right; - } - - .float-xxl-none { - float: none; - } - - .object-fit-xxl-contain { - -o-object-fit: contain; - object-fit: contain; - } - - .object-fit-xxl-cover { - -o-object-fit: cover; - object-fit: cover; - } - - .object-fit-xxl-fill { - -o-object-fit: fill; - object-fit: fill; - } - - .object-fit-xxl-scale { - -o-object-fit: scale-down; - object-fit: scale-down; - } - - .object-fit-xxl-none { - -o-object-fit: none; - object-fit: none; - } - - .d-xxl-inline { - display: inline; - } - - .d-xxl-inline-block { - display: inline-block; - } - - .d-xxl-block { - display: block; - } - - .d-xxl-grid { - display: grid; - } - - .d-xxl-inline-grid { - display: inline-grid; - } - - .d-xxl-table { - display: table; - } - - .d-xxl-table-row { - display: table-row; - } - - .d-xxl-table-cell { - display: table-cell; - } - - .d-xxl-flex { - display: flex; - } - - .d-xxl-inline-flex { - display: inline-flex; - } - - .d-xxl-none { - display: none; - } - - .flex-xxl-fill { - flex: 1 1 auto; - } - - .flex-xxl-row { - flex-direction: row; - } - - .flex-xxl-column { - flex-direction: column; - } - - .flex-xxl-row-reverse { - flex-direction: row-reverse; - } - - .flex-xxl-column-reverse { - flex-direction: column-reverse; - } - - .flex-xxl-grow-0 { - flex-grow: 0; - } - - .flex-xxl-grow-1 { - flex-grow: 1; - } - - .flex-xxl-shrink-0 { - flex-shrink: 0; - } - - .flex-xxl-shrink-1 { - flex-shrink: 1; - } - - .flex-xxl-wrap { - flex-wrap: wrap; - } - - .flex-xxl-nowrap { - flex-wrap: nowrap; - } - - .flex-xxl-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .justify-content-xxl-start { - justify-content: flex-start; - } - - .justify-content-xxl-end { - justify-content: flex-end; - } - - .justify-content-xxl-center { - justify-content: center; - } - - .justify-content-xxl-between { - justify-content: space-between; - } - - .justify-content-xxl-around { - justify-content: space-around; - } - - .justify-content-xxl-evenly { - justify-content: space-evenly; - } - - .align-items-xxl-start { - align-items: flex-start; - } - - .align-items-xxl-end { - align-items: flex-end; - } - - .align-items-xxl-center { - align-items: center; - } - - .align-items-xxl-baseline { - align-items: baseline; - } - - .align-items-xxl-stretch { - align-items: stretch; - } - - .align-content-xxl-start { - align-content: flex-start; - } - - .align-content-xxl-end { - align-content: flex-end; - } - - .align-content-xxl-center { - align-content: center; - } - - .align-content-xxl-between { - align-content: space-between; - } - - .align-content-xxl-around { - align-content: space-around; - } - - .align-content-xxl-stretch { - align-content: stretch; - } - - .align-self-xxl-auto { - align-self: auto; - } - - .align-self-xxl-start { - align-self: flex-start; - } - - .align-self-xxl-end { - align-self: flex-end; - } - - .align-self-xxl-center { - align-self: center; - } - - .align-self-xxl-baseline { - align-self: baseline; - } - - .align-self-xxl-stretch { - align-self: stretch; - } - - .order-xxl-first { - order: -1; - } - - .order-xxl-0 { - order: 0; - } - - .order-xxl-1 { - order: 1; - } - - .order-xxl-2 { - order: 2; - } - - .order-xxl-3 { - order: 3; - } - - .order-xxl-4 { - order: 4; - } - - .order-xxl-5 { - order: 5; - } - - .order-xxl-last { - order: 6; - } - - .m-xxl-0 { - margin: 0; - } - - .m-xxl-1 { - margin: 0.25rem; - } - - .m-xxl-2 { - margin: 0.5rem; - } - - .m-xxl-3 { - margin: 1rem; - } - - .m-xxl-4 { - margin: 1.5rem; - } - - .m-xxl-5 { - margin: 3rem; - } - - .m-xxl-auto { - margin: auto; - } - - .mx-xxl-0 { - margin-right: 0; - margin-left: 0; - } - - .mx-xxl-1 { - margin-right: 0.25rem; - margin-left: 0.25rem; - } - - .mx-xxl-2 { - margin-right: 0.5rem; - margin-left: 0.5rem; - } - - .mx-xxl-3 { - margin-right: 1rem; - margin-left: 1rem; - } - - .mx-xxl-4 { - margin-right: 1.5rem; - margin-left: 1.5rem; - } - - .mx-xxl-5 { - margin-right: 3rem; - margin-left: 3rem; - } - - .mx-xxl-auto { - margin-right: auto; - margin-left: auto; - } - - .my-xxl-0 { - margin-top: 0; - margin-bottom: 0; - } - - .my-xxl-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; - } - - .my-xxl-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; - } - - .my-xxl-3 { - margin-top: 1rem; - margin-bottom: 1rem; - } - - .my-xxl-4 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; - } - - .my-xxl-5 { - margin-top: 3rem; - margin-bottom: 3rem; - } - - .my-xxl-auto { - margin-top: auto; - margin-bottom: auto; - } - - .mt-xxl-0 { - margin-top: 0; - } - - .mt-xxl-1 { - margin-top: 0.25rem; - } - - .mt-xxl-2 { - margin-top: 0.5rem; - } - - .mt-xxl-3 { - margin-top: 1rem; - } - - .mt-xxl-4 { - margin-top: 1.5rem; - } - - .mt-xxl-5 { - margin-top: 3rem; - } - - .mt-xxl-auto { - margin-top: auto; - } - - .me-xxl-0 { - margin-right: 0; - } - - .me-xxl-1 { - margin-right: 0.25rem; - } - - .me-xxl-2 { - margin-right: 0.5rem; - } - - .me-xxl-3 { - margin-right: 1rem; - } - - .me-xxl-4 { - margin-right: 1.5rem; - } - - .me-xxl-5 { - margin-right: 3rem; - } - - .me-xxl-auto { - margin-right: auto; - } - - .mb-xxl-0 { - margin-bottom: 0; - } - - .mb-xxl-1 { - margin-bottom: 0.25rem; - } - - .mb-xxl-2 { - margin-bottom: 0.5rem; - } - - .mb-xxl-3 { - margin-bottom: 1rem; - } - - .mb-xxl-4 { - margin-bottom: 1.5rem; - } - - .mb-xxl-5 { - margin-bottom: 3rem; - } - - .mb-xxl-auto { - margin-bottom: auto; - } - - .ms-xxl-0 { - margin-left: 0; - } - - .ms-xxl-1 { - margin-left: 0.25rem; - } - - .ms-xxl-2 { - margin-left: 0.5rem; - } - - .ms-xxl-3 { - margin-left: 1rem; - } - - .ms-xxl-4 { - margin-left: 1.5rem; - } - - .ms-xxl-5 { - margin-left: 3rem; - } - - .ms-xxl-auto { - margin-left: auto; - } - - .p-xxl-0 { - padding: 0; - } - - .p-xxl-1 { - padding: 0.25rem; - } - - .p-xxl-2 { - padding: 0.5rem; - } - - .p-xxl-3 { - padding: 1rem; - } - - .p-xxl-4 { - padding: 1.5rem; - } - - .p-xxl-5 { - padding: 3rem; - } - - .px-xxl-0 { - padding-right: 0; - padding-left: 0; - } - - .px-xxl-1 { - padding-right: 0.25rem; - padding-left: 0.25rem; - } - - .px-xxl-2 { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - - .px-xxl-3 { - padding-right: 1rem; - padding-left: 1rem; - } - - .px-xxl-4 { - padding-right: 1.5rem; - padding-left: 1.5rem; - } - - .px-xxl-5 { - padding-right: 3rem; - padding-left: 3rem; - } - - .py-xxl-0 { - padding-top: 0; - padding-bottom: 0; - } - - .py-xxl-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; - } - - .py-xxl-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - } - - .py-xxl-3 { - padding-top: 1rem; - padding-bottom: 1rem; - } - - .py-xxl-4 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; - } - - .py-xxl-5 { - padding-top: 3rem; - padding-bottom: 3rem; - } - - .pt-xxl-0 { - padding-top: 0; - } - - .pt-xxl-1 { - padding-top: 0.25rem; - } - - .pt-xxl-2 { - padding-top: 0.5rem; - } - - .pt-xxl-3 { - padding-top: 1rem; - } - - .pt-xxl-4 { - padding-top: 1.5rem; - } - - .pt-xxl-5 { - padding-top: 3rem; - } - - .pe-xxl-0 { - padding-right: 0; - } - - .pe-xxl-1 { - padding-right: 0.25rem; - } - - .pe-xxl-2 { - padding-right: 0.5rem; - } - - .pe-xxl-3 { - padding-right: 1rem; - } - - .pe-xxl-4 { - padding-right: 1.5rem; - } - - .pe-xxl-5 { - padding-right: 3rem; - } - - .pb-xxl-0 { - padding-bottom: 0; - } - - .pb-xxl-1 { - padding-bottom: 0.25rem; - } - - .pb-xxl-2 { - padding-bottom: 0.5rem; - } - - .pb-xxl-3 { - padding-bottom: 1rem; - } - - .pb-xxl-4 { - padding-bottom: 1.5rem; - } - - .pb-xxl-5 { - padding-bottom: 3rem; - } - - .ps-xxl-0 { - padding-left: 0; - } - - .ps-xxl-1 { - padding-left: 0.25rem; - } - - .ps-xxl-2 { - padding-left: 0.5rem; - } - - .ps-xxl-3 { - padding-left: 1rem; - } - - .ps-xxl-4 { - padding-left: 1.5rem; - } - - .ps-xxl-5 { - padding-left: 3rem; - } - - .gap-xxl-0 { - gap: 0; - } - - .gap-xxl-1 { - gap: 0.25rem; - } - - .gap-xxl-2 { - gap: 0.5rem; - } - - .gap-xxl-3 { - gap: 1rem; - } - - .gap-xxl-4 { - gap: 1.5rem; - } - - .gap-xxl-5 { - gap: 3rem; - } - - .row-gap-xxl-0 { - row-gap: 0; - } - - .row-gap-xxl-1 { - row-gap: 0.25rem; - } - - .row-gap-xxl-2 { - row-gap: 0.5rem; - } - - .row-gap-xxl-3 { - row-gap: 1rem; - } - - .row-gap-xxl-4 { - row-gap: 1.5rem; - } - - .row-gap-xxl-5 { - row-gap: 3rem; - } - - .column-gap-xxl-0 { - -moz-column-gap: 0; - column-gap: 0; - } - - .column-gap-xxl-1 { - -moz-column-gap: 0.25rem; - column-gap: 0.25rem; - } - - .column-gap-xxl-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; - } - - .column-gap-xxl-3 { - -moz-column-gap: 1rem; - column-gap: 1rem; - } - - .column-gap-xxl-4 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; - } - - .column-gap-xxl-5 { - -moz-column-gap: 3rem; - column-gap: 3rem; - } - - .text-xxl-start { - text-align: left; - } - - .text-xxl-end { - text-align: right; - } - - .text-xxl-center { - text-align: center; - } -} - -@media (min-width: 1200px) { - .fs-1 { - font-size: 2.5rem; - } - - .fs-2 { - font-size: 2rem; - } - - .fs-3 { - font-size: 1.75rem; - } - - .fs-4 { - font-size: 1.5rem; - } -} - -@media print { - .d-print-inline { - display: inline; - } - - .d-print-inline-block { - display: inline-block; - } - - .d-print-block { - display: block; - } - - .d-print-grid { - display: grid; - } - - .d-print-inline-grid { - display: inline-grid; - } - - .d-print-table { - display: table; - } - - .d-print-table-row { - display: table-row; - } - - .d-print-table-cell { - display: table-cell; - } - - .d-print-flex { - display: flex; - } - - .d-print-inline-flex { - display: inline-flex; - } - - .d-print-none { - display: none; - } -} \ No newline at end of file diff --git a/src/__fixtures__/bootstrap-5.3.2.json b/src/__fixtures__/bootstrap-5.3.2.json deleted file mode 100644 index f6ab72fc..00000000 --- a/src/__fixtures__/bootstrap-5.3.2.json +++ /dev/null @@ -1,30835 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 8640, - "linesOfCode": 13899, - "size": 262482, - "complexity": 23488, - "comments": { - "total": 3, - "size": 225 - }, - "embeddedContent": { - "size": { - "total": 5143, - "ratio": 0.019593724522062466 - }, - "types": { - "total": 23, - "totalUnique": 1, - "uniquenessRatio": 0.043478260869565216, - "unique": { - "image/svg+xml": { - "count": 23, - "size": 5143 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 0, - "totalUnique": 0, - "unique": [], - "uniquenessRatio": 0 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 109, - "totalUnique": 18, - "unique": { - "(prefers-reduced-motion: no-preference)": 1, - "(min-width: 1200px)": 21, - "(min-width: 576px)": 10, - "(min-width: 768px)": 8, - "(min-width: 992px)": 9, - "(min-width: 1400px)": 8, - "(max-width: 575.98px)": 4, - "(max-width: 767.98px)": 4, - "(max-width: 991.98px)": 4, - "(max-width: 1199.98px)": 4, - "(max-width: 1399.98px)": 4, - "(prefers-reduced-motion: reduce)": 26, - "(max-width: 575.98px) and (prefers-reduced-motion: reduce)": 1, - "(max-width: 767.98px) and (prefers-reduced-motion: reduce)": 1, - "(max-width: 991.98px) and (prefers-reduced-motion: reduce)": 1, - "(max-width: 1199.98px) and (prefers-reduced-motion: reduce)": 1, - "(max-width: 1399.98px) and (prefers-reduced-motion: reduce)": 1, - "print": 1 - }, - "uniquenessRatio": 0.1651376146788991, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "charset": { - "total": 1, - "totalUnique": 1, - "unique": { - "\"UTF-8\"": 1 - }, - "uniquenessRatio": 1 - }, - "supports": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 5, - "totalUnique": 5, - "unique": { - "@keyframes progress-bar-stripes": 1, - "@keyframes spinner-border": 1, - "@keyframes spinner-grow": 1, - "@keyframes placeholder-glow": 1, - "@keyframes placeholder-wave": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 115, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 115 - } - }, - "rules": { - "total": 2561, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 119, - "mean": 3.328777821163608, - "mode": 2, - "range": 117, - "sum": 8525, - "items": [ - 119, - 54, - 4, - 2, - 11, - 6, - 17, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 4, - 3, - 5, - 5, - 2, - 3, - 2, - 3, - 3, - 5, - 6, - 2, - 2, - 3, - 2, - 4, - 6, - 6, - 4, - 4, - 2, - 6, - 3, - 2, - 3, - 3, - 5, - 3, - 9, - 2, - 2, - 2, - 9, - 3, - 2, - 2, - 2, - 2, - 5, - 5, - 3, - 2, - 5, - 7, - 2, - 2, - 8, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 5, - 2, - 3, - 7, - 2, - 3, - 3, - 14, - 3, - 4, - 5, - 6, - 7, - 7, - 8, - 7, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 19, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 6, - 4, - 4, - 4, - 16, - 2, - 2, - 2, - 6, - 4, - 3, - 3, - 3, - 3, - 15, - 14, - 3, - 2, - 2, - 2, - 10, - 2, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 2, - 2, - 20, - 2, - 4, - 4, - 2, - 3, - 6, - 6, - 2, - 5, - 3, - 4, - 4, - 19, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 4, - 4, - 4, - 2, - 8, - 2, - 2, - 3, - 3, - 3, - 3, - 4, - 5, - 2, - 8, - 2, - 2, - 2, - 2, - 11, - 3, - 2, - 8, - 10, - 3, - 2, - 8, - 2, - 2, - 2, - 2, - 6, - 15, - 2, - 3, - 3, - 3, - 4, - 6, - 4, - 3, - 3, - 6, - 8, - 11, - 3, - 2, - 3, - 3, - 6, - 7, - 4, - 3, - 2, - 13, - 7, - 7, - 3, - 6, - 6, - 4, - 4, - 6, - 12, - 5, - 8, - 4, - 4, - 3, - 8, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 7, - 6, - 12, - 5, - 8, - 4, - 4, - 3, - 8, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 7, - 34, - 2, - 4, - 4, - 6, - 4, - 8, - 6, - 8, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 15, - 14, - 2, - 2, - 6, - 6, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 7, - 2, - 9, - 2, - 41, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 5, - 9, - 2, - 6, - 9, - 2, - 2, - 6, - 5, - 2, - 8, - 2, - 2, - 6, - 13, - 4, - 5, - 5, - 2, - 7, - 4, - 13, - 5, - 4, - 13, - 4, - 2, - 2, - 3, - 5, - 5, - 3, - 4, - 2, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 12, - 10, - 2, - 3, - 3, - 5, - 9, - 5, - 4, - 5, - 4, - 4, - 2, - 4, - 5, - 4, - 3, - 5, - 4, - 5, - 3, - 2, - 2, - 27, - 11, - 8, - 3, - 12, - 3, - 2, - 4, - 4, - 4, - 9, - 2, - 2, - 4, - 9, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 11, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 11, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 11, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 11, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 11, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 11, - 2, - 5, - 10, - 2, - 31, - 3, - 3, - 4, - 4, - 3, - 4, - 3, - 4, - 2, - 2, - 6, - 2, - 5, - 2, - 5, - 3, - 3, - 8, - 4, - 4, - 4, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 23, - 14, - 2, - 4, - 3, - 10, - 2, - 2, - 5, - 2, - 4, - 3, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 4, - 2, - 2, - 3, - 3, - 17, - 2, - 5, - 2, - 24, - 10, - 2, - 5, - 6, - 6, - 6, - 2, - 3, - 3, - 5, - 5, - 17, - 2, - 3, - 17, - 2, - 3, - 2, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 16, - 10, - 2, - 3, - 2, - 2, - 2, - 2, - 23, - 3, - 3, - 4, - 6, - 3, - 8, - 3, - 3, - 5, - 5, - 2, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 18, - 4, - 4, - 7, - 2, - 2, - 26, - 2, - 2, - 9, - 2, - 10, - 3, - 3, - 32, - 5, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 12, - 11, - 2, - 2, - 9, - 3, - 3, - 4, - 11, - 2, - 3, - 4, - 2, - 3, - 2, - 5, - 4, - 3, - 2, - 5, - 4, - 3, - 2, - 5, - 4, - 3, - 2, - 5, - 4, - 3, - 2, - 5, - 4, - 3, - 2, - 5, - 4, - 3, - 2, - 33, - 2, - 4, - 5, - 3, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 7, - 44, - 4, - 8, - 3, - 5, - 4, - 4, - 5, - 5, - 4, - 4, - 3, - 5, - 4, - 4, - 10, - 5, - 5, - 4, - 4, - 9, - 2, - 3, - 2, - 2, - 4, - 4, - 9, - 2, - 4, - 3, - 3, - 4, - 5, - 5, - 3, - 17, - 3, - 8, - 2, - 2, - 8, - 2, - 2, - 12, - 17, - 2, - 2, - 9, - 3, - 2, - 2, - 5, - 3, - 3, - 8, - 2, - 9, - 4, - 2, - 3, - 8, - 3, - 3, - 18, - 13, - 2, - 6, - 6, - 8, - 7, - 3, - 4, - 4, - 2, - 6, - 13, - 2, - 6, - 6, - 8, - 7, - 3, - 4, - 4, - 2, - 6, - 13, - 2, - 6, - 6, - 8, - 7, - 3, - 4, - 4, - 2, - 6, - 13, - 2, - 6, - 6, - 8, - 7, - 3, - 4, - 4, - 2, - 6, - 13, - 2, - 6, - 6, - 8, - 7, - 3, - 4, - 4, - 2, - 6, - 13, - 2, - 6, - 6, - 8, - 7, - 3, - 4, - 8, - 2, - 2, - 5, - 5, - 3, - 4, - 7, - 3, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 3, - 9, - 6, - 2, - 3, - 3, - 4, - 6, - 2, - 2, - 2, - 2, - 6, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 10, - 3, - 8, - 4, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ], - "total": 2561, - "totalUnique": 31, - "unique": { - "2": 1371, - "3": 726, - "4": 137, - "5": 103, - "6": 55, - "7": 22, - "8": 30, - "9": 15, - "10": 10, - "11": 20, - "12": 14, - "13": 10, - "14": 4, - "15": 18, - "16": 2, - "17": 6, - "18": 2, - "19": 2, - "20": 1, - "23": 2, - "24": 1, - "26": 1, - "27": 1, - "31": 1, - "32": 1, - "33": 1, - "34": 1, - "41": 1, - "44": 1, - "54": 1, - "119": 1 - }, - "uniquenessRatio": 0.01210464662241312 - }, - "selectors": { - "min": 1, - "max": 12, - "mean": 1.162827020695041, - "mode": 1, - "range": 11, - "sum": 2978, - "items": [ - 2, - 1, - 3, - 1, - 1, - 1, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 2, - 3, - 4, - 5, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 2, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 4, - 4, - 2, - 4, - 4, - 1, - 2, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 6, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 12, - 1, - 1, - 1, - 2, - 3, - 3, - 1, - 3, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 7, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 2, - 2, - 2, - 2, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 2561, - "totalUnique": 8, - "unique": { - "1": 2279, - "2": 225, - "3": 20, - "4": 22, - "5": 4, - "6": 6, - "7": 3, - "12": 2 - }, - "uniquenessRatio": 0.0031237797735259665 - }, - "declarations": { - "min": 1, - "max": 117, - "mean": 2.165950800468567, - "mode": 1, - "range": 116, - "sum": 5547, - "items": [ - 117, - 53, - 1, - 1, - 10, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 2, - 1, - 2, - 2, - 5, - 3, - 3, - 1, - 5, - 2, - 1, - 1, - 2, - 4, - 2, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 6, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 2, - 6, - 1, - 2, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 6, - 7, - 6, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 18, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 5, - 3, - 3, - 3, - 15, - 1, - 1, - 1, - 5, - 3, - 2, - 2, - 2, - 2, - 14, - 13, - 2, - 1, - 1, - 1, - 9, - 1, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 19, - 1, - 3, - 2, - 1, - 2, - 5, - 5, - 1, - 4, - 2, - 3, - 3, - 18, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 3, - 2, - 1, - 7, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 7, - 1, - 1, - 1, - 1, - 10, - 2, - 1, - 7, - 9, - 2, - 1, - 7, - 1, - 1, - 1, - 1, - 3, - 14, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 7, - 2, - 1, - 1, - 1, - 5, - 4, - 1, - 2, - 1, - 12, - 3, - 3, - 1, - 2, - 2, - 3, - 2, - 5, - 11, - 1, - 6, - 2, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 11, - 1, - 6, - 2, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 33, - 1, - 3, - 3, - 5, - 3, - 3, - 1, - 5, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 13, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 8, - 1, - 40, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 4, - 8, - 1, - 5, - 8, - 1, - 1, - 5, - 4, - 1, - 7, - 1, - 1, - 5, - 12, - 2, - 3, - 3, - 1, - 6, - 3, - 12, - 3, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 11, - 9, - 1, - 1, - 2, - 3, - 8, - 4, - 2, - 3, - 3, - 3, - 1, - 2, - 4, - 3, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 26, - 4, - 7, - 1, - 11, - 1, - 1, - 3, - 1, - 3, - 8, - 1, - 1, - 3, - 8, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 10, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 10, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 10, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 10, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 10, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 10, - 1, - 4, - 8, - 1, - 30, - 2, - 2, - 3, - 3, - 1, - 3, - 2, - 3, - 1, - 1, - 5, - 1, - 4, - 1, - 4, - 2, - 2, - 7, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 22, - 13, - 1, - 3, - 2, - 9, - 1, - 1, - 4, - 1, - 3, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 16, - 1, - 4, - 1, - 23, - 9, - 1, - 4, - 5, - 4, - 4, - 1, - 2, - 2, - 4, - 4, - 16, - 1, - 2, - 16, - 1, - 2, - 1, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 14, - 9, - 1, - 2, - 1, - 1, - 1, - 1, - 22, - 2, - 2, - 3, - 4, - 2, - 7, - 2, - 2, - 3, - 4, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 17, - 3, - 3, - 5, - 1, - 1, - 25, - 1, - 1, - 8, - 1, - 9, - 2, - 2, - 31, - 4, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 11, - 10, - 1, - 1, - 8, - 2, - 2, - 3, - 10, - 1, - 2, - 3, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 32, - 1, - 3, - 4, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 6, - 43, - 3, - 6, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 8, - 3, - 1, - 2, - 2, - 8, - 1, - 2, - 1, - 1, - 3, - 3, - 8, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 1, - 15, - 1, - 4, - 1, - 1, - 6, - 1, - 1, - 11, - 16, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 8, - 3, - 1, - 2, - 7, - 2, - 1, - 12, - 12, - 1, - 5, - 5, - 7, - 6, - 1, - 1, - 3, - 1, - 5, - 12, - 1, - 5, - 5, - 7, - 6, - 1, - 1, - 3, - 1, - 5, - 12, - 1, - 5, - 5, - 7, - 6, - 1, - 1, - 3, - 1, - 5, - 12, - 1, - 5, - 5, - 7, - 6, - 1, - 1, - 3, - 1, - 5, - 12, - 1, - 5, - 5, - 7, - 6, - 1, - 1, - 3, - 1, - 5, - 12, - 1, - 5, - 5, - 7, - 6, - 1, - 1, - 7, - 1, - 1, - 4, - 4, - 2, - 3, - 6, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 8, - 5, - 1, - 1, - 2, - 3, - 5, - 1, - 1, - 1, - 1, - 5, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 1, - 7, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 2561, - "totalUnique": 31, - "unique": { - "1": 1550, - "2": 620, - "3": 125, - "4": 72, - "5": 44, - "6": 19, - "7": 21, - "8": 16, - "9": 7, - "10": 18, - "11": 14, - "12": 10, - "13": 3, - "14": 19, - "15": 2, - "16": 4, - "17": 1, - "18": 2, - "19": 1, - "22": 2, - "23": 1, - "25": 1, - "26": 1, - "30": 1, - "31": 1, - "32": 1, - "33": 1, - "40": 1, - "43": 1, - "53": 1, - "117": 1 - }, - "uniquenessRatio": 0.01210464662241312 - } - }, - "selectors": { - "total": 2972, - "totalUnique": 2775, - "uniquenessRatio": 0.9337146702557201, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 0, - 7, - 0 - ], - "sum": [ - 0, - 4033, - 271 - ], - "mean": [ - 0, - 1.3569986541049799, - 0.09118438761776582 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ] - ], - "total": 2972, - "totalUnique": 17, - "unique": { - "0,1,0": 2086, - "0,0,0": 1, - "0,0,1": 91, - "0,1,1": 49, - "0,0,2": 7, - "0,2,1": 61, - "0,3,1": 33, - "0,6,1": 1, - "0,2,0": 365, - "0,2,2": 6, - "0,4,0": 71, - "0,4,1": 2, - "0,3,0": 177, - "0,5,0": 15, - "0,3,2": 4, - "0,6,0": 2, - "0,7,0": 1 - }, - "uniquenessRatio": 0.005720053835800807 - }, - "complexity": { - "min": 1, - "max": 18, - "mean": 1.788021534320323, - "mode": 1, - "range": 17, - "sum": 5314, - "total": 2972, - "totalUnique": 14, - "unique": { - "1": 2111, - "2": 226, - "3": 264, - "4": 143, - "5": 99, - "6": 72, - "7": 26, - "8": 21, - "9": 5, - "10": 1, - "11": 1, - "12": 1, - "14": 1, - "18": 1 - }, - "uniquenessRatio": 0.004710632570659489, - "items": [ - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 18, - 1, - 2, - 2, - 2, - 3, - 4, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 3, - 3, - 1, - 1, - 8, - 6, - 8, - 8, - 4, - 9, - 9, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 2, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 8, - 7, - 1, - 2, - 2, - 2, - 1, - 3, - 2, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 5, - 3, - 3, - 2, - 2, - 1, - 1, - 2, - 2, - 5, - 2, - 3, - 1, - 1, - 4, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 4, - 4, - 1, - 3, - 3, - 4, - 4, - 2, - 4, - 1, - 1, - 4, - 4, - 10, - 1, - 2, - 4, - 4, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 4, - 3, - 2, - 4, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 6, - 6, - 4, - 5, - 4, - 5, - 5, - 5, - 3, - 8, - 6, - 7, - 5, - 5, - 9, - 7, - 8, - 6, - 6, - 7, - 5, - 5, - 6, - 6, - 7, - 1, - 3, - 3, - 3, - 4, - 4, - 4, - 3, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 12, - 7, - 9, - 9, - 11, - 6, - 8, - 8, - 14, - 7, - 7, - 1, - 1, - 5, - 5, - 3, - 3, - 4, - 2, - 5, - 3, - 5, - 3, - 4, - 2, - 8, - 8, - 6, - 6, - 5, - 3, - 4, - 2, - 4, - 2, - 5, - 3, - 5, - 3, - 6, - 4, - 5, - 8, - 6, - 8, - 6, - 8, - 6, - 1, - 1, - 5, - 5, - 3, - 3, - 4, - 2, - 5, - 3, - 5, - 3, - 4, - 2, - 8, - 8, - 6, - 6, - 5, - 3, - 4, - 2, - 4, - 2, - 5, - 3, - 5, - 3, - 6, - 4, - 5, - 8, - 6, - 8, - 6, - 8, - 6, - 1, - 1, - 2, - 4, - 2, - 4, - 4, - 5, - 3, - 2, - 2, - 5, - 6, - 4, - 3, - 3, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 4, - 4, - 5, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 6, - 6, - 4, - 4, - 4, - 4, - 6, - 6, - 4, - 4, - 4, - 4, - 1, - 3, - 1, - 7, - 5, - 7, - 5, - 7, - 5, - 6, - 7, - 1, - 2, - 4, - 4, - 4, - 3, - 5, - 3, - 5, - 1, - 3, - 3, - 5, - 5, - 7, - 7, - 5, - 7, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 3, - 4, - 4, - 4, - 6, - 3, - 1, - 3, - 4, - 5, - 1, - 3, - 4, - 4, - 4, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 1, - 4, - 4, - 3, - 1, - 3, - 4, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 4, - 1, - 3, - 3, - 4, - 4, - 5, - 5, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 5, - 7, - 7, - 7, - 7, - 5, - 7, - 7, - 7, - 7, - 1, - 1, - 1, - 3, - 4, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 4, - 3, - 2, - 5, - 4, - 1, - 3, - 3, - 4, - 4, - 5, - 6, - 5, - 1, - 3, - 4, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 2, - 3, - 5, - 4, - 4, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 1, - 6, - 6, - 4, - 5, - 6, - 1, - 6, - 6, - 4, - 5, - 6, - 1, - 6, - 6, - 4, - 5, - 6, - 1, - 6, - 6, - 4, - 5, - 6, - 1, - 6, - 6, - 4, - 5, - 6, - 1, - 6, - 6, - 4, - 5, - 6, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 4, - 1, - 2, - 3, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 4, - 3, - 5, - 4, - 6, - 3, - 5, - 4, - 6, - 3, - 5, - 4, - 6, - 3, - 5, - 4, - 6, - 1, - 1, - 3, - 4, - 4, - 3, - 5, - 4, - 6, - 4, - 6, - 4, - 6, - 4, - 6, - 3, - 5, - 4, - 6, - 4, - 6, - 4, - 6, - 4, - 6, - 3, - 5, - 4, - 6, - 4, - 6, - 4, - 6, - 4, - 6, - 4, - 6, - 3, - 5, - 4, - 6, - 4, - 6, - 4, - 6, - 4, - 6, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 3, - 2, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 5, - 3, - 6, - 6, - 5, - 5, - 8, - 7, - 6, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 3, - 3, - 4, - 4, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 7, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - }, - "id": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "pseudoClasses": { - "total": 467, - "totalUnique": 24, - "unique": { - "root": 3, - "hover": 47, - "not": 145, - "focus": 66, - "focus-visible": 11, - "disabled": 27, - "last-child": 34, - "first-child": 36, - "nth-of-type": 1, - "nth-child": 2, - "-moz-focusring": 1, - "active": 11, - "checked": 13, - "indeterminate": 1, - "-moz-placeholder-shown": 4, - "placeholder-shown": 4, - "-webkit-autofill": 3, - "focus-within": 7, - "nth-last-child": 5, - "valid": 17, - "invalid": 17, - "empty": 6, - "first-of-type": 3, - "last-of-type": 3 - }, - "uniquenessRatio": 0.05139186295503212 - }, - "accessibility": { - "total": 1, - "totalUnique": 1, - "unique": { - "[role=button]": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.00033647375504710633 - }, - "keyframes": { - "total": 6, - "totalUnique": 4, - "unique": { - "0%": 2, - "to": 1, - "50%": 2, - "100%": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "prefixed": { - "total": 46, - "totalUnique": 43, - "unique": { - "[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator": 1, - "::-moz-focus-inner": 1, - "::-webkit-datetime-edit-fields-wrapper": 1, - "::-webkit-datetime-edit-text": 1, - "::-webkit-datetime-edit-minute": 1, - "::-webkit-datetime-edit-hour-field": 1, - "::-webkit-datetime-edit-day-field": 1, - "::-webkit-datetime-edit-month-field": 1, - "::-webkit-datetime-edit-year-field": 1, - "::-webkit-inner-spin-button": 1, - "::-webkit-search-decoration": 1, - "::-webkit-color-swatch-wrapper": 1, - "::-webkit-file-upload-button": 1, - ".form-control::-webkit-date-and-time-value": 1, - ".form-control::-webkit-datetime-edit": 1, - ".form-control::-moz-placeholder": 1, - ".form-control::-webkit-file-upload-button": 2, - ".form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button": 1, - ".form-control-sm::-webkit-file-upload-button": 1, - ".form-control-lg::-webkit-file-upload-button": 1, - ".form-control-color::-moz-color-swatch": 1, - ".form-control-color::-webkit-color-swatch": 1, - ".form-select:-moz-focusring": 1, - ".form-range:focus::-webkit-slider-thumb": 1, - ".form-range:focus::-moz-range-thumb": 1, - ".form-range::-moz-focus-outer": 1, - ".form-range::-webkit-slider-thumb": 2, - ".form-range::-webkit-slider-thumb:active": 1, - ".form-range::-webkit-slider-runnable-track": 1, - ".form-range::-moz-range-thumb": 2, - ".form-range::-moz-range-thumb:active": 1, - ".form-range::-moz-range-track": 1, - ".form-range:disabled::-webkit-slider-thumb": 1, - ".form-range:disabled::-moz-range-thumb": 1, - ".form-floating>.form-control::-moz-placeholder": 1, - ".form-floating>.form-control-plaintext::-moz-placeholder": 1, - ".form-floating>.form-control:not(:-moz-placeholder-shown)": 1, - ".form-floating>.form-control-plaintext:not(:-moz-placeholder-shown)": 1, - ".form-floating>.form-control:-webkit-autofill": 1, - ".form-floating>.form-control-plaintext:-webkit-autofill": 1, - ".form-floating>.form-control:not(:-moz-placeholder-shown)~label": 1, - ".form-floating>.form-control:not(:-moz-placeholder-shown)~label::after": 1, - ".form-floating>.form-control:-webkit-autofill~label": 1 - }, - "uniquenessRatio": 0.9347826086956522, - "ratio": 0.01547779273216689 - }, - "combinators": { - "total": 681, - "totalUnique": 4, - "unique": { - " ": 302, - ">": 307, - "+": 39, - "~": 33 - }, - "uniquenessRatio": 0.005873715124816446 - } - }, - "declarations": { - "total": 5547, - "totalUnique": 2137, - "uniquenessRatio": 0.3852532900667027, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 5547 - } - }, - "properties": { - "total": 5547, - "totalUnique": 602, - "unique": { - "--bs-blue": 1, - "--bs-indigo": 1, - "--bs-purple": 1, - "--bs-pink": 1, - "--bs-red": 1, - "--bs-orange": 1, - "--bs-yellow": 1, - "--bs-green": 1, - "--bs-teal": 1, - "--bs-cyan": 1, - "--bs-black": 1, - "--bs-white": 1, - "--bs-gray": 1, - "--bs-gray-dark": 1, - "--bs-gray-100": 1, - "--bs-gray-200": 1, - "--bs-gray-300": 1, - "--bs-gray-400": 1, - "--bs-gray-500": 1, - "--bs-gray-600": 1, - "--bs-gray-700": 1, - "--bs-gray-800": 1, - "--bs-gray-900": 1, - "--bs-primary": 1, - "--bs-secondary": 1, - "--bs-success": 1, - "--bs-info": 1, - "--bs-warning": 1, - "--bs-danger": 1, - "--bs-light": 1, - "--bs-dark": 1, - "--bs-primary-rgb": 1, - "--bs-secondary-rgb": 1, - "--bs-success-rgb": 1, - "--bs-info-rgb": 1, - "--bs-warning-rgb": 1, - "--bs-danger-rgb": 1, - "--bs-light-rgb": 1, - "--bs-dark-rgb": 1, - "--bs-primary-text-emphasis": 2, - "--bs-secondary-text-emphasis": 2, - "--bs-success-text-emphasis": 2, - "--bs-info-text-emphasis": 2, - "--bs-warning-text-emphasis": 2, - "--bs-danger-text-emphasis": 2, - "--bs-light-text-emphasis": 2, - "--bs-dark-text-emphasis": 2, - "--bs-primary-bg-subtle": 2, - "--bs-secondary-bg-subtle": 2, - "--bs-success-bg-subtle": 2, - "--bs-info-bg-subtle": 2, - "--bs-warning-bg-subtle": 2, - "--bs-danger-bg-subtle": 2, - "--bs-light-bg-subtle": 2, - "--bs-dark-bg-subtle": 2, - "--bs-primary-border-subtle": 2, - "--bs-secondary-border-subtle": 2, - "--bs-success-border-subtle": 2, - "--bs-info-border-subtle": 2, - "--bs-warning-border-subtle": 2, - "--bs-danger-border-subtle": 2, - "--bs-light-border-subtle": 2, - "--bs-dark-border-subtle": 2, - "--bs-white-rgb": 1, - "--bs-black-rgb": 1, - "--bs-font-sans-serif": 1, - "--bs-font-monospace": 1, - "--bs-gradient": 9, - "--bs-body-font-family": 1, - "--bs-body-font-size": 1, - "--bs-body-font-weight": 1, - "--bs-body-line-height": 1, - "--bs-body-color": 2, - "--bs-body-color-rgb": 2, - "--bs-body-bg": 2, - "--bs-body-bg-rgb": 2, - "--bs-emphasis-color": 2, - "--bs-emphasis-color-rgb": 2, - "--bs-secondary-color": 2, - "--bs-secondary-color-rgb": 2, - "--bs-secondary-bg": 2, - "--bs-secondary-bg-rgb": 2, - "--bs-tertiary-color": 2, - "--bs-tertiary-color-rgb": 2, - "--bs-tertiary-bg": 2, - "--bs-tertiary-bg-rgb": 2, - "--bs-heading-color": 2, - "--bs-link-color": 2, - "--bs-link-color-rgb": 3, - "--bs-link-decoration": 1, - "--bs-link-hover-color": 2, - "--bs-link-hover-color-rgb": 2, - "--bs-code-color": 2, - "--bs-highlight-color": 2, - "--bs-highlight-bg": 2, - "--bs-border-width": 1, - "--bs-border-style": 1, - "--bs-border-color": 2, - "--bs-border-color-translucent": 2, - "--bs-border-radius": 1, - "--bs-border-radius-sm": 1, - "--bs-border-radius-lg": 1, - "--bs-border-radius-xl": 1, - "--bs-border-radius-xxl": 1, - "--bs-border-radius-2xl": 1, - "--bs-border-radius-pill": 1, - "--bs-box-shadow": 1, - "--bs-box-shadow-sm": 1, - "--bs-box-shadow-lg": 1, - "--bs-box-shadow-inset": 1, - "--bs-focus-ring-width": 1, - "--bs-focus-ring-opacity": 1, - "--bs-focus-ring-color": 9, - "--bs-form-valid-color": 2, - "--bs-form-valid-border-color": 2, - "--bs-form-invalid-color": 2, - "--bs-form-invalid-border-color": 2, - "color-scheme": 1, - "box-sizing": 3, - "scroll-behavior": 1, - "margin": 68, - "font-family": 7, - "font-size": 81, - "font-weight": 29, - "line-height": 30, - "color": 172, - "text-align": 41, - "background-color": 137, - "-webkit-text-size-adjust": 1, - "-webkit-tap-highlight-color": 1, - "border": 49, - "border-top": 22, - "opacity": 39, - "margin-top": 113, - "margin-bottom": 123, - "-webkit-text-decoration": 1, - "text-decoration": 21, - "cursor": 13, - "-webkit-text-decoration-skip-ink": 1, - "text-decoration-skip-ink": 1, - "font-style": 5, - "padding-left": 99, - "margin-left": 194, - "padding": 116, - "position": 95, - "vertical-align": 26, - "bottom": 28, - "top": 51, - "display": 205, - "overflow": 22, - "word-break": 4, - "word-wrap": 7, - "border-radius": 73, - "caption-side": 2, - "border-collapse": 1, - "padding-top": 86, - "padding-bottom": 85, - "border-color": 62, - "border-style": 6, - "border-width": 23, - "outline": 23, - "text-transform": 7, - "-webkit-appearance": 10, - "resize": 1, - "min-width": 6, - "float": 23, - "width": 210, - "clear": 4, - "height": 77, - "outline-offset": 1, - "font": 2, - "list-style": 7, - "margin-right": 103, - "content": 19, - "max-width": 28, - "--bs-gutter-x": 38, - "--bs-gutter-y": 38, - "padding-right": 97, - "--bs-breakpoint-xs": 1, - "--bs-breakpoint-sm": 1, - "--bs-breakpoint-md": 1, - "--bs-breakpoint-lg": 1, - "--bs-breakpoint-xl": 1, - "--bs-breakpoint-xxl": 1, - "flex-wrap": 32, - "flex-shrink": 18, - "flex": 140, - "--bs-table-color-type": 3, - "--bs-table-bg-type": 3, - "--bs-table-color-state": 3, - "--bs-table-bg-state": 3, - "--bs-table-color": 9, - "--bs-table-bg": 9, - "--bs-table-border-color": 9, - "--bs-table-accent-bg": 1, - "--bs-table-striped-color": 9, - "--bs-table-striped-bg": 9, - "--bs-table-active-color": 9, - "--bs-table-active-bg": 9, - "--bs-table-hover-color": 9, - "--bs-table-hover-bg": 9, - "border-bottom-width": 4, - "box-shadow": 27, - "border-top-width": 10, - "overflow-x": 11, - "-webkit-overflow-scrolling": 6, - "-moz-appearance": 5, - "appearance": 6, - "background-clip": 14, - "transition": 66, - "-webkit-margin-end": 6, - "margin-inline-end": 6, - "pointer-events": 19, - "border-inline-end-width": 2, - "-webkit-transition": 4, - "min-height": 14, - "--bs-form-select-bg-img": 2, - "background-image": 13, - "background-repeat": 7, - "background-position": 12, - "background-size": 10, - "text-shadow": 3, - "--bs-form-check-bg": 1, - "-webkit-print-color-adjust": 1, - "color-adjust": 1, - "print-color-adjust": 1, - "filter": 7, - "--bs-form-check-bg-image": 3, - "--bs-form-switch-bg": 4, - "clip": 2, - "-moz-transition": 2, - "left": 54, - "z-index": 62, - "text-overflow": 2, - "white-space": 14, - "transform-origin": 1, - "transform": 53, - "inset": 2, - "align-items": 45, - "border-top-right-radius": 47, - "border-bottom-right-radius": 32, - "border-top-left-radius": 35, - "border-bottom-left-radius": 44, - "--bs-form-select-bg-icon": 2, - "--bs-btn-padding-x": 3, - "--bs-btn-padding-y": 3, - "--bs-btn-font-family": 1, - "--bs-btn-font-size": 3, - "--bs-btn-font-weight": 2, - "--bs-btn-line-height": 1, - "--bs-btn-color": 18, - "--bs-btn-bg": 10, - "--bs-btn-border-width": 1, - "--bs-btn-border-color": 18, - "--bs-btn-border-radius": 3, - "--bs-btn-hover-border-color": 18, - "--bs-btn-box-shadow": 2, - "--bs-btn-disabled-opacity": 1, - "--bs-btn-focus-box-shadow": 1, - "-webkit-user-select": 5, - "-moz-user-select": 5, - "user-select": 5, - "--bs-btn-hover-color": 17, - "--bs-btn-hover-bg": 16, - "--bs-btn-focus-shadow-rgb": 17, - "--bs-btn-active-color": 17, - "--bs-btn-active-bg": 16, - "--bs-btn-active-border-color": 17, - "--bs-btn-active-shadow": 16, - "--bs-btn-disabled-color": 17, - "--bs-btn-disabled-bg": 16, - "--bs-btn-disabled-border-color": 17, - "border-right": 13, - "border-bottom": 23, - "border-left": 13, - "--bs-dropdown-zindex": 1, - "--bs-dropdown-min-width": 1, - "--bs-dropdown-padding-x": 1, - "--bs-dropdown-padding-y": 1, - "--bs-dropdown-spacer": 1, - "--bs-dropdown-font-size": 1, - "--bs-dropdown-color": 2, - "--bs-dropdown-bg": 2, - "--bs-dropdown-border-color": 2, - "--bs-dropdown-border-radius": 1, - "--bs-dropdown-border-width": 1, - "--bs-dropdown-inner-border-radius": 1, - "--bs-dropdown-divider-bg": 2, - "--bs-dropdown-divider-margin-y": 1, - "--bs-dropdown-box-shadow": 2, - "--bs-dropdown-link-color": 2, - "--bs-dropdown-link-hover-color": 2, - "--bs-dropdown-link-hover-bg": 2, - "--bs-dropdown-link-active-color": 2, - "--bs-dropdown-link-active-bg": 2, - "--bs-dropdown-link-disabled-color": 2, - "--bs-dropdown-item-padding-x": 1, - "--bs-dropdown-item-padding-y": 1, - "--bs-dropdown-header-color": 2, - "--bs-dropdown-header-padding-x": 1, - "--bs-dropdown-header-padding-y": 1, - "--bs-position": 12, - "right": 48, - "justify-content": 52, - "flex-direction": 50, - "--bs-nav-link-padding-x": 2, - "--bs-nav-link-padding-y": 2, - "--bs-nav-link-font-weight": 2, - "--bs-nav-link-color": 2, - "--bs-nav-link-hover-color": 2, - "--bs-nav-link-disabled-color": 2, - "background": 3, - "--bs-nav-tabs-border-width": 1, - "--bs-nav-tabs-border-color": 1, - "--bs-nav-tabs-border-radius": 1, - "--bs-nav-tabs-link-hover-border-color": 1, - "--bs-nav-tabs-link-active-color": 1, - "--bs-nav-tabs-link-active-bg": 1, - "--bs-nav-tabs-link-active-border-color": 1, - "isolation": 1, - "--bs-nav-pills-border-radius": 1, - "--bs-nav-pills-link-active-color": 1, - "--bs-nav-pills-link-active-bg": 1, - "--bs-nav-underline-gap": 1, - "--bs-nav-underline-border-width": 1, - "--bs-nav-underline-link-active-color": 1, - "gap": 38, - "border-bottom-color": 6, - "flex-basis": 8, - "flex-grow": 32, - "--bs-navbar-padding-x": 1, - "--bs-navbar-padding-y": 1, - "--bs-navbar-color": 2, - "--bs-navbar-hover-color": 2, - "--bs-navbar-disabled-color": 2, - "--bs-navbar-active-color": 2, - "--bs-navbar-brand-padding-y": 1, - "--bs-navbar-brand-margin-end": 1, - "--bs-navbar-brand-font-size": 1, - "--bs-navbar-brand-color": 2, - "--bs-navbar-brand-hover-color": 2, - "--bs-navbar-nav-link-padding-x": 1, - "--bs-navbar-toggler-padding-y": 1, - "--bs-navbar-toggler-padding-x": 1, - "--bs-navbar-toggler-font-size": 1, - "--bs-navbar-toggler-icon-bg": 3, - "--bs-navbar-toggler-border-color": 2, - "--bs-navbar-toggler-border-radius": 1, - "--bs-navbar-toggler-focus-width": 1, - "--bs-navbar-toggler-transition": 1, - "max-height": 15, - "overflow-y": 25, - "visibility": 20, - "--bs-card-spacer-y": 1, - "--bs-card-spacer-x": 1, - "--bs-card-title-spacer-y": 1, - "--bs-card-title-color": 1, - "--bs-card-subtitle-color": 1, - "--bs-card-border-width": 1, - "--bs-card-border-color": 1, - "--bs-card-border-radius": 1, - "--bs-card-box-shadow": 1, - "--bs-card-inner-border-radius": 1, - "--bs-card-cap-padding-y": 1, - "--bs-card-cap-padding-x": 1, - "--bs-card-cap-bg": 1, - "--bs-card-cap-color": 1, - "--bs-card-height": 1, - "--bs-card-color": 1, - "--bs-card-bg": 1, - "--bs-card-img-overlay-padding": 1, - "--bs-card-group-margin": 1, - "flex-flow": 1, - "--bs-accordion-color": 1, - "--bs-accordion-bg": 1, - "--bs-accordion-transition": 1, - "--bs-accordion-border-color": 1, - "--bs-accordion-border-width": 1, - "--bs-accordion-border-radius": 1, - "--bs-accordion-inner-border-radius": 1, - "--bs-accordion-btn-padding-x": 1, - "--bs-accordion-btn-padding-y": 1, - "--bs-accordion-btn-color": 1, - "--bs-accordion-btn-bg": 1, - "--bs-accordion-btn-icon": 2, - "--bs-accordion-btn-icon-width": 1, - "--bs-accordion-btn-icon-transform": 1, - "--bs-accordion-btn-icon-transition": 1, - "--bs-accordion-btn-active-icon": 2, - "--bs-accordion-btn-focus-border-color": 1, - "--bs-accordion-btn-focus-box-shadow": 1, - "--bs-accordion-body-padding-x": 1, - "--bs-accordion-body-padding-y": 1, - "--bs-accordion-active-color": 1, - "--bs-accordion-active-bg": 1, - "overflow-anchor": 1, - "--bs-breadcrumb-padding-x": 1, - "--bs-breadcrumb-padding-y": 1, - "--bs-breadcrumb-margin-bottom": 1, - "--bs-breadcrumb-bg": 1, - "--bs-breadcrumb-border-radius": 1, - "--bs-breadcrumb-divider-color": 1, - "--bs-breadcrumb-item-padding-x": 1, - "--bs-breadcrumb-item-active-color": 1, - "--bs-pagination-padding-x": 3, - "--bs-pagination-padding-y": 3, - "--bs-pagination-font-size": 3, - "--bs-pagination-color": 1, - "--bs-pagination-bg": 1, - "--bs-pagination-border-width": 1, - "--bs-pagination-border-color": 1, - "--bs-pagination-border-radius": 3, - "--bs-pagination-hover-color": 1, - "--bs-pagination-hover-bg": 1, - "--bs-pagination-hover-border-color": 1, - "--bs-pagination-focus-color": 1, - "--bs-pagination-focus-bg": 1, - "--bs-pagination-focus-box-shadow": 1, - "--bs-pagination-active-color": 1, - "--bs-pagination-active-bg": 1, - "--bs-pagination-active-border-color": 1, - "--bs-pagination-disabled-color": 1, - "--bs-pagination-disabled-bg": 1, - "--bs-pagination-disabled-border-color": 1, - "--bs-badge-padding-x": 1, - "--bs-badge-padding-y": 1, - "--bs-badge-font-size": 1, - "--bs-badge-font-weight": 1, - "--bs-badge-color": 1, - "--bs-badge-border-radius": 1, - "--bs-alert-bg": 9, - "--bs-alert-padding-x": 1, - "--bs-alert-padding-y": 1, - "--bs-alert-margin-bottom": 1, - "--bs-alert-color": 9, - "--bs-alert-border-color": 9, - "--bs-alert-border": 1, - "--bs-alert-border-radius": 1, - "--bs-alert-link-color": 9, - "background-position-x": 1, - "--bs-progress-height": 1, - "--bs-progress-font-size": 1, - "--bs-progress-bg": 1, - "--bs-progress-border-radius": 1, - "--bs-progress-box-shadow": 1, - "--bs-progress-bar-color": 1, - "--bs-progress-bar-bg": 1, - "--bs-progress-bar-transition": 1, - "animation": 5, - "--bs-list-group-color": 9, - "--bs-list-group-bg": 9, - "--bs-list-group-border-color": 9, - "--bs-list-group-border-width": 1, - "--bs-list-group-border-radius": 1, - "--bs-list-group-item-padding-x": 1, - "--bs-list-group-item-padding-y": 1, - "--bs-list-group-action-color": 1, - "--bs-list-group-action-hover-color": 9, - "--bs-list-group-action-hover-bg": 9, - "--bs-list-group-action-active-color": 9, - "--bs-list-group-action-active-bg": 9, - "--bs-list-group-disabled-color": 1, - "--bs-list-group-disabled-bg": 1, - "--bs-list-group-active-color": 9, - "--bs-list-group-active-bg": 9, - "--bs-list-group-active-border-color": 9, - "list-style-type": 1, - "counter-reset": 1, - "counter-increment": 1, - "border-left-width": 12, - "--bs-btn-close-color": 1, - "--bs-btn-close-bg": 1, - "--bs-btn-close-opacity": 1, - "--bs-btn-close-hover-opacity": 1, - "--bs-btn-close-focus-shadow": 1, - "--bs-btn-close-focus-opacity": 1, - "--bs-btn-close-disabled-opacity": 1, - "--bs-btn-close-white-filter": 1, - "--bs-toast-zindex": 2, - "--bs-toast-padding-x": 1, - "--bs-toast-padding-y": 1, - "--bs-toast-spacing": 1, - "--bs-toast-max-width": 1, - "--bs-toast-font-size": 1, - "--bs-toast-color": 1, - "--bs-toast-bg": 1, - "--bs-toast-border-width": 1, - "--bs-toast-border-color": 1, - "--bs-toast-border-radius": 1, - "--bs-toast-box-shadow": 1, - "--bs-toast-header-color": 1, - "--bs-toast-header-bg": 1, - "--bs-toast-header-border-color": 1, - "--bs-modal-zindex": 1, - "--bs-modal-width": 4, - "--bs-modal-padding": 1, - "--bs-modal-margin": 2, - "--bs-modal-color": 1, - "--bs-modal-bg": 1, - "--bs-modal-border-color": 1, - "--bs-modal-border-width": 1, - "--bs-modal-border-radius": 1, - "--bs-modal-box-shadow": 2, - "--bs-modal-inner-border-radius": 1, - "--bs-modal-header-padding-x": 1, - "--bs-modal-header-padding-y": 1, - "--bs-modal-header-padding": 1, - "--bs-modal-header-border-color": 1, - "--bs-modal-header-border-width": 1, - "--bs-modal-title-line-height": 1, - "--bs-modal-footer-gap": 1, - "--bs-modal-footer-bg": 1, - "--bs-modal-footer-border-color": 1, - "--bs-modal-footer-border-width": 1, - "--bs-backdrop-zindex": 1, - "--bs-backdrop-bg": 1, - "--bs-backdrop-opacity": 1, - "--bs-tooltip-zindex": 1, - "--bs-tooltip-max-width": 1, - "--bs-tooltip-padding-x": 1, - "--bs-tooltip-padding-y": 1, - "--bs-tooltip-margin": 1, - "--bs-tooltip-font-size": 1, - "--bs-tooltip-color": 1, - "--bs-tooltip-bg": 1, - "--bs-tooltip-border-radius": 1, - "--bs-tooltip-opacity": 1, - "--bs-tooltip-arrow-width": 1, - "--bs-tooltip-arrow-height": 1, - "letter-spacing": 2, - "word-spacing": 2, - "line-break": 2, - "border-top-color": 3, - "border-right-color": 4, - "border-left-color": 3, - "--bs-popover-zindex": 1, - "--bs-popover-max-width": 1, - "--bs-popover-font-size": 1, - "--bs-popover-bg": 1, - "--bs-popover-border-width": 1, - "--bs-popover-border-color": 1, - "--bs-popover-border-radius": 1, - "--bs-popover-inner-border-radius": 1, - "--bs-popover-box-shadow": 1, - "--bs-popover-header-padding-x": 1, - "--bs-popover-header-padding-y": 1, - "--bs-popover-header-font-size": 1, - "--bs-popover-header-color": 1, - "--bs-popover-header-bg": 1, - "--bs-popover-body-padding-x": 1, - "--bs-popover-body-padding-y": 1, - "--bs-popover-body-color": 1, - "--bs-popover-arrow-width": 1, - "--bs-popover-arrow-height": 1, - "--bs-popover-arrow-border": 1, - "touch-action": 1, - "-webkit-backface-visibility": 2, - "backface-visibility": 2, - "transition-property": 1, - "text-indent": 1, - "--bs-spinner-width": 4, - "--bs-spinner-height": 4, - "--bs-spinner-vertical-align": 2, - "--bs-spinner-border-width": 2, - "--bs-spinner-animation-speed": 3, - "--bs-spinner-animation-name": 2, - "--bs-offcanvas-zindex": 1, - "--bs-offcanvas-width": 1, - "--bs-offcanvas-height": 6, - "--bs-offcanvas-padding-x": 1, - "--bs-offcanvas-padding-y": 1, - "--bs-offcanvas-color": 1, - "--bs-offcanvas-bg": 1, - "--bs-offcanvas-border-width": 6, - "--bs-offcanvas-border-color": 1, - "--bs-offcanvas-box-shadow": 1, - "--bs-offcanvas-transition": 1, - "--bs-offcanvas-title-line-height": 1, - "-webkit-mask-image": 1, - "mask-image": 1, - "-webkit-mask-size": 1, - "mask-size": 1, - "-webkit-mask-position": 1, - "mask-position": 1, - "-webkit-text-decoration-color": 28, - "text-decoration-color": 28, - "text-underline-offset": 7, - "fill": 1, - "--bs-aspect-ratio": 4, - "align-self": 39, - "-o-object-fit": 30, - "object-fit": 30, - "--bs-border-opacity": 15, - "align-content": 36, - "order": 48, - "row-gap": 36, - "-moz-column-gap": 36, - "column-gap": 36, - "--bs-text-opacity": 22, - "--bs-link-opacity": 10, - "--bs-link-underline-opacity": 21, - "--bs-bg-opacity": 19 - }, - "uniquenessRatio": 0.10852713178294573, - "prefixed": { - "total": 147, - "totalUnique": 20, - "unique": { - "-webkit-text-size-adjust": 1, - "-webkit-tap-highlight-color": 1, - "-webkit-text-decoration": 1, - "-webkit-text-decoration-skip-ink": 1, - "-webkit-appearance": 10, - "-webkit-overflow-scrolling": 6, - "-moz-appearance": 5, - "-webkit-margin-end": 6, - "-webkit-transition": 4, - "-webkit-print-color-adjust": 1, - "-moz-transition": 2, - "-webkit-user-select": 5, - "-moz-user-select": 5, - "-webkit-backface-visibility": 2, - "-webkit-mask-image": 1, - "-webkit-mask-size": 1, - "-webkit-mask-position": 1, - "-webkit-text-decoration-color": 28, - "-o-object-fit": 30, - "-moz-column-gap": 36 - }, - "uniquenessRatio": 0.1360544217687075, - "ratio": 0.02650081124932396 - }, - "custom": { - "total": 1175, - "totalUnique": 447, - "unique": { - "--bs-blue": 1, - "--bs-indigo": 1, - "--bs-purple": 1, - "--bs-pink": 1, - "--bs-red": 1, - "--bs-orange": 1, - "--bs-yellow": 1, - "--bs-green": 1, - "--bs-teal": 1, - "--bs-cyan": 1, - "--bs-black": 1, - "--bs-white": 1, - "--bs-gray": 1, - "--bs-gray-dark": 1, - "--bs-gray-100": 1, - "--bs-gray-200": 1, - "--bs-gray-300": 1, - "--bs-gray-400": 1, - "--bs-gray-500": 1, - "--bs-gray-600": 1, - "--bs-gray-700": 1, - "--bs-gray-800": 1, - "--bs-gray-900": 1, - "--bs-primary": 1, - "--bs-secondary": 1, - "--bs-success": 1, - "--bs-info": 1, - "--bs-warning": 1, - "--bs-danger": 1, - "--bs-light": 1, - "--bs-dark": 1, - "--bs-primary-rgb": 1, - "--bs-secondary-rgb": 1, - "--bs-success-rgb": 1, - "--bs-info-rgb": 1, - "--bs-warning-rgb": 1, - "--bs-danger-rgb": 1, - "--bs-light-rgb": 1, - "--bs-dark-rgb": 1, - "--bs-primary-text-emphasis": 2, - "--bs-secondary-text-emphasis": 2, - "--bs-success-text-emphasis": 2, - "--bs-info-text-emphasis": 2, - "--bs-warning-text-emphasis": 2, - "--bs-danger-text-emphasis": 2, - "--bs-light-text-emphasis": 2, - "--bs-dark-text-emphasis": 2, - "--bs-primary-bg-subtle": 2, - "--bs-secondary-bg-subtle": 2, - "--bs-success-bg-subtle": 2, - "--bs-info-bg-subtle": 2, - "--bs-warning-bg-subtle": 2, - "--bs-danger-bg-subtle": 2, - "--bs-light-bg-subtle": 2, - "--bs-dark-bg-subtle": 2, - "--bs-primary-border-subtle": 2, - "--bs-secondary-border-subtle": 2, - "--bs-success-border-subtle": 2, - "--bs-info-border-subtle": 2, - "--bs-warning-border-subtle": 2, - "--bs-danger-border-subtle": 2, - "--bs-light-border-subtle": 2, - "--bs-dark-border-subtle": 2, - "--bs-white-rgb": 1, - "--bs-black-rgb": 1, - "--bs-font-sans-serif": 1, - "--bs-font-monospace": 1, - "--bs-gradient": 9, - "--bs-body-font-family": 1, - "--bs-body-font-size": 1, - "--bs-body-font-weight": 1, - "--bs-body-line-height": 1, - "--bs-body-color": 2, - "--bs-body-color-rgb": 2, - "--bs-body-bg": 2, - "--bs-body-bg-rgb": 2, - "--bs-emphasis-color": 2, - "--bs-emphasis-color-rgb": 2, - "--bs-secondary-color": 2, - "--bs-secondary-color-rgb": 2, - "--bs-secondary-bg": 2, - "--bs-secondary-bg-rgb": 2, - "--bs-tertiary-color": 2, - "--bs-tertiary-color-rgb": 2, - "--bs-tertiary-bg": 2, - "--bs-tertiary-bg-rgb": 2, - "--bs-heading-color": 2, - "--bs-link-color": 2, - "--bs-link-color-rgb": 3, - "--bs-link-decoration": 1, - "--bs-link-hover-color": 2, - "--bs-link-hover-color-rgb": 2, - "--bs-code-color": 2, - "--bs-highlight-color": 2, - "--bs-highlight-bg": 2, - "--bs-border-width": 1, - "--bs-border-style": 1, - "--bs-border-color": 2, - "--bs-border-color-translucent": 2, - "--bs-border-radius": 1, - "--bs-border-radius-sm": 1, - "--bs-border-radius-lg": 1, - "--bs-border-radius-xl": 1, - "--bs-border-radius-xxl": 1, - "--bs-border-radius-2xl": 1, - "--bs-border-radius-pill": 1, - "--bs-box-shadow": 1, - "--bs-box-shadow-sm": 1, - "--bs-box-shadow-lg": 1, - "--bs-box-shadow-inset": 1, - "--bs-focus-ring-width": 1, - "--bs-focus-ring-opacity": 1, - "--bs-focus-ring-color": 9, - "--bs-form-valid-color": 2, - "--bs-form-valid-border-color": 2, - "--bs-form-invalid-color": 2, - "--bs-form-invalid-border-color": 2, - "--bs-gutter-x": 38, - "--bs-gutter-y": 38, - "--bs-breakpoint-xs": 1, - "--bs-breakpoint-sm": 1, - "--bs-breakpoint-md": 1, - "--bs-breakpoint-lg": 1, - "--bs-breakpoint-xl": 1, - "--bs-breakpoint-xxl": 1, - "--bs-table-color-type": 3, - "--bs-table-bg-type": 3, - "--bs-table-color-state": 3, - "--bs-table-bg-state": 3, - "--bs-table-color": 9, - "--bs-table-bg": 9, - "--bs-table-border-color": 9, - "--bs-table-accent-bg": 1, - "--bs-table-striped-color": 9, - "--bs-table-striped-bg": 9, - "--bs-table-active-color": 9, - "--bs-table-active-bg": 9, - "--bs-table-hover-color": 9, - "--bs-table-hover-bg": 9, - "--bs-form-select-bg-img": 2, - "--bs-form-check-bg": 1, - "--bs-form-check-bg-image": 3, - "--bs-form-switch-bg": 4, - "--bs-form-select-bg-icon": 2, - "--bs-btn-padding-x": 3, - "--bs-btn-padding-y": 3, - "--bs-btn-font-family": 1, - "--bs-btn-font-size": 3, - "--bs-btn-font-weight": 2, - "--bs-btn-line-height": 1, - "--bs-btn-color": 18, - "--bs-btn-bg": 10, - "--bs-btn-border-width": 1, - "--bs-btn-border-color": 18, - "--bs-btn-border-radius": 3, - "--bs-btn-hover-border-color": 18, - "--bs-btn-box-shadow": 2, - "--bs-btn-disabled-opacity": 1, - "--bs-btn-focus-box-shadow": 1, - "--bs-btn-hover-color": 17, - "--bs-btn-hover-bg": 16, - "--bs-btn-focus-shadow-rgb": 17, - "--bs-btn-active-color": 17, - "--bs-btn-active-bg": 16, - "--bs-btn-active-border-color": 17, - "--bs-btn-active-shadow": 16, - "--bs-btn-disabled-color": 17, - "--bs-btn-disabled-bg": 16, - "--bs-btn-disabled-border-color": 17, - "--bs-dropdown-zindex": 1, - "--bs-dropdown-min-width": 1, - "--bs-dropdown-padding-x": 1, - "--bs-dropdown-padding-y": 1, - "--bs-dropdown-spacer": 1, - "--bs-dropdown-font-size": 1, - "--bs-dropdown-color": 2, - "--bs-dropdown-bg": 2, - "--bs-dropdown-border-color": 2, - "--bs-dropdown-border-radius": 1, - "--bs-dropdown-border-width": 1, - "--bs-dropdown-inner-border-radius": 1, - "--bs-dropdown-divider-bg": 2, - "--bs-dropdown-divider-margin-y": 1, - "--bs-dropdown-box-shadow": 2, - "--bs-dropdown-link-color": 2, - "--bs-dropdown-link-hover-color": 2, - "--bs-dropdown-link-hover-bg": 2, - "--bs-dropdown-link-active-color": 2, - "--bs-dropdown-link-active-bg": 2, - "--bs-dropdown-link-disabled-color": 2, - "--bs-dropdown-item-padding-x": 1, - "--bs-dropdown-item-padding-y": 1, - "--bs-dropdown-header-color": 2, - "--bs-dropdown-header-padding-x": 1, - "--bs-dropdown-header-padding-y": 1, - "--bs-position": 12, - "--bs-nav-link-padding-x": 2, - "--bs-nav-link-padding-y": 2, - "--bs-nav-link-font-weight": 2, - "--bs-nav-link-color": 2, - "--bs-nav-link-hover-color": 2, - "--bs-nav-link-disabled-color": 2, - "--bs-nav-tabs-border-width": 1, - "--bs-nav-tabs-border-color": 1, - "--bs-nav-tabs-border-radius": 1, - "--bs-nav-tabs-link-hover-border-color": 1, - "--bs-nav-tabs-link-active-color": 1, - "--bs-nav-tabs-link-active-bg": 1, - "--bs-nav-tabs-link-active-border-color": 1, - "--bs-nav-pills-border-radius": 1, - "--bs-nav-pills-link-active-color": 1, - "--bs-nav-pills-link-active-bg": 1, - "--bs-nav-underline-gap": 1, - "--bs-nav-underline-border-width": 1, - "--bs-nav-underline-link-active-color": 1, - "--bs-navbar-padding-x": 1, - "--bs-navbar-padding-y": 1, - "--bs-navbar-color": 2, - "--bs-navbar-hover-color": 2, - "--bs-navbar-disabled-color": 2, - "--bs-navbar-active-color": 2, - "--bs-navbar-brand-padding-y": 1, - "--bs-navbar-brand-margin-end": 1, - "--bs-navbar-brand-font-size": 1, - "--bs-navbar-brand-color": 2, - "--bs-navbar-brand-hover-color": 2, - "--bs-navbar-nav-link-padding-x": 1, - "--bs-navbar-toggler-padding-y": 1, - "--bs-navbar-toggler-padding-x": 1, - "--bs-navbar-toggler-font-size": 1, - "--bs-navbar-toggler-icon-bg": 3, - "--bs-navbar-toggler-border-color": 2, - "--bs-navbar-toggler-border-radius": 1, - "--bs-navbar-toggler-focus-width": 1, - "--bs-navbar-toggler-transition": 1, - "--bs-card-spacer-y": 1, - "--bs-card-spacer-x": 1, - "--bs-card-title-spacer-y": 1, - "--bs-card-title-color": 1, - "--bs-card-subtitle-color": 1, - "--bs-card-border-width": 1, - "--bs-card-border-color": 1, - "--bs-card-border-radius": 1, - "--bs-card-box-shadow": 1, - "--bs-card-inner-border-radius": 1, - "--bs-card-cap-padding-y": 1, - "--bs-card-cap-padding-x": 1, - "--bs-card-cap-bg": 1, - "--bs-card-cap-color": 1, - "--bs-card-height": 1, - "--bs-card-color": 1, - "--bs-card-bg": 1, - "--bs-card-img-overlay-padding": 1, - "--bs-card-group-margin": 1, - "--bs-accordion-color": 1, - "--bs-accordion-bg": 1, - "--bs-accordion-transition": 1, - "--bs-accordion-border-color": 1, - "--bs-accordion-border-width": 1, - "--bs-accordion-border-radius": 1, - "--bs-accordion-inner-border-radius": 1, - "--bs-accordion-btn-padding-x": 1, - "--bs-accordion-btn-padding-y": 1, - "--bs-accordion-btn-color": 1, - "--bs-accordion-btn-bg": 1, - "--bs-accordion-btn-icon": 2, - "--bs-accordion-btn-icon-width": 1, - "--bs-accordion-btn-icon-transform": 1, - "--bs-accordion-btn-icon-transition": 1, - "--bs-accordion-btn-active-icon": 2, - "--bs-accordion-btn-focus-border-color": 1, - "--bs-accordion-btn-focus-box-shadow": 1, - "--bs-accordion-body-padding-x": 1, - "--bs-accordion-body-padding-y": 1, - "--bs-accordion-active-color": 1, - "--bs-accordion-active-bg": 1, - "--bs-breadcrumb-padding-x": 1, - "--bs-breadcrumb-padding-y": 1, - "--bs-breadcrumb-margin-bottom": 1, - "--bs-breadcrumb-bg": 1, - "--bs-breadcrumb-border-radius": 1, - "--bs-breadcrumb-divider-color": 1, - "--bs-breadcrumb-item-padding-x": 1, - "--bs-breadcrumb-item-active-color": 1, - "--bs-pagination-padding-x": 3, - "--bs-pagination-padding-y": 3, - "--bs-pagination-font-size": 3, - "--bs-pagination-color": 1, - "--bs-pagination-bg": 1, - "--bs-pagination-border-width": 1, - "--bs-pagination-border-color": 1, - "--bs-pagination-border-radius": 3, - "--bs-pagination-hover-color": 1, - "--bs-pagination-hover-bg": 1, - "--bs-pagination-hover-border-color": 1, - "--bs-pagination-focus-color": 1, - "--bs-pagination-focus-bg": 1, - "--bs-pagination-focus-box-shadow": 1, - "--bs-pagination-active-color": 1, - "--bs-pagination-active-bg": 1, - "--bs-pagination-active-border-color": 1, - "--bs-pagination-disabled-color": 1, - "--bs-pagination-disabled-bg": 1, - "--bs-pagination-disabled-border-color": 1, - "--bs-badge-padding-x": 1, - "--bs-badge-padding-y": 1, - "--bs-badge-font-size": 1, - "--bs-badge-font-weight": 1, - "--bs-badge-color": 1, - "--bs-badge-border-radius": 1, - "--bs-alert-bg": 9, - "--bs-alert-padding-x": 1, - "--bs-alert-padding-y": 1, - "--bs-alert-margin-bottom": 1, - "--bs-alert-color": 9, - "--bs-alert-border-color": 9, - "--bs-alert-border": 1, - "--bs-alert-border-radius": 1, - "--bs-alert-link-color": 9, - "--bs-progress-height": 1, - "--bs-progress-font-size": 1, - "--bs-progress-bg": 1, - "--bs-progress-border-radius": 1, - "--bs-progress-box-shadow": 1, - "--bs-progress-bar-color": 1, - "--bs-progress-bar-bg": 1, - "--bs-progress-bar-transition": 1, - "--bs-list-group-color": 9, - "--bs-list-group-bg": 9, - "--bs-list-group-border-color": 9, - "--bs-list-group-border-width": 1, - "--bs-list-group-border-radius": 1, - "--bs-list-group-item-padding-x": 1, - "--bs-list-group-item-padding-y": 1, - "--bs-list-group-action-color": 1, - "--bs-list-group-action-hover-color": 9, - "--bs-list-group-action-hover-bg": 9, - "--bs-list-group-action-active-color": 9, - "--bs-list-group-action-active-bg": 9, - "--bs-list-group-disabled-color": 1, - "--bs-list-group-disabled-bg": 1, - "--bs-list-group-active-color": 9, - "--bs-list-group-active-bg": 9, - "--bs-list-group-active-border-color": 9, - "--bs-btn-close-color": 1, - "--bs-btn-close-bg": 1, - "--bs-btn-close-opacity": 1, - "--bs-btn-close-hover-opacity": 1, - "--bs-btn-close-focus-shadow": 1, - "--bs-btn-close-focus-opacity": 1, - "--bs-btn-close-disabled-opacity": 1, - "--bs-btn-close-white-filter": 1, - "--bs-toast-zindex": 2, - "--bs-toast-padding-x": 1, - "--bs-toast-padding-y": 1, - "--bs-toast-spacing": 1, - "--bs-toast-max-width": 1, - "--bs-toast-font-size": 1, - "--bs-toast-color": 1, - "--bs-toast-bg": 1, - "--bs-toast-border-width": 1, - "--bs-toast-border-color": 1, - "--bs-toast-border-radius": 1, - "--bs-toast-box-shadow": 1, - "--bs-toast-header-color": 1, - "--bs-toast-header-bg": 1, - "--bs-toast-header-border-color": 1, - "--bs-modal-zindex": 1, - "--bs-modal-width": 4, - "--bs-modal-padding": 1, - "--bs-modal-margin": 2, - "--bs-modal-color": 1, - "--bs-modal-bg": 1, - "--bs-modal-border-color": 1, - "--bs-modal-border-width": 1, - "--bs-modal-border-radius": 1, - "--bs-modal-box-shadow": 2, - "--bs-modal-inner-border-radius": 1, - "--bs-modal-header-padding-x": 1, - "--bs-modal-header-padding-y": 1, - "--bs-modal-header-padding": 1, - "--bs-modal-header-border-color": 1, - "--bs-modal-header-border-width": 1, - "--bs-modal-title-line-height": 1, - "--bs-modal-footer-gap": 1, - "--bs-modal-footer-bg": 1, - "--bs-modal-footer-border-color": 1, - "--bs-modal-footer-border-width": 1, - "--bs-backdrop-zindex": 1, - "--bs-backdrop-bg": 1, - "--bs-backdrop-opacity": 1, - "--bs-tooltip-zindex": 1, - "--bs-tooltip-max-width": 1, - "--bs-tooltip-padding-x": 1, - "--bs-tooltip-padding-y": 1, - "--bs-tooltip-margin": 1, - "--bs-tooltip-font-size": 1, - "--bs-tooltip-color": 1, - "--bs-tooltip-bg": 1, - "--bs-tooltip-border-radius": 1, - "--bs-tooltip-opacity": 1, - "--bs-tooltip-arrow-width": 1, - "--bs-tooltip-arrow-height": 1, - "--bs-popover-zindex": 1, - "--bs-popover-max-width": 1, - "--bs-popover-font-size": 1, - "--bs-popover-bg": 1, - "--bs-popover-border-width": 1, - "--bs-popover-border-color": 1, - "--bs-popover-border-radius": 1, - "--bs-popover-inner-border-radius": 1, - "--bs-popover-box-shadow": 1, - "--bs-popover-header-padding-x": 1, - "--bs-popover-header-padding-y": 1, - "--bs-popover-header-font-size": 1, - "--bs-popover-header-color": 1, - "--bs-popover-header-bg": 1, - "--bs-popover-body-padding-x": 1, - "--bs-popover-body-padding-y": 1, - "--bs-popover-body-color": 1, - "--bs-popover-arrow-width": 1, - "--bs-popover-arrow-height": 1, - "--bs-popover-arrow-border": 1, - "--bs-spinner-width": 4, - "--bs-spinner-height": 4, - "--bs-spinner-vertical-align": 2, - "--bs-spinner-border-width": 2, - "--bs-spinner-animation-speed": 3, - "--bs-spinner-animation-name": 2, - "--bs-offcanvas-zindex": 1, - "--bs-offcanvas-width": 1, - "--bs-offcanvas-height": 6, - "--bs-offcanvas-padding-x": 1, - "--bs-offcanvas-padding-y": 1, - "--bs-offcanvas-color": 1, - "--bs-offcanvas-bg": 1, - "--bs-offcanvas-border-width": 6, - "--bs-offcanvas-border-color": 1, - "--bs-offcanvas-box-shadow": 1, - "--bs-offcanvas-transition": 1, - "--bs-offcanvas-title-line-height": 1, - "--bs-aspect-ratio": 4, - "--bs-border-opacity": 15, - "--bs-text-opacity": 22, - "--bs-link-opacity": 10, - "--bs-link-underline-opacity": 21, - "--bs-bg-opacity": 19 - }, - "uniquenessRatio": 0.38042553191489364, - "ratio": 0.21182621236704524, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.2383270236163693, - "mode": 1, - "range": 1, - "sum": 6869 - } - }, - "values": { - "colors": { - "total": 704, - "totalUnique": 249, - "unique": { - "#0d6efd": 29, - "#6610f2": 1, - "#6f42c1": 1, - "#d63384": 2, - "#dc3545": 16, - "#fd7e14": 1, - "#ffc107": 14, - "#198754": 16, - "#20c997": 1, - "#0dcaf0": 14, - "#000": 63, - "#fff": 61, - "#6c757d": 19, - "#343a40": 6, - "#f8f9fa": 17, - "#e9ecef": 3, - "#dee2e6": 7, - "#ced4da": 2, - "#adb5bd": 4, - "#495057": 5, - "#212529": 18, - "#052c65": 1, - "#2b2f32": 1, - "#0a3622": 1, - "#055160": 1, - "#664d03": 2, - "#58151c": 1, - "#cfe2ff": 2, - "#e2e3e5": 2, - "#d1e7dd": 2, - "#cff4fc": 2, - "#fff3cd": 3, - "#f8d7da": 2, - "#fcfcfd": 1, - "#9ec5fe": 1, - "#c4c8cb": 1, - "#a3cfbb": 1, - "#9eeaf9": 1, - "#ffe69c": 1, - "#f1aeb5": 1, - "rgba(255, 255, 255, 0.15)": 7, - "rgba(255, 255, 255, 0)": 1, - "rgba(33, 37, 41, 0.75)": 1, - "rgba(33, 37, 41, 0.5)": 1, - "#0a58ca": 3, - "rgba(0, 0, 0, 0.175)": 2, - "rgba(0, 0, 0, 0.15)": 1, - "rgba(0, 0, 0, 0.075)": 3, - "rgba(13, 110, 253, 0.25)": 10, - "rgba(222, 226, 230, 0.75)": 1, - "rgba(222, 226, 230, 0.5)": 1, - "#2b3035": 1, - "#6ea8fe": 2, - "#a7acb1": 1, - "#75b798": 3, - "#6edff6": 1, - "#ffda6a": 1, - "#ea868f": 3, - "#031633": 1, - "#161719": 1, - "#051b11": 1, - "#032830": 1, - "#332701": 1, - "#2c0b0e": 1, - "#1a1d20": 1, - "#084298": 1, - "#41464b": 1, - "#0f5132": 1, - "#087990": 1, - "#997404": 1, - "#842029": 1, - "#8bb9fe": 1, - "#e685b5": 1, - "rgba(0, 0, 0, 0)": 1, - "rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1))": 1, - "transparent": 70, - "rgba(var(--bs-emphasis-color-rgb), 0.05)": 1, - "rgba(var(--bs-emphasis-color-rgb), 0.1)": 1, - "rgba(var(--bs-emphasis-color-rgb), 0.075)": 1, - "currentcolor": 8, - "#a6b5cc": 1, - "#c5d7f2": 1, - "#bacbe6": 1, - "#bfd1ec": 1, - "#b5b6b7": 1, - "#d7d8da": 1, - "#cbccce": 1, - "#d1d2d4": 1, - "#a7b9b1": 1, - "#c7dbd2": 1, - "#bcd0c7": 1, - "#c1d6cc": 1, - "#a6c3ca": 1, - "#c5e8ef": 1, - "#badce3": 1, - "#bfe2e9": 1, - "#ccc2a4": 1, - "#f2e7c3": 1, - "#e6dbb9": 1, - "#ece1be": 1, - "#c6acae": 1, - "#eccccf": 1, - "#dfc2c4": 1, - "#e5c7ca": 1, - "#c6c7c8": 3, - "#ecedee": 1, - "#dfe0e1": 1, - "#e5e6e7": 1, - "#4d5154": 2, - "#2c3034": 1, - "#373b3e": 3, - "#323539": 1, - "#86b7fe": 4, - "#b6d4fe": 2, - "rgba(var(--bs-body-color-rgb), 0.65)": 3, - "rgba(var(--bs-success-rgb), 0.25)": 3, - "rgba(var(--bs-danger-rgb), 0.25)": 3, - "rgba(var(--bs-btn-focus-shadow-rgb), .5)": 1, - "#0b5ed7": 1, - "#0a53be": 1, - "rgba(0, 0, 0, 0.125)": 16, - "#5c636a": 1, - "#565e64": 2, - "#51585e": 1, - "#157347": 1, - "#146c43": 2, - "#13653f": 1, - "#31d2f2": 1, - "#25cff2": 2, - "#3dd5f3": 1, - "#ffca2c": 1, - "#ffc720": 2, - "#ffcd39": 1, - "#bb2d3b": 1, - "#b02a37": 2, - "#a52834": 1, - "#d3d4d5": 1, - "#babbbc": 1, - "#424649": 1, - "rgba(var(--bs-emphasis-color-rgb), 0.65)": 1, - "rgba(var(--bs-emphasis-color-rgb), 0.8)": 1, - "rgba(var(--bs-emphasis-color-rgb), 0.3)": 1, - "rgba(var(--bs-emphasis-color-rgb), 1)": 3, - "rgba(var(--bs-emphasis-color-rgb), 0.15)": 1, - "rgba(255, 255, 255, 0.55)": 1, - "rgba(255, 255, 255, 0.75)": 1, - "rgba(255, 255, 255, 0.25)": 1, - "rgba(255, 255, 255, 0.1)": 1, - "rgba(var(--bs-body-color-rgb), 0.03)": 1, - "rgba(var(--bs-body-bg-rgb), 0.85)": 2, - "rgba(0, 0, 0, 0.8)": 2, - "RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(10, 88, 202, var(--bs-link-opacity, 1))": 1, - "RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(86, 94, 100, var(--bs-link-opacity, 1))": 1, - "RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(20, 108, 67, var(--bs-link-opacity, 1))": 1, - "RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(61, 213, 243, var(--bs-link-opacity, 1))": 1, - "RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(255, 205, 57, var(--bs-link-opacity, 1))": 1, - "RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(176, 42, 55, var(--bs-link-opacity, 1))": 1, - "RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(249, 250, 251, var(--bs-link-opacity, 1))": 1, - "RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(26, 30, 33, var(--bs-link-opacity, 1))": 1, - "RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1))": 2, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75))": 2, - "rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5))": 2, - "rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-primary-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-black-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-white-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-primary-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-black-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-white-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-body-color-rgb), var(--bs-text-opacity))": 1, - "rgba(0, 0, 0, 0.5)": 1, - "rgba(255, 255, 255, 0.5)": 1, - "rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity))": 2, - "rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1))": 2, - "rgba(var(--bs-primary-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-black-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-white-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity))": 1 - }, - "uniquenessRatio": 0.3536931818181818, - "itemsPerContext": { - "--bs-blue": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-indigo": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6610f2": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-purple": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6f42c1": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-pink": { - "total": 1, - "totalUnique": 1, - "unique": { - "#d63384": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-red": { - "total": 1, - "totalUnique": 1, - "unique": { - "#dc3545": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-orange": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fd7e14": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-yellow": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffc107": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-green": { - "total": 1, - "totalUnique": 1, - "unique": { - "#198754": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-teal": { - "total": 1, - "totalUnique": 1, - "unique": { - "#20c997": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-cyan": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0dcaf0": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-black": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-white": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6c757d": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-dark": { - "total": 1, - "totalUnique": 1, - "unique": { - "#343a40": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-100": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f8f9fa": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-200": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e9ecef": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-300": { - "total": 1, - "totalUnique": 1, - "unique": { - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-400": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ced4da": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-500": { - "total": 1, - "totalUnique": 1, - "unique": { - "#adb5bd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-600": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6c757d": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-700": { - "total": 1, - "totalUnique": 1, - "unique": { - "#495057": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-800": { - "total": 1, - "totalUnique": 1, - "unique": { - "#343a40": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gray-900": { - "total": 1, - "totalUnique": 1, - "unique": { - "#212529": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-primary": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-secondary": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6c757d": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-success": { - "total": 1, - "totalUnique": 1, - "unique": { - "#198754": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-info": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0dcaf0": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-warning": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffc107": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-danger": { - "total": 1, - "totalUnique": 1, - "unique": { - "#dc3545": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-light": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f8f9fa": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dark": { - "total": 1, - "totalUnique": 1, - "unique": { - "#212529": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-primary-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#052c65": 1, - "#6ea8fe": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-secondary-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#2b2f32": 1, - "#a7acb1": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-success-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#0a3622": 1, - "#75b798": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-info-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#055160": 1, - "#6edff6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-warning-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#664d03": 1, - "#ffda6a": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-danger-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#58151c": 1, - "#ea868f": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-light-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#495057": 1, - "#f8f9fa": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dark-text-emphasis": { - "total": 2, - "totalUnique": 2, - "unique": { - "#495057": 1, - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-primary-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#cfe2ff": 1, - "#031633": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-secondary-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#e2e3e5": 1, - "#161719": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-success-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#d1e7dd": 1, - "#051b11": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-info-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#cff4fc": 1, - "#032830": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-warning-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#fff3cd": 1, - "#332701": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-danger-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#f8d7da": 1, - "#2c0b0e": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-light-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#fcfcfd": 1, - "#343a40": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dark-bg-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#ced4da": 1, - "#1a1d20": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-primary-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#9ec5fe": 1, - "#084298": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-secondary-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#c4c8cb": 1, - "#41464b": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-success-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#a3cfbb": 1, - "#0f5132": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-info-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#9eeaf9": 1, - "#087990": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-warning-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#ffe69c": 1, - "#997404": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-danger-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#f1aeb5": 1, - "#842029": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-light-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#e9ecef": 1, - "#495057": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dark-border-subtle": { - "total": 2, - "totalUnique": 2, - "unique": { - "#adb5bd": 1, - "#343a40": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gradient": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.15)": 1, - "rgba(255, 255, 255, 0)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-body-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#212529": 1, - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-body-bg": { - "total": 2, - "totalUnique": 2, - "unique": { - "#fff": 1, - "#212529": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-emphasis-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#000": 1, - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-secondary-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(33, 37, 41, 0.75)": 1, - "rgba(222, 226, 230, 0.75)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-secondary-bg": { - "total": 2, - "totalUnique": 2, - "unique": { - "#e9ecef": 1, - "#343a40": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tertiary-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(33, 37, 41, 0.5)": 1, - "rgba(222, 226, 230, 0.5)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tertiary-bg": { - "total": 2, - "totalUnique": 2, - "unique": { - "#f8f9fa": 1, - "#2b3035": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-link-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#0d6efd": 1, - "#6ea8fe": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-link-hover-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#0a58ca": 1, - "#8bb9fe": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-code-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#d63384": 1, - "#e685b5": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-highlight-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#212529": 1, - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-highlight-bg": { - "total": 2, - "totalUnique": 2, - "unique": { - "#fff3cd": 1, - "#664d03": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#dee2e6": 1, - "#495057": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-color-translucent": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(0, 0, 0, 0.175)": 1, - "rgba(255, 255, 255, 0.15)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.15)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-box-shadow-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.075)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-box-shadow-lg": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.175)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-box-shadow-inset": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.075)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-focus-ring-color": { - "total": 9, - "totalUnique": 9, - "unique": { - "rgba(13, 110, 253, 0.25)": 1, - "rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-form-valid-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#198754": 1, - "#75b798": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-form-valid-border-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#198754": 1, - "#75b798": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-form-invalid-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#dc3545": 1, - "#ea868f": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-form-invalid-border-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#dc3545": 1, - "#ea868f": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-tap-highlight-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0)": 1 - }, - "uniquenessRatio": 1 - }, - "color": { - "total": 57, - "totalUnique": 37, - "unique": { - "rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1))": 1, - "#6c757d": 2, - "transparent": 5, - "rgba(var(--bs-body-color-rgb), 0.65)": 3, - "#fff": 10, - "#000": 5, - "RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(10, 88, 202, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(86, 94, 100, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(20, 108, 67, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(61, 213, 243, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(255, 205, 57, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(176, 42, 55, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(249, 250, 251, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(26, 30, 33, var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75))": 1, - "rgba(var(--bs-primary-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-black-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-white-rgb), var(--bs-text-opacity))": 1, - "rgba(var(--bs-body-color-rgb), var(--bs-text-opacity))": 1, - "rgba(0, 0, 0, 0.5)": 1, - "rgba(255, 255, 255, 0.5)": 1 - }, - "uniquenessRatio": 0.6491228070175439 - }, - "--bs-table-accent-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-table-striped-bg": { - "total": 9, - "totalUnique": 9, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.05)": 1, - "#c5d7f2": 1, - "#d7d8da": 1, - "#c7dbd2": 1, - "#c5e8ef": 1, - "#f2e7c3": 1, - "#eccccf": 1, - "#ecedee": 1, - "#2c3034": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-table-active-bg": { - "total": 9, - "totalUnique": 9, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.1)": 1, - "#bacbe6": 1, - "#cbccce": 1, - "#bcd0c7": 1, - "#badce3": 1, - "#e6dbb9": 1, - "#dfc2c4": 1, - "#dfe0e1": 1, - "#373b3e": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-table-hover-bg": { - "total": 9, - "totalUnique": 9, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.075)": 1, - "#bfd1ec": 1, - "#d1d2d4": 1, - "#c1d6cc": 1, - "#bfe2e9": 1, - "#ece1be": 1, - "#e5c7ca": 1, - "#e5e6e7": 1, - "#323539": 1 - }, - "uniquenessRatio": 1 - }, - "border-top": { - "total": 4, - "totalUnique": 2, - "unique": { - "currentcolor": 1, - "transparent": 3 - }, - "uniquenessRatio": 0.5 - }, - "--bs-table-color": { - "total": 8, - "totalUnique": 2, - "unique": { - "#000": 7, - "#fff": 1 - }, - "uniquenessRatio": 0.25 - }, - "--bs-table-bg": { - "total": 8, - "totalUnique": 8, - "unique": { - "#cfe2ff": 1, - "#e2e3e5": 1, - "#d1e7dd": 1, - "#cff4fc": 1, - "#fff3cd": 1, - "#f8d7da": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-table-border-color": { - "total": 8, - "totalUnique": 8, - "unique": { - "#a6b5cc": 1, - "#b5b6b7": 1, - "#a7b9b1": 1, - "#a6c3ca": 1, - "#ccc2a4": 1, - "#c6acae": 1, - "#c6c7c8": 1, - "#4d5154": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-table-striped-color": { - "total": 8, - "totalUnique": 2, - "unique": { - "#000": 7, - "#fff": 1 - }, - "uniquenessRatio": 0.25 - }, - "--bs-table-active-color": { - "total": 8, - "totalUnique": 2, - "unique": { - "#000": 7, - "#fff": 1 - }, - "uniquenessRatio": 0.25 - }, - "--bs-table-hover-color": { - "total": 8, - "totalUnique": 2, - "unique": { - "#000": 7, - "#fff": 1 - }, - "uniquenessRatio": 0.25 - }, - "border-color": { - "total": 19, - "totalUnique": 13, - "unique": { - "#86b7fe": 3, - "#0d6efd": 2, - "transparent": 4, - "rgba(var(--bs-primary-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-black-rgb), var(--bs-border-opacity))": 1, - "rgba(var(--bs-white-rgb), var(--bs-border-opacity))": 1 - }, - "uniquenessRatio": 0.6842105263157895 - }, - "box-shadow": { - "total": 14, - "totalUnique": 4, - "unique": { - "rgba(13, 110, 253, 0.25)": 6, - "#fff": 2, - "rgba(var(--bs-success-rgb), 0.25)": 3, - "rgba(var(--bs-danger-rgb), 0.25)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "background-color": { - "total": 56, - "totalUnique": 27, - "unique": { - "transparent": 22, - "#0d6efd": 4, - "#b6d4fe": 2, - "#fff": 1, - "#000": 3, - "currentcolor": 3, - "RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1))": 1, - "RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1))": 1, - "rgba(var(--bs-primary-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-black-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-white-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity))": 1, - "rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity))": 1 - }, - "uniquenessRatio": 0.48214285714285715 - }, - "border": { - "total": 4, - "totalUnique": 2, - "unique": { - "transparent": 3, - "currentcolor": 1 - }, - "uniquenessRatio": 0.5 - }, - "--bs-btn-bg": { - "total": 10, - "totalUnique": 9, - "unique": { - "transparent": 2, - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 0.9 - }, - "--bs-btn-border-color": { - "total": 18, - "totalUnique": 9, - "unique": { - "transparent": 2, - "#0d6efd": 2, - "#6c757d": 2, - "#198754": 2, - "#0dcaf0": 2, - "#ffc107": 2, - "#dc3545": 2, - "#f8f9fa": 2, - "#212529": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-btn-hover-border-color": { - "total": 18, - "totalUnique": 17, - "unique": { - "transparent": 2, - "#0a58ca": 1, - "#565e64": 1, - "#146c43": 1, - "#25cff2": 1, - "#ffc720": 1, - "#b02a37": 1, - "#c6c7c8": 1, - "#373b3e": 1, - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 0.9444444444444444 - }, - "--bs-btn-box-shadow": { - "total": 3, - "totalUnique": 3, - "unique": { - "rgba(255, 255, 255, 0.15)": 1, - "rgba(0, 0, 0, 0.075)": 1, - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-focus-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(var(--bs-btn-focus-shadow-rgb), .5)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-color": { - "total": 16, - "totalUnique": 10, - "unique": { - "#fff": 5, - "#000": 3, - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 0.625 - }, - "--bs-btn-hover-color": { - "total": 16, - "totalUnique": 2, - "unique": { - "#fff": 10, - "#000": 6 - }, - "uniquenessRatio": 0.125 - }, - "--bs-btn-hover-bg": { - "total": 16, - "totalUnique": 16, - "unique": { - "#0b5ed7": 1, - "#5c636a": 1, - "#157347": 1, - "#31d2f2": 1, - "#ffca2c": 1, - "#bb2d3b": 1, - "#d3d4d5": 1, - "#424649": 1, - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-active-color": { - "total": 16, - "totalUnique": 2, - "unique": { - "#fff": 10, - "#000": 6 - }, - "uniquenessRatio": 0.125 - }, - "--bs-btn-active-bg": { - "total": 16, - "totalUnique": 16, - "unique": { - "#0a58ca": 1, - "#565e64": 1, - "#146c43": 1, - "#3dd5f3": 1, - "#ffcd39": 1, - "#b02a37": 1, - "#c6c7c8": 1, - "#4d5154": 1, - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-active-border-color": { - "total": 17, - "totalUnique": 17, - "unique": { - "#0a53be": 1, - "#51585e": 1, - "#13653f": 1, - "#25cff2": 1, - "#ffc720": 1, - "#a52834": 1, - "#babbbc": 1, - "#373b3e": 1, - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1, - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-active-shadow": { - "total": 16, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.125)": 16 - }, - "uniquenessRatio": 0.0625 - }, - "--bs-btn-disabled-color": { - "total": 17, - "totalUnique": 10, - "unique": { - "#fff": 5, - "#000": 3, - "#0d6efd": 1, - "#6c757d": 2, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1 - }, - "uniquenessRatio": 0.5882352941176471 - }, - "--bs-btn-disabled-bg": { - "total": 16, - "totalUnique": 9, - "unique": { - "#0d6efd": 1, - "#6c757d": 1, - "#198754": 1, - "#0dcaf0": 1, - "#ffc107": 1, - "#dc3545": 1, - "#f8f9fa": 1, - "#212529": 1, - "transparent": 8 - }, - "uniquenessRatio": 0.5625 - }, - "--bs-btn-disabled-border-color": { - "total": 17, - "totalUnique": 9, - "unique": { - "#0d6efd": 2, - "#6c757d": 2, - "#198754": 2, - "#0dcaf0": 2, - "#ffc107": 2, - "#dc3545": 2, - "#f8f9fa": 2, - "#212529": 2, - "transparent": 1 - }, - "uniquenessRatio": 0.5294117647058824 - }, - "border-right": { - "total": 2, - "totalUnique": 1, - "unique": { - "transparent": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-left": { - "total": 2, - "totalUnique": 1, - "unique": { - "transparent": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-dropdown-link-active-color": { - "total": 2, - "totalUnique": 1, - "unique": { - "#fff": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-dropdown-link-active-bg": { - "total": 2, - "totalUnique": 1, - "unique": { - "#0d6efd": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-dropdown-header-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#6c757d": 1, - "#adb5bd": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom": { - "total": 4, - "totalUnique": 1, - "unique": { - "transparent": 4 - }, - "uniquenessRatio": 0.25 - }, - "--bs-dropdown-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "#343a40": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-link-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-link-hover-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-link-hover-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(255, 255, 255, 0.15)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-link-disabled-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#adb5bd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-nav-pills-link-active-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-nav-pills-link-active-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-color": { - "total": 2, - "totalUnique": 1, - "unique": { - "currentcolor": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-navbar-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.65)": 1, - "rgba(255, 255, 255, 0.55)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-hover-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.8)": 1, - "rgba(255, 255, 255, 0.75)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-disabled-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.3)": 1, - "rgba(255, 255, 255, 0.25)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-active-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 1)": 1, - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-brand-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 1)": 1, - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-brand-hover-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 1)": 1, - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-toggler-border-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(var(--bs-emphasis-color-rgb), 0.15)": 1, - "rgba(255, 255, 255, 0.1)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-cap-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(var(--bs-body-color-rgb), 0.03)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-focus-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#86b7fe": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-focus-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(13, 110, 253, 0.25)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-pagination-focus-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(13, 110, 253, 0.25)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-pagination-active-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-pagination-active-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-pagination-active-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-badge-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-alert-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-alert-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-progress-bar-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-progress-bar-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "background-image": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.15)": 3, - "transparent": 4 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--bs-list-group-active-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-list-group-active-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-list-group-active-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0d6efd": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-close-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-close-focus-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(13, 110, 253, 0.25)": 1 - }, - "uniquenessRatio": 1 - }, - "background": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(var(--bs-body-bg-rgb), 0.85)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-header-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(var(--bs-body-bg-rgb), 0.85)": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-backdrop-bg": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "border-right-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-mask-image": { - "total": 3, - "totalUnique": 2, - "unique": { - "#000": 2, - "rgba(0, 0, 0, 0.8)": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "mask-image": { - "total": 3, - "totalUnique": 2, - "unique": { - "#000": 2, - "rgba(0, 0, 0, 0.8)": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "-webkit-text-decoration-color": { - "total": 28, - "totalUnique": 28, - "unique": { - "RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75))": 1, - "rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5))": 1, - "rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1))": 1 - }, - "uniquenessRatio": 1 - }, - "text-decoration-color": { - "total": 28, - "totalUnique": 28, - "unique": { - "RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1))": 1, - "RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75))": 1, - "rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5))": 1, - "rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity))": 1, - "rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1))": 1 - }, - "uniquenessRatio": 1 - }, - "fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "currentcolor": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 704, - "totalUnique": 5, - "unique": { - "hex6": 301, - "hex3": 124, - "rgba": 201, - "transparent": 70, - "currentcolor": 8 - }, - "uniquenessRatio": 0.007102272727272727 - } - }, - "gradients": { - "total": 4, - "totalUnique": 3, - "unique": { - "linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))": 1, - "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)": 1, - "linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%)": 2 - }, - "uniquenessRatio": 0.75 - }, - "fontFamilies": { - "total": 6, - "totalUnique": 4, - "unique": { - "var(--bs-body-font-family)": 1, - "var(--bs-font-monospace)": 2, - "var(--bs-btn-font-family)": 1, - "var(--bs-font-sans-serif)": 2 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "fontSizes": { - "total": 78, - "totalUnique": 38, - "unique": { - "var(--bs-body-font-size)": 1, - "calc(1.375rem + 1.5vw)": 3, - "2.5rem": 3, - "calc(1.325rem + 0.9vw)": 2, - "2rem": 2, - "calc(1.3rem + 0.6vw)": 2, - "1.75rem": 2, - "calc(1.275rem + 0.3vw)": 3, - "1.5rem": 3, - "1.25rem": 8, - "1rem": 6, - "0.875em": 10, - "0.75em": 1, - "1em": 2, - "calc(1.625rem + 4.5vw)": 1, - "5rem": 1, - "calc(1.575rem + 3.9vw)": 1, - "4.5rem": 1, - "calc(1.525rem + 3.3vw)": 1, - "4rem": 1, - "calc(1.475rem + 2.7vw)": 1, - "3.5rem": 1, - "calc(1.425rem + 2.1vw)": 1, - "3rem": 1, - "0.875rem": 7, - "var(--bs-btn-font-size)": 1, - "var(--bs-dropdown-font-size)": 1, - "var(--bs-nav-link-font-size)": 1, - "var(--bs-navbar-brand-font-size)": 1, - "var(--bs-navbar-toggler-font-size)": 1, - "var(--bs-breadcrumb-font-size)": 1, - "var(--bs-pagination-font-size)": 1, - "var(--bs-badge-font-size)": 1, - "var(--bs-progress-font-size)": 1, - "var(--bs-toast-font-size)": 1, - "var(--bs-tooltip-font-size)": 1, - "var(--bs-popover-font-size)": 1, - "var(--bs-popover-header-font-size)": 1 - }, - "uniquenessRatio": 0.48717948717948717 - }, - "lineHeights": { - "total": 27, - "totalUnique": 10, - "unique": { - "0": 1, - "1": 4, - "2": 1, - "var(--bs-body-line-height)": 1, - "1.2": 7, - "1.5": 8, - "1.25": 2, - "var(--bs-btn-line-height)": 1, - "var(--bs-modal-title-line-height)": 1, - "var(--bs-offcanvas-title-line-height)": 1 - }, - "uniquenessRatio": 0.37037037037037035 - }, - "zindexes": { - "total": 56, - "totalUnique": 17, - "unique": { - "0": 2, - "1": 6, - "2": 8, - "3": 5, - "4": 1, - "5": 4, - "1020": 12, - "1030": 2, - "1040": 1, - "-1": 3, - "var(--bs-dropdown-zindex)": 1, - "var(--bs-toast-zindex)": 1, - "var(--bs-modal-zindex)": 1, - "var(--bs-backdrop-zindex)": 1, - "var(--bs-tooltip-zindex)": 1, - "var(--bs-popover-zindex)": 1, - "var(--bs-offcanvas-zindex)": 6 - }, - "uniquenessRatio": 0.30357142857142855 - }, - "textShadows": { - "total": 1, - "totalUnique": 1, - "unique": { - "0 0 0 var(--bs-body-color)": 1 - }, - "uniquenessRatio": 1 - }, - "boxShadows": { - "total": 31, - "totalUnique": 19, - "unique": { - "0": 3, - "inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))": 1, - "var(--bs-table-bg-type, var(--bs-table-accent-bg))": 1, - "var(--bs-table-accent-bg)": 1, - "0 0 0 0.25rem rgba(13, 110, 253, 0.25)": 4, - "0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25)": 2, - "0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25)": 3, - "0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25)": 3, - "var(--bs-btn-focus-box-shadow)": 3, - "0 0 0 var(--bs-navbar-toggler-focus-width)": 1, - "inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)": 1, - "var(--bs-accordion-btn-focus-box-shadow)": 1, - "var(--bs-pagination-focus-box-shadow)": 1, - "var(--bs-btn-close-focus-shadow)": 1, - "var(--bs-toast-box-shadow)": 1, - "var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)": 1, - "var(--bs-box-shadow)": 1, - "var(--bs-box-shadow-sm)": 1, - "var(--bs-box-shadow-lg)": 1 - }, - "uniquenessRatio": 0.6129032258064516 - }, - "borderRadiuses": { - "total": 228, - "totalUnique": 38, - "unique": { - "0": 67, - "0.25rem": 1, - "var(--bs-border-radius)": 29, - "var(--bs-border-radius-sm)": 12, - "var(--bs-border-radius-lg)": 12, - "0.25em": 1, - "50%": 11, - "2em": 1, - "1rem": 4, - "var(--bs-btn-border-radius)": 1, - "var(--bs-dropdown-border-radius)": 1, - "var(--bs-dropdown-item-border-radius, 0)": 1, - "var(--bs-nav-tabs-border-radius)": 2, - "var(--bs-nav-pills-border-radius)": 1, - "var(--bs-navbar-toggler-border-radius)": 1, - "var(--bs-card-border-radius)": 1, - "var(--bs-card-inner-border-radius)": 9, - "var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0": 1, - "0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)": 1, - "var(--bs-accordion-border-radius)": 6, - "var(--bs-accordion-inner-border-radius)": 4, - "var(--bs-breadcrumb-border-radius)": 1, - "var(--bs-pagination-border-radius)": 4, - "var(--bs-badge-border-radius)": 1, - "var(--bs-alert-border-radius)": 1, - "var(--bs-progress-border-radius)": 1, - "var(--bs-list-group-border-radius)": 13, - "0.375rem": 1, - "var(--bs-toast-border-radius)": 1, - "calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))": 2, - "var(--bs-modal-border-radius)": 1, - "var(--bs-modal-inner-border-radius)": 4, - "var(--bs-tooltip-border-radius)": 1, - "var(--bs-popover-border-radius)": 1, - "var(--bs-popover-inner-border-radius)": 2, - "var(--bs-border-radius-xl)": 9, - "var(--bs-border-radius-xxl)": 9, - "var(--bs-border-radius-pill)": 9 - }, - "uniquenessRatio": 0.16666666666666666, - "itemsPerContext": { - "border-radius": { - "total": 74, - "totalUnique": 31, - "unique": { - "0": 21, - "0.25rem": 1, - "var(--bs-border-radius)": 13, - "var(--bs-border-radius-sm)": 4, - "var(--bs-border-radius-lg)": 4, - "0.25em": 1, - "50%": 3, - "2em": 1, - "1rem": 4, - "var(--bs-btn-border-radius)": 1, - "var(--bs-dropdown-border-radius)": 1, - "var(--bs-dropdown-item-border-radius, 0)": 1, - "var(--bs-nav-pills-border-radius)": 1, - "var(--bs-navbar-toggler-border-radius)": 1, - "var(--bs-card-border-radius)": 1, - "var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0": 1, - "0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)": 1, - "var(--bs-card-inner-border-radius)": 1, - "var(--bs-breadcrumb-border-radius)": 1, - "var(--bs-badge-border-radius)": 1, - "var(--bs-alert-border-radius)": 1, - "var(--bs-progress-border-radius)": 1, - "var(--bs-list-group-border-radius)": 1, - "0.375rem": 1, - "var(--bs-toast-border-radius)": 1, - "var(--bs-modal-border-radius)": 1, - "var(--bs-tooltip-border-radius)": 1, - "var(--bs-popover-border-radius)": 1, - "var(--bs-border-radius-xl)": 1, - "var(--bs-border-radius-xxl)": 1, - "var(--bs-border-radius-pill)": 1 - }, - "uniquenessRatio": 0.4189189189189189 - }, - "border-top-right-radius": { - "total": 46, - "totalUnique": 17, - "unique": { - "0": 15, - "var(--bs-nav-tabs-border-radius)": 1, - "var(--bs-card-inner-border-radius)": 2, - "var(--bs-accordion-border-radius)": 1, - "var(--bs-accordion-inner-border-radius)": 1, - "var(--bs-pagination-border-radius)": 1, - "var(--bs-list-group-border-radius)": 6, - "calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))": 1, - "var(--bs-modal-inner-border-radius)": 1, - "var(--bs-popover-inner-border-radius)": 1, - "var(--bs-border-radius)": 4, - "var(--bs-border-radius-sm)": 2, - "var(--bs-border-radius-lg)": 2, - "var(--bs-border-radius-xl)": 2, - "var(--bs-border-radius-xxl)": 2, - "50%": 2, - "var(--bs-border-radius-pill)": 2 - }, - "uniquenessRatio": 0.3695652173913043 - }, - "border-bottom-right-radius": { - "total": 31, - "totalUnique": 13, - "unique": { - "0": 8, - "var(--bs-card-inner-border-radius)": 2, - "var(--bs-accordion-border-radius)": 2, - "var(--bs-accordion-inner-border-radius)": 1, - "var(--bs-pagination-border-radius)": 1, - "var(--bs-modal-inner-border-radius)": 1, - "var(--bs-border-radius)": 4, - "var(--bs-border-radius-sm)": 2, - "var(--bs-border-radius-lg)": 2, - "var(--bs-border-radius-xl)": 2, - "var(--bs-border-radius-xxl)": 2, - "50%": 2, - "var(--bs-border-radius-pill)": 2 - }, - "uniquenessRatio": 0.41935483870967744 - }, - "border-top-left-radius": { - "total": 34, - "totalUnique": 16, - "unique": { - "0": 9, - "var(--bs-nav-tabs-border-radius)": 1, - "var(--bs-card-inner-border-radius)": 2, - "var(--bs-accordion-border-radius)": 1, - "var(--bs-accordion-inner-border-radius)": 1, - "var(--bs-pagination-border-radius)": 1, - "calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))": 1, - "var(--bs-modal-inner-border-radius)": 1, - "var(--bs-popover-inner-border-radius)": 1, - "var(--bs-border-radius)": 4, - "var(--bs-border-radius-sm)": 2, - "var(--bs-border-radius-lg)": 2, - "var(--bs-border-radius-xl)": 2, - "var(--bs-border-radius-xxl)": 2, - "50%": 2, - "var(--bs-border-radius-pill)": 2 - }, - "uniquenessRatio": 0.47058823529411764 - }, - "border-bottom-left-radius": { - "total": 43, - "totalUnique": 14, - "unique": { - "0": 14, - "var(--bs-card-inner-border-radius)": 2, - "var(--bs-accordion-border-radius)": 2, - "var(--bs-accordion-inner-border-radius)": 1, - "var(--bs-pagination-border-radius)": 1, - "var(--bs-list-group-border-radius)": 6, - "var(--bs-modal-inner-border-radius)": 1, - "var(--bs-border-radius)": 4, - "var(--bs-border-radius-sm)": 2, - "var(--bs-border-radius-lg)": 2, - "var(--bs-border-radius-xl)": 2, - "var(--bs-border-radius-xxl)": 2, - "50%": 2, - "var(--bs-border-radius-pill)": 2 - }, - "uniquenessRatio": 0.32558139534883723 - } - } - }, - "animations": { - "durations": { - "total": 54, - "totalUnique": 9, - "unique": { - "0.15s": 42, - "0.1s": 2, - "0.35s": 2, - "1s": 1, - "0.3s": 1, - "0.6s": 2, - "0s": 1, - "2s": 2, - "0.2s": 1 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "timingFunctions": { - "total": 54, - "totalUnique": 4, - "unique": { - "ease-in-out": 45, - "linear": 4, - "ease": 4, - "ease-out": 1 - }, - "uniquenessRatio": 0.07407407407407407 - } - }, - "prefixes": { - "total": 17, - "totalUnique": 5, - "unique": { - "system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"": 1, - "-webkit-match-parent": 1, - "-webkit-max-content": 1, - "-moz-max-content": 1, - "-webkit-sticky": 13 - }, - "uniquenessRatio": 0.29411764705882354 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 1409, - "totalUnique": 7, - "unique": { - "deg": 6, - "rem": 1102, - "px": 89, - "vw": 25, - "em": 114, - "s": 67, - "vh": 6 - }, - "uniquenessRatio": 0.0049680624556423, - "itemsPerContext": { - "--bs-gradient": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-body-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-radius-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-radius-lg": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-radius-xl": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-radius-xxl": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-border-radius-pill": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-box-shadow": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-box-shadow-sm": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-box-shadow-lg": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-box-shadow-inset": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-focus-ring-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "margin": { - "total": 46, - "totalUnique": 2, - "unique": { - "rem": 45, - "px": 1 - }, - "uniquenessRatio": 0.043478260869565216 - }, - "margin-bottom": { - "total": 74, - "totalUnique": 1, - "unique": { - "rem": 74 - }, - "uniquenessRatio": 0.013513513513513514 - }, - "font-size": { - "total": 79, - "totalUnique": 3, - "unique": { - "rem": 51, - "vw": 15, - "em": 13 - }, - "uniquenessRatio": 0.0379746835443038 - }, - "padding-left": { - "total": 68, - "totalUnique": 2, - "unique": { - "rem": 66, - "em": 2 - }, - "uniquenessRatio": 0.029411764705882353 - }, - "padding": { - "total": 80, - "totalUnique": 2, - "unique": { - "em": 3, - "rem": 77 - }, - "uniquenessRatio": 0.025 - }, - "bottom": { - "total": 3, - "totalUnique": 3, - "unique": { - "em": 1, - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "top": { - "total": 3, - "totalUnique": 2, - "unique": { - "em": 1, - "px": 2 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "border-radius": { - "total": 8, - "totalUnique": 2, - "unique": { - "rem": 6, - "em": 2 - }, - "uniquenessRatio": 0.25 - }, - "padding-top": { - "total": 72, - "totalUnique": 1, - "unique": { - "rem": 72 - }, - "uniquenessRatio": 0.013888888888888888 - }, - "padding-bottom": { - "total": 72, - "totalUnique": 1, - "unique": { - "rem": 72 - }, - "uniquenessRatio": 0.013888888888888888 - }, - "outline-offset": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "margin-right": { - "total": 66, - "totalUnique": 3, - "unique": { - "rem": 62, - "em": 3, - "px": 1 - }, - "uniquenessRatio": 0.045454545454545456 - }, - "margin-top": { - "total": 68, - "totalUnique": 2, - "unique": { - "rem": 67, - "em": 1 - }, - "uniquenessRatio": 0.029411764705882353 - }, - "--bs-gutter-x": { - "total": 32, - "totalUnique": 1, - "unique": { - "rem": 32 - }, - "uniquenessRatio": 0.03125 - }, - "max-width": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "--bs-breakpoint-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-breakpoint-md": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-breakpoint-lg": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-breakpoint-xl": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-breakpoint-xxl": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-gutter-y": { - "total": 30, - "totalUnique": 1, - "unique": { - "rem": 30 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "box-shadow": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 3, - "rem": 12 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "transition": { - "total": 42, - "totalUnique": 1, - "unique": { - "s": 42 - }, - "uniquenessRatio": 0.023809523809523808 - }, - "min-width": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "vw": 1 - }, - "uniquenessRatio": 1 - }, - "height": { - "total": 25, - "totalUnique": 4, - "unique": { - "em": 10, - "rem": 10, - "vh": 3, - "px": 2 - }, - "uniquenessRatio": 0.16 - }, - "-webkit-margin-end": { - "total": 6, - "totalUnique": 1, - "unique": { - "rem": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "margin-inline-end": { - "total": 6, - "totalUnique": 1, - "unique": { - "rem": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "-webkit-transition": { - "total": 7, - "totalUnique": 1, - "unique": { - "s": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "min-height": { - "total": 18, - "totalUnique": 3, - "unique": { - "em": 10, - "rem": 7, - "vh": 1 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "width": { - "total": 26, - "totalUnique": 4, - "unique": { - "rem": 8, - "em": 7, - "vw": 9, - "px": 2 - }, - "uniquenessRatio": 0.15384615384615385 - }, - "background-position": { - "total": 17, - "totalUnique": 2, - "unique": { - "rem": 11, - "em": 6 - }, - "uniquenessRatio": 0.11764705882352941 - }, - "background-size": { - "total": 22, - "totalUnique": 3, - "unique": { - "px": 6, - "em": 8, - "rem": 8 - }, - "uniquenessRatio": 0.13636363636363635 - }, - "padding-right": { - "total": 78, - "totalUnique": 2, - "unique": { - "rem": 72, - "em": 6 - }, - "uniquenessRatio": 0.02564102564102564 - }, - "margin-left": { - "total": 69, - "totalUnique": 3, - "unique": { - "em": 8, - "px": 1, - "rem": 60 - }, - "uniquenessRatio": 0.043478260869565216 - }, - "-moz-transition": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "transform": { - "total": 9, - "totalUnique": 4, - "unique": { - "rem": 6, - "px": 1, - "deg": 1, - "em": 1 - }, - "uniquenessRatio": 0.4444444444444444 - }, - "inset": { - "total": 4, - "totalUnique": 1, - "unique": { - "rem": 4 - }, - "uniquenessRatio": 0.25 - }, - "--bs-btn-padding-x": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-btn-padding-y": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-btn-font-size": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-btn-box-shadow": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-btn-focus-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-active-shadow": { - "total": 32, - "totalUnique": 1, - "unique": { - "px": 32 - }, - "uniquenessRatio": 0.03125 - }, - "vertical-align": { - "total": 5, - "totalUnique": 1, - "unique": { - "em": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-top": { - "total": 5, - "totalUnique": 2, - "unique": { - "em": 3, - "px": 2 - }, - "uniquenessRatio": 0.4 - }, - "border-right": { - "total": 3, - "totalUnique": 1, - "unique": { - "em": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-left": { - "total": 3, - "totalUnique": 1, - "unique": { - "em": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-dropdown-min-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-spacer": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-divider-margin-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-item-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-item-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-header-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-dropdown-header-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom": { - "total": 4, - "totalUnique": 2, - "unique": { - "em": 3, - "px": 1 - }, - "uniquenessRatio": 0.5 - }, - "--bs-nav-link-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-nav-link-padding-y": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-nav-underline-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-nav-underline-border-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-brand-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-brand-margin-end": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-brand-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-nav-link-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-toggler-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-toggler-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-toggler-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-toggler-focus-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-navbar-toggler-transition": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "max-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "vh": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-spacer-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-spacer-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-title-spacer-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-cap-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-cap-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-img-overlay-padding": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-card-group-margin": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-transition": { - "total": 5, - "totalUnique": 1, - "unique": { - "s": 5 - }, - "uniquenessRatio": 0.2 - }, - "--bs-accordion-btn-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-icon-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-icon-transform": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-icon-transition": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-btn-focus-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-body-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-accordion-body-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-breadcrumb-margin-bottom": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-breadcrumb-item-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-pagination-padding-x": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-pagination-padding-y": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-pagination-font-size": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-pagination-focus-box-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-badge-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-badge-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-badge-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-alert-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-alert-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-alert-margin-bottom": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "background-position-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-progress-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-progress-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-progress-bar-transition": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "background-image": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "animation": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-list-group-item-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-list-group-item-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-btn-close-focus-shadow": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "background": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-spacing": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-max-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-toast-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-modal-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--bs-modal-padding": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-modal-margin": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-modal-header-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-modal-header-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-modal-header-padding": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-modal-footer-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tooltip-max-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tooltip-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tooltip-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tooltip-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tooltip-arrow-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-tooltip-arrow-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "right": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "left": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-max-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-header-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-header-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-header-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-body-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-body-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-arrow-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-popover-arrow-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "text-indent": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-spinner-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "rem": 4 - }, - "uniquenessRatio": 0.25 - }, - "--bs-spinner-height": { - "total": 4, - "totalUnique": 1, - "unique": { - "rem": 4 - }, - "uniquenessRatio": 0.25 - }, - "--bs-spinner-vertical-align": { - "total": 2, - "totalUnique": 1, - "unique": { - "em": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-spinner-border-width": { - "total": 2, - "totalUnique": 1, - "unique": { - "em": 2 - }, - "uniquenessRatio": 0.5 - }, - "--bs-spinner-animation-speed": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--bs-offcanvas-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-offcanvas-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "vh": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-offcanvas-padding-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-offcanvas-padding-y": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--bs-offcanvas-transition": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-mask-image": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "mask-image": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "gap": { - "total": 31, - "totalUnique": 1, - "unique": { - "rem": 31 - }, - "uniquenessRatio": 0.03225806451612903 - }, - "text-underline-offset": { - "total": 7, - "totalUnique": 1, - "unique": { - "em": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "border-width": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "row-gap": { - "total": 30, - "totalUnique": 1, - "unique": { - "rem": 30 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "-moz-column-gap": { - "total": 30, - "totalUnique": 1, - "unique": { - "rem": 30 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "column-gap": { - "total": 30, - "totalUnique": 1, - "unique": { - "rem": 30 - }, - "uniquenessRatio": 0.03333333333333333 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0030216850337719, - "mode": 1, - "range": 1, - "sum": 5643 - }, - "keywords": { - "total": 538, - "totalUnique": 4, - "unique": { - "inherit": 34, - "none": 208, - "auto": 292, - "initial": 4 - }, - "uniquenessRatio": 0.007434944237918215 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/cnn-20231008.css b/src/__fixtures__/cnn-20231008.css deleted file mode 100644 index 30eb04d6..00000000 --- a/src/__fixtures__/cnn-20231008.css +++ /dev/null @@ -1,14690 +0,0 @@ -body, -h1, -h2, -h3, -h4, -h5 { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; -} - -h1, -h2, -h3, -h4, -h5 { - font-weight: 700; -} - -:root { - --theme-primary: #cc0000; - --theme-background: #0c0c0c; - --theme-divider: #404040; - --theme-copy: #404040; - --theme-copy-accent: #e6e6e6; - --theme-copy-accent-hover: #ffffff; - --theme-icon-color: #e6e6e6; - --theme-icon-color-hover: #ffffff; - --theme-ad-slot-background-color: #0c0c0c; - --theme-ad-slot-text-color: #b1b1b1; - --theme-ad-slot-text-hover: #ffffff; - --theme-font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-searchbox-border: #b1b1b1; - --theme-copy-follow: #ffffff; - --theme-article-spacing-top: 0px; - --theme-link-color-hover: #6e6e6e; - --theme-color-link: #0c0c0c; - --theme-button-color: #6e6e6e; - --theme-button-color-hover: #cc0000; - --theme-edition-picker-link: #e6e6e6; - --theme-underline-skip-ink: auto; - --theme-paragraph__font-size: 16px; - --theme-paragraph__line-height: 26px; - --theme-paragraph__font-size--from-small: 16px; - --theme-paragraph__line-height--from-small: 26px; - --theme-paragraph__link-color: #0c0c0c; - --theme-paragraph__link-decoration: underline; - --theme-paragraph__link-decoration-color: var(--theme-color-link); - --theme-paragraph__link-decoration-thickness: 1px; - --theme-paragraph__hover-link-decoration: none; - --theme-paragraph__hover-link-offset: 4px; - --theme-header__hover-item-hover: var(--theme-background); - --theme-header__item-link-color: #e6e6e6; - --theme-header__item-link-hover-color: #ffffff; - --theme-header__item-link-hover-background-color: transparent; - --theme-header__mobile-dropdown-border-color: var(--theme-divider); - --theme-header__mobile-dropdown-background: #0c0c0c; - --theme-header__item-link-line-height: 40px; - --theme-header__dropdown-background: #0c0c0c; - --theme-header__dropdown-border-color: var(--theme-divider); - --theme-header__login-button: #ffffff; - --theme-headline__font-size: 24px; - --theme-headline__line-height: 30px; - --theme-headline__text-color: #0c0c0c; - --theme-headline-sponsorship__lateral-margin: 0; - --theme-headline__font-weight: 700; - --theme-headline__margin-bottom: 16px; - --theme-headline__font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-headline__padding-bottom: 48px; - --theme-headline__padding-bottom-viewport-large: 64px; - --theme-headline__teaser-font-size: 16px; - --theme-headline__teaser-line-height: normal; - --theme-headline__teaser-margin-top: 0; - --theme-headline__teaser-margin-botton: 0; - --theme-section-headline__font-size: 36px; - --theme-section-headline__line-height: 42px; - --theme-section-headline__text-color: #0c0c0c; - --theme-section-headline__font-weight: 700; - --theme-section-headline__font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-section-headline__margin-bottom: 0; - --theme-section-headline-text__margin-top: 16px; - --theme-section-headline-text__margin-bottom: 18px; - --theme-section-headline-teaser__font-size: inherit; - --theme-section-headline-teaser__color: inherit; - --theme-subheader-h2__font-size: 24px; - --theme-subheader-h3__font-size: 24px; - --theme-subheader-h4__font-size: 24px; - --theme-subheader-h5__font-size: 20px; - --theme-subheader-h6__font-size: 16px; - --theme-subheader-h2__line-height: 30px; - --theme-subheader-h3__line-height: 30px; - --theme-subheader-h4__line-height: 30px; - --theme-subheader-h5__line-height: 26px; - --theme-subheader-h6__line-height: 22px; - --theme-subheader__font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-subheader__font-weight: 700; - --theme-iframe__display: block; - --theme-list__link-decoration: underline; - --theme-container__font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-container__font-weight: 400; - --theme-container-color--hover: #0c0c0c; - --theme-container-image-color--hover: rgba(12, 12, 12, 0.4); - --theme-container-text-decoration--hover: underline; - --theme-container-text-decoration-color--hover: var(--theme-color-link); - --theme-container-image-opacity--hover: 0.5; - --theme-container-margin-bottom-default: 24px; - --theme-container-margin-bottom-600: 48px; - --theme-container-title__border-color: #e6e6e6; - --theme-container-title__border-decorator-color: #cc0000; - --theme-container-title__border-decorator-initial-width: 16px; - --theme-container-title__margin-bottom: 0; - --theme-container-title__margin-bottom-grid-4: 0; - --theme-container-title__text-size: 12px; - --theme-container-title__arrow-color--initial: #ffffff; - --theme-container-title__arrow-color--hover: var(--theme-color-link); - --theme-container-title__arrow-size: 16px; - --theme-container-title__arrow-top-pos: 0; - --theme-container-link__background-color: inherit; - --theme-container-item__margin-bottom-feature-list: 32px; - --theme-container__margin-bottom-grid-3: 24px; - --theme-container__margin-bottom-feature-grid-3: 24px; - --theme-container-lead-title__font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-container-lead-title__font-weight: 700; - --theme-container-lead-title__font-size: 20px; - --theme-container-lead-title__line-height: 24px; - --theme-container-lead-title-mobile__font-size: 16px; - --theme-header-mobile-nav-border-color: transparent; - --theme-text-banner__gradient-1: #cdb6f1; - --theme-text-banner__gradient-2: #e5dbf8; - --theme-zone__padding-bottom-default: 64px; - --theme-zone__padding-bottom-small: 64px; - --theme-zone__margin-bottom-default: 48px; - --theme-zone__margin-top: -32px; - --theme-zone-title__font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - --theme-zone-title__font-size: 30px; - --theme-zone-title__font-weight: 700; - --theme-zone-title__line-height: 30px; - --theme-zone-title__link-decoration: none; - --theme-zone-title__hover-link-decoration: underline; - --social-sharing-display: block; - --social-sharing-margin-top: 16px; - --social-sharing-open-close-fill: #4d4d4d; - --social-sharing-facebook-fill: #0c0c0c; - --social-sharing-twitter-fill: #0c0c0c; - --social-sharing-email-fill: #0c0c0c; - --social-sharing-link-fill: #0c0c0c; - --theme-disclaimer-background: #e6e6e6; - --theme-disclaimer-color: #4d4d4d; - --theme-disclaimer-style: normal; - --theme-disclaimer-link-color: #6a29d5; - --theme-disclaimer-link-weight: 400; - --theme-disclaimer-fontsize-sm: 14px; - --theme-disclaimer-fontsize-xl: 16px; - --theme-disclaimer-lineheight-sm: 22.75px; - --theme-disclaimer-lineheight-xl: 25.6px; - --theme-newsletter-form-disable-button: #c0c0c0; - --theme-paragraph-fontsize-sm: 14px; - --theme-paragraph-fontsize-xl: 16px; - --theme-paragraph-lineheight-sm: 22.75px; - --theme-paragraph-lineheight-xl: 25.6px; - --theme-main-wrapper-rail-width: 360px; - --theme-main-wrapper-right-rail-width: 300px; - --theme-main-wrapper-column-gap-medium-width: 40px; - --theme-main-wrapper-column-gap-large-width: 50px; - --theme-primary-logo-fill: #cc0000; - --theme-secondary-logo-fill: white; - --theme-subheader-anchor-display: inline; - --theme-primary-layout-color: #fafafa; - --theme-secondary-layout-color: #fff; - --theme-video-playlist-status-label-color: rgba(12, 12, 12, 0.7); - --theme-video-playlist-item-hover-color: #0c0c0c; -} - -@media (min-width:480px) { - :root { - --theme-section-headline-text__margin-bottom: 20px; - --theme-container__margin-bottom-grid-3: 32px; - --theme-container__margin-bottom-feature-grid-3: 0; - } -} - -@media (min-width:960px) { - :root { - --theme-headline__font-size: 42px; - --theme-headline__line-height: 48px; - --theme-section-headline__font-size: 42px; - --theme-section-headline__line-height: 48px; - --theme-section-headline__margin-bottom: 16px; - --theme-subheader-h2__font-size: 36px; - --theme-subheader-h3__font-size: 30px; - --theme-subheader-h2__line-height: 42px; - --theme-subheader-h3__line-height: 36px; - --theme-container-margin-bottom-600: 0; - --theme-container__margin-bottom-feature-grid-3: 0; - } -} - -@media (min-width:1280px) { - :root { - --theme-section-headline-text__margin-bottom: 22px; - } -} - -@media (max-width:959px) { - :root { - --social-sharing-display: none; - } -} - -@font-face { - font-family: cnn_sans_display; - font-weight: 700; - src: url(data:font/woff2;charset=utf-8;base64,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) format("woff2"); -} - -@font-face { - font-family: cnn_sans_display; - font-weight: 500; - src: url(data:font/woff2;charset=utf-8;base64,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) format("woff2"); -} - -@font-face { - font-family: cnn_sans_display; - src: url(data:font/woff2;charset=utf-8;base64,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) format("woff2"); -} - -@font-face { - font-family: helveticaneue; - src: url(data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAgKoABEAAAAIrhAAAgJBAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGolCG414HIEwBmAAji4IGAmIKAqfzDic5zkLxnQAATYCJAPGbAQgBaJwB4GqRgxNW/XWtxP+X3+4c/vDxgLeD4hU1vC0ZW6SGaPxc7hVCfBQ7SEeiabI7pHSyYyfwx0i6FE/4Qwy7680MaPzNitCEXeRsv/////////////////1yULCrd1JMrtJLr0rd4VS2lJQEbDIAwpSQfx/ITIzRHfPRcwza63FSpGSO7p2kzarXoq0WZFiqJcBzOWojNOi6Zbe8UxmozpZnkqTlTpLZx0wm1FxU6ft5OeqpNPgOPViercclhcgp3d5hKb1py4vFpOcIRdK/kw184BLSClowOewfFkc6UFKequrr+C0tePpejfIze03ZLJHjH99R6pxFHNq43dARaGQQmpSnEbSlubiJpu1SS1mjs/GwHvZIYoF3TZtKs9UcfHV/LQP/yfuw+OmlDjXeqsW+6Hryvxcmn7S1NQ0ZerBHzaz1lTRnSb+IT8HPd6Nfe77USqeQUZg8Pb5ZfHrVX3CB9gz5PBo6rdk9RZ4/I6OLtWcf/Yf493wereQOklRD+K+VM+U4kSM1/++ygfl64CVzlF4H8sCDsuQFSJ5jD5in8g7TzXF+FfPzQu1CUmqD+zxeK9O6MIN1YsQkWQwi6GrJytUnTap9q+qcKeWgFvIi90HKCElVnmDDDBIQk/gKyT2AA+x2G/BDGjJXP+BVWXACsm+gBzi0fr0/4NVZUDJiKwZZujxrpOff4ddSC7ATHfAsUW7T74HTdWADElYIjB4/0ObygGEJGhSAkyIGP5XvTDIE/xIvv8ftpAuqIEabMG+hwwwSAY4ZrRHeImzQ1JXVeLfPELDRUq4RZ+nv5XRwkqCAyzYAmqIxc6Q6foOUhmgZETKGzDxYA/fN7mJU9LZtstK3V4nZOKIkjGj/8IXG3mSK3WI/jPGYftsYD25D6pL8QHWWmtVV+k9w7YdwUJyuufe932vbtN7h8PQwCA5xSaT6XHIw6AK7JjgCt9Bkok8B7AYt27fl8AQpAiTIEFCExZhs62r8Ii3fZ6iX/sj6yd838fFe7rv6MNQ4EqWEnew5v1Ac/t3d9utGGyD3SJhQQ3a0XMMmHOwESnRUs4sxCjMIARRUL6VWPH52hi9X2Yg2iOK3wtu9t77Ja3IdB3hIgMYh8Q4nEQpjEJofOkLPf19//jdvfZ596Z8mHgGCWjKAzwrRD2g8W9/D9Dc2kaGREnWyLEgVsHWt7qNjY0NRo5oqbQIFUF9RSysfEzKQEFR1H/19THeDwPfql2/5vsLJBQQCEOyM5dpFaJw0XHVPVvAV6QL8UsvjAcU2iDBP3TqcSgg/94/zNgg0VCAw7ECVagC5YmTsIL9M6e9dLUXwSFwoJgCsaTXRjNxYBvPNItwOO7c9x9uy5gSJmz4m1MLgrqytVALfxLqIa8M+SQ5rYkm97tFmBgE2BZpBTBQAQIFEFAAA0NOi5xdWCSxQgQRowAhRJghSQTlzffBMXSuOhflF6WL0rm2i9JF6YF1US1fiUNhcUgvNDCkH1gL15ZXidSyBhVvmuRU9BXTSKRCswhMHBO4tnikv922l3qgn5KYQut/Z2bKRI6dHx+Rjzh9sjOjJJLtiX+uUSLF6Xkyt7uALYALYAEsgF3ACmDpogVwh3Jqje5+0h2L7dYFyRgohQsAslVO97IHRN/mG8dIIlt2DByncRBkK/6hwWEtR/wjmtwxvmjzRFvKz/PGxH2xtxUGBaO4XUUQLkIuQubvv836e2H1HNjNPvdk1kT6didhNkRqluzkucBv+O12ZKTbIcSQhrgPUu/kTGlKWIYJwJL7fhSRqctRgF0o1mLDcmnv+ZgNhqfrwTe7oZnGamhGwSi436uqON3OUhcdO3Mf1hl02OYe0kMuXmTy0t8xr9K0yqwCyI3MKvZaazQzVSgARTYaBEmQxGi5s7w7SuoPcM/ub9NYSZQdZznOSutMmzsP0g6q22H8lf9tqmIKjFzkgseYmDz/LD0yphxSZSiDQsc893BsjseeC58+bIIXkwbKtvsJb3JTG/5eFkkEWZhAFlge2PY88Tf2H3tVd4SLs90HguEkaDOndqI0cgSXFFAdsAasAT++z13NHANKHZMxN0k2KKGtcE/yHfFhWyniP553npkITPsKQ3KiZbcmyJ4JLBUbgG0KCEYBimQKgoWKmIigpKCACgY25qyVzpyLMnpzcb2bLsrPVbtyrsqt/eJ+0a4ZgOnWwHPba5n57f8e+x7Ff/g5J04fkIi8pFQpKAhySkVQQhQpJcN6npvNhzmqcLUAwYDkwL9Uq2wSIAmABAGCAEjQD4cczszdjjkz9ye7b2zlkrK/SFL2maTMWB+56D+S8ZGL/mMZH/kLMnW5+Hj4MIANONsggVAi2C9Ve98CGxAWBEWKIkWlu3/nEOWQK0/voujdtG5KT3++vcxVPD1S09TsY6lY8H8PtWHaWXZ+fJ3Vk1WsarlIcqsYDCSEzPSdvd6/jtA86vnTIDgR2dK15d5Ikl9tTl/w6Ltnrpa5hEeYOlVc8YIAogxcBQmBIA4WY45EzjgQynUd9O/vlwuAeiVC4f0FPOkktwzKVsgqX+jZT5bEsDLLQDU8EQz3yyu/HIzB5kdNsz/wTKfqqBI0oRFI8mhkM8me1YaYT7s/5NPh8/QxyvaWI1muyecShsJdLQyFWyGREcazxnX5NnL0//dDX/oKW+7/3Znxk5OTJEwBQA5IxSa2cPzITU4BClm415+razBPEb8PHl5QSeVa8KD+MQ0yTAwjw8jKxrQBJazl/xdThJSnEJMr47bs2ekKScKQMCQM+X7acvwGs8aBgWg4PtziuDQgIx/bbZWiqlOUKcr8vaWWaX+AlECND1Lc65B2i1WrPUfeIJnRztgO9wgyO3SQdL//uj/7//4A0d2gyG5CFBukhgDIkQiQc4CaHXQDhBogpaWk3TGHs4c0u+XS7Km9bh6a2RG5p+TzOKIzyBxEyRG6HDnInTlMnEfOcvPwtXQ2D7qMxLFCnnAZrApH/SRL6SdkEuiqVEe3hu5AMgjJ8Da1r30jO7uS7SRynN3vz84/Uj7mH7aJPxHUY0m2pBkptmZElgwYQBmSOLIXZEg0IGk0I7K9DHbiAMt24hA4ALRMyWJ2D5JPC5hPlCNO6TLlldeU137msr22JC6aK6vzq6W99PZHp8i4LskxoESoNTOrrpO0Xoccubpf98xudsyAJWYADZAZNTYFKiOV4fnPNPtyeTMYiFF95tRgeMbm4UrHY6GqCHc0LbcaDGQcdjERK3p6ZDW81ZzR1iq8fBmRCUHkV91Lsv+ZclcKbw3bBsA2UKCzSlm7jrPw/JeVfm7rIgiA7TkN1eG2eWjPm02xJHkct71ZFlEPEacKGRl/qC8P/KlceSVPw8rHeIgEMoDMYpKSqC6Jv5vbtjebVUmeyjM9zH40bW8zmTxKr8ZwDlwTDoeQlx2u7Q2lVYfDsahc6L80If/RpWm0NI1AhCp66TaX0kADEstW2M1NLpN8W3/wB7I3XBw8wBd8HvhX08+WF094o3XmwdHZWofOTcX9cshdPXp4BM4MgMH/o9kg8lPjmDc6ExySGlLaHEo3tYu62mzauXfRmOff32Xh35PsNVpVK5sp7EelCNUmVDzxLWt2Q31yqXsrT3iExFpup8lNnlPEqEChkFgPMeO4e8DAMOIJjYfn7x3/VRj6yR5mNIeuARTGvexiyAFR8GwSvz2FHz/uqJAQGTJst/Tb+rcvp4T0/HpIkEYeQYIjIuIUUoiISCGX3s1nsXn22PQxj6qpFnrwBYimBqntluzhvD9js79nLPrSc6k3UVCQB2Kw+JWLQ3T6X9KEzpFPyQK85C1b2ndatsN/x5j6/23S9s39u9LEGBM1Ig5UQAXh7tRgTKuf3fta8z3FAgioqKhYUVIsyZf/Y9t/R1/3xyjKBBsJo27O7B7+XP9/9P31T5db3ynrui6KCCilBVIhZSaRyZaayX6b2WdHvc44ASwkBMLoPOvDnOW6hM87H1C7kE2cxAGjZIutkTSC9vDXpB/sb/ve5y57XRURyGFEvCoKknAmM4k9/DX7dfv3rt8ue772VlEOsUUE5QwJBMwxM9FtqVbqHmQTl1KiEB2n7N3xeBlbRV0xb0fkEsXx+34apPaZgEq8/fnQ9T+fdd9XJYU3fz6eCx4sDWQe+m84zJ8Q5kCYawGUhRZBWGw1lDXWQFirCUqzDRBabIKyWTuEDn9A2WY7hB0OQDnoIIRDjkE57gSEk85COecchPNuQ7njLoR7XkN54y2Ed74Aylf4Dgg/4DegOKAQAZIFVDhCA0R0xAVQscKByDUEVLwIIRJFA5Vf/CEKSChU/RIOUUQSoDJmIkSTMh+q+tRDtCBLoVqW5RCtSBNUzWmBqDUboWpLG0Sbcgaqs/kLogu5CNWlXILocu5D9WBuQHxzbkJ9S66uAakYDaZjdJCBsc0Z02fuoB80Z53cZkHXRT0W910yYvnYg+esXtl24birx/+Vq6tes+b2rXfuuGvv3SfuO3v/nYdffPRvvDrs62f+XVIgK8GQjohc6hGMKRBNqE8Q0FgloCKDVhyjKGGUxCwqrKrBLjYMKCSj/iEk/kXuI3GLWp82UMImQzrllM4y0jNOeCFIbyThvSJ91oTvhvTbFP7aks4RDG7J4svg4E4YHbwCKSgSohIpKROyCqmoFBh8EohBUk4VtVAHqaEV2iT1RRibNHcqfPA6IDgCQHEUhOEYgISTQGScDMBxHETBKQAqTgXRcBqAjtNBDJwBcMKdQEzcBcCyLjdS8GklZoWcV0pheElKI4tAsEI1Ee5Y0YbQOVUsIAzAigNHAqxM2EjGVQo+UgmVRooMcmVSIota2fQYxKw8VuRzq4gfJeIaLIkKWVXJo1pVNl2MMNUYS4yz1nh7THTUJGdMdtUUj6j1rGleUcdItNOvp5D8s+sVNP/6fgCBBPAPGtw0BlLABn83ejJuvx2WrEL+97Z5LZqEfpKjqdd8rfph41qoZWhRvJepIDmfpH8tujGB9bY47Zr/Iu/oc5F3zvyQdjrYt5/7s781bN/ft2U4M3X1/vfSCYskc8VKs6/Y3vWP3OoJi+tfD5VHlh6aQ3dMOfYcD0/iFKMSfRHdjdL/KsReSuEFikwpyX4057kYbvceBHHd9b40eCqEDvJkOEdFVaeQAACdHC64XR3u1UB4eBhFx/siA4lEWGRH7iovCkRRlBDMJg2aRlRUtElYrEq9IOgqRwHNRh2gB3WMAoAiF55DHtDUcD7qqOFeUqghCAVVpNRGySxyVoNaBTJ1aTCs92M477k41TLiWCGJRJKxnEy+AllwyMagJZRX+QP9HzROYOggEQqDcBSEYsRMEhaSMZGCac1Ct4FpLUxrlZ8sRogwIQZKMsAAIQYY0J+HAUGG4BHi4kJwcV/yBsmtLYBBbb6Cj3XpuzQe4fCuyAcH5YuD4YfDFHiNhLes9/3rPcaBzb0+8qiYJw3xjhOfHSFRh1+SwfkJECJMe5AuW4o9S8IeO//xUUNpAqbaFvng0NXpugUHZNN/FzKsq4JjyKMQTExTlELmVuMxYKRX7fOm89nRgn12mMS+GjgeUiErPmpR1JGVBOcnQIgw7eNbitbj5cNnnoAH66pht4KjHelFZNp6xO6wW9SBJQHnJ0CIMBE1PB3Vru0KLIdydgLT7/F6WmbPyjw+xVC51yKPyvCqbt40xActfXLY3SKrVo2QuK6acFM7WuGZIG1vApV3m49Xu9HHa029ioh8C78HSQ4G1OvqJ5emZm0/WtTvmg6pslctG1IG5Kf0pSUgkzBargAT6oAcSIfimLILSK6pr2HkXUr+0njYa9Q18vfwnlp0T2v0XVflPaPUPXet7HvXAPSUQBAaeZ2alJjcAwAOrIF5pdx710xIepo1WqIEyCd1UMhEvslyvAIpzKlN0Ox7bvqDhxCGN/6EEk4k0ejoTyxWcimkiBJuh4xoJnFOy83H/Hqr2+sPbkaTu2m4fng8Pbe5WwuU3+N6V2dxuDy8vIFQ2M57zSaS2mt2j7w/29bLLJn27moUHGdIJFnO1BiRWtSInX+5UAukvl6ZgxkgIKoSjz4q2ObOuL1eQMl4PYce9T2D4n0zVCeyFBnglZ9xUF3XG8z3giEHk58g0ufQdIGJ/wJQHoDRv4wdB1BIH9ahHibeIbc8DjiLXmDXJ8+wVu1TJ5ttnATy0UvKUhepbwDy6CT7rwMmEmqty8zMyfwsz5o0pC1bszuHcySfRz4ho5uMKZkhM3TGzfSZPfWzZJbP2lk/jbNpOtbwNXbVrvq1cLWuK7toD90T96K9Yjftzfv07t7fDoTs+rT/8778hxDJA8lTyWuJUCKT5EmhHBWqVOWq0YS88WkcwZVJZAkwESEBRE4dx3ERI0eDLr22/zE1mHbMXPJi8jbybvJB8jHyl5RhFAeKC8UdC8bCsDgsGUvHsrA8rBxrwNqxLmwAOxE7lZpGtaO64YpxMBwKR8dZcJW4WvxlOp6YznBmwIhFRAgRTuxnDDKuMKUkOamR1EJqo76jL+A2M7pYYBZyADtAeX/mG+OLyXG8LuqHLgAKMJEgp6P1g9JtTkWNGSdp2ixj82cG/Srbq9pkHN517+dipZPyZm7TFvtw576M7wm7aP/56X2Dp/KVvhcyv9DAGslr5D7+QkJIvhfHSa5M5aoYX/iCXHFJ+g9Lsi9kcpkJzu0nQkEjFJgkBdr0GeR/usw9fuUv/mWdTWnp9sqEu8Bd7q529+6LdI89lJn4CUwtfafHs72CZBaBb/6Z6pWKd72l9e26vIX4f9MROj70n2Mv/8/HX5SvUUXxYJfDbrlejmUcmjqLw8B1bMs0dFWRJVHgaRwCgS/euL12POjp6w5edo7obZUL8/PycKG716gpkhDLH6Wc9D60TV2VJVHgWYYmCQxFPn/cQ9/W1Ydl6tum0HmWErb+FQP+/ZNC2TRUFPiSmH59UFuPaquusvIs6qlx/TDpIlcuxVsk14e0B19yU+Z8r714uvgEe6fzs8fP7sR74D0Ago3g5UwHRUfSCwMS5DuTS+Z/LxWgQYeBE0yccYEFGw6uuMGFgAcfAUJEiJEgRYYcdzxQoESFGk+88MYHXzT44U8AgQQRTAih9ENLGOFEEEkU0cQcR029vhkDccSTgJEBmBiImcQz8D4ryTefShrpZJBJFtnkMIhc8sin4OhrFuubKaWMcgZTAXDKQost/WrWv2Vttuiw1R86bbPDLjvttsc+e+13wCFdDjvimKNOOem0M+dm46mmhmEfHabSbiwjXhEmM/xVZ5EN11QTXtOvGWxMeY2+Jlzjlv6qNZLpy9t2J8xRxejXlKRf064xRjFjxFH1Vo/MXq8t1R8YAuGx/9/97iP23brzv3Pjvz3mr5l995k/RRYIzLfMPMstsdIqq62wXsP11DqtNmrxFc0am3FVTfXUmNbQGTLZryFQmURyAV4+yv4ilAyOXsCAtmsgUuiDyGI2dCCGRF8ExKKdN5AGID6DYrE3Io2BfNAbWAOVSlU1Iccg9WXERd5dweN40UAVaJebXCWpg/Jferb3/h+h9ud0WXNlbniDsEgGQzIDOXhlTr40Yf4yRqimy34KQj2iMWkdUu0fOEWEqM8b6fObFJm9wYTUXP79rIlL4izzERZnYE6VJvIsvY0DQo36xGQqjXhn1qEJPMfYXy1V0VA/ig70DlPnBh065BQ5eENoulOKIUUUorPE8xsnvxvWOcEU2qhjMA9XTq5uL5GSFekl8k1vL7jrLsp96EWeL67gznmC8cdQPly5unp9iYa2aFzXMEgHovumBe/2e0n3nzk83cWu26V4Jm9ZdkZB3wz+iPMBwQJF/cS4mhwShK0OjlWp3jPaFGO9LD4mywUkZa47PKxMw8G8uXD0oOlxn3nnwrKvUIbFKwS9qZN7uoNsr65K2pvXdJ7U/LCfwtyVVYQJ+VrOmb1rE8hQffI9mWXxKEmUlK2LuHxFISEUk4JtRogGfaAgHWMnb/3p3NzsX5P7YqGBkXqufecpqdvNS9jTyuWShEkTMIs+RcGCo1jOg9c9DcnjvRK2TERIJBADMFQFzmcPcqSSzTE4DXb2e6vv5gJydTxqZXp8IpzQgAU0iwYKMSQCzQyXtf0kdm7l6pdy6DRfm/no4sL+UwzSWFLm/vIJxZ8hyJvW7ZgssD5YlBkVm9JmWPHBzaUppBDiRqKjVUsi0McGPCO0iqbEWl92Scl1HVKqVlKnlSjSXoRr58veMLz6GmEyqC1FIDE4JEdY3LVsfdHIYtIPPJouxLDwzaQo8ukjxYKckmf9TghLX1EDqU/GtRskTl6teZWI9PU6xsnKkYr/36ZH3jb9Lvu8OfyKTx6oHsqxl1L2iUaGnqIvtxsfZIn4fJUSHmn/iYN5JkWobF6Kt92TC0utbjgui2SB67jy/yN8hYVYX7N8jYgLkGLHq169iR/+D3akwZWHY1LWSQLT8ntr3H6kjtBKoXfq5Fp7pM7XWs82g8ar4kYNd6YIKLd4XX368v0IMeXJWJZrU4mhR5TGCnZaMiVqNBfYgczi+ymYT+a4XF7P7Pjp1gflh2FCA/Hf+KCWol8+HNcNDziUpPUoaoqg68nSycvOhbMYvkjlg3NiGamUKFFlmtB1FlBbcXxmFJvO+z9OCDcOIXiyAPJo1ndh1iP7MKeZAVgBCJy+zok0rbnyhvQNoaHaE7MybbuYN2SSgZSWkAJ4SB0fuTNjPvMAIBCeZ+aOufNv5k4GavUjHneoD+YL3jrgvYZgz+wfhKhhHTOYQVcP6AMtKiUhFGCuFB4AgxMAyQSJ8AkBCQDY+EIAM41EIgFJ2deBh8T0kN7dmo8AMyZ6droueUfCaIzogK5joJWEW6Pgk7SLo7jCEcGo8SIR+M3CSatAdjQ2vO/+pSFxJ848KrbX3kEAakgMgnDAYtDK1AAFvMFgTiOCIAtQvFlHZF0JRUdk86OKLLIvR8lhKOyTDfgbHBoWp8XAQ/Zab2uFF2+IN8Wvv/Y3kjYvUiCHmTEBtvnJBGUm+b3MwNUaRBBKtAJQQgu9pd7qxk4+uT8cydPB3Dc7RzQ3fVBqxxNvN1s/6/s7SuN+TtwZR2kquYYzWjynKPF688YAp1nD9XCVFBCBRCNk1R26OlBkJdETVuhR73oBYvM6bo7pIGYnaDgeqLVSCSa+RjAKpris0ez7TUkfMDsYrdEDLQFEDykA75otMOrSoFtZyRjWSEVqJTOxyIiF6npjoKwlpoYOWIp6UlKVnmKKDVY31sQc37BvWmmzvb4m0YqmkgxLtCtylxF88M0ym0XApsHwd4NCh7B4fwyhkjjpvXGxKqX1pjWCgbOo67HBznd2r/tUHaqwdtTRZIcdjVTkaN6R5/OXVZOfu9m1T18SQljS6fTy+ZUmpU5Ktb+aUtql2Tk96Wk5L13XmVnYTo2llCEQck9UF38+t1Td0v14Z955mlRlrZRPH9qncCnt9GQ7AG7RX4rohqJ7naMbhgNT2wIztbijUksp61oK5IH0FqKJAtRMkcPYYgw0s0CuukxISaggxXEHedBPjbEsgpNAQwXgYzvJ5fb10hP1PUnhIgqpdvBDSrodVLAMa5Gqrs0DpfaUOlGVYmhn3A4pBZMG2nIKCmcfMdEaU1e2JhpjJP2+baVRVqreGBpvBd9MLYx7ZHhM7Hu38JT7le4PmY3xtPT2wjzmtG43acrQe3r0QKTwtxuPGCLYq8PBGreZmPs0TZg4Gbqt3+SNQ9FMYqPGGjSBJKwQaoOoiD+SOlAr6CC4kk1W71fYU7DCCBhxHtiph3RyrFTp8dHwo3xWpMbdquOjbK83m73cuxuSPRprVYVzjd2bpasMKGIjD0VPt5E2YnjG7TOqCD/5sRqrpdpX45HblrebpD2gNfWgs9SRPamUzuX89/+FdLt1LgT2lX7yEZHSMYUQ0jROQz+scpUfqK3BxK5tIUEPqZq1f2Ch6C3f3Rqi0biDGY0eywcD8JPykfIYjKOGB2DYv4CNYfP0g1IvwevAc+uSaqGhObE+6EE2am0MWeJcsFIyNqT7dSyDBtT9s+YmfaauP3xz5p6evfLvs7kLX/3mw6/20z6F3/8Rll/2b3Z1327TN8JPbt78nzhb0vHzq7UvrGnxw7l+bWkw1J8U9Vk3wtw5A6ewtmVzsXk9WUpKUVTO2QF0uiqdk67x3OV8Es3cNjwDKS8bmdL8hryzD3R54e/WV99WswJR8wL1jjGpkkRhJTJmg2TxNnJv4Q04A0oe8MADoRJdYJwjF6xdQaXIQnEHq0yNjG5VZ/KEFkCFNbRrdxTb2ELTxSbE6dE4cFkI7ykgGCc8v5pGPy56YSk10HfDWrLRrNHw3LtLT0ieBlzl73E30bjKFSGFu0aic/OiE1b8lJJLI/JOKUoRiBiFKIOCvQF8aSFJElY8qwW64LXouLSp08Q8t8WU3FMn+InoOQnoBOiK9geul4GTdYQYwO4dxAEkGgQMEtFOzo0DSLQdoB4S8SkhuDb4nuMGOgCaYako6gRRXZwXB5CYdUfEAYnYNyWYH4D0JNkhAITeBRfMZHpeDn4yQueBznJw9kS3d71OcJLRcQSdAF3RvTjoBEhGxx2hE6Arjk0pllFbSMKteTFJRHk8EpJLTU8AsQdPL+oyHFODAk5SDtoDqPH0GVZwMMXW12ifndwTJehVUamYUU4Z9EoXpEuaZuMlaXPjFo84HtMfCDZR/C3OK5RnqqKGeNtolUlcAOpBEXTTrBsxddCmvMths3hxIS5A0bHVZH2IqUJTb//AGZp+D5HlThEsxr6QGYlKnSPBcWB9tV/vAASYdnvD8vq6FvfpwwcbgaoyurvT092M/fewoh6PTd4JIa5URvXnIiT2ZR4UwjrQj/JdUUTTQWFwCUMm0rxoDSJmo7xGE9U9S6q9vD060sQ/CqPQTdKVpENdK2cOlbyHhlqxX6FGIqyfEvuEiWmKpSAoxqIUfXmgnpxhlgP3+E3PaIzQooHSaRqOCUXTl+6nrkO4lMK5rvDYCb/DBMxlHwKRpxucej8iUt3w6t21fqGV3IdhvgMpa8qapXot0w3d3LhTg+hmHZAzxFuV0s+LgG4pMNT/baA1njwBKjxh3tmuWtfMU2FFXXttnNEKp35Sw+JYhtQpm63cJ9rhTYJVhxeVWUba2MPIf1uyhGnNU69Ir6AbHdBe3+b+V2WkzEy9p8/LW96At1iwePkxji0Dpq2kTDPhovqFeGcrSM0NKouwNBLE3JxPOKpW9WRh1vbpdU1ZbpMx1JNhC/jZUlqdBg5qo6aKN9tGAuF/GvYPkH57EzpgTJEg4UywJMHSsyFj2PHzLUi3kOkB/tXsaKRTYDzRqyZWv3DofZOOKI8NhgSPaCUNWdjVh8QNg+KVej0LVGqlj+RqQ8pB0nmTUJtI6tkYMKrUYDdycVe6t3EgZn+L1WfE5qHgnXXtDsnPIP8X3ii3JMkPaV9MG6gItTeMo/1IJGKAa+d4p9MpQlpY3BK88S8PDGWzVGNn/RPoFX0nPWrv0QRv/clBUjtNBECOOVg60FAM9oxHeJKbil+V/TTSkZqCBNHHKfcVYF9jwidVSkDAwMjogDe9XoEhhyaGB40OGKtlrnyTSBQ722I2s4VYDKhpJcFHhsGo87IIuapZgBoYEpxQq92141N0sLSvCY2F571EN+P9ssB8S2tt1NvY41Sd7xbNjpYyMJUqPA7XEiUK1RuC+4wuMMeez/CpCsMcAjtmEgLxnoZ2XRHYgz0DnhNJC6CleX8VqtjerTNbsLWaoyHfZ7lW+L8hTPE41DEL7xmt+0Zxd7mYQ0JlqwVIxc52BhVoaUHJqi4rjdqsivO5NMGVRs6V7rXtsUtUj44/xdTLaUvZw+W1gZJBj3JDSsjrRO3X21oqrhYtE9lOe0cJBDAGTIc37KR/wg7kOO9AI6KC70GB85BrVS4pbvrQkc+3zF8jbySITUSVCUVVE9pYcM/Tp+/bQ8UutGvviSDm66qJVpdXC2scggFSR2vBWJTcAyAFXNmUGFo3l6NPulXknpN0mZ22vOoxt2/1dzYQDgKNFNV34o9Xa5cra7vC2t51n/Nxzt8E0IFWGoaw8Huu5/a/wRuByPOFzUCjwmfVuyx7qTX7qAr4IotHyG9YiqJp5goOSSjpq8MipKDWGnoZAkGtbSBYjG6Rl0pakDnykKzIc5yx82m2vW6urJcHtOoRo8VjC4tStculeWXZEnd4JM3b2T1lH1f6u+hkr0X/rCTOcw7WaeMQpcVCIQz1cDxOj5O5hpmi4y8Rsr88X1tR5aYLM3vJN0S7rGBg+tSdswpJba53VK4anIF1SaJOyvE7TBYf36RZatNca0SfAY+d5nzMPuHUU5xSWU5/HBYFO2ihqnAGdIU0xUjT+SqtAPA0AU9VyZ8UQGPXUrR2GfYi9F2DWGueN7R/1FJf/ylDyjUqsDU7FPUiNk96sIFS+5AQvLiyvf1LaXpFsTyxvaZC7ftF3q3Xy5gHIYguGpHK/b1No+YuErO5oat8ZI3CtZBf6JIZgXsIgbu7YYY0/tRESIL2Gj+gcLp71CIp1b494E4q0MzHTfEi/taP6PpcsGQkbJpIUhiV04k/LQRBIQnovj5DKJLvW6MKiYb8l3xEmslAjnShwCTQGo0eoqyD/eSOgld+tUiIZkgAAYczPmfmpwkwe/M4sZrBK6FLOHVkKI1E5MCP18VQv9SX4VD2Z7RQoS+YAywsxNU9V8t9vCCvjBi4snCerormcA70Rll+lWBGfkJQaltTxFirA+rosEczp7hljm/Ga6/9kSDJmSqScj1LYWGZBVK5deXwRfU8UiiV1AI3N21hv32iDollpJB66Xk/1Bl1SEKTW0dCITcmqkpnFFMqGXAPv1TW5zlxnB3j4xHlB4+U0uZpnEopJE2DMMJJGtR8QZWo5GTbXk3JA+qgIMBN785QF7L1+hX/ZmgWpDROlYxc9DsEAhnk/RRPW+B+U302HZFlBEX7pPBErgEz6KV8PgKVYgojYlIgvKHXm4Sf7yi1Guwto44bLF360FCbTSSbUFHKyDLxgU1SkglMKW9AJS62wTVtUD56aJEcszmVfvnbGBePTVjwdZ/f94VXRTUgNDYQEFGU0FeChDZDwLzSsn7d2RZTZq06aFqYa3NHzPba5++oxvBORy1CitNAK7MdsFO3XP9Wkj9+YcGjein4yUvzAf+UA599euouUCAEEDFK+KmRKqSahIA/AQD9IaBjhlTu05yCzawpiruJw7wc7ubfAwWhBPvICR2eUb56T1s645T3CoerOcB3v0PyRK9NqouZMy2m2W9HmXY3VqdGJ9bp4KC1FOdcyIKI4JwkzcUX6lUgNS3O+kWS9golXhdWrPxSSDTUx31SPuBcsnTJgh5MZGuu5ZFkCCoK+Wk8w8ihsX+/12tSgQavQZXI/XJKBArJErwgGNlydLPWh0LYaldNDDRmTUQWIsAGPEixyYoUfgg22rbxL7B2fgl4RqoIMm66sFkJjljNWnRrY5zSttxsWpymqvYQFI2tQLWKb3BHuS7Y96z/LS03U6eTg6wJQkapfwAbwntDTjLRHOCnqdPT1Bv9jSZ4mqd83UbSYRWLsFvO+5lwpNpUt8refdBvvAbmIy8yFRcpO5hEufIuSgeY2Mv65SmfDgo12EIJO8cDCB/bJvThnqZGYA246C8r9rjlMlezjoElxSNx9uUotMVLt5YicrfO2/6oGgkWqY6O0XFnodgxdtGEfGqCioCaihK9QRQkn/FzfBnvBd1Glb0kGIUuZXVuipLX/zBMsV+hSBmqKhbkn6xigG2REPAC9NRId8Jn4qIP9SCi0al4BxDaXaNmF0Qm4PDcOTie7xFNZikfZASi3IiCoEsDAXbFPBh2TVBI1JuaaS1R+QT0GC1aISJfEr4B7FtM+Cbhv07/9lGy0ueTfeYrsJzzrv6F8l4i4+rCfQPUB9N5DocZrWhwkmHM/ALjrUck6243RVHFOautrXhJtve7AApaaTRgVXXc2mZ66K2llVqGcPBW/GPN8qEHVJDwpm5BwV6WVyKLGzkRIKu8hxOCt6RWuMuvSBKsVE2tUmfFOpKmzNaO1KCzP5HpcP/7uAV78efVD6c0kLhcb1TWKkiIt9eCRq29eZ8GuHafTxlZrlqcqokR1R79bczXi8SMb8KQYVvyUiSmNEbzHCRw0VJm/8Qsh2Rc4MjLMgxh0dBBtBMMPPfPid3AOamOcS+AJLazFPj9DJ83RnVGi8/FArqLgy6If/P4YI5oLN1HiT+CJ8NcP3hFp6753RjRqXeDe3GUK6cloCnYZXSsubNv30uagpsN9wYhOQvmfLMjiAfAtZlqp/hL1Guf1WVKcVuD8ltqDjSoQhmqduK6Inivv2wkVeL7Ygn2HtbxTJpSvDaYQ81aLGr/NtQ7ajXX+a7nO8DZpHBPomLbJsOWIkPl8VEEDAJZ5CDtusQ87jHd8kW2VpB8iwn5vcmXtODrR4BKEVt3g9nyGfcV7wxdv7od2FKMMQbZ2ce2COmekh+3XK9TGOWF4GCy8LFUNuQJWRJ8v56BBFcrKv56M4CC3euiFM8qGhT8Il1Z9CfjHJUxKZZDIcdcgg69suRwXrhY5UhMx4TX3p0LVr4tkT9c0VuFkG+0vHfe6tVaCm+vUiGxieKC1pqOFIC3uNthkg+3C2cuxDLo64W//EmcQLWg6PrO/jaXi8KiVhQ2raiJGiO1vRU5TVfthZFyHBu2NnjNzSvlW9lom0LfM9d0W4xIS4cOk3nmvj6khPS2lxnMfnRiO+PxQKwZ3LNvVxsk5+bAzFhoyQFJJag7HdrR5/1OkOu0DR2FZHMUo6+/mAeNBcAfz7VRTFcEhbJhlltzToPikANzQB+Hxp++GHqiJceuK17+fmGG6C/VSgG144Cxe+Nmw0tAFuQtYA7pWOEY6ljWwTHxDauGyBxXYJoETGRiatpMJTeSQeQmcuss38lmzERj9scseWGRlgyQnSh48Vvg2CSU7gHoIoiiw6azcI/PojKvF9C7P1I6YomnZiwmSkJeQMFi1KQWHRpJwkBoTfMJ5BlcJ3xhClp1MZ7MYDhDqKSuQpoqcxbVObfNS0k16MuBCMTTxKyQcFDnWytBD49K5XiLmgiVp8sQGCNarUKk4DDUvC98uwaVL9iU2rbUFNEbO0nGwjEqBwWsjXgjehRRjBoob3XNz6QiVIjwdmuPWT/6a+DUSEnWQiAJro4qEKzY/dxLqePL+bi+hBY7zOuxbOPcBK4pxe7OdNzejxG4EqFX5TMokMN0B16mKB11cMcsYOpa4Id1Cj1tPQZMn7aqeHvCrmEyYTFqXYUZz8vhdumICkaAYkernVBg06HWSiXyqaOvZDGc0pAORHjA7Wbrq7yKT/le4nEKq1tM1TigI9ZTSkkBKBY4Hsu9cZdyyxXSalC59a4agRWQTmcSHfhsp1Ea0N00fvwNCkN3F4rLw56scmgXav3Cl5PYTZLIDp2K+frGJqmY2MLOiqPYGPAfBncmxboNkKh97hRSELTzoE5GTpzRQ2qcUeE8/PZQ3IqZENOIvErcN0PG94wZOVzySNJjZkjhVzj/FGi95iK3cxhDwTXzGpQmpJNdm9ZhaBG/HBjnZ5pGVZBnwAQsIS5cqbUMbKaI1JaGHF16HpPPlEDnS0d/aQMUx3UJqXYgnRw/oM8QrcxWK4lHmP6y5gVMtBYvcGEC3uovTZeC5JJijyOWMogcypnuOtHGcqDOx5nZtKDxhC19cM8jCnqXHJXFsV4yPe8EZxbVMXQ7HH0qSX9Fv4FAyEsL7p++FxScGRuKPyqyJ+L+NKIGBffrZRZM+kMESlJiMO3HWfCQ/ByuxMEEMk2n5FwdJzhL/cgeJNaCKqsshwP388UavJbqqZr7iYUKW8tXHK22+rvEe6wN+DSAVWqLbF6YIJevDGWYNx3KzkMiiMYGfNSEg1yqgWMnZ9GOua3cXuX/T9yrRh6bW78EN80iZ9pj1BXL7ytT/VurPA47b7oejA5XHk3Oq1tDKtyamxvtm54IneSqqABeWXbuIj2JXlMgautSktCeEgIIIN3V8UFQWBHmzO2u4NmR25eR+cEc7CEfQi4U7yRYshDz0PGmMvfGL5eAXkNi884LxCSbmCTxu7iGY/LvJNzNt9AMr0CtioCgtpbq1UCeu7WzDAaFDT1fZBatblSLjXnAIcEs8Z9Rs9QDNVLn7sQZ0WO08BemK7t+8UGBmcGKuww0WPbRuuVR8R5cZjTqOtS4/BEF1/2RUx/gFKX9jFlL3C4nJddRSeTpG8Hbxi1R22PhB4bW7j9o3422hl8cLE/lWQJb/pN8d/wqTKCSM+k/e23Ub7gdavGV42sx0dR19xS8q+UaHDdsbQBt2QxfOTvRzqo82/fWibI3b8Al4ca1u9Rj13/Z7TJcxbXAJKSW5r+8uKBhhh1Q0+usgGortPeg7xir4HfNkbh71uhtHk4sF/mfNoUEGuj3Q0SZyE7QAWhERZA7MB8obIExOWE0zDzbo33li0e50Vz5Y4wvim3+Yfmk4NA4D46QfQvqe3NVXpy+wru/BlcFnzRq4n7PlzjucevSqaQ9MTMFTCH/InNy3XgJMmaogCoyhphShm8rNMOqoK057LVqYFPLGmYsZ5O5lLJXw8JXqSqk/zx+ZdCjPYYPaJql45usurfl1OfOe2CYjOxFQxxmOPn6BiGfEfcykLXgKUonSCZFMllx/QIoRbJ7IyEp53sxNRz7iGrZ7fr8nyjqyzdjECayiOV8XNTnVapnuzzjZ+/FmecYKPr1PTSoi7ejNOQKV4vtm6AV7r4zBWjUNp/jsmsEQw+u3nNMWQAXB9clIDQS9S38drn+VA9jsOJ+fZFpAHf5NYMiyZ5qBJVyypNjlNrNPA9BliGm7Dpd4o3V4ElEVX3mqwWeuyJmGbXibhxJAzajurWamEGS4bYIT4vZDgZVwcQ7cg29zB4agqeYPxEOWuh54XIPbSM5nchp/kZ14umJdU2H2fcSUc/5yPsQUUvgJdHfWo+Y46SzQ2n8YcGrwJTyBgEC8m+J8aHNm6SjrpL0VLymPK5ZEX9a4nK+aPpbFa4O4apwI9bTSaekVyjISo4g2nwWcMZoCkkz1dO6cMkSGX9q8cO/hODQcWKiplSOruoIplKZoQ5n6g609fLeRmx19RDnamkdfERzp7/E6GnnasnAdcEc6JMdl/Ms3fl2ozeYFl2avl2qom2Jhl0qX3wb8hy59yYvNpx0YIjSVZjC4ROmYimTNKdU6QUIrF1qtnLQuoycgibi7TobRwKnriS8xpSycTsz/Hihz/cAXBMB3JQ38IeEVtupJlDIreJ13rLYJoFG+LFrh6v0bB0J/fbS7Or3OlXBuJkV518FHjWNYFAyJcYsCYIzCoMaz80LcO9kN/csbIQDLukSuPtSj0cfKO95TbmYRYmXBLgBSMPPykI/WYFrUzGqfxkKrorT2hSFWKMzd6OXD1W5aA/3YVtFstzb7oZ3gnRkRbHkJA3PZDX7957OK2AAhEOoNuNLt03p9sjxkO+QJp0kZIXzT6dVO5HmsjtPYUDdkI9i9eGFPWi1SitWCOn0V5E8q8cdYnd1hJpZLoLynyHVkD9rXwn0E8Q923/NjRF5nngZWkQhIk8Jqk4+j7FM4RqdJc6lyq8F5K5b9V4580WFhEANsAqUKVHUsToZ80oWe+TJgXgBNbT22dTWNfvPViHBZmiv49DlSPOxhvx+uMxsbw1hlMgTSnDVgYg191ta9kGZadcWKZAEONXigsuj9VGY8IziwZA+KGj+9vYKH+Xgicyy+SELs5AQTngRbtcOPZLyeiHNkW/nFLFUo/BYX5ELcr3HoBjw2s7SzL/9F3YatkBC0VBBUnYRN5XSa6vvxkBEj9IRU0F9u9SbTjtBENYrLQiSbTRfzQ9wbTLUQnvEKmYIRb+q4UxkAyxFyEug1EkE2MbxnvHYF/9xVyouL3Hk8MQHHg9NTdJx98oN3Qjh3u+I6w1xR/Iqk/ZQBCRKKlyxbGMdr+BUI8lTH/h1zTJjmGiB7lGYefkZ+2+PuiBaqdsfvWxpFz0UtmCUA/ekfYyyGPc+1enZktD7ZXbvJnZ815F9UIImHM9IhjTxBVhumpsF3tCwhPyWBreAvz3Z5djETrEgNOQloTaOqn5sv0SezoM2+sK3XhoC+bXPlcI0UWdu/9YBjDYq5etedsf35WXg9bYwYN6/VTDmqsFhhynfnzpU+8K3xNKtYSzgwqreEhTUyKaicns2066TRiQFXmEHcTwzoMqKTYPth+XwtdRsmuaso1ftFPgHrBF2W68lTIBR6nhIN3MTMYa6ID/xUuD0PN19qw3h0lXP9lzzEPh1AyfloKbmkLjNJPAv6ZheH45ZTrsRZxzGn/jBeUFDjqu/qAO3MA7NGMHk+FFZWEugcZQF1AM6SjYVseWR0m7cHVlH/gV+cHeRASoX5nDBA8veeBuxve6LtBUWL5Oiw+sOG5uTtnx6gnvjhz2HUiccOqxRErOKFLwuek6D5x4hAx5efCuw4CHUCZjZFxWymR+lilqMv/FbHk15+RUId0NMnTf7ddzYUOA7dXjo8gvlBu2oq9oY75AMWxMe0ZVQi3fGayOPdD+J5THqik/u6ju+hXmn2+9fwbxtuQMl1ZhufmXe/eulU1Fu3xYvgny9PSy8DSHFzQ0xrdDevLWZyciEZH5xsdxOxKzkwtBHRkQ7ZEheNrqbQzOuibFBhnWqkdP14MIjZ6xHR/Sa5XBiN/g/36/mbOdw02SFDhwbeXJ53D3Uo7VWMGPjBRQzzAhRRrjCytvHypCWYq7Hllq3Q5odnncp0TBLMpxhhUVo5olF1cdaGLyr8G9Z2bpSAsc1ktdCk6yVchPgC/sZu3+X3ZOKUdzjEYga6oO88NetcyLphrK52mNrH/VIW+i/+gmSCQ+Ab5xhHYaIKS9ejAGQ1LMkY7XGFzqS4gLSDU9HhjIQD1a2fYLcAAIbdyyVEBFXZCzesGmBTfzJmi1c/jKMseZzHHK4+F0Kh8oP9FjvFd+9DQ3uLT9NMotz8+1nuXfLeslD2wcBMOLh4HSFSThrqvuP/NxUy+mXkM2gXsSFTBgswBHzkrwovs6SSLYykAVyVzXLxY8/rScNZmKdTP9JS3jPIkw5YxcH4RmF3Ln+58vZN45t8qXjR8TAjfukJgMv4RsWW1XwRoEfZxhRpIZkFCjM2OrGOi0IdzTBnzkVKdPgWTqfi4fvjC+9aAvsRwMPhk1etF7XucUZvxq7UUfFeV2dUDzIbdh75klcSn7AVypDxP0Jga72shTTMM1++DRfODNCDjSmUZwV/nfAJBgBYufLpEhyqmINvyC5BszMVHoSy6G8KmOOGxwSY9EjSHOHK3xi0ogUleHqB0YkNAzlWmychcSdTnbRFk/Lfl8UG15dcfHHdh12kvnBsewgcYKgb9CYZdifUapU4XxB3I4bTN2ahelEtJdxylT4D0x2mNc1BnsvZFCoOJPpT2Ms9sRijdLxVIY/3e/4SkwZz7W+4AMgx8VzTA/zPZiYqVvoUW0SFbVLn0Oa+R3vbgyEbvlmaYip0OOheQ4r2jT2hfN90Cxc7SptcVyhOoNzd0W7bn/xgvt14YrNsFXaCBzn0j+M55sGzSQpSpuzmgwMRO2zU/HJiLzsd/dibl/z3JOxOI5N7EuJzTGFVb3bA+UkDbmUE4cbEW1QVvJCM8C17BPqUAOjv1MeJ1crFJDi+NikikFu7gJocxYm6CJocwYoj6/oVy+MWPRIjVk0J0a3IIBZb6njr83z9D0l1goKG3Is0cx8xTsFKauNbBOnqtq5fAp0+4wRrZ6wRt7oyMfF8i9lnANJF4nph9nayr7LjwMnWMMQYdR3uO47MyU6M8ZZERUJIBM7k0X+1ob8KuUaNqQBLyppXQHMEtOMbNGqIPYdp3fNdP5RaAKu1Sd8miRpWlUq4a3jdNgA0Z4+8NYFrUhLy3ue4bZLBz2AgYgFBhSuE+5BhnQXhBGYl6hpOdMhJulEsUpIH9QAeRiuB3VHGcouzwHw5QREL0oYSNzIZibH1zwmS42q/+CK03j87Q4yq0WlOTM84WAxOAPG5uyqlgBgN/gMm5ahkCvq3hUBhNrNJomnbmzAC+pShHAMPzU8AjIQ+ZEqWK2s4L5pRSdDxju1Rmq7DaikvOpQIsQw2iwm/wviOrLLeaAbQ0KiaemvFSHN40BfOW0a9Df8kaI0+B+wwCbp+hsUkW43hqVEva0W7eabz29YsLpe0CbiuKQQCqQcbFIkIXN8xu4ele6vADEJ6/eyObbffsXR7se8AGNhvuygizDPki3fjk8HYGXr3awsZQGRIepUw1OTpNYTa1pv5qz3DVig6eQRDwbwpf7Q7jp+e7CK/Wk5WaSkMb9+SgEakHEOd1c8Jdtmxs+m/Xqs9Xm39VqUGn2Gs75swP9MhFeCZcEpuHm8AY2Xr9ExFS1XoHKIzfv00IS034PpS1T4CGEfZtxHIRHt4TJ8hlKFyGLSAONEUdoNkd/FPCRNSLhsfrKG+5D2edYjQd5vIwBZif15lfUCQvay1bi4PzDj3fx0LTo+pVAHWq7GwXtFBlVA+E6Fpni4RTwPKqOcZaNmsp3KmPUnJoPmr3h0tOyUW44BLMsVXbllp45OluDnLylAAN0Ioku/xmvFLkyUmcax0Cnh51n4LgqecfkBk27c265o7yjMr7aVbcKTJiSD7P5ASTvbrUuhIfhFnBEVF6vj7jsUA594N/2TZzq24+vtI3KXWNrz/z1pYi7iNB2gJi2jt7O04AiINtc6q5vONF2Dw0tDb+cYXW7t4b6LGINXdjSozjVPrbreSnM6ibMKEqOBD4zyraQzGe3X2klzC9DTw3j7iKgJC/9JgzYFOkAbY2RxTKJzYLyTA89FLgKsmJtlOhD9F4Hmo4fkJ7B7bJtj6ugJGCVTM+hHlUOCzlELoPbBTQhna9Z6wUsea68ehSFNOWMkCl70Ud+WQm9vEK9p75z/Fx2BbReP3jbkOCJinvkq+40y0KeWFcPOWJYg4aQRG5eHHPRuXI3+QfdoTuSCnNt6a3ZFAROeIBsMbVSvvQamyIw8Qi2E2eCT78rI12ReKcCWuGOTuVfmPLnLryZAY44dVDDfsarVdalEt7fZcvTkvKP4WI/SFPO3eKx+VK1RddBlrM5fXVW0r06YiI3AF3CfIezrjPuliz5HacSgvl3GDSw0Ov+5TcIUIlAstL6aNBB8MQ/m0UCGRLSDdoz/ogPmR8Qkf/uIhtXKMNwf/R3uvSj7t+cTr0F9q6li5/aQfcXzKllRy8SluzUX/5i/N9cdgGJ35qlOTAfoTuPaBCdHE39cgVFbdPC1+FUcW3WUpjFIoj+zZRMo8pa1S7KL+2sC84DaN+Fzkurh6kbq+VrqjI1olAZ62NZD9xAV1GVEROpsEq6rbBmvoiCpOqgn7S0ht9DEe/zazVagxjQkJgNCHsKTmiEdQpv2pMUMmvtu1YDXDu6C3ZV+l5qUkA+bVJnMTgRsBf/AVnL1pZOsRBnNb5T24SyIpYi767M8tzYFAhPWLAWEFD8Vq0BoOF1VKBQ2EOcZSkyxJSk1iMFzL3pR0JymdnIHdtfnVc2CJmy2FGeGBcDgdgwXtVHclgMBXCrhowDfDzpC7oTAsDIFPtJ99TA8+rjeSoWBCH6fC+sNQpT0Hc7H8GC9swrJrMCF9gKMVEo2RwyR0J0YWsdKXMKrM91f3fmO6brOKCRFKYnBwAqoCmsIyT8AGdoBwXUv+7VuE+Qw4+abhOxyLfF5kdR7LORv5We84qKtZPCyCGmX2gKAEj07scS05DwVSiugUEVDsoATJMjfuozzQLMJSMPSyVy/j1ZgfgUxzaytecA5jL67K0YzLNKdeE2J4Qh2nEwRTFYsJhNiLBo8AvttacgxPvYxIvEi0tnXIbtZpWJmrnHjloP/00nyZOF+BE4sy530HaSeu0fKEy7Lsd9km7SoPz904BSSOAfruIXWvkTRaGzSP+4hj7KnDwqxnkSVPHzKY/NWwHVkNr5Ao0bPBycPl80zcAVCqddu/jOZh0OqtEkI8QsCEfCZOba+Vhx5VnTlaEJDz6HxQwSqxvEGLPfgWbBSoEOuoZq7FnN+g6F2YvU9xKYO+PgbyN22Z8JeuYrpowKD7NBSJvKiDD5ekAQjAsnvT8O2ZJwhrOqUo9NULseqis6YM7R0PMPZ1XPJPpTd/jo/fD3982ZRhCCKq4rNCTK7QYMfbB/1DpyZuR6U24UT0AxK3PiYABAKPwbV8H8ClQBWlV043a+k2sXHaJCQXfr0CLMotEFWHxKpAnGzEz1zgj6VIVrOBqrEEtK5FD2oNBo0tAsjHtVQRUG+WOuJacDyMIUexijHUcCGyRIBnI0sxzQXlZVbtm/BHu6lvK7A7h4EwhtvYeIs/WgL8rQIV7NbxkSHPqy2i5OLhmKkLcneG4uym023Y1Byx+40i+Uxxu5gJ5xfm925xjHge7qOD/hzHUkX11ZsVZq/DhYC3MfORczFJYqA1icdojTZ2wcKBzU6lW2mJSYIBKCZ7h9G6IP+g/2+vnKLtdGhcMPGsEt99Tp0Aqx48c2ZLhuS57VSMXLrWYtD4uxYenFO6dh9Nri+ph6DS652uXQKegv/hNEET7uMoxQWeEB/B9hSaIP9RzxSd3UC30w1Q5ZJw9cHnAEU+xXTLO7/o9MlM+izy8te7zghGx1rLcNFGZUeDQjPT1midN43OPrfMErUSdKbbA7N5r+JYjLwsCtzQTfb8FXv83TY96BqZKQ/4aLpwhHPsyBpAW1mCVFBvgopDkCFGH5sA9UpG3Nu8dm2hifAf2Kt8ggEf6KgJ3u/CRU02mFUTAAPCyFDDaH4ppTWCWaGgLd4UMthlMBs+C7PJVNaN4AIgPnwIwHM8kI1/ILgZsuSSOa/7EOCKZQlFgqkJrlmI3Uhu0rrWjqoPG3Hcy2a445sMh1liQg7qJQke5lYKS3AGka5PMN3r1aFwvJQe2bNFPXxMID+Vh1nyIE2+nUgmTAEKsM0NiMn3qY4oheuIw0wdKBJVM0ArYcq79qkor67XOJFmQnl61PymwvAFXJo4KoBOZJdQksDgnZ1yq+QN9jp+VaNIdXdbGHDcqPub6cq83El9+KWL8fGgIorSvkMSbeslIVM9Y3oZqMUTiLIsngzInrzFC+GLJq24Hi3M1ygV599QPu3kep1IhKSAX01Dg4spkUKKaNua6bQoVCCclBaQaRIV8ov2XR90cotdRj/1a/p+8si8Mz5O7J8dORnYiOGyB0854Cult/tilF95Nt3JEncIBizSSgdbxpPWCw4Ax5HHAOSFFMpBdS5mJ/PnbMQ92/JnKvrZndDasURc58kuGnCTfMq5pQNbfCRJtAkXLhhbhohs5DXXz1wpfRbSbVi8o2rpwNsn+BGL/R6QkTXvit4dMgvJAWZS6UjTP+C3VuMf55N8GxRqUtFH74Sv2rADmzje3MuvFJNGedJF9XlwoGbWMBdeynXGLgv26tj+ktpHXlBh22oriGtnEU5lf6BJ2yha5qQ79hgcglHHE4FuQjNVOMaE1IQDHAgjYdGuyjfr9zFPRJK906nBNXRckCHJLi4hqYeCeDls5693owozO3EOChhZBmjCNuQcyaJ2FeI68k2V6O6JKVh1/LvhnaPH6nMcs0vDdhJQSAj2i6fGE0ktlZlGF1TjhaXXcf4l7qWpLhnUCI/05oJh2Hp5EIaNkmnQDdIPhNlEBlG2AABGxSVs52bXUTZJZyy/bsPfF6v8mQYbtSvXiQjETrRkhL6VmEUHcYkAL21i+t0ICEfaNCMfJC673+tgiqHkroByhtubY26Nbce54B2+QdDBsoIrzUclCEM+FN5OANduaCbUPPI3MG5uOYn1AtzLWjtdflLIN/Ba4yZBhiqqbTnb1yuO/6zCbsiKxj0/aEzRojqzn4nq3yOYL/xeQ/25XNKU6GBBlVPqtqvNpXCwesN3ND2u3MpQ0tW4S4wGVCkqRriElSvfBrr/2Ei6NJ5jjb2WE4nfaes07j1XPiQwumihUpbsZrIJCg6kNygt/EuCqANZXM01RtpA3fIA5tQk6+CSrK+/6nSaSse0Ve3Gk//hQmSw8k/kUma8kLhlMtItY60GU39+QT7J/3b/iPWxsP51wSBukMyAiTYVisy6dczJjN/BZ6ZtLGmqNk81mJvx+DE4jgCgxHiUOHpMXUDd7m6kfzw06YkCGi+b96vyjJR6B5xe3A4vQPhi9poG5CGPbQoky+0N6HfdGAZG/NGB90BNmI8eMRDk7DzpM0zGS+DkMfPH88uENstRqSQg5DN/X9tZS5ML26QVgsfCZbkv18ZstoljqO28z6hdW92dulcvGmlQrsoWl/RTY0xFdBvS9Dd5TUoVyJt140+0GvkyUtktECybWXCgloUcRFMH6yzti33iOtVzA+RkHwrf7YjAccJMstyzvgfYqErH6yKPB+f+O5EbSa8tqSW4TXRNokyUnjQp0ISu3N4AVsuGgiQJg1JXO/rcJ9iREvWtkK5m17gFlTP0ciCay4Yk+w26ECIEA2Z+qa+1pW4w2x7lV+d5Y6kESdsEtPqO52xUAhLEn/AbT5XLgEQHJe200EMVJQkfAk/c/tEfw3f85YKb6jzyHQsUXogNYmBr0O+HNw5kj96CvH+kVsk5X7GXjVBSnjHd/tJN0OwulBe1iKj2JnNo8whJ04+F6kYrLgTxodse6TPX1u/KN/kt6vrA/aQLts0Rt2kv5gd62Oqe30v0Itg78XtigkmPXZGHulERnr2JsY8xG/c5gdJOSkkFpYNA23CgQHsa/4Sj3SZ+ZqP71vXcHQvrN5sJpZl5tMDykZYO8YWBbRYx4nd6OoLmtxvtCy4L5dvk/2suXHTWnu+wFRNupdM2DgdO4F678vRt1h/CS4XmgiI+8uc6WFU+3SywmMOurp3xs+Ap4mE44JG+BDFFna73Oa324lBb+mlYr/10A1Na8SzfGuJ1BvOmxbS37QCQlAFL7Jj6N4g4MElIxT14C04sYXuj45oGjzI2rw+kFv/R10ZYOijC1Ay5QyHfy9NgLLG1dWY0mtcVfXdZ3zUh43ItVr3lbFoTWOurNTtrp+AWwMKFXJRPWIbvED9PqOqtmQ8yYjckoH0ymJhWekh1zOqorgCKRQ1JwnYnybGx/ZFaW3M2bntUmHNYBOpLN8aZ0Jl7IgwhuRLNy9YOBu7PrNV6VT8xk/je/GFxT2FE8aCykaxu7Z/L8v3aESzK5teNOoFJTa8x1rXdMWSZRUGt7RC6nWZTRkwnc8qV6o0EUKamCYF3jUzhMKXGx+BedzcUey1xkfi8m8rcYGxaXKqzij1yxedtprqbnNGHjYkAlRFltfTdiy2JsYZWE2xWAYBQzRVSGxiRRjVEMEzCb8fxvesS8ArHlIy7l29wHq1ipTkoPDGdWeB5/RjFpyA91SkdxLlov8K1UvyuzFIXux9UH0MDW/bfdV/U9AGttUE8lkkptyA+3LVtQpU9WXLzF8vI2rYdhoicSxAXQdDn71gyvZGx4LDL3kXFR5j3R9YU6TXSLgimlKMz24jkiSH8vfbjZL6u3RP9trZ0Opy+moplQFCIZiIOutyn1lM6S4OS5LZz+Xi0CpA2TX1NIHzhMpulUlhTEr5Qvlsu23fpuWA82VtVinKkhzq3ZGGlJPJIp3V4yeFoLylL0UHx7/a7sbnK2CntbN+d8lyYfWflmUfW+G2Xhcmn7esjz3Ra9ofA3PVbPebazb1oTK209sLuoieSy00Pc64g62jpcp2eEZqd4ElfCoSUG/iOa0zUKKg2josqgRHQuIKeaXGjL+EI/B1lvgLjbXhY4DyEtY5JKq8H0cuCIRXEP9/xODCdGzrQ3xpmj8WYlsmhE9MbQx041FltKfZ027QmNiqJjPJPq/nprcyv80JQyBeWW90to+Ei0SbSzWA1Zd4/8UMPSZ86L5mh2/eUIYG2TqyyhrszC6wrWdW6CoQ/aDAXUhCHd6OYoYFo4YsuO7ZUorp4uVIia6XhGzubWkajlSPUCAnDb/kJvj6wFVPlU1lN2VaSD1CEIVrGm2tit1/FT3WxG28OQ9xpFxexa3XfY6FmIy58qA1r20mWpTMe5av9mJvQRie156wquiJT2xs5HeqhEMQmzFL9h4r35KIQQ7SrISuYDK7KrbUMJZcmkprpAoZ29sUvwYGSpxAN2rmSoJUqswuspmZiWTFpJ3jCagP+nuXmK3dC1JqjRzvCJdiv2EAUg6XzYJlcdZtZbOZQRICmYmqAFItMVGJ7y8j83AL9obS3l+o6vvCy5rfWbMBk8LI56xehZ3ILeYWiiqy2Xa2wEcbG7m6OBECKze1b9vn+S2Fwm22Vg+lEyYP71gWV9Tw0juCKzyvD3p5wGGjKJ0xZHmBlTRAXJXFn2Y331cyubZGxjKhqBgsdlhAJArlR5FUUYiSqrLuFEi3ZYVAEbSANUiKZw21s01MjFnTwcHLVVqDbk0U1pWh7j14s4daqqOPF69Dhll1a0Wq+/mZoGHljnGltg6IHq6+KUfHrlZw/T6+2ZQSG3s1WtWXuzefC71eFI5lC0ukD8XdCRNFkTnWuMdwfaPPprOZALf4GBqRFVo7p/URMlwD/MbssH8kLfAGwRkDs827lO2AvZmdzQwuZbS+kY3To6RKgmEwinkzSXyz2GZ+IU7W/6p8RrcVHUw1qtUAJfHe5cNdew6uJQmErzN2zuKo3ZDCLfFR2zCrY9giqOb98n5PjmLia6rmUr9ZTJj0f0xpie/GqGBr5RlbIbUJjdmQp2At6GvkssUQpUTkhfrAgZ/DNm1y8Of8m47uMDNju29Hf7uCzSqc1A1eVnnsZSYxEISFbi1orT9XxIYTh51jkhtAKPLdwylyBmm9JN+CsepiClm42pCmfICe3vb5FLMFcnM6/T+qGznPi94yqlt4j5fEilWr2dl0RfJD8/NXwV5ga96/CHqvRcJ9/c0P+EzOywMgIdXvy7jsh5TZms2wlO3pYQE/DpqNlu2/Guznx7ZAxSrWdrRWpqUEjjJfwgUJk3ZatdV8NsTl3LJR09D8rtWqFTF3wNs6gtAk3DedNteWcdXu3mOrh0uveQJThX4Fg1dWfzc3uVNTyCEyK3S8st3W0BeMhmlFXC28jsFYstOV0+k6brHh6mk4N3l3mJTCwqpB8c9pxk1MdMvvhSX6vKS60xwWBkra+JV2IUbOarGeRq4NvWHO1gsuZvWWk0w13+3Jkcj3xn+nzfh72NjJ/opscmZ/SHxn9LZCPIq56fnHthY489XO9ow1GEko18tsR2cB1MCQwMDmgB0yDWJYYKBlYv22tkYbAC8XhiD4AGthmYU6JNq2BPRS8a4fwHXtVlXZSXCSTLgFVTkOEVBZ2CwLxPwu9BCd1tYpOTeNJ1pdXNXKpnDVIlJYfMdHYYz0uAij5eWDvryYQfdwV2M25kySvm0XHEa0w6QmuTDuS+kf2BzIWN9zdmEKT46xXLXbGYL04gU4D1ttcSzjZv6rvaczJjMWFJ3849EeMGwM85do696kxIz/k9/0nvqZn9qvmTlTcMW/dExJKgZzfS/FKW4Ctq+YOgVXuxvdnep9/jwPMLU/zCMLSYQOBp+5zLBZ9uCrXHpmZ5FPftFu/rSJCr2jwdyJhI7OMv07YORUL1pzzaAYBEN1+MrO8C2kCg/KGqTQUm+yS1i9m5+jeR3XzRQ3fRTLv+Kz06Bqz9WE50+PRXfa/KhXNOwqRshg6NobQE/YysABdzzsfbZRaw6i/weiwV/Fm4f/m0pVfY8vol6dd/wQYg1/nAtNhMEw7WJD8IykcprtquUpawY3As5ERSWAAaRGJptQq8w7c6hXpkNJoltTJw8Gy+s7oAIhk3ok2dtJ/NFo+ciB/e1Lh3k9aSCeTcdHGHAySYM0EhPPsqhgm3jWRRJzR12SJIcnmyhMFVPB2L8QwmDlq7DbdgJF4TsHCGPlfJ1jHUKiVHzNPRuTv/ROaDFzByjm0jzjXqJk8o7oGcWgIuGf1KFRvuXWzvPSoiUYwzPlhz6p+WNbqvTf1W2xc/QaSkOpkTr9A+scDduSvs3jEStb45S60iQNugHXBkdKptSpB+ZBoifWXRcNl5vuwvXpc7lc5RdVG4+TzNYkd1n4UIif+85V320JkNikfOTnYRpc5rA4CAhNDnx3kgHawpVWoaZVDQKRoR/upyb14Lc/lTk5b23jfNoSEwAglRCxip+5jNZB/bjyHz5LEx+szHZAs8g5oq3il0DmHJcrNiuZdCQp1vnaqQsgUZLJnJMBNNi6CH15xvt2mAa5wD1yARLhLEANP7xCAXAr1gmvMy7IiNP5CYfZLMqiOJ4+cSntL88mOL5ySh3Jhs9OhKfbBEa0vrzETZttu5Cjapu1Kg6YfU+FPzI0S9Q3nqkr+M0j5JM4iTgUM/N8L7oaCOwoXD6Vvr5Gxv0vsglglNysrfAD4GIQocilB8vTlRg07di7iNtzibHNNu0dw6PX82foc4Cg2a8x2T+mgND52UxeWO5avv6TO3DaST/VfMiRdPp/qHT6Wlvp6kH/xjrKGsRJ9zgCobddheR06L8MJscAFweXDTbMpwQtT8UoetfSMOiQTBThn8RpR88YNlFPSL9BDEQICVAIVz4fg3plkCKkkNOY3LkNkASICsyeDegouClPQJ5WAs4nn0YCcyXZKGwEkiM1d2u52fQWSwlCRsToZEzvAZv7VRQvhCOJ15BtJmm2uYESWGbt4RlCKzy+KsYENKP6t4kop2oMTUxxx1Zt/8avQNiCUGum7KrmZAH2QA4cjaloMBz+ZXV6lHYiDzTmSNVaTw0+rWeYPUqfyI/UBQqhYkv856R+3Laf/j/pL9CReUzi3B3oI4RSmzD6GMU20X6Yif7MR4Fy+yMYCi4EM8GqiymSD3xIO55s2S0jEeySw2uTEQt2mYuvoqKhVRKctJY2idqqax5XrwbhLD1x4jqknR65JRqU85WFLuedH9AjVgSH9EV01Bz4B/R4dGz2cr7VICkHxhowlDu/xcfvZ4894PvANkvg96qCr56YDNiyIZaGvx2oO+Eqh2xakhQOYJiZDjt9EEfDW6QHykc7LscJpIvnqba/a0kS3zmHqkc4oToyz+Yn7FIg+7H/QTfa6H33e3x+wrmZeyk8EaVuj7BnnNZppQ53XvTGRhHhRq/CboefDrQKLJ0mfwe0mRUZ9oiYNkX+e3wpzTATGwEXXVypAtPDQb5zQFa/5te39przUe3uFOH+OpmxZf5XXYRvCOQV0jqA3jku1aAItJHigrhm71g7Wp3zup/e/gcFy89UzFEou+5b+h08RBUklVepg4vZdarC3yoMdJMMNKU8y2np/MBXh3oW7OB2D3vzNKjgQcjNqfbbcDHNAsTe2MfHeHyUeWFXroBuJtQvYZw3bzoUyYsmCkw5GJViF4aLBYoLgfvlWyIaZrSlFy3u1iW9xQjk/NhXdQ/BwBKIQ4XE+9tpvd11MlrPMvBrXQ01xySz4C37+dJZMY/Gmkcnm67csru+XWHfyOw5y8lGFkmf6650fTK5leV8eZMWpcvafOvq/ceMYsrJtK0zpAO7aFyYwaOowhJGA0ffliVR/HQc4VxaLqbrjfuAHkl8GN2Kl8fFqdmsV1NfBz47OXfb5jQoN5YgZmTWNd/mXnhbhOJs/afaDaFceceEasOqomfo0WAeefx0zNRfdC+Mv5ZhPxcK81q4OsOiUO79h89lvEyrIrrpzu8+S+23nIXLzNyv0yRxl83s1/AzsBsn/KzFBAkJAMHWEzarZvlO9lwu//kDafw37rnHSsBHmO6ZXbbLzovWWbPeoeSVZc2RdzimTQacDyVcTbC2XV4oVhW3zV3+N/L0tSp94/+y9s31NCgH1fhAXdJJdp5uGmuULknb5ifE6n7lMLyFaqFg9ry1A0tsBhlZ/mb3Ia7xIPC6D8K5mb7jCBawLW2wYe/zCzSvUa6p9o1zGyGMPbb25kOaZcFjfPfMw91S+pSQd8GIE/G/EwV0dBcGN+rPwPxN3BQnjTAXzoG3SEvI7UKw4j7iOSWeCHaWglMuYRLKAUxGysUgxVULYKWcFjkVnmC9v2Ux8/63TVIFUhIbjmWnWmexPfknwaO1yabdhz5MBWP0F9rtaXef5bRMPk/peNI1++vG/Eh1DIeTk5oVV0BqyJVqo+TbAsZOrnipIWqTpH1swTpB89hZpO2YhIDJCBgE5rG8NL9431jvLu9/7JoGFE7YsHMJJAHaIJy1FrJ+RGHXgwWT81MLWQ16lhlQGUhlqJimkCYcZdBZDPLAIGAQMAhGkD8bGMOnWVxYsfUeWh8+Dq3mH/LiEgIA02Mib2fewDQAAGUhGPQG+Y6oL81BnrUH+tEe6EV7oA/tgR70DPK/Z5DvjwVU7dSR1a4jsXP7+HJzs/OQ0V+gk4GXWjdbQC6lCc1ppURk3ZcFbk5rjQmmNqOVrZ6W1fTpY/iWfWgY5lkkEqAtoyT84pEBzYsEoJ+Rkrq4NYR3Sz3cFy7vlTJb6/M5BrzqEScNKVce8paUhCErA0FMNIShV6+OHTY5gqLvHlsFFWR88+JpkrA8DYOBoPDPF7XNuz7wQwvQDeO/L6e3c+M9JyE33ridta80fG+Bz09cOK/5+7mJYpSNKci54CkgF4fkcozEWMjFKgXETE0CQ/FMKpi56cwXTnQrFr2gcNJzAwUt9HzmuF8owubAoCYd1vIYghGA2lOJ02Ooabfz0Tf99hjyUh8/fNzpiOiWnS+bzVBwCxKDVP2wpHs1GOrQ7Y7izq5Lrq2TYu36tMeaovaooRsnMhujOAPoVZnQTrm8vM3EpCWh1Q6wSmzL3KYz8o3M2GF7Z2KAQXzqvDG0SqkF5ibQSl1pN+2VD0n1wUA7FY1tPxYUtE0GoFZJj1g22j75MDtmSLutjAzFJBHFIhWPCFT+NDwHZYSgQscCqroY8e1ycYUgTbDSUdru+mzoNA9mrY48qBkMVnCYwRAXIKQVdiQvoa8IOC+5h4QJpvcnt+IMUav8b4TPuRk3Vr2xeX7phrU+ur6x+669/i7L8ctH9W+JxE7d3aK3RrRdsfvAxCyYzVx8pB4n9/q7WUxPMXK3VbwXImpod8tm3AjTDz1Gpn32DRhaiLmWNjSQp3racW1M7zRhF9x9HX6Sgl35IPW5h6r6933QXDVO7ec4v5Irlkt1yKp3OtS7gw3Y7X2Cp6ex+TuttkzykGbzxX3unBcA+2vEXiUwmRajBaxGjRsPvaDLLhHgzLME7KhDNBVFSwzi6SugQarQLc7fNwZ0rjz4E5S6RZCq0GEKmgeLSUYzM2J6ocszoDMEhS2NALYZ+qQX2IZEX49QN+PtgS0OsMZIzUoB5TRae/o7MV/WzuaZU1vcpbHLaTfUX+CoowWJg0hP6JDsPljN0o7p1jh+InFbXB95G2IW25L2geWSswk0kHGNOGscb653EO5IieIESdAfpHqCro+SFnRZ9+giVp5QgkYPLfSvQX064NImwV+E1EQCMgLIxmuQAddBrwA3iK0OrjKClT7K28p1KCvnQFegenHlDpUfYY5ICLynKPMSpJKnZfXdLAjK45F3F3PIrXEMpJFhnkHRIVHwwf0FWB8QIBFDCsBTQUEVubALDXBeMNCx4k8PSfRTR++V6T/zxu0d8n9Cb4kjPJvVh4Cz1BZvFhb58+Ysk3e/kiflIBOT/4jrH6KLWUJpBUJko5v00/d06eWWFwH++OUtxp6KzK0uus3mlNcZx+Nu6MaLVX/uoz3l66rZUgFQipcFwYuCYOgdWijaZnkYzN2djvraLxzZ3oi9ebkuJbOzER+Hf4GqYpYWi5V7ft5BteG+b0B6OO1b/BiwhCzpCTdN67Y4qwct7xRkErFSr7JvSR6CR7OURYNNR2QKXt+5nhTUCJqmKVpT0FuDt+TCMiQ44xZc6UXp4Ef8LnujoTCvelR+hGunYbQudyb6o4KJqpzd4GXKpjdAkYsvO6eqj46wKltVuq7lBaP2Xf7qGuV2X/Fa8Kr+vsv6LcYC2VMRGDS3og4vuM2ihWI8TXWAcApmH53WZ8XimolchIOFNZGhY0ZvbrgjXgTVf1oqNlJhIa2wfgz3pkTIISHvwkey+StOQbCkgtpjlSoWqh0LVoxnOTrmDaRTzMwMCq3Eu3Bv81wjYWoPMHec/LqBeKXLeF3bcwyyefNnZLLA+eQBeeh7gKX6anpQ9j559Iv073RUCpt2K/76hA33nYacOG74hoo2pRsm4PWdidD1AVqlsEREepoLnHyiUd7ftcDaSa8d2o0FlxAtncwQuygIFWUzf/MgH1OcnuYBs4cUgKU2Cio15ulGi0SiPvPUjuW5ljrUtiSAZ+E/CR06LWZIMSqTWHTQ7TrkEQ87nJvKxARM207FOQnZ104We9ndfpiEqX5v5NCsE2Oot4041S7Bk3zIWB0tZ7zvoahEYFEi1NmCLTtTHVMqjqgImRvnaRhDnN8SH3DCAoXFE5trhhXDv9C80oY6tIDSET1IkWJ0ZVPZG90jbsSYa2efuZN8knvyqOcTeyp80jITYlMGYFFwrlOO47QsAsO8Wwm0O4hkjEHJn+q0UoxFcTAXaku7E1wyrTwUo2mGt0XrazfyOBIk5dLmnf4bmjsHz82qtMs4RwgZ1poSzPN6LLcEcC+DHMs2qzMWWXWKjiPKYw+KOFpEyvj87K5M6eI00yZ4+OWCThWHKk+L82nZ/GyNnjknNZUHKbqgKNM2if15mNZL3Adk2+XTnR3uy0bx/V6h1I3tC8hmcWoQ5JHKe20nkCOSIcX0SQ0zGBwBmwZGc3ZHJdJW7kYzCnemTplVNCyOtZGWVNCnWQS+mdha9X8xPH1ad8oz8HMkQ7mCiD+megPMvqg9a4ZLXngL3v12ZIDkBhhwMLkcdB8oBDftx81E/4V3QgSbQDRH6lrPtFlVNzgQ3nZNitO3uOyUQgDJ2cEMFUHKVC2Np5+8e9tk5p8rN4qbMtbgRmbCbDjMgEZ5zwm4p7BbxTZwRUTGcZRtm+9ehnB0fccTfvmsSSrJCL3+64zMDwSvD5PcOpGqtKqWut7CBON/j/vNdsMsS7jsx/WEAShvywRP8ze9kOUALc/jmGNv7W67Rd4JHdAEJd3GwsP6UifLHiUZue3Lg3xrwz0E0X2LMHCEb8IAj3HhaJg+px+m5dP4sI/o8+c1s6ZlhAqOYN9BBWONzO21m80RkI8saVo1xbuGiDAlZB7tNSxdNO3IdWdsxctp0tdfQh+PgMe8IzdxPWFByx9gbxFGXWQaU3BxPqPBpq/oQOk1y6OOuRni2BXPKLNC1MpTT2x7Qt2QCIz1yMxtFh8zRP2VGhsVf5nwxkm+/2ye0UsH8KhtWSRaScYjCiGGye90L2HGWjdoHPg9SJ7yoMZGzbydviReL5ZNxUjO+eUvKukv9/eramIR9UtKlDkZYmyFWYRay5omGIihUWpqlDIqOJGsSA6RQR7ZZO3ibx6qcYo+6aINujTqhUYw3qmmA4czIqsmJpQJX1vrqB+BOEulWyJBIQYk4K5jvyFi4HYJn/GgT4i09u3o8YmBa/iHnWvPRtFt9iVjrA+vpyex/U5LtI9b6pD48OibM47bQ5eJ1lPvvPFocHXl7MRWKi6IIZAsfDYGoAq9Ka5XuKKk/rK7UtowxCWcal0SS6ggZlsoY4Fuf6tTOhDvBA+G5IGPtp2gTiBdqVTsLiJQGG7vjlQ2h7Dy8JV3EyHUV/bCBD9HWoq5PyDJG7eYewFUHvSgM2fMre4vcwWsf2emU9YXLSLjOCEQsJxxAlikozXGcUI3w1xFsv1nxykZuv1dSrGB3johM7hVlZJFcU9pIFx22JDzuxtv2SS4Wlous3XFreAZfxCEsCW02D5XmSau8rzEreu8Hefy9KQXR6d4WddonEBw0x5Z0xrqCm52hfq1kfi0/sDbMfSXiNm3J1ZtoyySt/kIo/yB6JrLMO1/dWrUU++tmz7nLAIAtvpq9UNOgG6oZ9+LVou1f81VJXl9WlOJf/DtTN45KplQTQ8Q1ZGvenQYgxAmK8cuo58WW42brXLMinr2XZxuIVV2tI1w99axILpkTlG44/UgLLXEBQPUYgToMItqA7Vmljn1iwKgrSv/0KKPyzf8r7aow8r7pom/0sniql4VNSsza22azVp4Iadm3dYUTSs61CJP85ReyADlErbEOZc8aKyWCiGxTsHbkUu0L8ad9TkfwGa2bQs69mrttPVn0e62ahusX202CZnklq43p7+9kG5Yq6FSvV52TqfTfqHIPKUwIxsIbFQz2NfU0B8tYKVU9Uyn/fOwxRb/A6PWPu3AfpGjQyc6KKOaV2ovYGXQGw20Bep9VmjY/eQqa741biixgE4OX1Ec5tfUPPIuM9fjwXwBur+PO79H4lDQhVfr4zm/oWkuhC1QN1+3UypsBVTOv9S6hpmQX6rLwQzqYPo1r+ozbwuoRJU4RKVg0ELRqauErs3D5qU4tve5WJvh1kP+MdUMJUBx2KE4+5OTB/jx7blY9DLy0++85c94eNA+xFGldHRW3u3J7R/aFUc6SOedLLZlG19I3dYmuT1qhSTqzt1SOg5mFmuRKyODRTLnS/BxC5jU52XKy9PypdKaVr8r0mVGmM1d7/pP9Yt4H0bLebe44FHMO0yi6CZbCpL+Cvt1iuINV7CzxXH+FfAcqVvvjVcre5xKRigWh3k9wG99xk8UtxIeDC14K55BELur9t1JYo2hpMtozJTa+43bHLnH7CvZrTVfAhlgxWYHAVgqGZPh6q7GmncBExZ5FJYxOze1ph0J9XzMkB9efb8+MtmerwREJjZgSxY98wZleNERHY1KBlszTHhNHXcdaEvdEnhKUQJWLuuzoEwCRVed64A0eCxC68Rde2x2wvQkSBeTOx0vDBo/bbnLf9mHqQyhRPxDM7QecQTN8pX0HCqizXQSFYO+QVqmNMXq1ipXZQ+h8J6OKCWDJMPf0c08KbpUatj9sMEYhkogjMtFfHzN+icA+lWt27wQqQ6UvCFMSmWm40I5JMg+Rn/FB6BfXJuYZK9BfUnr/Sctvg6GPgrwNdq3o09cDvbDIkTOj9I9UFgAoR9Zylf+9sL95YnQ+avdH+aa3cYvGgquPw2l2eci58GOJW7A7Ghd++tLD1aHK/zvbk98Vp+OQLPj753iH0kHc3qA+xj9lTjg+teNcgWb9S9SUMc7ew+jmzQoy47xE7hGB78wpA3q3jlVqIsmy6fcgH6g+OqgQ/WdWTrS/JHUkbI744/kbss6OeNoyOCISAieXReBwizAY0IvWUyKr+xd6paF9K7/O4JZm/c/q/v53RgoF5Ff0khkLL/5DZgHwghIOslgkSGH6o7fhGdVgMAnKcwVoQXYXan72/XgXA5ksurd3UnuYZ/P0FSdUiPVnfigaKjd3MC6FlyTJTx9qIFmHm9r5Bp/fU5XYYBhohoc8evVANWYaPqaw80zK1kwGu0dqgIOm7esF7KyFaR17rVSlNGG0Y/j6C3R0NUTF3tvRxQYTpdYI3mDmiqCDTnEF9xyEw38f6A9VEy37IRpS1eMfzAgmrMAK5/jqDiHSpAwpxqgGTWwfDues5XmbM71Sr1FDHRFwZDm37BVKm+GJ4xPDxkMP2muHR7xFCrs35EuRlQJP6sfhLdviK0cykp+CaTKnVcljhMT1jea1k+fOAI34yN5nV5KwHSuruVQuz4p6e6PXXYvCSSdn5KxRYVbWE6CG41dyXd7fj6RKVxzt6We+y5VdGSfyZM//f6pll5gii/Cv3oZeHoDrH+BA1E7q7FqHl9yeDpfoA/OJeOhbV2xvnxsMCRAr4VMRViND73HlWk+/g3ntrx8lz8PmbnmzMSUPVxJS5yS8izh9cYkvKe1ku1V4cpVx3XbCjvzlp71HDBh4JCe0VoVVocvokOzGWKNkG8p4gAsK3p5JjuoEZJkm8KDLgQo8UCGEd1OhfRYmFg0gZjpiGGEmZItrtBvI6Qi2xJlqmFsfP4c4QBTPGc84alN8Z/Zx61czJy1365Gn96obSTqMJHBqqI8o5Xx2yNb32yqJltErQDoJWq0sNVc6xOxkaLWuQ7QOjBL4dq/fysXrasYtRi/8QKzLSzHVbOZOJlJr0luKKB7jwHMkCM/NqmosEOBlmuKxne4ZkJmbowSqEZfh0IiYnuMr3CYZzIbvJ8NMxyaugklFdO/naRqtuxO+zr/002vN8jhTExijtW9elPiP+ooGf2g+pllqjq9bRwe5NfcdMwWh/q2wKC90wjPF1XVENA3wj6mMUhGqxOImqxMBLVz8SCvKGQp7Hv1oedyn5kvSG7utX67ebfxPMS0LygCgc/qhwoa+L/24TY0dzJqfgRQy3g+30F1u7FoTaGodpG1Ou106OGL5L10WoIUkDtTuJS3Imitu/GsfUiV9Ugal+35P/z5QzzpzhiWRCGRu1peb6pu/s5KtXfh5qKqxieba1t/9mJ6q78LfdtpZYaHkDrO1eNQRXZmDFlkp3DAk5XY9idEWOkzc4jhmtVIJ2hNgFhX1LlGYD1JhUD5DoW8MrFqiFVcd2AZsV+XNmHan6S65V50aR3bcNmaZdh3EvYSFmf1MkvtV1krRk6KScZM43KfwCOT+kSHqw3u1VDnWwl83gI3rC2lAp+SZVger8206K3DUI0Lu8H+zB/3j+3AQR1OrKyLzjDaoRqnPoITvE70UyuRkI6mkHYmtqOxsSAmRfWXIfHQqqIoSMbUk2St55z3WVdAkCgral9YauRQlRmE+XDDupfq9pdkQlJ5Q94SoXpFdLwQksTixN+vvSp6zma4xGu4diAWN1cVXdRKWuKFR9TP5U4Oo24zyEm6YyXCSSb3EE7wHoiKsDTX8lYBrEEj5kq6VDnlilnH+5nWtUNxpmtnepLu5CW6MrPqftaPjQTeRapHCfdHplEbQ6/l8vW+kqBUzSp4kRvGSQ7t+HtL0ewi9y2UrNoPFvoVQ3+Lfb64IHhljBhdkm8NXBakguK3qJguYxcEqpz6Hm/85+vvdfwmPm/5uTXncuWtbW1tw+sfxB9AREzux/MgCWieNox4MVyDWFITp0dckmYnIWqGjpUhVxI7RmVJShEXwUUxGEolSfwLoSJJU8uNoF3OnK6aLJ7A98aNXkq2c1k4LTwiOPkVBBZWBwvD8RpPFkGg26ggJdE2JmM8zYFyZI251F+Hfw689hQhMSzWiwT54+ntr8BYoU42ZDv0j6uPhkAgc7HiErCfBkcicrFiWyEVaA7eYTL25sEsZGq+THqFzfo+CUoNThJCgej2nP9XvsU8TEQ/tPa5HTpWG3EFRhagSCdI4KIvUQMWZaRtVv/w553NPl6SuG/dhs/yEIZw9vNTCvnwMgkBPpi391/4d6e+4JTkR/0O0y3yVu4+v01jPSoeF5aaXgzHqIovvazHcFFdL45pYzoUd+sWyH+LLdc6k64XXeLibkq7tLV8xDR2H/QcdKxJscbYofijrlr+e+b5SLmwvYGMbiBqopc1ZkN8bpSpmagOO1G3JPdvGiZf5zjS19omz1FOJiFxbXyvtJbJVXqwnhxeNW5lePFN5mMZ67FTUxk2vyXHWUQnwHOdFudjPTOysKHjQaLj2FCGykgip+ugbIJJ6EKJJU6UEGkCsG34rBhgjkKLxS40z/x91IuJM1qLv0WfHSg58iuAft4Afe3gIiJA2gokse6K3vuCNJor1OIiriv2Yk91k5aUDn70GW9m83D2fVosSxImynTw2IJ7XbIKOKayowOLmdxRQbLaQ6lEwzBfw80wQcSLwLRCkkeoUZVr8mDLxVYOF2NeE4dkCT3YGMJfEER/yPKkiswSKSLmyPd0y4SQHMyEl8//j4LYpp8M4os+wVbtUIbSe61FWaFts6Sv1tBphIG+QhptwswcIkZX3QoLAgKUP3qwLFUZSalFBZhKfPS2n8AmWCANIOKFHeuhBjuRpSziqFHLGyD98mBgN78mrnbrowyRAewnc5H+Fg+OL4vQv4ePcCmge7QCEf9G1SlCqSybQqLILXh8vVWKxdKikXv/lloveGaPrZwtX+e9HWI0Z/B4X8g2pbWTVjrjBDkP3QU6kUiklfNhv+JkpWiO0PP1gcgytYjg0QjDUD43CH9Idwt0yuib0wEuDg6swXlRMqoNvIai03Siq6ZkkVCGzkokSpswYHQBy1D54q0GO3BOaemk2WNHcpmTo5RhFI8fxN6mBPgCRHiOjioShAXjQOkrnEvi+FZxXgZJEo1g0RSrEYl94qpkEkod1N9OLik1CnKlFIcy85rdAO8IjZT6peTng4h/7kdvPuHBPir5ZpjODOBb0Se4EjyQIDdq3g9eQL1B/D90KUH0LKjIb9tashXDDpJhfy58+8f6b+UTNAdl7XDA2AI/XqpBhdd55Olw6tbc43hhiKtwY2sFWKvVgiF+bEi3j4ThvVSjndWoNQhHlnl6mUbHdGEiIZuu1kr7c3L6hW5OrMTD0Gt61FsXRcnUbZxAgNOp17E6veFWnkZYibfrGHE5Beola7Nc0eicwpIPwCv5JwvQYCtVMxZLek/Dgi1rNlvnnWeOcaRVqLb/7XE+U3Od5bzegDzP2NkzdYyUXLaAKTVJvAjeoDHQg6uHW8k6Y0ybB1ME+aQijpXw6XyABrypauYGcez29TSFSa8eAkd/jI/hh5zSGqTEN0EWqKX3x8VRZsRn90r8M9d3uyyJeyHtJguKrYmxZR54s1ICr5N5omyNvdneslPDWS82EiQmSEKjg5WtiU54C/y3Z/CdcZKfv4I8y7R9ZHhTrfr84EvtgplST+e9uVr+7gIVj7V4LPe6tOyaCCSiGCP13AciA7sNNIkiylK60EmJFN4sC5TxtRRTwehofXxtUMQjTcJkwQmqQAPts7gY5qSk7PEyj7qXs4GWYYw5PnXlj+GbvWwxx8FHRtDxbIyvUYs/s7iThIozkk31CYUHMwwhpZNO7kdXa2rOfMk2Lrq3oSbBPJrd8FSPRbudWTQh7RE33tYG4pkGJz9NehJOclzcycLTZofVD0aj0yrF9qk5QfB6ub+cp9WW8+R+eL1os7YKoZU23WCZqAgGSV7nlXIHUvKUH5lc3F5pe9qr0Gk0Nr0nxS1zME6/WQQoLE0kWlubZ568CHWp3vAp7yCRjjxmRcWRn3JrULgogWpHea4ZNWbqXRm/wPn9SVvccUxoLUbVrix8+rzTA0r9Iq/oQZoILqvShjtqkjTL2U+vo0P1IvL6iYPrp7+ZYJSASVwOFXPLIBYe3SXikjQaihcSKPCCNIgWIvmVQpPj62kvnEnVMKNaVoVH0YhUcKtL3DyeRyokGTVMLyxQ6AVqoPVY/O6La4m2CsOcd1UTRY2i5jUHwwnpgF5RXFFmqEClRqVcr4Jrh5q7O3o74dk/ZtRzubBrudqvM+5Xz88oeriwLdzsrVzYSm7myRn1DhFsu4jHycAPrR9aG78lnWSO+rv1SbTwKHIvsoM8Cg/cUnzVf8tfXriFHqcXuz0Sz7ljbE82p4+V1mM43H9YUgThVwBCpmXMx06NW4HEOQdu7I4dsYxaYvpvJjA23lteDvgMzDwgWjkAdUDyWdgEjVpGEOFfXNvKYvwMemrCfPHrAAShTW0rEpkplCAarz2igjPwhqx6FDObWFSU82/X2Z8h01ffGMMU5w6Ii2iHEtAFQ2bx+cGgNO3ummsvC+URqsyCqBKLkVUyW4SuEJWSbGlWkaeYgFjBBi7j+1y4iUQAGkN7vahXct0MuzakJzuJuh0qBEMZoylsyIRMhqpUGKNEeU1HXZ4iqdekVVPWBQD1BDJAFvsDS/SuZ/x/lJ75Xq+ZzLs3HnSE3V5z/U6RPELjIcgKiN9CkA8P8anIQNiExZiStf5d+r8lfiLarTp8ahOqqE4UjkqMwghZY8ZXyWGoGqU5SlZFOsOx6qOHDIdylAkLDozO6dik2DPlHCPTqJ1hu/s/+g2tIjU3nsbVx3hiF7iSJURUSE1BqowXYcTT/L2AZt9qTvEv2btsDZie0zZoYE3n+GfLOB2QPCmNCNTr17IpEwmAKCoBaJZsPBp5fjxIx9NiM1jcbk5FMEADGhZE4/jgrLGYZSB4/IrM/GB9eSYAgYerKbAxxiChqBAFGRkiKx8s1anEhvODwTG3fI9L8X3LxPGK/+8O8Lc3xzhYnQHJFANeWqgZSE3FTIw/qFOYzWp0VUUPxB/spfSffkLmB5grrE4Wp0UaTkvfn7gkPibdKShP40nHp8LRlr1bKNhtI07B9rw9YHfgUpYUXaW2lFOUqjIKYMile1DdVhlVpSynZlRf0IGrp5Rm8mKRQ/4rZZWDDU+u9M9rVlsVGZDMF7xCx8FYHD9qSJWEPgeVsDo3Gkh43RE1nE525f9V4EP8+snp97ePfHyJLJL8X1tY3O/ugQRZqKly10iqAVhNJvPANlQYaCsCYSET3AcRsKy8uTv2gtcG1yYrI1bCrXN/YrV2ctHke1FQnMUee4reV1YsX+pnfAFKiKeeABtX7QS17TYfB2NEm8HJlVtBRUNplq2g2UPpm8CplpWg/L7AQehJO0vrrdZbJedK9r7JaxhdMFrCypY8P43ZjQfcuO3aeNYR6zmdGrqYmtEzBGrbalriodEeUCrkE2ULlXS4YG2YqdDzOwdzCHtr1lWgAfhbyX34QTLnd627ScEDEDdHAPaRtF9darBpvHJcRDsMUw0QAbHgBcdHkpdgcH/K1gexN8GsDg49Pehg0KHVEklvP7CPuBCHnqFkQTHrD5mbeiN+JMBnFAlKAM1G7Gdm2pHuz2ke0nA/fv/7ZwDHKlY924KVIM2CYIfMGJjxYcOapFSszmYo7jOz4p0BlsQGrxSJkRUSo58iurzUn5vuGksl5kle8L/Nr+TCrBwOwXbPi2O1TegDNgSBotgKC4pfHUdAlk/BJ/3Fm1m/1wMn+HeJF74SSCTcCBDORkEeEmjaGw43MvSfpTO4SOTrVpbGOfpZIRL8akqQN7QSnUPbtrOFRpi38zANP3hpHZ247vL4dg2g6zDGSaPBrHMKrNWTDiyT5oAPVr2t24Bx0GhQ56o8txlDSiyF5oadszq+PLDTvLMtbD4HOEFRvjc5//OMHRklh5JTFb1A2pywzvl9P4h///1d8onciw2myrOjPpyuSPoPGdMRCjaeyUWxfwW+eAO8ZnTPvRh1QO7GvwMyQET5iShVXwI9RrfvOBni4hG/e3jg2vFn+9DMegpHfWIb0kAhfDL9qyvG7b6INFJ4sNAtPASzxyrEHs431lfXR+v5IYSm+SOf8Fm9Bk9QVsxk8DWiHnWOwuKw8L3YXqSfx0X5V8dT+caE//HCaO9OX2AkR6dt4/gCXkRvZI3yBUW0upEcX3BSeoNX3p+X0y9wOmcIahOvAvEa+Yzc7BnB+7T+4GQN9kRWTt8OjAsGM2wenfednbO5s3gaaT2uXXcdjLD1zHAOI52j5/9TegqUva7/DM27A6mHgbHvVkBsu3icPH4n15tpRS2Y4v7VOy+xxlnjDC2bdzr88HlYd3Iz+KPhwA0aV4n1YEG68bNNcMIuBySW8d9k8KyTeyVHZHOPy2tOZUQFydU2pcv+S1kWpF64URAQ5xQEFJyq9ikpYY89VTAJAEIFkkYUSphMjMKapOjPOqak/wJbb/ho+JAvmRyQDE9KJrdKhmI9aAaynYl/hyn5YeL4idqjSEMxW/wkciZrQKWc/TQEgWqdpyWafIHxU1z9KQXDO/51xo0mRVMBCX7q3wMUzLor/RTSsnOgQ+MIyFizC6132NJxEqKHhj1JxCOx7wCfQKs2iMwboHYn/2DwcdrpeYz3Fzu1aYOJd41VjTVklL7KgWDdlvDGMtk2EawWBg1DYEEYLFhVsgBXNwgpPhJQBSXyMeCl8EUchSNnpDAX0e/q0AX2ZdvbEb6Bd/kvlxO4vE4B/mQHjHKeRyj5fFYUHO6d+DlSMaPd8691KTRC4447nj5/1IIvW3333OooTea+idrlv0KOZ9Nl75F/3onsBwfLwxedAJ1MLeH/4CY7lxFRqRDP+OIoPuimh6krCt7o9f27KYmfOlMQOxDVifanjENMrQLLLuoO4twpXmHb29DkIBr6F4CGXEUJnTBWPYQvCKF1Tp0N+VEB5MjEuTQzaXThh4MhzxtR4Elv0eBDp7OEJPJnl2P+XY60R+188TfyfIH6OusuVuVx3krvqWJHf+jYYrnQmHvl/dXj2twPNo/tXlwb83S2gZLQJ8tsU9gybWeRbHSea/ZME7BviUuTL5Qyz7FyIMzWtQ7PLDZB+KtyW1TSuCEeqJubdnIwPq5OacoLKgXH4P0xh7f3TLlR1a+1uU0M0PtdqQfol3iTYQulc4zA5SgC5hKVRRDQ+OFAQEEJMN8LCabnEUSXJp9ucFhSRgOWtcmnk2xcl4IzZPPQ/r2je61WuGePVTi6x9qA+4+Hf7NCKyp4dj+kYRllSocuJZeTtKyca62mQRmpr3Pn/bKeJcg4t8l0qZ8oOT6yFxXnHzRI/lC4aVVei5pa3O+7fIYUucvTIXEvyrtoTNkO9LP4Wh2kMyLmf26hWReptuabHeYFkQWFwYxwj+dHsJD2X0egqXP7Cq4ZOPosQ5+fzuM2jrAvt/LB/ADmIiUgwOaSyIVpjSy3lEHQ7JB7EJkWhABueTfpcPN/yNJ+UPxvDqIIlc1DTTBkBXg5QUdoWnSQYqaIiqYBo/CQI7+eMzOfwu5Ekrc+e4QXlRGotASW3FkcLoD4DnEKzRucPchnbixfEjJkv3YJy+8bmq6adk7L9Ve9YcVNQk+EZWDHcMv211rdUJU1VLwYoMGCJWvFDv/crcE/DMso1pmJWttqYmRUpCAQ3hfjyyFvT+cF5BDAaCya/22P/FzYjVJ9tp5bYc5RCkYQCuJwJhFxiO7W3ADE8JhQ76HqBXrxG7wsk02eJU/q+MSvmwIv57e4MX7rIm/KZj9Jk0EIEAkM1Af2b4ebBN3NfVLPw8P5Hch2uuI6mzRMkRtQES60/4i403cqqugQELrF6l33pNyfq34388IdwsO/Xf8/mrbTjB6inz4rvm7WdrkYuvbOYfqEftDXKPLhiTcsAYOGjJrtZAM3/eNnJN8MMx8fCtVuE2r+9SJFuQtIxciKn5SGQ6FOj714QZXjESMqbPRXuWf/IzZcRLM76UPe3W/0Lp1EP+TxYlKG3R2ehP26olkDctd2OEsNlyw75mRodZPckRze647PIr78Pf/8LjPNHwL1bM2YSKUmHprxyFu6P+7mVQBhA/l0CnRGZ0hM1SdJpuVDMqYmKA6WZUGHMrG1NGoZUYR/cT0sUAT6LigODpXdNVbipuZWtOi9V122PQcMiN3kcfs+mD6cxmjzNNW9TYbYDsC00XJp6NcU+PkzW6H/eXxonGKx/qfRql30fn3ueJlfUoN0SvmhMXEAo9hu10RtXFSdRAlvBrE9E8uKMiHt9Hhe+5qe5boFUm8NZQZ1applrl4SN8adQ9QNFW1fEKwfYqFUFgGoF8xjq03a3nCeoqK+Rh4lKYyoSpkMmVDYojQVw1G0g6FzjlhR1GmCLgzNtTbS/OiQU+PYrl+FnMZqVl//pQcO/qd2xhdv+r/wYvX5d5v2Dm83sWbp0if5lb77VwN869OvwZbpNJCExFha2nk958Shu98zXMk3xKTRjSSRIkKX2ZBVYjGiUmaN0OSFj67PvQ1yzGy9SC8w1F6h0vcmwowEEshU+z2DsUEAiL2/pUQxN2wIpw6YNCZhjYNesfi26Hbmhkav7yddF2yNM7hCwpD5/auzdHub7PxlLVaff+ZpmarUdn5Y4HmfUZkfFAdrPm4ChjojEVWUojSjamAyfLXGHCELjVGJKFxUh5oCxNfdookM3I3AVmRt0oTBmsIBZP4cISKSSH1QP6KyF+WL0D97zv9CK9cZbaYsfHnFrJzNJFytNY0M/aB7mGh9tOdGfY51b1A/ULPArOUeIs9YN17Ddbc6fRvcyDV1CbZU1OZmGqto//wvLlZFyTW6DvV0PbUg3YmD9hA9tJCL9pm+YIIqKEvCPFJRZK3ZEhttKqBoy/iyALxZKkEnla4oSyEO4XcTAsD7WuEYBSRiNx/96eMZLw/XMCd59nPwnqfgN72vsnYcwQaYqsYEhx2quVtMW50AMzNwaeZkJk8WpErNiAohCxwXu6M8A9dLa0yla5+d5GwMBpoJOEAUfSKFujYapifi86TojqwN1Tr7STvZXy+e1yaU3VlW7iLivv6T12psoZ2aakL9u4klSip09o62/T3KQ9fmpIeZ+Hv2BfYmoV3UtzII8x2MjUfVF5Z8lPHlH7/8kZX68HZTnzfA03o5ZxxQfD18AcxACwQrON1c8owUDp4QzHqX7W5ziKM+H2+b32Yej/uP4cWvT2yY37ANZhKGXEHX9sDtLQTSzR+85x9gdiO6K7fSmAlAFkYPkhPsNiMaCFGeZ+3/5SWkN+8i1574Jy93GRJYuG7HCOUCjqCn5dTE176Rb1mTaagPBs4/Ks1b9GZdGGRBDeUJGoOZAOrJUh2bNhPRixaP0bQcozzbjCYUGYdxKIpEU0NyFznFmTKEe3h/mIthEj4V5RZPw+qNHb1SQ1HAc+eCetx9qlX4cBD3VS+5e2HntDFnFFk6dW2kD3K0CppTUfhVsRDLGDt1O3EG2P3iccnsmQfU/MM2bNo0sOHbG9mcZgw8aWw2c0ZRU8O5Z+ofKmhegwWIM8BVwCTggYp0mniwAjT/PGHiqUp/g/05Y/pQ1sc+BmbSzdOJ+zxkjjRHmnkK+fAvEMhcenOPU/Ps6dZ0u9ugK9Ywk9LhRCwOaCMlUUhJPw04YhJFlD6jqcTDCNKrOWXJsBTp42GOYpoxh7MhIS0hrZOHiKuzkU1XwihapKBpX/jMyEznZ3flWzPN/fILpaWoM8O9eB7Ic0sHlx/zAk5Wg1JMg03uSq8ZsWnHmcBN4LiPeADyJW0K4dntzZquVen1gLgb8mv7XJk3+JOrPQ5DIkZiSVL22JN0WfwBc1605xUZaKn+ilLqz0BUHtWlVOKKHdoLwodXFR7InWCf89NAOCmlTeziAUJO3tU9i5H/N3TPFSvm/vGRdVLHmLDtJL6JWck0GO95Fs1keCruTdD+Kk8bbPpogbrHSYIJRn+8hjY9IbtH4oY3ZjSM7YGEGBlyJ6peoUA2y32lbKU0wFSt5wOZ6P2fsUVXNtjQnKX2Ki/yyCJAFIWUL8d0Uhjt73MkeTnLoep4vd7qRnw2j1vSJHaXsrTiBGNXdypdoQhTZRZ4lVQCr5JYI1SlrJLR3V3N0G733x3/zhrAJ82Owz9TX/DkddSEtbIqDSjteV7eF2xocefzu419ucRiq/Srjo3UP/3ihD7K0Yl+lkiu1z/9dAyiJOb0rSJDW5L2WhJqSJXyzfCD7k7uQ8PQ/Zcd3EvOpWqf5FLeJ2uteRw8WL1+bLlUU/791WZU6vdka6e/2anSDTbUqos7adh6DdQLDBR6YRomySiU8jxuXjWYq2hEepSsCm2UidPMVLhTMZqc5A9kYosG4QUFCrwQDYWk4YroLguvDMIVl0NNYkoAxlqvWfYUpsqNznPysjwQBzV1ECzIVhQG2lBgHplcbQDi6Lb8VhQrCPEU9nsU1v4vLQQ/+Xjk+tfTT74mslseuKAhXEfBEZoOvTO4sg/6hk4udCYjykH5/UW57oNO0FATTqckheWdsy/a6504bA/oujuGT4RWCY54MP+wrmivc+wPiPZpi6HPnAw9GxRm+UElrPIjcb+dFb9iH/veTZvNFX77Pe3kfZy0OXFrvPaiZ6vG0Z6PNU9i2nXTsBdsUdZpAbh7kxFkuxb757lbBGvEHlllAL/zPWAHc0xAHXMYx77DVLRF8KUoKvSGDFqsMoKMzAVrhtcCDbA7GmG13ddkvpjbWab+RW3h87eat7aUukh0lacVa8sNlXHx2frt5PfpTs0ALl+wfKm0GG3Tk+vM/y0sDgljsYpdTZ5dYxAEP39tGNUTN0fp/lqadcmECqe7ryp29VWFT1dbcbeW2SjIs1Bv6hs0+NDpGiGE/OnuEKcmj0ybStK1NssYvKL96T5pgFl23UrsDryWAutr++fYl/yFKDQV4ce/4s0ikfwURO9FLSCHYtYTa020r+4pZfGHiLqcjMcNI9BvaGhFhsQdMObCR/z3FOtvqCP+PKVzxA8n+yfEQL9z/Z2+bfat773izSkXZbtg2bvkebtgpbvE65DozRkrCwhUBC7bWXyHP8/Pzytnu2rLwG841mHj8Wmfv8jGo7BNV5rKRUJcccSUKMWb8Wr/6iNmvLdMMvZZrj74PwwE7J+cEk1RyVSes8VLsbn9No7NuAnlSzsSxSbrBWqeBp/MUahVrBzn8c7k/LJdpTUNfWIEP3yRxmbj0DgKQBlBj3QsGKICszaRfb89LsiuFajK8pSEGtU+NpmbhJv4MoHchbphm1IvTjpwkR0Cz6xub1lROZKbvEp/gsAttuST84jJUrGWHuUHKChkvYHO/U1hR1JwRLnN64bqyzeX5yXx7tuaFNZ6cjoA9tYJ6EXqm1v5GmnBts71a/fa7cSFOB7lVKMl7VWRMsaWk35s3LBwTjT3/WDslwrEVWt9dkCbrr/8wM0CgqI8TyXIqc1/8ts+sXWNziD8+ssEnpNEZh8x5RJO6Fcl51aOrGipalfB2SEXDySJ6yB2JdNysp6a4Q8sp2sl4mQSOc9AxD/QtnUW5rY3q2tLB2tPd3EaqG7XB3uTIh9p34f/FeF6TzLu1I4wa9U6kAtNjkjNkCa/MHjg0yr/qsntyU6ScoC4VuGuI05TONuJgn2EcoUxSBWTjUXTu3ald4f5ApIkQhDoCw3V0vtVyfyZRnMP1+YQh0lqPb6cdIcLi4qtAWY8N1a0Kd0WL89UCrQaR3O50iDTVWhLHA6rMhSXRiuSMqNYV2dOSU1bGibT6eTOExAtTzYQarHV2g4KvX4nZOawPooJnX4r7rmnFCrXoSLWCs3mH9c9rLeh07Esyh73DtCaICPpuZ+mTcg2dHz4iYvepVYEBCLLhqD17pLMeIqvWP0+bxpaipAKxcwo/TDRfrzYWmytR+k7xZ3F8kerNS1yhb+Lb5MvLcE7vqtGvCoEVel/Yrxw82Z7d2o81YNWjduwMnP24+2e0ErTdk3RoVRHJMnnCoqIJBMWynPp3WV1LM1SQGfyQuKLgpkSjoPUGv5QmeqDQF+g3Y0vEBcPackZ64c5OsWKI7vk+QLdcC8lW9Z68nwlE8PpbESCUTRz8I1JclSBSy/RkxiHzIvfmDRpgrJoEe2i7JYUMVCHvOGXeymtKjREIQ16HqH907s9hR7RFjEki8WUIMr2gTJoCK+cVL4yjkgE7GBGhnisMeggbyzEnVaIf31MZmiIEgy6trNJ/Qb9vttloakp8tDxGFTl1YyMeYlHUrJS10bH4TsMZ/98reKL0Yh4HjEz4WkS8nZku16O4bdNEB3DEy3XOhq8cRWYM4KPlY55Ls98U9DlNqvK/I8nyopagU3gfu4ZiIIpzflNEvtKmszdpBJGMjuLeXhLhfMnsRAUZs31uGcfenOfQ0oZBDqhvXS/tlJBiKul2qtdNC4Xfk2IoVOEuZcLq8DKLfn62rZapZQYqctwynRmOVCQGJZw+YWkmhhyW+SZGyNGTKWurECnIdF8TeQuB8QRTv4+QXGMm6EIPtSKT6qQ5oL0tNL3eDuSQ134vD+DFh7Ls3TBXPN0+ztZO3OecUqtnf2d1nNMUw7yypTOvgXIwNtLKPhWoen8Y6FZqbazo3uoea22N2HCj0zFrSINclrMODjEgx3iR6LiCR6WS9u7dc6+EBuP9zwq4GaoD/EDuI6ck6eqt1et239uZGT/2fVVVdsvn+Q4cvkB6gPKgubu4rKWLoO4mH3xYytn+sSTIY4l58STPs6t6Y+XOcgkZ+zKUR6jp6AlkNGHrlnHZaxt3kpnHIevWG/9vIzzF+fQAM06HJ/erd8gzQb7FDbZwJgcj6AoYlgsdIfg/bmk9e8FmA4WSxFDSZLhx4S22b0KmXZAqu/Gp6Op1ocGOH9xSq2fn0HMl0S1s1lSdEhMOl+ja96XJXJwgHuMi9+c+osu5Ym3BysTUqiUFNCPEAjFSiDSLyhNT1VhE0ew11Ecgwv8uv/LVD1/0bgU2xYGkB6R2vfzf+fH/xbs/W13UerwD+9+w33B/Wn+9LxgvmGeN7/EX+rImFW/dBXGuifWZmozmRSeCv6oKkRZ7b+Om0ORrysNB+nbx/yIvFPBG4XOgrGA08JEJ76ZTL2Kg5Pj5JynicUaIyEmVviw11PjS1PYJxwpctVq9u3qNIBshCmsHJWao0jG8zRqAVk/PF64YB6cZ9MW+eEIcUNfTWnZrvzk368XnuAGakJpKvukF0mmWvVmLQzyZzOr8oE5ZN9dcDgWXMUpEerjZfFoTBKr/E/wUeYZxCWL0myxRmx5jKtJu4lFqIgl1hvcsfBZ8Zw4+mW/Y4hZrXZHyNOUT8HhGHAVt1hUlCBLQKOTWFmL0kfKf+NzVBa7PYfIUZ6GZvM14QFsKV1wSMIpqq95cR6dCcpPLknG7io0ms2j3PVy3lW7BRjJVas52B4fUpg5q5pTmS4zfUaLrU9nJbWwvnWwRL9yYH1V5fbOxpJTF9xvxE7ZLM+dmD3Dmgp3Zq+I4Nexzqj7WwPI2KaTJyhPALm1XxKc6c2X4WScqzmpfaAW3KZpTo/f70gZMuN+HaPdwrN5FUG86sm7qOQ2mVYWw/SHOrv85L/JmVQDasBtWfh0sbeJ0LQq/wmTvqG1lN0AZZMUdNKq3F4RJohcUXH279DqjtWN9Z2bC5E58cuOiv1YghSuEIpvp3uKy4iM3MUrYAIlRf3yGMnaSfPnUr5ENZM/1FXEBedtMVpYB7pEfQolTb+j8qDKKgZH1tJHj7I95Gg634gl4ZdFsbelblfHp9BAMZ4mZdPMZd13g+O/gJQiDb619ufAB0EtWDIVc35+cwLb7i82+msoGcrgnF3dynvO38JrAdr+0HA1H9cAr++Yu2/rPBZISDRyzZtoSDqXicYImEbp3MBTVbdpVtkFmpiwB+GQz5vLs1P94GXNqzzCc5Njr1uLBEYF3NDnPNxvWbiLQCgCpQz9edaxlt4I5TDkBCwOMSkhJ/GeBhkdgqmawNs1moRkgZRPEO2l/y3Lbsk/C+kfniTlJXkucjGtGaSMU2kuoLPgnapRys3KPnE8UyfT9GtowblJrquUDqwCsiCrY926xqJtDZmfT/11Q/FB34Pn3ssiZ51TzyAaBoASuilHovL/A6vxJrtD8gbowSlAfeXK1oY+MNUxklxsQvxQnyr3E3ozxBRZSkYw8JRhCOb8WvXBGvSQukUupvHbg0CuWp8u1z8WATUfGnvw3D/qbr5RAGZ5Pk+/m6aLSm+Sn6zIzcZlsuVevUzNwzbSEGSfVcjlsvZw37h99V+zSwq+KtCfmhCL4Ny1pMwC2x4/1F+eukXWbzejEaaBHy8kAr7rHe5q8T/bb1qcTVYtcxxytzHuxpoea3OHu/iHnte9NggHbGgFgRSQS60R8amFHBG2BeTV1+xoyq/vrW1t26TXrGy/tu3k59aLsR+H2ZALkp+GpaaN5pty+MBZ9A5gbTtKezD7X/MLDvKe6U/U6ZPjdu/0/DNLHBlOsz7EO65fqJ+K7n84TjmiVNg8z87/W/E9bVpdNUm82C8LEVet9JXWULRif0hmdUB/EHV8jO2/+qfzTgUPCJ0Mab6bRF7cv83GU5b16ddxZDux7XPEgsGE7sosrncN3ew9rpn82rSKKFllIL3HUx11/APAIAzMEpRleZmC7MH8iEXqFlVN7k/kxMpxKtaVy1CzRxhWFJO9UNuqIz6EzGpa79aBHwvfvKrgmHPpnDZbh7X59buTi/Pj0eVOy6I2PnEuCXxps20rThen/1GLbjbcFfK6scQnbyvSYQZpIX+ooLEuLep51Pko5r3IDwHsk54wLy+Yp4fRq0Kjsw2rdp4H0D8W6ycsc8bVo3hK59A/aTgX5j9qbuRtqd4tuSnd6RM7XsYdt/4JYGTsDYkhxxwVOQrKJGLvalPt7HQZnBpkeLY557r8ibf4BenqwYasc75bWpdAQ+2pAdAfTpBEJ3Kc85IldJtEBMLfHxAm+gj2tGCKl1ShjqLLtA0X4/XgcbtKZI2ZhofV/YtfB1vN4kr6gxupPstEacVRAxyxDR/sC215oUFGSdQgS9i9cQIIQTkxh4h3VQyMjPODnuSNdVG0G9Ya4+F9LfVOelUkLSEESuAu/w+jO5VCvL38Is7JkSNQ5LsQO7pac57wMV/gt7uyWax7dWpB/10y7DGGN/k/I/JX5/y1OrVwdW7GndYngNipFKzWGeoa+9B+z+Miw3YpYvNSQ4w5hZtGEtFTUlmN9tgV1LB0lmhrCwpnyob2wKxVZP+9VfxV748Dy17+bFPas9UphVM9dXd+HWgpYzfCWBjml+v6hJHB5PKKA/w1DWALPzshghqX6kfQ+4wT8SzBDy71PxuW9qMTN78pjLWgcFNJQklKajFhNiOvlmfSUlNfQVJbo+6aiYjmEguJOlQn0OLLys2NG/cv1pdMSCXDFMVi5OvSL6hf3Bfk7Ysgc9Ics8GqMAJ9mrX3XxPCsDuT1zsGeR2mPrf60eMv1YeTuWmHNzXlQl2alef6HL5UFAvSgPQTw1A82EpkJ1LTax/FPfugpKTzKFlRtbgE7qfeXd5GCnNCk86+Cil3N6kwIn88l/wwocp2CtbhBX6Et+RLR9mMBNjhm/LicXMdGUiKEvPBi17NrSR9LXI/NiztQyduWqxnDerxOjL+YhYZaAAXhcSY80U0+vuBecb32NT8Vonb9oV/a3HAEgydKcTKfHnhTKjIig9Jt2lxo+pD6SJ81gkCvzxv8CYHTbFsKGAk75Nkf0ARipbOoBCb2pxLQ9TyVxYRvrIFnfctu/M2uVSlyy6Z+Jt5nOyNOMFKFNrepbQdtbnJzoK0iagYHp5Kz8rGp1ZX1Jfh0ViUQihN+b5di8ug4dOJpe2N6cQETfwAa+hO2G/ktw9tE9LQPEIUBotUiNp8256NVUCEYMZMZlWh5aGqORW7nK3i/guhF20i7YrY+lPDvrSSULaUxQbpqPs1+CQxXecstnv1r1wpxC1ylDer8icmlE18OUBdxxRUxdYCKfWunK/S1tW775FpZQY27KlI73UCOXdugnGH6cQl4bBDU1tsGR2BwIJry3GAnuIcm73p0zo1qSuUTYpPWiy69dPgMOTfAS3OrPCOlaWhdLfrfcshWlIglUmvKifdOMHVNsBvCI13hhg1LfyztJshZ8/dyVT+mg20HLszXZZz+XCDiJP8+YQAOHNNhRD2/lC75X27m1onr/58tyoelo0aXW3JDj3aKQD1LJ6D7B0T2aIh6r0oJTf2RZ1qqiLLO0N4pQLfuUO06axEJjlKODcKXpYsa/u6259WnBAT5ZfCl8IV+fuwVdhEBkoorZ7umAlX7/eZRgrYz6nCjkLej/F5vBHo0l480lz1NTQxe0sXUyKVKFdNWbja/55wekQyZKGmZfWYvgejEgy3O7t9gPVQEvaDvU7aZFTcChimkLN/oAYrLMaR/3YqaxAZamGmCj3Rg/h9y9DOXnswmh6z4PolRWlvf902o2yCQ97TejrH6MxTU2W8qvBbmtvra7apcOMKVsm5VC8/AJT5Sg9SFdi9fhwwhautdvLlimT+wDlkBmU2wClFcVU5BMMuidxS7i1wut2yXrrQozSB7iIn2r+gU8ykGfbEz62olci7/s1J3Ac2JoV1MZkhkPWGhDiDDM+SmBdLSWssS1q41WbbxBYsfbAezQptbA+E5f4qz6P7F+4cyLXKEeYVFGdzzJLSfD5Qdpm0e+wRoPtm448m0/XdbRuzvdcl0QQB3CwW27jnQXnp47+s/AxxdGb0L8xffuQDc/w8z3cB9ABtMbBW5apUUVMO0jsaM94CKxFDbiT3NeF3M0sKhAlbsSmvDr4XffcFKrQ+vWn+MUgSnvcCyhLpKhovh0PTENBQ6suDSBHWV1CpsX9z3nkJgYtyKxq0LvvJxfcTJiTQX6ANIIKXNfaTT9qN5a+BH4BLpPwGOIvkyUqZkOnIOulheoq9lEzu/I498MigLNaTalzVrkV0tBJSSZIZTElqWNSDK1FRpGD94545m208W3BVNaciCmaRUC3dTdsp/iXx9+P8K5g3XADnpmW4nwwZm9ZI4bSvCq8+REMTBDKhsU5+G7Hzpv1tfRCBB5/ul3ejmkBRXJlOARHUb/NcHjPYU6UUVUatVcFYfuuocRdTKY0X992JmC6bUB8PxqMZSczyJfA2i8yaVk7TyfQ7A8tEJNFy3/n8mH5EGbWMSqJ+ECvEGvFg/Jsnq2LAYTBFJh04oljB0Q2vJ2dIq89vkiqZyn3gUjkTauLkau92FTOm5FRjJ4aTSDPJjjZuwZJJDH1J6+Aeyo3HC15T9pTmHhQ11eyob+lu1yieB4fTX8v1Ry8X2yJm0wr5IloNBwyk1Bk8S+K59dR0nggaCTdEwySLKwh1FwUjm57DpFUn4DiNGEuJd1M6aL2frHMTSAfZjASjbY9hEaTfquhKcuUB8YE2K5h0Lb+1hNX6g91azG9tIx1e+9ivym/N4wurBav3tbumkTLhbeqItonIaZmTAdXZpIZ0phIQSQkzHeOeCPFm7tCyq2ola+cj2qP+TNk1+GZqAJfy1auZ/HFFRVxI7hbYwnqpS9TnMOL0ewoPqqhisOXNzfRom8OOpvPFuESeY3TacOr2rPhkGigiUKVsqoXBexd9RgjH5NQMVVVVD+nQQvhlFmcw7HJLGn7ChSvas4fMV2Zr+Znke8PTbWdKoRj+pkpoExQj3Bh2JQjH2x2sgbQjbyD/0XdEGdVxfAk5qx72CD3X7FcWFpPzO3seFDYUpUpmblwuJSkNd1qAp6UEs6vXF3e1DWZLCoCjmEmtIkLaucNvfaQD7Qx/DBrMEKUfjjoXGxkpQ1xKz7A+inuX2Sk/0sN5x7j4GL4x+6cDMPPXPTkJyMLOLfUNHWtUoX+fqygPIieL+nSrSHSSAspqYJe15GVCCVxhioDlL263slxFX0hgLyoVilNlq+0fgsEEZOJw+qp6JGx7/Xc5iiP/L7TJnRnAqQ27gFutfUe3zv/pbSC//+BcGZgeJcv1Ypa4YNMUkGXpxSoXhoxOdsQ5nPxp5HPGOLIsxxk3JBlu/DhmtF+hk/O2YiA67JwFNeFMANdpK1Jni4U8jNJrlYVABZeUkEJKPXYqLjmXzC2W5iXyV1+By5z8QpDIeDI6CR+RGEENi8aRY0cWa7eNkGNxUbSwiER8RBKGnJBEDfELRMVcqeMnSvJKuLnk5LhTx1JTSAmkSi5QUKukn15TM9Wa4QwCu3ftFjxt7du+bXxpOX8L5dl7o1ygAirMzz9GisVFU6uNQpPjkcgoJzT8yurbU5pXzOUpJmtrhxtJy8MOGLKUix/xFtMcPD+5ggla9VCtCWE0tab+CaC/+/i6au+TngRymCnpNm9vJufxnp0vNkgI5g9/QDSISOIp0RSNROO5HEYHDp/a4DUXyMqey5D4L2azx26LaTnte0CssQbbf2+IrZ43DmFLQlggky2lof+rwSOA7ujI+nd4WB8Fhxbh4OTV0D8XiOL7hYCbBT1Lmk5CIhjn7CP7jrINkg356HyUBFVW2i9RSzqfxm4yjnSNOMwZtGO/PmbjJLaXMPlMkAmVQNkgm8+Wfti3clYMx23Hd4Usb8nEVbExC+/4mt87WU4qXnSl+58whXiups+BFBgcRfQPTfuRqXIu9B4rJFYXzECSZGBeAjkogU7kxkiAxCvxojhuusZZPGa48huUEftDkEo2IxrlJSKCIzxSOOJyAsRErGoEB3gZUChIV+3tjvOI/+8Usx11GEwPg0nRLS2RRS2MZZH0BgeFiRtDj7ZWYUnpqO64k6GWpZDmFplVgUlTs3ytkR0GxEpsQOLXzOR5Yw18ucULhEfki2sQRxsT6t3d+KI7e5bUiWkYOfzH5AAeQm/xSQqkZ+DzKf+InYAVKgE6K2qlR1YUUtPd3VndtK31RRI/ACuKpA2YS3m+SkBBwIm1eVJhDilJIduynimCPb0tgBw7Zie5WQZlkthEaEUjLZ3KbIJslG5vhpiYlHRIA7SCRWSSyqGz0l+O2x0XvF8Qwp5jLQXgEJueYGRlyCqLEjNPdHomlvaPyjHsO+VTlnvw2iC3BkcOl0YM/KfERBahGBtRkIzj7K2/tZdlrY+qEbWgvJZybM2uPg4v+vjgn7kabP+MlLaIa6L0TOs4W4+4gYTlpdLAyo2ZS2+TM2m+Unitw7+/+6SRrFPFptaVwURbo8QgX2pE3i3VL8NLGysDpaXLEwbirntUL+RF0HyDjIS2xOBSa9PkVGuY1Of3fx164VKab2by277L6wJlmc7xwwhTVlKHdeS3X+QWu3TzI4HCQCBr2d1pE8+lCtswItFE7XbQrCHjS7HbDrMG4P0IfSh56BIrSuqnc81/Bfmb796Vm5HcXgrjieG26sm8m1PLEhlsc6XdqXSzT5FWLQm18Yf9nDPnT5lL+gRUAeAVus7N1K6N9AxWmHo+Tkqmkgu5m69F+VR+sKfbTv5io/CdU8pOiaBQKb0uMST+eun6d+vF65UkZWzkw9StnQyJLIwHM+RdY6gBf+wdMTVnmnSF1HZYnCPOr+uorKQc+WJxzuG2i815O6WOxBGIeAAgMti0rNzTu0c5bVExbmFQZG3SbFJpN+ZuFA9YgLn92n5wg0VNXqZD2lF4u48g/XKKFxO2wGm+zHtB420tyyu/VXwr+TVpIXNBnD5v/ZDAPc5dT8HvzQrR6gLEpiOoEjSLjW5/2V0FuA2+13OmhdaJoqEveHgkKcYfPuyjrfAFvoven3+ITdmaICwpuBERf4yGXBEc8jJwQGqvvabSV/BD9OHgy1daGDYBkHN47YEU0NenCAJWuipZbNwkFZGGnwGciBsfMLv6zPbTbddzxIXAXjdxp8BHtHnaQ72LhLx6DU1NCKNZN1rZ4roIeM5tnEUDGlvctNeakm6XNr7nyd5VlsYaVlkAV/CYZamaeTmjslJ9ePlB1bs0IVgCjFggF8+xIIthmXnSEshDJdOH9VHQBxJrXnoYWuCrQbV5DiswdJQXxmn4sIUfVyTzA6LpxHR/72wUPKYcLTECOyzHND5n1NfQn0oYS48uMSKJiMZ6A/1sVZExUUQyKkHrjVjKP1/9OJQgLC1Q0r8tb4cXXDxqCmnDdtr2rwNGYLEBUfkVm+EXVy9EkfyFwdjC7gGvbYpvcuUa8ozmrR8ijuA1cRUWl3dzDw5QrdH8ItqXpZVpdLZtzcQ4kihSCINXbKjuAK4Cg/+0FJY1hBjaK5dWxpOsoLpIt8f0uCAff2OMeEuGywcyjaTT5JcbO/qHPBUjSPrRy00txsWSF0sLj/SfDx9PcsDZvW9Ji4qjAJ7uO9wsq50N8yLXBcpUzgFaotd/uU2N/1do0SfpyzaXF30tX9jUDALxqFe9+2HJ4mEGiC+5VKl4irvd01/Pgdkd1RZDX8hQr5sVu1/fPTCRb3ECr9CbIDEap0F41IsX94z0qF683bNb9wav4WfFk21TsxDPtWfsKLIUBOZ92PtQDBfgN+o3glKRSP1S8VLkNJIlJ57/tfr17b0zg0ES/XnqTxGJuZAl+uvUXyLyNNT09/O2iW8R0kwbaGOFebCuVBOhX2IB8663W8XWTkrV0R82HanGHYcHpKQL3GmfTrrIUskB1ufeWwjNBynwbwNmcztGHTxxAAlJEXzeyOcAZfg5MxHpGXZzjNVcHiPw+dXNSDKDgZjz0ivDrjgY20Bllo2GptkW+3AqM/w4iGVc4foCDtMxGp4qsj+D4ZDwFmrP/5MxAuY7MwcRahoK/nDVOw0oQh45EdiRka+HfbiEIK6mLToX060iXV+JZWZEILwjjnNoGUBuqm7cMYpGdMJr50BAA/eS/yU/3sXAi1x7ZnTAIH+QZ89EnS7w7SeVgnWfiIknpOy2Ks+97WDnDmHqJ8/K3DjpT9gF4yIMjgFF/Eb33M0X9/NNg3uo6WCsX2FDtYwT7RL4/n2ycuqrVbywUXPsciA/rKqubxSmQzCPPZ0BOicFJoBC+TAq7TjHmkI/V28usRwqlA+FCqCjl1zxXeoFi/+fvNPrNfHTcd6YyFw38H4K9XkrlBt4sqHtCv9kIANQ/4eKPY0qWJs8n3fcoZ7beyf5xw2jT++3ncG3Mf5MehXmItqg+Mv41gcBtlWUIhnhv8L/MZCO7NPPQsy1ONCufjt7elKO2rkETTw5VyepNlY7k8gtO+e33I8kA0uaQPjblula8Hc10ZNXleBlhmtLaHpmsFQCunvkqQka4LO3AHSGYF9GtC2bTpriDfn3HhhixtQSLA9abo4ynKXC+FCrhVGYEHwWUIQwKN+8hNp0nXq96FNlShikIv7fCMUejR2bNrsJFzX9i/c7UOanbTIuc90+frZU69QZbdYsGknbUh+tp6R0oyB3cFqe/xH60KBcfZDWlRaWT+uwMpkSzSTPtUe2Ij9jc7OkWeQiNZ9dwJrss5pFK4rz3foTk9oW8by5EE1L1JSEA70fUgoGhiKmdYwUWrNhrb+8fTRukGjmhBNdjKUaxe1KEPuVX3bpL1HAPaMdO7NloRGHMYQp/djjkliLXLVUddwn8XoUU40Z5NYxCLKDiN7MMLSxBPRL1z7P4d9PkonlTPnGLxZs6NrfGdCFMFBWN+HsdHYDAa8Tyd+W3LItECpi8pgnMqFsWrCmWlUtiU0LLDVwNVkv88RLRq/7Xhb6Bv0lp5d+hnRd6y5eCgxUyP272ifK6NOi8Nnsl28JYKECn/t5/omtvXzCpDB1ZPq2cEhYHJaG4ed/xewqQtQLS3Z0+iDP9GUR/U3VMnZpd2/f58rH3OZZLV2GxZff9sca1/VgK4X4LTxrIJsqipq2w5ouPsWWP8aUr2k5jfLf7oZNQmTFsrVnzQnHHk4YSzp57U52E+zaQM2xO7vRci7PTSrihB6dCAL1OFsvJguT7GRT0lV2cRG98TmV8uIQ+3khfZFnGehO+fIlxblacaFBkz8GTqF780aU4dsCuWhnHVtNpK+3JYdEQC8DHDXOXkRQjYgvZ1YtdPYX4WiYn+zY3uf8l/uTqmqUunbZyiwHmWmzBBNuTTBVyuywlixnS7AsWTZxl4U21jwYEROvZk3eFTtBtigIpi1sAPyHSO5eNkINEJhicK9yX63Fj7LdRWqHHj92i3OtkP0/ldpEmBSNOzP20m0d7IamMLKPcXgSXnC0Z+5vQ3HyzGRE4bgbgWdfCa5IPRSmx2n/RH7MITZjiYY9BC/9H2Q3NdGaGqmN0/rW7ssUSqUgzeCp70r2cg8S1rz0SrcbgXv8vmy4ke/MHORB7l7kkas4vaustgz+2m5OSdIWL+W59VvJJv85BXRkPyXjihqt5oeMdJaBt9wfGhu2jtDIaCQsjsz0rTc+dnu8AAQN/scQ7jBcZqZuvdlqjsS0j0pwsDb5kU/NBj7KCWUS6yxhh7UzC73rQL1BGtQHx56SCv9f/NsS9ojzefBEJf+6e3ydmSyN/KxeHJFF4P8RKyX/zCB8oz1DOF0qQ+il6qDn4fZ7SQXC8pV4lHYfKfwrfdmc0hJXq3WRCDi8fX+o6LD2beLmzT1kDJpCAVNhaGeg9MTlOhAckw4WQmjKD3Ustl1iMHvsD8vhogt1uZyaWlDeqq7lqrIc//8mBdhpTjjnvDWVOp84Io3A9wl/fN+DEkONL5nFV7INtLsiXKE8GqZQKpqJXO74cGtTdL+9FvsK7+WjCfilvRxpLgNyurgkTFIoKAVeZWgomP7Saxu0hYZUVRDsB+a5uq+msc3veYXwD2i9GmNsKIYdZ3ILzqyNwhaNuO1v1h88+KQnrLUgHxE2UHEFlkVuAHWDQHUWJP272r59cNiufPUjgnsF3S8Hmn10IaHVX+hHtqVwye/p0ou5bbP01dKxgZGzeNMvE1owgIz/o7MHemC4M+7ZqvYuDZk86qwY3wkvdgbKdr6rO56aV8afZ99XgFihzfGENsZfSf+dhjm9Ok4k80HsTsZn1cK0KrnFSYEKoGVl2fecTMmLwT/mlxQQhA04TeyVukJdAdLFmnDCemJr8tvcepXv1wCBUP+rcDXoHxp22YJf2Zta34Cgi5RhthRcfgnej22L+GXa4XjgBLxV/qR6sOnUmr7DpaUnQWvmtR7Ozf06nfkKsUwlKanHzmmezbKAp8eGdtsmpl2qcBcvKONZEHOM/D+/9TolxfW4V1umXg5owjzetiVkG/xx5hbhtO7R6chK2i9s6FsR2VwjHlGBNswt7+AeZhhzLwWZXMM9En7be6TiW316ZwVSjVQfRy297KPmsMzgGe3N+y8knxkxE9sQbX6YDBZAjCQJMlAmDpVQu3T3YPmQElN4UN34gU7MRn1C4e5Wu1MBeymsUyOMZXZJDkbFIuzGdkdUWyzpBwyK8JRC+FliJe05c1rKpZy082HgTCd8GUjccf/rnxBcnUmj1rvECFlWstckIg09C1jDfcrL5FmYPCb1fCn9kDuL4mDQTBQ6RntDrfRphWqLUqdzSvhG3UPvm92IskNk1sdp5D7uMDZrwvmpdIlwE2Vf21A3R3ySSKNsZ5Ez6LiXZbSa+d58hV1i1NkF9LEroRBpNpc7EYVd4E8Te347fG2RVz2F+GcXjqG2KqUynwj1Al3oYUz/dMpJlorl9tVa/u0zOvH1d+k4NPvzhpuzMULiYuoX3oewi9xhOsoK3g5cbAEOOo0/m9sUfCatPzYsVZvB4gy7wAgL0wU8K41A2+GySIcHa2M7UUDx/5ZohfuBgMCAPvAV6Tb1dky1CVxhsrzrFVoOYkCEqB5sR2IzUzORYHtESQwhaG+uV5bPrzXRgbT3M/K47/IL/KI5ecP/5rkUL6llTiEgzmnb2K2vWa8FywEh+dLwSRR87uB9+Cn1+qN/SIX6QsOGzDop10JilRzz4kLgbZdUK70el3q0PQ+9tYSBvHBcdI15Aq8n7sPc++lWmMyqB4X0NUSvvgfi1DWpT6wDOQJo9oujxoWgDGvevkGzT2EMjZh5wLy5BuunY+HzQyOmxO8K4L2S879PW+7QEWgMxliYES5wS2XB89+DxPehORRmCcvDWy0BmFKFPkKSiEsJaj0uLkuWrjGGWuCeHeD4YM+SHDm3tzTay7e7xgpCpcxu/flNleBDQ5VrwN08/AjQMt3XawjmnsAd1Ou58iw2Q88lPuf5dJRIcP47nWMVSUU+fFqUCylFR4Zb6z04YSliaXyMREoctyyP9NXUG1OkSa/Ar9laTbwB76dPlpnbnPIaRYrxshmdrd7e3T0emAanT+omcWafCfM5qvZ02GUOMoWMxsm92A55M2CRnEiDGM+FIp5MZSdl/5zJNZrJvpULu52rJrJnmhdFj0XNixiQXcES+e15IHrmD84ffn9s5GyM+Pg+5Q0lfQENAc4Z+KCiprhGwZk8SmikzeSaG6Yp5T49XtF5TAugR2s0Np332CDHWUgc7mD57hk/hICZinXacEcnohGaO/uR/S+lktRChttGa3PY6M1uaxtRl8ow2y/aUN0mWnPUSLejjfI1mpTmeOWA+JFumQzpCzhgr8pfOeBhpE8mR7q8jpJXf87Mehyt2Is8imx8Ev3ROuok81tmU7zlfHyyBqA2tQLjhf0tq3rB6+PrNQA9zWhC1xsL40AJ2A5gIDBD9n6a04qnsgCOBRpm63kjQ55Opk47ihHy8Nr0HGiYY7EIn4ad1v65rIG5m3xctG+1nioQ+HA7iX6O2zXSk3/953snfqMpP3rcYqqPRl3xwXgjatET5uHPWV7Mrb/0cHKePTtT14sn3wpNq9eTRVI/U2yHVwkEcNL2xjGUbDc9kEYyTBjmD9OT2sn0DUEAZLU6jCOJzE2eebHrDzWwLWrNLuypTwh4P3JI+5heq1vwmMUxUWXQI8huVzgvo8qTIJqBi0MZPFd9WvhsOvFDl7mQGqg15bAvV0UlC8N78YMFCSA99Nf2iHS6HmKc6y/tprTzwTHM3x8cx1uNTXXQlhcTf5Y9rrhSjtHBGyS2IEWWrAlWxo40WF8PGbP977xYw8UZ+rzaOrEDjmrFIZ61f30HiuUXA8QMJSn0pwNLVrrY6GyD/ly1ulILYU4a5vjVNp3CABdLjSLmYqFKZggMTRzLcMnhrPKfImheeSi5Iwy50ntt8PyBdDGlHt8JHWnNCKIGUAnYqGxSKv5jrLw3Wny3PGMeAEiU6Yt4uFCeQWm7eXmOSzAfWUC+wCjScOgoB1cIK5caI1SlKkZWmlAVpaLyUJlJ74xHpOpKN8OfR8seKi2sj7ytHr5WvUSjQCrG+VotwBzUQhyAVjJm1oL6iWd6Ai4oUw0+zCivNY5pRaalKOKBHq5O8kL2JC5ZIKwsmanXg2cEVvk0jS4sciIl/fEJ4H4Yd94LCm5+OkmLJVG5KG1eBn621pP+3DUPxECnKKHaP/JHFWJzhqozDO+ePO+4evY3ZfNeQJzikMFy2qX4Ntv+ep/4ttENG101JzVt3YzMyw9YY5ffwoKnxUziEbsAG29ZEAhqu8HhsdHYFNAj4OKrdR2HtIf9+2cwoslsm1YVOwo2r9qRxm7AtcJGjjYMabWYENxENupimsK0t8leAQdl7XTAWHhz3gPGa7Orf5BBo+abVJZye1XIZtBbyjSeTNYNQ0B5AWloFoXOn6GGQn8NI/NBDpjhr2OGQzFKkt0py4GUTAOcEjZGeVJj8pRwWUJuCpEkqlKmzAavFnAgcZEjxFYBB/5puQ1yyqy/SARIJOs4ZkddjAQ0hdazCV5Lgfn13J6Xi3iM9YEACb0yErNiC3wLAVmiEF6hx1YqxYgqhTlGVRN0wJox/ftpqUJ6hdFQTVSlK+c3U2qFbERc7oxyVPIYVZkNwP0oev08EukznZuJbiBFP/Go+hIkzDAkBh20H1MejaXuQxYX6Z5SOeXSuLNuX0Guz4Or6/A2A7VababX2LVJ9MajSUdH8kgODa3GrKbU2Ax1BHW/IWl+DJKLsPLoMEuhGXZKDxynYNOxMjoPYcWaKFOXHgN38KK6O6IlQn22fg9DWfWp6pNyH0lRlYr/tc+FibhwkOTPht2ta4tMTgOnnwrDEgmu4vhlgHWIDc4uv0UKSP9JXshbTHvL8l7RY4kLooe3xWBVrwL7uXHuklgiOSQqihb32YPyIwZOCo0iOEtiSf5rYomZ2/3JTiRzvE+AJba4zjvkWdqQqFLrwLMtuN1tORL/+VB80VV4+uYWvYTZrTsbeqYtbgIfso5TQ/sEuwuU3m8W96KtOWLvy/F8Vxdcr7ld1ftYO0styClCCHfyc/m5o1DeiwfFPM22XVxN739YL9EvUIFWoFYXR0iqNrTfTgw1QGugaH48xTjzvsXAf/HRBmgzFMl+ZBH5zcI+Uxd9jTRrrD0ajKMVuDbxjHTUxAdgDSorgqHPSUjHyqqyO3AwAEgY91OldkH8WqN1kMGUVL/5hAAMiB3IrsTJEtJz9BEMVFYteI2aaKTjuTYV0IJwR41x10hRgmuKkkdFecVyXmlN7oPzipqAlRz/77fpD9+dX9y3/yfO2k8gRQISpcDThyvDMXTPeedStcV9Ff3t3TLsaoWXpXCTwHLHy20fMuyJWBrhTesGiWUzIGMQz5j7KO/CattOm105J5+Vd83JdrtANehZmXJO5uIBy/PYLb9CM1u5eeOmjd3m8ie7RTcNKDcPuHjy3Xf9VTr3RWEQu/9goyEYOoZWWYhiodjV0PDiYg0096zgLFlK7q+f4EG8/oXQaf98u34j3A01R0OoELrFd8N83Ae76Pq1XVulhfysrTeL1AJGXa9ARmZYFytsyA+SvPll5ZvrB5vW5YoUHDvi3swMhexD0mzppdjVn8+UE6/K1SO21a8C1mCb1mTvwKxrSPMh582vWDSDNnP1NmbeM8lP/EkaFds78N64mznqgqLmBgfNsf4JO1DwnuYRw/e47O9DxntIkARh8Ch/Zp5TXKNwNVpFHnh+WBNWxEkGoMznhuPcmckqSn9C7nh5QJCA+8USf7Kiz2AwFJLFPorEgI3ErW4nDVelMIZI4nBzHCDNAE7Z1BRqB8AIIMXeQ1SFl9jVfRT1UwcIuN5RCj8A5BTV1TGoGTcxWTzyPP63wrLmuuTI5kbV2AyIALwttwXaTQ9p2WwAeGWIUcLklYEHIK9W1VWtblq87ri9FaY+H+eNYcaZt6A6UNcY5xhn/K3b5ZTr9E6F6+SfsStVjFzKa5eDSIavgsnR5tGJ7+IvSrRH1wZJHMVLM8zlqP3bteDztdnUUNrrV8Znz/fxWvT5inrn+XhasmzMYNxcV9ENPF2cn/gFXY7oF+C407VuYMzx6IUHgHaVl3ac35YL5zBiMfPwAHB8pjGNkBK+TGaONMZQC/4VIzYG/Tker24dGx98uDc9eoAXVnUCEAv95Vlx/W1jWcvVG51MdwaTrti3637Pxo3/mA73YI951DQMVG0qJ7sD+AhNDB/bBOlzabO1TFRrUsER+5EYFBLOrtPltpZ0IWpeVs8/ndmhiVJrl9jhLHeKHV0Ks2/SXKp9F7Ec9T/S0bVKCcUWIV1Kerk2BvAX9yvhdOLbh0NU8veOIodAqLY/bsQzl7qqOYOOnb21iOguNQxnpkBoAbOoEi7lR0q0bKKFh+QO3x6yCdYqwUgs0qnT1zP25jLR/YgD9ZGVinXJ4vhUgUWfVUYqODEeL0OU5/RLYqfGm+ruBVCnFKdVhito01IVAdf7UgRZF9QXGHyWqxczaUtLayJBRVtuEuKQTq9Np0nmtm0fBeUvkOBuOzKOsLtzx+quEq3z3Ig/6Ai33Rg8sxUOf1d8BAOvu//VyLHcd2QtXfszZnqdNDCZWWpjNxr07JZS+2R2wBl3BqZ4ljpYzYY5Bzo3J5q9M23mVdQkuhtmQszLIfMKEjXbymbazHxYzY30muJBc3Xt2PhYZyoov889sD10DNRXRXYDvdTb6Tcho//7NUhfAVktMw/G62hIceTY77kGwzdWqsY30mD43lTZ2vGqCx7Puo4iSzrveEqcdu2lUEGhxV57l4nmwXj37hIOv0A1l0ObtjTBpmRApcXxsDhEUhhxVTSn2xrHRiQGH0VMNhQGg33peRK/X5yACwLj5b5aSr8qmTszyTyGq58JVc0V+svZvenkjmUYZ2WRrdhvtD/cybO6exWBWvoMpZJgF7hX7nIpIlyZF9EgkQAG7MkUjz9GseKlly1bURBLdtU18gbTmeseMLpejc447tLJdTqf3j1w2ZH26BnJfUoW2LCOH46zfuoZ/lc6o9eb96viUWZ2TnUtINcoIGZonJlIM6OoimfNMIp1iDeU3NCrh8X//eEKzlGezkvV6lrGz2iIolardRGswIwasw5jYsf8dRZLoD4W8df+pc545/8X9gcWrZOTej5BK8DWLeuhQkfEctYz8DeCtg62vxIMUDAw9iH7Vu3EGasYNqcBTxg9ZYcL1VFspY4pqjhN/oe7ZeMW7i9/F12P5FoqHQAn0roGT8uZxiUQe1vPSGbEpeJ7B1R/cfpjSXd36Q3w5q67YD5c+uqku/t8Zg6Ys/nxP92mH5Z1paCxQIjEg50rVWr5FDJcYTSKmW9ZyCYR+HxgJzXEnnBACQ3xNALwUwQm+X2am99XeBRNeVjl3qnOMAx92tkCuSNqHp2bJj1EblUlxpxKi8Gb8GaU18sbQkRmGGaefi2//9sQveTnd/6nDZaDLqOTlB1Ae3casCl9T+rsokzg0BjIZLsd3qM0X1BnVK/7G2RFqyFA39o1cQvSZyhSZxguD7sMQIC3w94CGlQ2vlLJSnMFFIVVTZbRLW27i5EZQ5mGQ79OByN1Gaj1EJ9Atk0Vh2Gcfru5jbMN743oR5LsKMHY9dvqiLMlRhqUTPJWYKj7qcVo/zdbWawtPzs2xrjMGDsNBJTN0cvtL8QWqdRzlzdXTXBn79w/djJWVEy6sxqxIq9bbh+2NFL9v+D/6n4DFCTP616BcFbHpLOi0Mux3m9fC9QGVhfDWFAz/tEW+/KJjTk80Ip61Ukf4nTVyhIYbkN58tIv/+N4jcCYUWGwv2q3/31B7fHG49ojry67tCycV0d2xEK/CXD6/Wmg7M0qUH5Tx3WIUnJ5jCPASPxiKolmJ3kFRIX1acb4xOnvXU2a/nr0Szl0R3knSoDigbH1jP+I8ewRVYqcjDUcdoBe2ZpCwaY125qhO7v+pdBPNwpO27bmoAECdEvCJR5+0fpumV5ZOUycVNTRZgxEMgR3jXeyZSqvqQZeHsnjzPLHpDGcWo+rVKsxSY25jGR/mS0wEJQaXITQ9FcQAtxoNRO8xxIoAlmEqiwTsOsvQpFa0T0jwYApR3sPGtPQ7u/9V/gTK7ZfsEj9GmsoaB9mknmuff3Z8nrA3qVB/5Ep/4oG6h4+dUi1cfyCI7VlUxS8dT2DesbZ75pq4ImjLNIaIIhX8FH+aVUMXFAUN8VdQddl0+XPQN6mMbuPeo2sb5/Snmi8b0qzmwmVHZZK0pgxSbUaV6nWx3DSWKs/j5MML68xObzZ1DvGuxl6fcTYVtQRHiaurNR/yuaqQJ6ozglCWWfXVSTJACDAeDA/SK+9UK+p/7ZeW684e7xdmwlnnOLb5SJgDj6CIgmajDpVKq3VkB/kv87g/6HaADKZgNDYjVWMAlZIZIZhYtgExTyA3CAw05fD3hsctiY/3SRaw41w5wlaYt4QuzDbD6QCvCw3oGmQRWwv74gm4ipxprl5X0ktfZ2txHTKR+glKf/ZI2bmw2R0C0DY6rWNs02ukL/mvK643++GotxujdPmR0rHqhhVF4GLY4yx2sbw+4Uj078nTLfSIXii5p1p/wbe+s83mZWypTMvmROFtc6wZdnnxPFTVaWCrglHe5ZHOYP0IPAGdoe4Gac2am8RKe4dVEZfJV0zGijPJAhrLM39D7ABHuWZcQ4OmPmB83lSBiEjvWa9+1bXa80SZymb+Vq9PyU/sCSwuCX2UNxh9uGkuEOZFy3Lxy35P5vS9hYjDhTkUnnsQFmc1yeWFPcUmxbSbrxcaeADTUP4Q32HARvA9nCWVcT/jfbv1G+886h2GeE8+kyCZSbBzssIt7OReU8pzrlgTw0hyikKSjli6BTW5Zxieb1d6wMDHtvHkFBZ1C0P54cfMlkSKqMf6IwPjhE/AZ6IY4LjO4H108dE3YYRjWHhyntK5Zn7fPKf/HpLOoKbPKDOLIBkt3ZkGAUrghVGA1mQ7AKlGtLxM2BV27jFkKZudg6wAb6Gbv00uv0TaJqzr4jK4TA2fds5J50LTsetZHA4VFHKn+2srE0GAsdvGLKGheEk95h2KbvWmHKSuZiNfsoISPb6drnxX8q/FMbt5ZDsCOUbkpnULeHGDRz20q63WCkWdukklnvhUIKbNB5SiIfjYoqMp6XTBca4GCIcUjgrPW/KFEkkhu6T4b/jf39PnAfO+75bkeettsECfz4GKwg64usYcXPnaIE/gMYJglGpkigMwyfTfx0+IMCbWHg4uw35vejlg+i394g7xSZuj5tLbznX3qXDLun6Xm3egvMKCJMIpKO8tXvnEPltHo7Du7g7r2qv5cI2fA6q1duZ3OCUBy2vu/wrKn+5jbG55yBMw1zqil/2tInU12jucbirZWXW8tbZOdUp139fzCoPVlyLgORdg8ezTWZTjHgIM7qQa7lytEE68y3dMe4pRwOeG74yIpf3Z8a45QtSAcfcm8OtcbD30JXNaxfD8mKDEO64vddAwB4drPTzvZUMsnXVGzgbdArdds72hXq/PdVjWYysfCC/iFH038bmzxRvVSwV1ygIOGObtcBzm2MAoYdcy6mNn+cUP73CuUJREPQP5Qz5HyqGTe8uxq5HAGF/pFEmX2Qpt+SL5t4VmBHPoAEo3E3aoGNCwerZ4D1f8NgxYAyPZb11j+FnbiuKMNtmo8/I/3B1cfNug9meeM5/F9h0Kv2IycHSZI11eF4MLF4TRYFMY0RXalD8cdaif4Ym4MWmaokxS2K9ephnJc1ZaR73WK4wxmQqr9pQd/tpZEJB4Fr4sR8c1iHApC+ouXHt6CvyP1y2RnujyQPJA66f/Asc+e7lVe/IrkPJQ8kUhUgivdmo+qQch4Nz2df+u+XecuiVQ1dSRdRrQKSTRRloBVw+wnjH/kO2nEnNzXAXradDQQ/4i67eChNVF5QqS6JTw+QD/WiJ1GDo5ulHlxSnqJBRN5I/2NByNEsV3MocEFfZuKpvhdntwI0MCCfGOJ8TiiB6gkj5txpZThZobMH+5XTqZpFZb1MwnzJGMSvlry6f74y6JGyPunKedEvuHGAGvT3sdwYq4LdcB18qN/TBevqkUy8eAXDnX37h/JL4uiJxO/ytirRbGR2MjsjDFFFNdy0g8oEPuK0G4YWmvJ1QkHEuSvW1nVCHC/ddI//DxbiufJ+wjBUrFSsTV3DDmcurO3/MAXO6K9DUaALR9QwfQ3ATJ3/P2eneSU1N5fdbxg033dheBCHbcReJi5bMcfo9VchlZ3C/FH4EGMmz7HjHp+LnRTp18FmCgGM7siV5iA2RhRucGZHnXTva7bshed07mq2ApLiqyCv/vZ/+vigp1/K+YOynE+VJxQvgdjlBE6CcOaOImPw9Z73H5R/0OOPe4WArKAvfXKAluf96AMbRWas5cpluPWMVmZJgSd6WF2CUW/uLWi6QvLsuIscrfgjYDnsRLaACEBsPEdBHfwpNbYgvdabp7gxWSTFv5WGYeIOy3wNyicyWygnMoqSc+NFdZciM7ZIVNNLq6mZRcmR55f5P92Lw5FSccYk3auK10MzGlZYl9ksDkrkiGH4oGXeLu97iU1KcHAfdbYwXYT8ebXOHOweEXHizLteKyU3dU/68soXF9nhPy/8XGZa6NCt3T8uSINvWcpiRipZ3F/r+uT+HWRvvTGalu5LjN9GYBEELt4QGMdylg4NJp5aKjCz648ePfTqjUAlmG43bL6zgKe8pUStQGemenzWbd4faLqb06TeWhch+LAE2wL0f94SNnubszQOhdvMp80FzqYU0fmSUrepmQpoIfBKFjeGQaKqHZ9dSccOaJtJ0Vq11VXzsBjAmW5fciz7RMH162LcsiT9R116Ia+ASsZa+jSeGNBVFI2nUa4hbCvIFvXchIsgYba4GxBQw6Y/idzx/SMi2ySt3m0ILlflA8HHPyNEFWjVQCAZlWTy9LqbEZ/zkC4tFbj154cDeUwsb6KvIMFtblQeDWVLC6z5sJD0bIdPItmWNZ+vxSDUuALed7ROTKPbDkgJ1lBgnZvKL5BZ3hNgnFRegIkTVm6SAIv+Ad79DM2HtwVIx0dcnpFrqV7zgrm3HZL1L8TqmG0SXobnpgFNh9sIR+WTzgOqTO+3TuJsWnIzBIadIqweIL6a1iSDNq1+QNBAxOjDWuv2p9SE62wXGFjMC2HFPTjpZN/6fDHl36EROejrip7Ovil5mfQqIAe0eNfalHyYDQxNHxogy/EQYAhCKRgOhGIKfKCM+FcuRJhGZcrGmXInowVsrs5CBRgsZVhQfj6d1SMkr8dmh9bzczLojBzNrAN26jdxcZcOxI5kreLqYTLK6tZ2khlNMFWZm6ZfT18T2VvL2YGZyU7O0FvTJkl+wNrE5RQanlpZSeoq8ucU/mFZaEmNmvTccT6fj4j2REZthuhSupwEhdAkFruM1uFu7Cog9PzuiQFNEId4LFE5ORxen/f6oKeSS3UAL8S9vH6zJYEd18gMGiRXryPf3dpZ8KGEUaVjlOoxBaMGwIDLoL+xiRwrUGnANZ+eRE8wD4LiYkBq59z6CF6qg6nfEIPCSEFlmRSWUKlStzBqiSKjm4vFk07pUlDn3EJSgREHgB9Lu3dK/aAGseRA+Lg6IwVMvRji/fX/p40hOL51dBuiXxwOXNFtCf3xcBYv4y+a1iLVz+dNxj9LMZcVXDoHfFq6v+37f3KsfUhrF5h5pgBUOBDrnp03qMMRG/yI9pkCAgRqWZ0rqvVdxC1XodMPqc78VMBzWvASD7Sfe3WxO9+TIrO7P4QMWVblx51V+5wnkceTo6/z9pn1TirlnKBc9ux7aRprcVj5W3zbNv57ZcKDhQEb39TxTctlj89LTS083vTK5r/HUGrqeY3e67TSpftk829J7R/xtoPPGOstPbxTlM+iQjpDLORbt1kqx5h2S0TAdwUKnVvFK6Y6xdSQ7t6KijOIqNH5wCD36v4eLU4YrJVq3Y0alymDRVWhDO0X4mDIU10h1slETLEajri6SgvpIsll9OrklvCQHwH6aNzIt9nb+elz/sirnT4b/maY6Z+jcRkNWPX3fY2qyK8OMFu9XMB1YQmlIo0X0f/b3iPMCVBOqH+m9TsJm/fVrVHwtOhrDBAys/+flvdRlWfQbjaCMnDvrdAxGBURsQOsaR/fkQXaCxV3B78MjYPXxyyHyHaxz8onvP9OtglNB8Q9H9uk8V9f1Pdv3tm6V/N8z5b/a3e132qGztz8i73v68JV1zvtbPgWGj2e7N18mYXtvazA00pvrfaxcGwqVkgEwpuBcV+j2elcX7o80xOGSV4j2e7A64mvReS+Edj/6wBgSjH0kZc7U74ZdM7WfXS4/m78EC4dsmTPTAdMy2BjPUR2Zzw/Cf6Z4nxYJ5jurppRoXO0oPUrnNLuQ9H34p2VW77is0OMddp173ThCGQm4lb6UhPFTEDeIq3let0HjAZ3q4iy6zOQiPCsNZIkmgp2FcT/6b/57eg+dMH2RmKD2WWyMHtr760LOWxE0LjXFqHpdjC4xQaPsNJugiyI2DYcoW4yxcxR4z59hT9zXFvplP0waTjX7x6jd7dGMKM17h3Ju0cJrSaAcVPfMWgG6Vu4MM6WUe1c/bFyYFenSlJEVJkTl6xkuZVXFqVV6WU0s5qkdKsD8wzYgDiAsDBof4+1XEmi1tdWjQlaVSYh9cPYqCo2cOjcPhRzVtYQSVsB8eDN4bbSgJE98TMvVyRz4M3gYRvLvLl+74fwFCgvtfBglKkYnu3v9fmPEgp3XVk8mbji+g5QH4GRoUpi+Iz1F+YhtvCoST6fk448tXgt7fAIocRLZ2qJSITUvQBnav4JEIr//EYshWZJ4m9VuQY0lXigoTJ88TiuV6cgCvgsTgTkYLLBfqAkS+Z0SkwOVCoAikt7DTqwonV+HHWaHh87VpAFxr5EoM54AGWq2+5SfoOyLvKGMIjFCyoUiSKXEFqPrnEnlN2cirk9CxBGcUoOtUKiJCbUxSOBaEE2bMBZGuS9mp+9PctMD3h23x1dVRD21TperJhbz1776BOe68CItskwqxyX01mqqRlNJ1VgwNVIOMiY02+ksC3BxGMTM40AtdzVoMkkD/QFjYfNh5ub98HVfv4e4MFfdNRg8JWdt17QsomBAbCE/StFS1t0b8sqjFoXCqMC2KG+jcmHaykxIuu+InJvGdm4rTqnV8YcYdeEeeDH/QU9RLdvpYsl595UwhySdB3fOFFN4nHtymA2cwXa391/jCi1khr4gyuOjQhUmPMUH6b0CYJDPrbHgmHcQ1lSpV4crqCjjS9VlKXxNG32ECWsd8hIoaqo0+MDjivbNSGwG7Poo+Mv/gGucY3w+9tD+vRTs3g3DyDAdqXdZwYzGspbEA1aemePycHVSD04NiYi0+NgxFXbgWprQrpaZ/cFSvU+rk1ZU/UlsJk+EFq3+U4vHrYxZyrFnVQZtY5LOSRaj2oeJyU02ipRlLxmFCmsl8DKxLkSU6XwslhvYqLg2B/9eGkk1co4FpTJNhiqf3+UY4vX7UAqt/e+jhBbSFTcvzQoNSAniu6D3Wo4G+E22GH3yIhCIpKGuqZEmXoxfLqLdQdoypF5X/c0GxvqCJNJG6hQo2/k8NxnTC/5ErHGKi6rYFhdVzrubBLORf7/4b7DJqhn+19D4WiYD4dqWTFH88jnRa4pqUPHKGiLl7Ls5+FxRWZ9dnHZ+GTIfMTPlCxRUk77R9wwKpuIiIPbHqcahD7Lo05dgH6yz30BS/PJJR/w/T8ggG4v/wG9cPXO3bmPhR2CKZlUIvOj+9nI0b1qkCcsFFV2HFVXd/j+MH63sE0mWdt/IfJ2D+cf9j7+CycWmJSIiW2hhMmwFlTwVulKoNeHINwGBGlKcXy1i5CPl6a9u7fThJkzR/ghbEq5XwC1dTwtS1TwP4g69xpQb61TpVR/xOPPcdMNOF4LjeEauDvb+bAL84iIM7/8AyHzlygUu0jtTQ+aqPOi/C3yCm7orXmFArzZaDXjtX8InMcwA2vWX+bVho/dnYvpofVmV+nYElci38qRSA1+Ih6huZYtM5aRROjuzLzF1osDrmyAIlzEnhqxMWJBl0Ygr8k5iYCLYbYzMyufjIao1UUFMKzjMluJrdbZyukxWQdfbCTVpmiSX6J4LNh6ck+CwLd/1f4TSblYK77kSSkvAPljeM4Rr6ETqLzrtC4coVDoaKvaeyeX/K8xV+cJl7KBf3AHT6xsgFikpZgjzEFqzDRDt7QV9R9PxXnmwThHB8CxF69XtwiYyj5cg//un3Jco3G7GSmhMEGyEI261M8dZ9pgdCChroTwCJxhyWS1lQCxvTAgWw4B4AzHRYuVN1SIHuZproAilduwBEgo17P7+wfaApX2eHLzTLGlF2WctmrcgRHReMmMECmfxNTeU3iMw5dprKzUuTaWnMB991JlHVtplQokWL4buappNgCUmXcIKOCY+X6IZGn933w4u2CX1YRWtjY1jQ3adz6j/z3mcsWLpKE0UBABAQXppmHHIT35AHm+W/RHqY0mtqHqTuLCCbXRR5PzLiPxYzww6zBT6gS2y4i67B3lSVJlQKx6Wufs2gKVX2EUCUVkghVVKzzQhrb9RxIqqmB4ffhJmCwR9KvD2Z5pRacuPxC5CJP4ofL1j1FztBgF289ABsE73lFHo/OTCKkRW6Fn3kDJg5/nUUqXB9TDwmhUPRSOTdMco+akRZjHC4Fnulg7fXJaLxL386QEDIoFUCa1BmlIeJEl0sAjPQolrZC4IWWTGhhOymWg0j1ZdhF3GAwLRy8kFK+5F2qPBoox4mU1nMUV9AVN8SFUT+EQE6TdICQL246TfBcznCk459E99iB4vYOpgX3voKcR/p20bM0593uVACW2TirTOVPyOv7DLGXC+bx2eInj+ct858qFo99pvHrFsqA/7dsHKNFpwBzOk5zGJYVEhgpLuPAmVe9XYF6TXDsO6mruhNl7D4d/+fTY+ZSmuAri+QDjmFUVPk9tNmuF/bbywhsnAuJ9EaGK+E7uC6QSHskCr+5effPXYOoBgpzcoznYFuHqJh8DXQmMSNaH0iALLX0d+evVZCvXtmxyaWBdxec3xy2N+iTerIgxkEe5tLl7KJeTHob1oz1tSkBN0UBdQZ/xHGAPpACWELgDO4ZY7cuSsEVj+QG8mSiZ2hkyMAixyNj8ouIGfv1IUXVJD3/fHlZLA15ZU4JVcMx+1rLrme1RzSW4lq3cXt8RJ9XLuy4CfuLL3DA337tp1xPHts+5V4TEP7zzC6rQuGaLyRvP2wyyAPY+SgQDj7WP1+8soWpAUbeCfWsma8svZClDMzly/FTnKnT+m28ReXgEDqZaE5LmYh8IB0NLVwiGHWn8QNqUq8ERBQfr0CRcMQaqlCPkODAXqYLCK/TxNgKiSOBSFH+mf0d1BbjvqwiJ/+OcHHfXm4VeSxOzI/1z/PWFdclo+DWDsU/UegKGChuGrP+Q5jfTFZEW/3tnLs9pq0vyeI4qGO+EWhkh0rK/EtA4OevvrPwRSs5awna0R+C58v5xYlA8NQuZfnXl8p3biWxJ8/ZHnCHTPo9oNFxVBTZt/bVMDYC8d7YcFioIG0Yrmoj2oYhE7jUBo2+JQSFvR6ufZlhLNXvi8A3T3VCiM8G4o6t9Njhn9u11lu537ITnsr/C845EzGf+7EoJ5dXZt6X1pTNdVlFP+C5gUtoGsWz/r8n4GvhVlhwlr/fEqr7xcJNrvh/pxAOLmSC6bb2/od2oryfEDE5GNQ9JwkKZWZE4QZ+sl+ZWsiJ4vhAN9fhyTbNaIvZS1HHy1yGykEBkfjl7YMLXcrmlYRVMWzT61y0E2ph0aKhibYuwcHCNot27sMnb5jv48RfTfhMGK0lcOfAz9VcSgS8FW0qjtDSt198jF7kyjySsWyseX5/A21XHobRmagyHtzajsoI1qK7mC7ska+lZeaucRXO9CCB43BHlLcIsc3rYHYXev0TgTce1LU5GsRaL3lT/N7949j4zbsrECD/ct2vgf6nJkCBMEG4hstPdCmCK9/0lP/J/ZQ7Xa3Wp1UGsBNPUNNKwfm+ZZBkQff9sjD/zvEQ6G1G5iCywM9ksIcGvZA6EXog4qxBLvdw+e3XqIYkBcpQGsoqVszNhgSBZQIzID/RDYNtUdVB7MNgPCFKzfUCC2cepRHKdyiAI8ZCq0NpoacRSQ44KNLiH9cXuVJ/sZX58fmGmtIugBCW+8aYOQaDhZbCKPAzDoeCgddnfRN3sFz6ylOCGH3LhnA1U8h4DJoENA95ehg0Ou31+EtoD8Am6ly8WucgvrCsXiAslEPt3MFpige91NTJBKnCx0idiVLpewMiRoBAlZaeLbFLaFTz61FWmXpSZ/FuAMn6thNHYlle3O34XV9b0IcAPrEQaBAK1bGu8aR60c6j+vtipZ9YrU18rlUrWOuK6c+fxjieJaJGI9JBQyilc1rD4Zskq1iNWEgtmux8RXmpT7D/hB5tBmQYtiTBhD8F0dZ/O+NWMme+mlaE7U+ql8MqSxxUnWBFhYuZSFpk2036iBIKeWJhQU0tjiFixf2rCjpim/t762dXNbsaaje3d7oPDjJ52AG0BmsXNxVAQubZ8w21ZZBmavry7uGmzLlgCFlfnGlAqBPOAjYszxg3p2XahcGJREjPxkU+/4//6kxEVcKlLinlK0r7YiJePqLWJyNTmVs/qr7bHMCRuXlAeh/Eenfy0r8oUfLH+XE6iWlbP+v7E6AUBbBBQFEW0Vulj4lwgi2FsdlCWY4+gJpjg5a+Wy+Q39i//31OE1YXqk38GUgKkKxnW6SF1TabjeKK6Ibbk54wBzyQDKLdhF4JwsuLMW2GK31q+pRzPM3w7YDXCvyzdwD1cH0Ls42Pt+JuI7OID4Og+Ud73aCZHPYlUrdvlcenQK8l7kFWzNj5ESTnFGREJQBwA+5M//sE25vIo3W3EvTgOm5O5anvXuTZg3er4m7F+v0Kmofu2OChLkg7M8ONKVcLVmK2Naiufsl6JUL2avGiB24qtT5uWNsjIbebS+ZvTg75Gw1S8gIFBNNnhybJmVMk2cc/ArWBtLrB8b9xu+MWyrgNwSqB8gQKs9XdxGB3EK6uTP1ZD4Bltbn/HFPIfnArPor4WU58Ey3lYhKFD46RQN3tp2WDzLAvB9wOHKvuTKUyUGoUTXPz/wumO1i3GLxufq03zy7QVMiplIE2hVHL5GIhpymOk/wWMfEqbqESN2t6oTA3/OtosrSwEzw685LhDx+tx7mkdZ+QyKiUAXaFRswUfREM5vruo6zRZqDQaDLXbqD0qBBIdafIrH7YPhV83nceUGq5X4XN43VFaL3PiqhJvZS6UdZmxf/BUfDn7cg0WeJIK+pgA0IcMpCQXpbsQKOl6GJyvS4tbCZKzUoz8Lf2VR9Igqex4lAAQR6DnMR02R9LHl8/AwQaNsxUEZg6bQKFiqtX+fsSaC+kvDj4bMppiCFeWRwCgH7QyOxpENOyrjOrj0/y3CK6ui+Vz3nZMLvcQ2k0mqo7FlJrOc52lXZZmOhA0JA7RfsVSldWGvt8tJ/0PV4RUolQDBXIOAewWUHEHYAD28IgdvrEzESivbXBQrMa9W8PO6UPou1zrBXG7CKgFCOHoh98rH+cqyxzi0Ihdvip873GQrIa8++OfmMPpa0rKEi4KwwaUISLnEvfK3j/B0O1fqVTuIcs8OKlUKRpSRCVwqeYhJdGJYBaNO4MqEEb1T6a8eQtgnfNYuT+bROEgKz05AFTrJxCjKCwZK+R0bbtT3/x5DlLBlPpOFZG9WeIQWteWiwdvsu52i8rLTFdFATXm0XssYFtV8IlDN09ANO57xTBLtq+YH6nb1f2qzmp12WhRGXr9O07y8+5W24phmZZiNeTFc0Jj7nsXY8vqcswZv3/LA/4M2LUgJI2pkv0S+Ji24yyQskZ1R/fjsn7Zcsm/qtP9iIBd5tYf5Rw/9dESnXLBuO8O99TeKSL0aH57Rtn4vFyp4uVEjFISVCoFLomKWa+TR0KgyZ6QuXF7e6rFUxx8XXg/XjqcrVnxJkrDsPPKd+eFZcp1eawk1eKormm0ql+JQiZP9E1tnmh6IP1E+TP4JX2DZ0cmvW+Cny1+X6uR81cF+lkuNIgXh9ETjU8y8XCvSgjXfCOmXqqLoUsuwn+FcSMt9ujpcGR37ul1I2+cgPBY55GrTJtTUy3nyN4WHKuAZTsX+GytcIl/T3/N4vN6mi+8JkwA8Q+Ml8aGITvmwUZSC7z7zj++/o2FHghAkdOnryEr73dMCx8k6MVUqYRTxE4u55f/z+chf8hrS8OBPJPpEbP+LjF/6P6j0KyeqeXVMw6yK6P4KwbjL6keD/aBIroK/bLWCyAAPaL49pACn0+EgYfuunYdMdieTtk+IGX5Rq2ojE0yexQDtE+3m9cd32EDjhRBQFndjf0n+h/25OmuH2PiL9oSfS2SgUnIn35bQI9qRpjUe4bglXIaO5ZGittRB6Xeei6FcyNsmTEN377GGLsroW68fGo3xEvBXrOqs4v3hPh0yL/HJs3uml4+7R1G46/JPUHs/5hz/1QWiQkJj5u1Y/7J7SqaoG39k7Cuo0Djom6oepHWk/Ygkp8FfJmtUbUEwfQ8e22MCjwy5m6bO82KfXwHDa/wP/cty+YrFaJKfDpR9VJ/2JFBeI0mMzzmGRns3VlXBjKtyC1ogJ9NQ/s4RgDXQAUC9z561hB7EHskf3lzmzWCswxhufTV1vjkno+lXGWGuzR4oqFA/FJIrSwqGjtXfbIsyOto7uv2MOGRSwsQxFUPw5BsAv7l4xNrziNiP1iL1XVMR1YIM0DxFtGADgZxhpixezbQgxTSXPhY1SLlf6xdW+/oiJfOBf6qzOIIUADhOoBpfFMolT3QKpbsKksMRMeeaojdkd+39Q2wB2caxOWwa+q9ASBYNjTTjMUv9963E/iUyOmJZmrYxtpFGpvGcDfDPzAFy/9tzlA6RYuoaRvf6Yyth9h6B33C3BFhOpEZkWDDnTKuJYhS/Q07QT2rPSPYQfaZytIaSVkus+xaHbzJNsGG8wc3nYqNY09GRNCRfEzcmppPpOCQc2OJv9fZvsbGv/VOb2MiHsBxORkXi/Jo4DZsRb12GsB1nwao8wwBwQ54a+W2GQXzezyx6V5CpZINL/g2x9d9rTRYmTtKnfk23/illsaV01H81eHN9dQkj0Fn8Y3Qr80QQ/WfAxhh8lqetFGhfFz/x/fcNGzYBgjDvv/pGmL7HhITyeA/+068NCmpovP+Chw/184+dPdvbGx7R1DQ7G8vzwz7/OD7+/Dn2dgub8HRVwbA9JhjTerKiEgNmoG0H9yd5bQE719Mzu3kzxG6PuD6CzAmzvVtz/6s3H23ecu0yfc4/sqeTX9tMBmIfu3bzLKSuYbahsbExBx5zqNSQ2HcBaxpErWoIxbTwCQ5UEQt4h0czcXCEaK8NJVBxaFLmsJgk4E/WQGa+N2BZc3BywNAh7kMqRkoznA0Ps8Lws2FHMawt3UJtwZin814cy/eM6oR9IRlw62PdDDyn2xV1AzChqMcuDPO6OBLeA+xKmI8Bc/9cv/wPxovgg3EIuISl/UMRS9/9jNpr0fHttgv+VGDQzmQmIsHFQYGLZVWxBKGAUJx3wq3pOq+JmJHW2LOz87Hgz1xwl8N61LtBU+ftoGvC7S5WRoPLEiikJBKr4extjcT52aMeBRX00GFl1ABqwa0UlmoCIdMzAy7EM+RSRJlWdvmWyjNkGtl7hRCNQqFGsT3CsWkfoWR5/ovz7xpnI1MQFN0ZgY4WDe4OPL+JEc3pnsYJWBBR+/LMUNIjXXQsbiDsHHGtKwwoE2vQ1VDFdmVh+hQpQSO/JALuOTKP2irBVMyNqJfF3ojbA/wt3IyPQqFRH583ryaIV5df4V9eQP8Rdz1oY4LRE+VsN0AHEz+T5w/BDj/x+GVf0ekXNdae4IgtTMcEwD/e7GrqRbmjq+/QZkWObRRd2U9YzKgkWba0Axu2eFN4OqJYFiPtBGTeNNCuOCJ20el5MvSElSx5TWBWoMJ1IausF5pADViUsxeyOkVEFkNZq23+izn2HzLaYQ1WjkQjDeBr7M4N70Q8AV1N2vHFMq1sPfdcotUyYZTY7uG0fo0AteAlcqxdMfcpTvHqg2BoHvKUaq8WsZdbezU9g99ZEoeRduhchpfsko1l0FykZ3oWc6dJCAve8YzBvcSFKDSnI3Z0lO52Kt3Wk+YoW6pSv+iuHT47C9PvAIVaXEa0ossdQvEbBqZdczpIc1K1lHcyiDb7VB9ZDLSdTYpJgDRFcKOgUo6uvGZVzx45FeLbRHF2+2yTC6F6DWiKhm9MTlMKShQ9BMiNvKMY+GYwGqJlGtmWz96FfAQShSwWIUYg0chayQsIIFPNE5aJf+EABbgQaKcSzQKuFaF5F+Kt/qpSXM7DTUSikJQ3JLvLoEo5xzAE1tIocClbHqFabe7cXc1eIcTkpa5XVmX/pWXvlMItAzdVwa/9E5zuA5ZD2zK1ENSCs5/UaMq8TCt79IlXoxM/IHGBib9tKP3ut1PzQQ24Vn3y+p0ON0lKeem/kH5L7IZhTSLK0B8EgtUKYieSUiPU+QY49C+EtP2Uww46uEUj7fy1gHHVWBWx98+HmLBH0AbrwCNiP0JOdR17yiebVhMlqw0RoSr6X3Rn00dwZT+hLqq3gntqAAuG3/5Wm4ih2AIweqhap7NDddgAJcfoZMs9iEeikT+zOi32znHPPfQJhUb9KPDrHQMtAmwzdcNN9N8MsPs3DoovpcG2egNzb/WsFQWP4Z8U/jKB4yaR2byEElvJxX3mY3muYq1VoIeV2GnhAM0n04W8NViO2v2VyerdQC9+gO5GnGjT3/CE+vD+w2fodZlGVkXNvVcRH5DQPssARf9mRqFINNL0acxN6tM0Dd7tKDOULq8FtWAdZXVloqDexVCRFzx/gCufR06LIdckXRAuZ2GQFJZDpnOGk44YKVW21dbqt+RXglWFl3OFdEpMwp4bGhe1C9W+lhCnqNyvLW2nExgESOm7Vb0RirIdQabYkkbPBaUVCaRvUL9X6E3GTimP6xSRs0XuYnITrNQZMXcGyLSyeRGed2+CBSeePo0v4C1HugPDDKQB1IJTkijlXRHMcX0TNJAF0rM9NzMYZs5sALXgnFB6xyEm2IXOSRQngyS7SfwWAmpBiGA5qAFv5p24j13rPWAWeFulqnoL/BzaqjSbXKHAVjlyOwQ9haT9wIJBDXjFb03aLTMBtSD48ROYUWVa2Z4aXPMZiUay8XrKNBQK5ef0DtjPopkZhpFJHXDSv71teW6nfmtQCw5vtkx7fLdyHYT0CIz7Bkdq/Sx7x7sDWLehHV2aPSMc+Ae0b0Wg/6RpzsEWYEoQd9U9MJREmjplXdMXof0sCuZ70qQCfQRFPL61p9JC4tAxZ4wtRmjZSdovI2K8aRxWlNAL0Kw4/1wS9N0S9N0mQaKRk+OZ9GRfLZi6AolCnr4NasokOYXAHlffDldVBcaz2Sazkqq4yDpeWNWKe9a3U++octqyYtwS0r/9gizRhBUMjfabzDc3tyJMO4kHtafSPP9UzTBuFABrsBtffAr7fteDzjAZGAXNT852gI8BnX3Q9ZxcxZLOc9L4xHUuCzypnW0nD5N1tkAHOffMrHYnT8i1rsjAGplWtjHHct854WDuoIilTLdOu64mLCMOgRpwI8mbs/kzqAWxUMT52esuN5QuyapPOpxwKHsj+1ZUNRFMjHqbddhalledGt6ncqGHvp+y0jdN1U3pT1lZbwU1YG9wHSFUQ6hPhNJJD4z9iQ82AVdDEfl21gALzc3mKbpwTgVvBJz5Y4GngUQnwqqqFC7DyXCF2zOCQBtASoL1XDCMiyXmh0A+9dqIXJ/or3+3DoC0jU2IFKDk99JZAqTDGZqr6kWdkN7vpnE/K7AMtYMAJIhdEUy37bvpeGiwq4bd7OtePOAstN/3BoQLw9XXf58sNwywF/L6Y2kxy0ANOGhZ4DHvOI05Yu9n44sU+cOS+bnF0CQ2Mj2/EMFGcMqhOowAxhC8mgnZu80rnML+Zh2EpkMjwqnpkXA2oqXoSmHpYNTH4HfxKMbF1umMfltcbNNFMfJc/iAtDYwJjbqP+sVSdA2wdBu5xjHMsMD802HrLnb1MNO7qEaeKxCkS2fyXULiabaFDC/jy7beFkHGUqJh1JYkPA1FgRUUX+kIIxLqbrC5Aa8KN3f1vprHicZ0DS1njixX7PYDsJVBbJoNRq0WSzqwNhujnPjJ8HQw6msIuHlUw5Lv9y0OEzr1zSL3zeQ1yq/F/mm67hfdbAPPnUWnLEr2b9l7uVgGI4kdHpR/OvI93xephU3iJYQQ4Bewf4jqZrGLd7tYZqDhRVhOh6MtN3RuTcIBItOPMFR10SYMOiNlOIys7OQtXat3uYqdUBeD9axGiE4G67P1aTikwSilKlrSGeaCY5Y/FoKrqiDgDSfx0D27sDV7grvq6gIZouknPnYyCUyN0HBTidbNoJZV3BP2RgaHW944TAAmLxpHBEbqzOign2Qrax/vxiR5Iq82EHoBAijM+U6aLBb2VW5vAPd4Yv3g/BLKLMX21Q+/vhxPezX7ZGKN0TSypY6uCCvdWThhFKvdO/DG/beCvt/LBeWvNwu+a4s0s/aEBw1VVWPesPWm0VrOet20fSPoB43GCiZmEfdm8w3WpcsFcQu7BUmXe4DtLcpnpRCSAcPISvZDQAqXOkJLcmEMCBye7ipdoyvGdj7wz/KEWETLCu4IXfGzE0nEXUPULTtB4ArTFRy7hfygFcW0KXxhdpkBdUPmCNmMycMQ23JYu+3sfEeD+zmxeZBBgmgBO/DifWWwNlgxqaBqqcrqouFSfMKjFIWUedHWm8Yw0MuIUE4qS4Hu07ZVwRocBw01cxguBbdYlLkBYPZiA9vdZPqtsVwrATPpWhOOx/s4QbxPeGhPb3CiZ/i/eJ0nzBioH1T13rq6aU2IhJqAcFQ5UCWykOk2MKtsUqQPRObGCLvuhSfVTpbELrLBDJH9pNZ06CE1YpyTCEChuBlMNwHrSZOpuklqaZ1eF0a2Y9EB35s07Aojac0HcLXCSWV6zmMVJ/KiFLpXAzO2VZOZZToHZuEnNPS6hsycp1GmYwAcw8usW2ADXGSXWKdk+FSlinEog+JpeCqkcEUqI425AloHTWGnMqsgpQQynmJrI/dKBaACaAQGki7YUEWFcCAgbfpYr8HhMgYs+jXGdyDAJeTYkEZWIzs8lQ3r72vqaHFeDoQ37rBjLb7Dc8B9d00DH22q27vWbmpxFMVuT/SnDVVDMXwUuxiijxN/OEY02xBR9HzLO06vFBWEexdItYV4S2g4Jjwh1PjC0Xw0jcLy5aU9oLQvqgaKplFYNcsAkAHQj8jZVfGMhwqPFSe0aoKiaKSXbN++6cWuYz4Fmev/Bpm7LY2HUE/sptJ2r4eY4qUQoeGlsyMIy4HYr+g8R5EsIU/iCTMBlvq41oHOlYA6p9jSLWFo5M15vT0502Ratk9+Y3SOwtKdoicrETLBzWBjYcDan2z1NFJ09pNl7IndEdpiSOvRJCMvCdbvpCcz9TYwvBhRGeiwpfoKaYJUpC2kzE8d3jTWFAsX3RTKbNCZE0Dg3ztk7R0Mb9X6++Cwo0AcdHd1hbLem+CNlyjCyVH0LCgERb0K206l2augUfQoMiRD4oNfTqhXVldAd0PbxrB+3oFagcUnpWSuCO0Dhn6WLKZ7itw+YDCB5dxcMRIbm78Fk2LDQsbsBXuK9N4CzgtzZWCvAGfenjKzVyBZPocvYyijU6bpH3jJNetn4moCKj6s0D1lsiSQzjbinwpftUjK9x6XFtClPZWZA3j//cLlQkZEKo7XWt/eUlhcuUFVVrwX6yn0ER7AwWNSRZVtr0qldwczwpei9Xvg/72iiMv3UWmlR7Cw1EZVKKnDw31/wJBvRHaWKJImOPYP5QBBnMkFJSUH8QUgmmjf+EsweV6T4H9ABYX49gX74ptLXmuRslpMFSSHdtf2Tcec4+lYMpjWaaJ9mTiFMaMSbXHyFVSXxkbvP9RhQ0o87IXBD6XUwCyIComa9gEwI0Z549++DlbLzBPqejSig5HpkuTSnoX0zkn01JO97YSxRhWpJ5Al27lx90noS0Bn7ODE56wH/Pmh4jA4YR4T7z1jFwZ6Ro2kfFEBEc0M1EX4Cskxc6U7dH/8/yY+oGN3eJi14bxLiqgbps7s+DxVwGKEyoPR47mrIdo9ZfZwPosyXwCzt3NclKElLlE7vb62XXDmmM+fro4wdWg6xx6P8Gs1wsB2mGmH8WI40bRD3q5xrF2jFufroexqGOcqd8ApviMonXJyhct7EebppMx3Z9z1rXiWiEZAwMA3I20MZBcH9XyYhhW3R8A+nsoIJcYVQtmXAsXbPULZqYGidZmQu1rEsj+PEnBWO7NFlLhW1OHv6W5x3OxEeT+Zg5H71nPKyMO8anBx1Mi/1HXenG6ZlaJBjPdtNg4HB+k6dOS8TDp55Awc/9Ulhr9g+H5y51F4SZH5gyhrQ7fFh6gbiIZt5xRQwOJYKjeeB6aFBujXO/NTRaT5AqKdPsqlseYLfZtSwHbBijfztXYmdSB32p4CcRCjusdlnI6yz9K+lWrEuEWyFsFxNy4OuyD3Wq5U5ebQaM3axr6hvIxrI4awa+FSFztCq5ecjyOlwYkTaLnDqTN0VeGbfc9TO5BpCLSbzCA07RFt5Oopu4DJFHbE2rejhEsVNeT1lsE8ZayQsfNqblmMaQWGNmlB+RvFMtxgxvGqeZBcIUSaGCZqc7z7ui0LYynYfiz651FSVMrx10aMPHisaVTIj1Zi1vG3TqoAJmUYl5LuMzgcYcInPirem9LsVZJy/tJP49IaOSPH5cpYOaTAklqJNR/b27eTSUieROCYf2yy3m9ZEZ1RANavB2H1IlgepjwMw2BzZ1/jml6Oti7uSmt+E4ZuR1Tystrl1fVjaRBCzwBDuRIuj269ewBM9MNpXGg6acBbJbvhBp8qyqbNimGVF87UVNv3YBU4IlFI8clcwV5ULvWJlmGlRCmohrzV1R4xCfDT5leaUDl9yTF0TYepjnzLoPoV69gnsW5ZGDsqs9IJ5aTSqKX2uZ9R9Ok0U0IUyigjswish09KfNaApzG+FF0KGvDm2m5220cnyTKvwZ5RutWiFHTOB6uRvAIkGrnnQp6AVhqX9lj5CKnE0vkeZP9u4Wlz0dwgnqfpeRDrL5Bx2udvVy6Es6FuT1ExXOu+MYjLC9iol68IqhokmLHJOj7qRi1H6xlU5FBqDjqR8nIUIQuEOwZnn8iZ2A1OA4fKpV6qVKv/fFv4lQwc23+tE4lET8NcLsooETpCGL+xIrbMu1imjostHLffg54tQsj+TZSKVui0gh/9GwQ2B20hwgkxOZATIcp1gtEKI56oMlW+Hs2YmIAYSVOIpkibjJ3bphKThaQhRRNoYc7ROkO3yYyZJ9o3M0rk5kIc6hk20W62HK+q46H8N6+dW3yrmVKvmb79boCKVBryX0dTL76XkK58xd27gNpQXHW5/gfwMEEVFHmx6ao9KsNuHjZfGOED+MHvtd1UznuOVVMK51kudYovx9fhfkSCti2fUaYIJUoSoUWek5eLMA74BxyHOK+B3dPebT68ma2Q5R3hAbzC/XBgefFXsEh2ODtJ8DpbHo4eCRXYsj8zJwmGWcpec70dLkWrdLkIp7xz5JGojmiJCM6ZrcoXYwKO4BLj0kXOxUlG2ouwM5zpV0fSPGGSRAHzfDXRc3D2XDR7Fi66yNmvnlWJOt1LczV5mtCJPG3e0TBdHdNTVKvODhObSjddfMzJM7GHN/wN7vWpd1yKB6Zi4QWRlwdLwGeeWhSAwF/yejJ6cnAUpMUR/mM0UCizvIdcyGT4Mbfbg3cn8HBySBHNlHr+qKBSTU6SybVPk0qSPmliUa02FtNoozGtTIuyP5ESEaQkqXDnm/JYEtMKtKKaSb8RK98I3E8ya/1gF0a7iJ8eEY2aJlHVjxn2dVNPkLQYgq41007ov7SftNuNREMpChEowKp8BMXdSINMJuqRZhq8HeEPm0REjEbVoOdiXBn4mS6zf2GfQLhLXn+nedxa2h/fVh8xkQf7DhyUbx0NBw5sFrVR0/MKk5XJpuStX6Go3OBNnXfVEsqDEIph5e/1nnkjGn/CSMJODz8i6Ecj3YVqN+G08DjeB0t8tssiCcb/JH5HCwJOFtYOl40mlppDXkvbFRaGQSDHJcO1Ypohze1zIe5pMGHkHZALmguTzA+AsZe+/muRsyr91LCuHPPfI3dNlBQQRY1Ybey1ukJTkYZLacSK6kmtkEMlhQRiA04bS70Ku8hGHLEBmXpxdi+sEafVDJW08y65N4+8E9lZcAq/dkSWb2o0N46tt5wo/3nm8C5qbJO5yWQ8Puf93+q3lV7K64sMDxtdjWUkLX49FrrBJ8z7j1esAWbMBw4V4DrErxzlwuzNMypf2LHwUAgItcWtRQRQ0w+6hG4TMF7VDIx+zCkVLA6XQBdE1lIsobo5FsBRWUy7yRwasTbVAsxuNsgo6toFD2MF7bF2pjh2mwQKpgMh5OCzP/GWB54HaipSc3deX/Sj816AbbvBZdpgfP314pT8wvqqyj0cIb4RBkILVxiL5FA9iAlJYBYuVu8Pmj4e5MsP28qhbuPQtrNtW49Y1B1sWsxxjW9/v9y1sHCAbZ2aSBTaxN8Z4Iamjhbsd5vCFjMODbur2FpH6Lvv9C9NKHYJXz5y8RX1QdhfYFog02PiRF8oU3Let2Xz2y4B4ifmtq5obb2YAJhrbdva0jKuv7iTb67ARPbV2pfqtqY23JqpSts8St+pOGZSNcpaUQmz2WYzWz5+iDW5RLM4ZQ/Z5R+Rw24zmY8+KkLpF16p+EQpcdPS9ArhrACh7nGzAr2ZEJNUgCkl3XZUzuTCTXbhJrPkALvdBBNmbu0cFBxAYmLPhiIDy7rZaVCJ704U+uWj/XUGs6umu8tfpxORaJbyGM1KCnoMkGbxMq7N7190+F5LkrrkKcPxX/hspM3ygyADhBBwV7AbNZKTv75Eb7Fp4MWxHZ5qvypNJCk4RGds8iZt5EFG74+qHHYDI4PDadGp9oBPDqXXu5Q6t1u3+pYX0Nf6kCkyioQzkaT1POpXTNIBGu3qv2l7BBiBzu7daz9bMVybdFysuIU+1ERpG+nBUM84gQ5ofI16jcagFKnPgkyL2Zi2SWWkaWQfCu3HYGrQmJEoH+kxE/+USXxKIz22Mote5v18XKAX7AGXwZl67l35/FTkuL6IvprX2qOp3gOiUXidQa1SH1O7QUavEvlviT6XwbVzZrE1IoKWOD1OTZjB0NozAoptnCnJcfegfuq3Yu8sFU0u1vIvRR+l/8WkbmHtFvcctFX9n5U+7DH4dvK4VuRyfzypOYUYH7ConHoZ4tO+xuLR+BmxD8XUYsqTtubv5QfJ2DCeHR1etEaNxj6noarRdF+xLhUb5zQo7UohZs5B0HgLE7tgoJFk8VuMuqyHUZQPJFIhjngpQazXI8Ko+8976g1Wcof2n/c0GnlqGjpYhXp5zfJfLHjvB26t0NOPlEwggYwRFXtDX/VTEz3n6SC+fOLtLuf0A9PzxdPxyM8cfyykj9To8BuXiVtpTKqCQRNRGGjtL2qFTytSWVUxAp5pwFYjcrWVNzK+VZWqypLEPi2nUE7akoNOivJCyW98KEdvVneVjjBy52PLzgZGobfYcm8Xn6Wdrb5Hz/rRqFIvKc/3LDyrldjMTk7HB7pIY3WqZU658Miq7PvgGrYN7r72ntlsFy6Rzn8Kk38cfgkRWDV5xwaE24aOzrnuN1sh+caauaNZTE91v4NXwiFgyfGTlFXfKRrbCjlr6dDVKeNmnWmFFl6s1fdpZTUZkEzXOkeJ9Vox7Uww1FfGENcFl8uOnWml7qD7yWCk5Lw6pB61yTCY33PA/9vxcf38PoBrYEj8TmqUOxrfiSsAUw6UsbRbjBQKaiaXQswRXPc11urLxEDxav540JMLcSPPiQI6ertHtbR1peSbbAaHyWg08/MI1u6LRYpwyzcpyI+3sY0U0JGpG6U5Z98pgN4lAsAXuZi/cFaCN7WmFz6Ex75xhw1hd/hD54qv8zOpH0rdpQb60v62ZeWn25/T3pa5NnH0Y7IJcwzrnsTFGFsnniiWDNUzLg74ypqqAoJxonY258tCV6/MT1XYGTGakS7GQo6FFoTP1DsZU/TSzjfZxHRelGAhrMrDTXdko20M3O8rjlLQ90+rbYIYSw41/sOj5S67y4QsIeEyVkq+/PqhzSoV1opknIYU5h/Q2UXU0RbH8bfo7ncc81b2AKFXC/V2a0350CL7ZVHbYAoIMws0DkBe8pDYKuB2b8JN/xEG7cLPX4Kj3+4PhxhzHrL6LgMqspZy6UVmQzPBLFhLMAR3N0hX6/Hwvi3gfTsm7kAQXH36LuJ/G69NgnRj3HNU9KSHsC2enrQTrK6eAt2qEXEVAL/uuLi2QBfe4UtfG399LX1t/PGnXkX2oTGo0tt7xmDIpliDWSvTunGyLyUC3hJjRKzL5tGZwGNFq+W25lQamUwm+W9Xs3Hvwjpaw9IdYt815OuTq78bQ8g4hUqlULbBgb5qAENuNPjBdneYF+fRudzpbMyeB5rBN8r6h3a/gPfvuGMFGu87EBd3QK3jZk+rD++N01ugAQnoeQPELgybDrqvl1bRe0w9XXfjm8b/rYjxDLdgiuONNYMSZXOfT9WGhLRssw9er3KE8/+XxvE/Hcp/oluAxV4hX+pv1zfkO7KlsMQTsPna8iv0nd6MeSzj8VefuCVTDVfMpNTWe2+iGK/Dx1rbK5xo2+IGgftLvStOnH+eeF2ThHCMci/McSw0Z3e6i+AOt5vnvI7H/+VBc70sDubYhnOIV1UK1p8wnTj97l+bk7e1IBz49X7YHk6m6P3mN+0pssv6mX8AMk3KrOmo687Q8tlLWPsHB/th2lRCbH4EruxyDH7Pz5QWkbeMdMyzpakeqdi7TymbenjR+C6AzA4ye2h12B0g2BuBD+PUns2DFY3Pxu5PUfa36xst9lTRnN6Qo2Jibpm+s2k4NtxEh75dhyRxuZFR1/mMtua8eY41DrPxzO+MV+S2lZxL+O27+l34/I9r542panjAO3eo5s5zWcee6bN/wKxydP/tl+x3N2/0j1B6bh6e7PBIzpiUvBzN4TowNJiP71i4YcMuXKiLq7Wo9c5sb3zLfnUUFHL8PyEMoWHztsSFsMcWftueqy+d7rAL1vDS+Ng9HXwCa8g6NN2or13gfsan1yXbkqQpI/SY1Yf5/pKvKGYeD2/93o/i1tZuEA80a5tjxeZa839Go0ul0bikxrpPP+11W3NJvP5S9i7iiRcBzCX2H8DP/llLhspqtlDKxXmE5UwGeDVbiLSzBTKjiX3KodDZuE7D+eZaLmG0yj1TRCazBrxYi/5tTxa4xGRhzSsej2Zg4mdXCkZEKZUynSNuiQSqdFKTaGhHd86ezku4rxQB6L8RJbSznoNbw4RUtl4msyNsKYnocSIHM9zDw3FutOyyAxLNM2gMdqUeO/STQeC0Q/w6HViUm+a86yT9GNVV5rP7l8tYmrBfrvWFZepwUKEKBBeuZXZRSHVk0gwWqVvyO0/t2+XDKt04kWmecXvEQR8TKt3+NWbJsq0tMU78r4csOU3Bi4cWhOWmlJZbkcxemlqz8mW1929Xwjc1/7zH1vlZU4kMmqmc/aXByqXVoy3D01UGjdNbN6rV1Rqc4riKrLcHasZ0RZLWn6nJS/ybD7CKAYnHfGJMC+2qD9aXiQDD49ivOypdVEEhixJ3eVyacUyBoJ9TKOVaJ18vuSco0dyBTXxKkeuP+20OdglT/v71xduy7q7XPSsmOvTadED0PLeGT6g8T0BsgxOJ7rB7ubR6hi+t9dwaKzCrtB1rQF1BXXq4u4bxEMdR6hW20BqdYSn2h4ReF8TJbFCclfkIBQ4r7gg00slWTfyRDD2XFzyaHU9nBKt/gqgh/VUxLodO53TrLE6nUW+3GUX4Ug5rLAY/25s1dghH5bnlM/Ky+4OdDkqorelENPHy/twcxGGSvzwBPFprxL/UqH9xCTUa+S8ti0u3487uLXEKvVxhNVqbDkiiHyd8EkRcF6d6qB4hFvA1bAdKbEThp8J58190fHfcvJX6Y5Z/dDlUPJBW7G9cj4A7Z6YqU8USKdQ98+J027jwnFTZN+jxMlDcf+ecvDniDBVlzv8QbV2xUKQ8lfPqxUnpd+S+ynBE+CsWEkGvz/4aVszk6JQqiUuoYCm+Sgmk6yEw+yM4XayEcBRBnkyvrcqSfjQmWUmWIcm66gSS5DI5SWaOC5l5I/oe55lXj4Kr6KEHhkXeLjlLO1t1j54ly+MqDno97BS+Yq3Ony8ZK2lYLUlOaw97TU8CiW8mBCbxpFxJba2+z8yOLmPXplhmbN5RG4+p1Pqn1i5ZBM0JwtbjzVWFuqdb4VCITvJYBfwcG1Qg5BR13C5uSf8RqryFrabjKa8dqpHeHivHd+uOUmui+Qv5zl5xuJI9RaliT0nK6BU77eME4Th3qqbD58sEdUur0/nlutiP4fmT0/TVzH19R79+VhhWJhkoSWvwr+/Ii52auu9YlanCtDjmfSX0tt0ShWtPbBp9HFo2cUVT5exFS/sa1zTWEad+Dn/2nXu+ZMRr76Dv/Y6gNcFrSFcFk/ICCY1zGY282aF9++fvDI/NNC4P6d5duz+scmH2MXe2AMgMdUN/Rdd2YEJNcpasUKVjmoKXlNBLhqIx1dLFFZciA1qOuHcRjXiv7GGj19BE+g1I1DDT44B845lonjkjUehXsEUubvYRY1rMbfMH5MZNzfsXrj3bE68bTvQbn9vQVyH2jk3vc5TVdjt8xd8n+F0lmocypj8GrhWu7f+N3DSH2cRDvkJ9UxEOr9vNQsLhPdn/JpcwuDqlUuISKZiKkymBdD8EHvuZBjerIGxFiC/V+7xZ+CUbLontVKzyLUWm7J5HxpfnqjSCZV52Nd8gKHx6c8KlQqVpKCHDv8ez5IVWr1pqgw59iLOJ959PVl8qSOK3NeF4Mzu8D3xx53nPwv5s89xxs5jtE/WdXoQyJKzSm8Vun9DnXmqmW1df9RKpbkST8ID83fpIGlsCyv9CPC7jK/9JS7jVuUYZjCAqMRCGoIcTJRArFM+KiPNr4oKg2N1EFnpQQHURXSlF78vGwmNSzYbMpIrXq3du4tSdDeNeVBfpDxwoFU1ZNq4c2qtkVcoYK+Ir/rbDnUpjluRSaXbphdqOv/7qh1xbJGdlrIBpLXfccRdmK0FSofUGdkp9uIksdK4hWbuSe75/+THsTK/oBiYFbdQn4EqpC5po5/4Khe53rawHEA3kpbCfrwJ0QPATeW3InQzCkUeFaw4APc/nq89Wvmp8OdLLYiJcNjuGzXQRXoBtXbKZNg2Xg2tcNJNuw3Ds1Vp5HXiiSgGazG8pM1v1tBasIY9FWS/hMjEjHD4TkQ9/TA+4at+5oPS4aE7j084HFIou5vy4WLC49jDpAImfMeXo+zO+umu1OTKvPZCYo3IiO6mdhPqmuaF7eFtlTM8e2pqgbVe0IjAbZfhoyLFexpgQNtH/zMD/CgiDhKGwWqenfZiPtFc6j5dDy43mxb9KxBxIofdXp+Bx9uYeAjrwcrmA0P9EQsT3r0yh4u29M+ko3Z2tdP70d2Kio2iiNXfuD3RpexFxCZV0cpjZRyct9CxqtwFmX+UJ6l+4b+buG/8FAE8uAED3TrS1WsPOtV35/UqAllswnGGn2pHIy39x0Bbu9rkbwGek1dZxnYY8vAE7QnZYYMYHZBn/zWCwpmIzTF+MwtHLefT0V79hMNZiK0xXAsVUKgQHWq/e7onDUSWzJDuliz8TIbY5q0JHLpccli4GShiW2ZH/fpR8JBo/HLd1d3W3K93f/0dSJDTYV3grV1xsQqO7bkFWdFXSNGvo+YsHf25NoGbTkuYIrt5Srzq+NvKaNJL7meK3DaTmri//3Q6CvLH9a4PS37T/2w71XfvotptoFHruFwe3n00hXYmatNH7FKRjvG8B5YLF5STI7KEZfd258uBFIgnx5pvkZvD9p8o7BTIwuvPP5a+ghtSd9fG76geR+IH6eur4gDR8rY+JdaxQkRlMHbWC7GAyolaoKEzGwq6gOABDe7SVHfFod9LfZX4+1Ucf1arvGI19jabkqH6iBpMxGpnUYIS9GX98ff2SbiZvYKBLUcdgBr9v9uJuPyY0BSNMwQhSsIKUrc4Hq1bJrDIyqtWzp76NnevvTkbjnR0e5lsG59IXuzeeLkZgFu1hpuzCFIPHWcnKfg01yJSLYITvdwyl1JP0jNHjh0fTDhdn7TV6INY745BUdnSCoOOo3RAAFnWh+HLfqvdVRbAUlOuprRdr+0c2ZrmTb7lFNg83ufPm9k0Fboc2HFA5KVTLNqkc5Sqn/oG+AvedJgVumws8Rvt31FHq6Tj6txsvY67GnFZNZWYqMv6HGI73czIyFZmHmKsALrn8bmJ6oiGKngfn5gjwiKeoqEObyczJGmpBSs2fecBswhcOIbWeijaT4sky6uaklCWIE3ZeeHxsEPL9jm9/p3GHU6BZJ8qKSCmmufy+0PkzH5ir+hCitQkrvPUA1Y0sS/pIti31eEDh70Vu1C7IBCvM4FV/1Kz5KXqIuihd4Ev3OdiVx4vWKtnlyQhRRVXU4vAGcw6JUdgtz6P75jy/jFw8PvcTju4cuqeINvoHfPFJLsasXLRHO870bDGdhkTubwPAQ54IyF9fWZzQlMZtDRqUQyM3NrQluNpw0h2g00ZhVL/Y0see0B2uZrbMmeNJOR/njmyiN0duMGhDa/YviVSuBtwnxSiRSIq4BSe6Smj4J80oAivatrvokjWqHPW+s93DoCQfzVb6vdgeBaaW/2RsGfMOOCv8WTOaLQraISz/fHqOSZtxzJcfVFaqGVLg7HTgqtdhlP12joOOT1AXXn42otFjHfL6lXE64qbwwIHTYZt0xLg+ZaBTXp/nH1YXR6wrOfqhpq4uCnF4nViZ5WxG4ODriOdDMSHTY2OW1d8cfB7TeF8L7KBqNHzAkEdcGNsG7SZruzD6+xXAOqQGUs4H7ISCqZkeyHpy9oLaN2x0dLDwrACeSQhiQTJKqBeia0Tjfa0mQIDQWy3ZkO+WzmxhN2TpzJRAazDwy6Ea6jqg4r4e06Uld0O3jS0QxwoNWxSN9n4jRDnrWOCIhT9pgycGA6BDt0++ncBjjj049RUYEVBZ68hTwhTksdY2vyhf0x2xKT4TVSrazPR5D1vo47gRLkhPu9ja1qlyzCZITtWuFPJF++QJAvF+MaT3TrHFZS4hCf/5uBeKLc1EcAXU/cpsyY+h5Pv23IJbig3/QVd5f0JcpHbfK/Ap98jgvnvd1Iv4T6rZGE0eUV4MutaTcKfIxKkYjdJwTXYn+foX13dDLkb/+fDi/xG15a+Z1Zq/5X2ftAk2gSqTHwB7LxGK9XLthibzBcnPOV6inwbiAgU8c9bvj7FoTM9D5ZUc3OcjmGiAisQHBAbIUdklujQ0KOjpZfteoJ700NdmLcfEkK833zeFvjbrMVl8e/aBmmXQF2jIUUUCnUyOQ/kASCT3tuWhrvr/HH8O5v0sPjvPm+ibk5t69H41qiB6GFQ/BxTPfTDoV0NhbV37yYd4Oo2ei2y5m2oSRl15dABxYo4T99yP0LEL4l94ysViXSx9eniI3qyFKZ2JuKA39l68pQs1V1vkAdPqmnBJepz+uX7ztdUYcaUVuRb6KEo6fbsXnZwCDy5IDYCn8uEgfo7bk2GAbnPvNawO2sf/RtCHM/wN2/V/tgkqQ6p037+Cth2l3A8is3nNZNFfR5lLg9bZ+EbwM8c+ZX4oPxUA/frV7kFYe3R3ovxathfU7FKGfmSAZp4a4dnslFx35MjuXsTPut7mS6bIGbnuxLHR3+OylylhLhUxJDGLLR3jrBOtfSr0/FIKZvdxnFZd6b6z5hIMq5LmYTKvLLvwTkGoxU69AHYgkgptzSm0j4Tl4++QVkDtwbFDhkNJyrBTbdGYcp8eUwx2OJFQOMuZrdtWwp44ZrDGlQQzgbRgfTDL7tShJoMtKf4viaFX8TNHNn1dfDrKA960Hj0OcfivD6jPuqywNuk/elWaeOVgLsy4OqbLo72PjzkvPhafDg5RGpojgT7FJohwzZAeRyRaFAAnIhKVKX8CL1kBRfqvsaLbjCejjXac/CnqyBAAK/t2xDBAzWc6tJBhjKGAcBRk1pTVH9AGq9Q3BAJ0dWVKxxUoykMOLoHnux/WFzkEa6A+CAUqB+YW9nOzbcx4N1rTj71XDErRwX5wfEgptILLOsoXTjeGrCo3UrJO/2ceuMI9uBCUY35dDn5CMqf66L0sIeMkKNjkqcoEIAbRO0qbvTh3vlH+FPiRxsOGqMnF2q+YGtl2zrpPdDzwt37+ls07uLSVU6aYtqourJkfWzGfGJCu7V3qbJ4nW6GPMy9oKUJq8NVBg2fMY8jzaHMWnQPymI6kv2N9gywX3l9+g82RUZy+iG9KbS2pXRBJDXN0LQayvk9Rg7qeCiF4l0SNfqvcEpa6s+wd1FeBOX7W6hiBTcKNQIG0kOuhoLK/aHZFVEu2IFuVQXViSm3VuLYZVqbig+L30Lsz2/ghzXHFmTp13Y7UBXvtFBP/sV22aqU14lYzNbhWe3rCvKYAFflNRXKboHLaAnPN2GVLEhdm2Kn2fTFKqhr2TWQLzQDX/X9tET8yuaw03ruwMmtO1+6FxKhi199zU8Y4m0SKSq80YLfrHaVGo6Hs7793OgBFA5xyWrTY9n1xYxXmXNkZ3Wyrf0oydbYNK0KrUUu0DK5FzJNpNSVgg8+kVbvNGpHF7VB6tHpYSO0a2VZf295g1o4Iyt20/ElcWu/EjuRnswpUiuhAxBBz0WYbWeguqipSX7DuUiKDVztqfE1l57zyNcKZJFtHH6NavWWNpaDJW091Ou0KjT1oNWg9VkHIcEGDgPNhNgQOsx258q/TSPvfb/usiEzY/XCagH/8Zjcdv/vtNJ7w+NFuaP9Fu+iJsi9baz5vTfiWXLOEp0URJsVFi0X4hi4Tauq9QnoJsOjYq4/eRoGI73yT9gZnUBNhRpEDw4UMOJrCtBopdvZ8BWLt/7sdLtvJUvwWpYfJdhRWC+WFdWynh6EKlyUzBaa85llNTZpZIlMc3adQ4CbJze1ilzCKMsmYwa7odl874LY9byw0rFZC4kJdEK+aB10UXb+5f3DrugNbHg8veTSkCr3BsdOeRDiWD8tubFX53sDaYeLoQATZP7qSqXS2S2wVxF69DTdVntMh84hjEIOIFVyV4sRMt9pVXi7bU1gnEpVU8WwehlRox2YjtPkXmchaWYn/zaatjCQxNpAiSIqjA5XDQ8OmYebnCcmdlR0BNM2uwmtiAbZsPm1+xVt/TuJF6bBRZ/B1OTcNpegdu4e554ZuCa8Jxw0k8tNuxDmv8tL4hoGdm4dyGWnMxIGcLGwa1TAwp87HL6kRuIMctSrAEbhLavj8koTAFeCq1EGuwFWSKOWZiBMdVV0yr3e0zFGFNJOJ2NfxR0sFXdIfnPRNO6qNZotCbbcEx+VtivA9yG6kk8NGOrs8KP5qgHF4BaRqHnGkhg9LSFwRrkod5kpc0ASfD62RuMMcNW+TPCwzfTPNXcTxjpF6qih9MTGUiZ6qMTKvt0fmqaJMNDl5swNKjec+5m/NLqzwK0Xl36fdpBvWsIa7ZTy927Im29lRJtlZVok5TI0OfEWiZ25pYfLFGu2pZycXf+aNl/6FF5r5XHTdyoUYmwP2lGkSC4g2DSdUwk2Mrx6uSexyGvRmq46FmbOry9aihg4ydDwuzrRbiaRxPQUnGFZTeIgMzFVhHPdippjA+m4YaGZ/zfIR48jhPcma8vK9ppFl75eGMk86QVPMtJdbaehpwWkrJOU7h1KWBKQ1CqonBaQtF5QeGNI572rebL9rRM4j65uyWQeRx5G1T8uk+tKiRx3F26OHovMfLow4blqm+ujY7LrbgXcIZgx9xr+FZg+9xb51tbNr5u4rwO9bnIvjACIviGCiBubyoSLc3mYLs4Ca83GYpInaOsQK+L4bWbz4SgwcJDrV5VG8+WrMFHbwAYxIzJo8TUHf+D+bSofcuJt9dfNJ3V8nNQig4DfSp0BacGi5r2eJm+HForJ2Nr0zwIHGH6Yv3AFrMqYQ9xRnJREj2d9oqPx8lA9FMGd9AdA4AgFQPGvk3aWIEl5I1EnOIkmy//8z9P8WsQ5lU0cyFX++jv/z9dndbqLfBpHFi99K3YCmr2d4FB98kigvwv+DKCURzfDHVEyeKYiHJJlhn/5npxcUNjTOrAGo0xojPAv8d6SejLmSdOX/12+4JC+jsHDZ06viw1xBpjBnSk97IwjRp/LCHv6OWv7kiXjgo4F30top14c1pLRSIqEVlUYShiOJtCyQMIlEocqozSwgq9OG7OZraybPsd0OXOyBAuIh8cLlCPDKpJnNGVBakMd2B9e6whxwG+wvBTA3WFeOmmC1MnvYoWmERekLpoV7p/W2mOYygyZZFCV0tYutcdwkhQLdF2NuFbmnrGhyWRiFCFKTYZWHwXYW1smFhdVsh4eptMT8pwGV6Z5p4eOmaffZo0QLTB+oJbR3mm7f8GpVxBNtfiPU0Q3jV2TJwxri4PwWIN5U1ExLEEW1UWvVtJfTa78KqouoDldnqxKrP+sZ3L49W886XH/kxg+3pE9DUB9+8gAg4eCd659Glqa2tJLcH7/yWcf+RWCn0fFeWd7CH8qDNr84yAAWbKlC589DZIPbCr/7RnjhfIiekr5gWoRvWk5lGIx3/ub34NLsJbupJi6PqBt0YuqGrfuimcyy6sw2m1MaGq6pHNmSChEiNRyiVSAjmZ440Dbo5D4LiWsWChG5EeVDPm6nkWFfYmm53bbgCyvGFkTxNv7W2IO8l541TSuK6qKWymn8D413QW9QGeQRKkP1ZfNszjc0/QoX0r7a86Ijfyh6e3Txo4WIUhFcXzGukssBOtOb/S2ohPlV1cHqLFVSdeq7iNiCxd/fqVNIEUo11e6q+hTZY5w1ob6+rrJS/sM2pX6LsW8Kdk7BvqhUeW7I7LInBtW2s/9XnqlN3Fpp1S/JYAvtnSJXnNKnUNMmadNHC+1Q8g/CDSDBepX4BsvOehKj2hC1DUKfmppPRAH8+3FuhkQWYEmc8DqpFJGQWP20IcTkYb7jeKbH5ALk5IKMYZ/mM9OifCerFp0rUDX8MkP1YopsUSQbHpNbyhlabTlDboHH2Gx42WatZRUsHW1ssGyiOBhkaWW0sTpAPZAIEn0p6XlsmHk70FrX8K51tufFF/+sGnftWgQ2/kUK7Mp2wIgdZmGcFmBmDnMZHQadkHB0BG1i7jAlfa597Zl+saHkix1GNkNqsX45o9j7v5P0d9NtYM+SitmGVr6znDpZa6BPURsbmWptDcYkpThjFXOTYitIWrgEG7Ta3Q4VvmycGUm1l3vzmC1/HWN/r/jFkM5jJDmQQ/Jkug0SokPHihaJTqUOAFQ2G3KWQTppQQ2bBXy72Nw46MTy9kEW2J0pfZwXej9cKtOo5nx6/9cCWw9TcVPmgx4X2+JNA6aXIaJvnvo/zexK3KUFcr59zfWCsInqxp4fovv9ssX7AUz3yyWx0SnYn4ZNSfZwdOD6iLFAs7VJw7m6sLK8IlHTVdHx8w13jF4kl2vE1knP10mHujQhkShjhCYGh64u6c5tM7asTYpLlY5cHzE9TLF7lqAc3gDqhbdap94xUaOJZ2hMGPOMlMBGEfa6ByXgMPgBsq7fHjqitqs96nI6TPaIXiENmavysSdcDeQi3MqttbSirZefETRGgyaa7anoDmCkiZbKEAzzfkfnKHdcL5GBt+lE5aghuHSriRkjJgZMvDijcvzaodMSBqT4PCVFHZ2tuAI+Qchau6k128uw1L+xBbnCUbTARtwjHcINmJLrItGatoN+RMvlLmbBuy3OM4fgSJEIgMq4dnjz/tRiyWFDeL9D++Kly9q7lzmEG5QzHdpmw9K2LjGJE0FSqLfYjDh96rQZV1SJXJdIYZ5M8ebGwmdi4y/qfg1Ek0LhaNjyIZT8Gr65+CelxFyKUxb42FdM52Ddlyf4qfzQz0SmAVOOcasp9d8yAv8ZB+ySM8WtL3SZ/d/QqNPhU24KcPnUxZqK+pEfPin1SoNcLtObVllXYzbMsKk/rmXX1ffekw6Yh0eUGkvk0Qx6/wzrFv7qx/LKB1HvPygNqqu+TG4wr7AuXfzARZ3mtVPMiNm0qNLhttsxYasOTqwIm+emp1CcJmkNRqtuZDpL6VMMWupkdVor3zBqSQWsZ6kcSpzFcQUZ7Wm4+fTogInbw2Z0uIItXIOhneWJMqYYDIwpWlM7S+8SeUgiM7xWrYbXis0eolDoIYo3gWh1kR5QHntjTZdDKNH9YZNH+yHEyDNIc540bzTz7WhHlCfXRfSu4/MuKvXcHImWnlAeKV9UXZ9IJPuyGu48davcEo3GLXX0fxqPOGbJqmpCn6fqzuMwrfFE4rhpj2xc6RXFRV7k7Oa/mftN4zGHpgdWRjqANVviqiL3xcaS+zQZo6RORySLiLuS0ieLEcRlXphdfDdJokeXEQ/XE8HbL1cjMN11eVkVo2MkjhMn1eCi4qUDJNSxFkd38gx9Ld41xooeEg5nnnSBNt8YvV7HxebvPS2/bnD2HYMeKa5lGLdGrjO/NSRHo8PU+zAJn6LbExsCn3JVlWVMI6jTsbTql8bv4z6mzvZf73aOB3gD5QcmbmnynkwJk6eiWWSjxkK/HPjxGfjxHQ1KYhqCat3YnQ8Ll8sMwtp0gg4p4KAUtVGjxpTjX4ix36gwlr8OTDpuBl7RZCnuot6mpdCSk2hJtNDXPwPTHzxZs7N5C7K5E9nRXabeZqcWGO5AAW+PlnCw33aj9oVWZbcrBoqBr4iDRLsVbNnP1mE4qNcGuIa+eh+55AfacinIEr4aRfa/MPLsimKI4W9aQLY9Bwa+htJIvRmHVjujS+hqOufyjfnZSUq+ir2P3Jv7Rvb/gl57upJj7r+D4XQE5l01GksXgMk0aU5XiW9KqzGxInQbd0+eoBLNUlsI41CFagxHjQ6FZscwLRhyDrz/X1td8/4ksL93yr2KgUR9w/3rJluLIMdBKbX14Xdoln8MYnrueJfjEqhvBv/uZ0zarCbrDWJNMJX+8beHMObfTWZiHpt/42pQu0GXeuPYrqlVB+mWw5L+fVDlUVvdPPdjuaqv/95jY9pcJu7OZmKj0N9ZnkHwt9xi3HEBTxQEZ3dSVWxXUPg5+H3qmZF7LGHX68LSxe+1eaXxd9q0PKZujI1BbsnbiXFpChoCn4IYHPwm0KagYOE3w7R7P/jXYEQHiaRt8AM3IGj8y7Nk46vIiy4K7+9NyzKg1JDsbArCDqfBEjEU1VD/upmvRWBZMpa3PagMh7aGcQE2U7STJog7CkFMMgQli+1CQJueIO+GknAduNAwKAFqTCM9drlQcTaRPOa7HE0pyP/MwfB0k+RGE3+I2Z+hBWKWZTD8tjWi0WZ7Wn4DgfbbIkI0LYRgokf/uhmiZbE3poCWM7Y/OepgL7o9PN0k1miiI13OQACO8Gccg7kF5TwNg9ndjxWVlERLPFsvfiR2pZuwoHZltYj10tP4c11+5Qzb3NNobZt3/YO6f8uoB8+p9xLzzlP8zpEwHBJznvNoPZ5ikzw+Wn8/Rv5z/0FE+V5NsrE25PjaGPZvosRserB1Q8b9DY2EQSe8YROfv1BbJjr1C0wv9tFVH//y+etde3cFQH3rQHtgvivf/9XxqfLrjEn/9xB4DNXtLWjZ70r/Hnsrdlh2+q/xb/UA6Tvg82uDa7YwvJb1hfVdG+AdKKu5NwNjAFVae6lvs54RS822NlsYXsusmCdxaIMCPvrOKG8vOoY2R98F/afCIANMjjIAt+SewQAJpEITWwISAj3f1zK0oqaTsS2qWmvl7+V7m3VyYvodwC6i+qu2DrUaoLJwN+mBUgpVZ2FlZG7nFvvaWk9PEcYivJT9B0tRdPO4Zbz90onviJCzVZob55qv6GYtHRdSgK50ccNDHRfhUwh+/y/31rPtf1G1+P77v8JGV9v/nysWWG8fNqy2bnedU0g71N2jQgrK799KYu7BrZYe7HEIkEZQUAZW/KlN3Ha1wBLRurlAyYToKBsG+MrV1cNHSYU+X50ZusYV09GHJnzON5auXAtr30Ebr1i/XrEJlRsJtjxfCq27vcrQdO6EURkmESYIasvR/3QrKJrKdASKMfShCZ/zjbUWWyHMS17lR3otAN8/zrsEXXNBrFOTFzCqB/OAaJc97Ow1N1bXSGwuIfjqzKg1rpiNPjThc/mRRkLIhaV731HnljeLZHET1N3VLeyq7Zn/FKJn/ibEqC+zHJg3F+infD3kWejqmlhCZkg80ZFNTZjurm5hV23P/KcQPfODEBnfVaLPdBYY1eiSuaBiRe2DDMDnMCaF1FULpaoAfbJ0q+w+76xCvAt+iAMrbqsipqvzPrF1OmIpL6FOmb+os9srfOWtEDmcrFaU0gd6isiD/MaQBbAq/PVzAKaN/JrJlVQkIr+ZIIOf/FZyf4inB57KpVh3Y1kR9BSMn5G1Vv9WYvwQ+vTnkXxH5Nm//1sJup/CJsnuAwSTchIVnxx8TsU/SvjCpt6PX795aAX2SK32/QCyYUzcH8MkrksJhQO5zusEyfPnSApSEjorkj4b6buDHW6mUipqitz+JhrigNIzgBXKTA3WbQXK4l0iWKWdlprhwW3yBuqOZJorcwflNaeYYSdYXBNukr8x43ec/JP+iv8+QeeFg52pjUIjoVOty6BRY2Y2NnLWfyxvy2bFMhd4cJv9xFteoL2pBfFqJPIJo8NkHPF0GFWbL+Uqlz9EKpEi1Zgtxl0F+tu4iZ5r5S8oaTUEbbrw7su3H3//ove9/QsY/gVUkBgQQgghhBBCSBRCalxpVEoppZRSSimlNbBojDHGGGOMMcbm9dG7Agyf4am+deLNe7V29eb6uqonqlexKq4eHS4e/64kzMvlHFUH9R38AQAAAAAAIgASw9RI67KjSAghhBBCCCEU6HEd6WSWb81K7x/+XNnx/ObV+WooYbjIhbqrmrerG1grvJSoHqT9IQAAAAAAAAAAEQD4Rv61lKOk0pMohBBCCCGEEEJONVTzWKhXWbXI3aL438k/fv2WLXfKXdcxdh+jkvRNOBvNSslTmqnLy516vXo3lvK6TcnK5rlSVNMVO7dlyaZJ2kT8pyj5XrgB+V9hFS/TzyUd+tNsSX6u5+WtiDq4h8sul3TuwbqLU4V1PViv9ZVGpZRSSimllFL6fuxM7Evx5uR8daPd3JyKy9LWx3R0KDFJur5JkjHpws3Do90Hak9z/vDolvPjVVJuo87Uog6XZsnKl6MkbtUb1v01xcxnv6nbMCKEEEIIIYQQwvfPvsGmLjqymfcPj7K4Dumf67re3IznPhAQMYQQQgghhBAihM3f+ZsdMS/PWq7U5eOcVR/qxUfWoqZ35C7D7WHtI8d233W/hBL2y9kC6PuTltw25ab5/kmt01DaQE+nNlwDSKcis8VQnV6AOc8G4fAB48gYY4wxxhhjjOc4u7ToZN+PnYHNDGXuMszaxaUfzqAyZW1n9qXXbZMxxhhjjDHGojFWl41H55xzzjnnnPPOda2snybSqd51Xt1StxU4BNXSiSVYp5Wv7N7ujnPGqlJ3VfOoJFfbrR6KsvSqqqqqqqqxqqdZ09cG0q1W75ui2S10/b8Wd2HHKEmSJEnyt5VV/9kmzbn7hQmWl7qrw9tRDTejWsxuMZ7zaUmZw4RuhQequ6TT4f6FhMSIiIiIiIhIrScAAAAAiABZnC8xjTUqoE9RaceF9tWJHU+stdP0luSATUzuRBSvVGSIVM5apdYMDvLFpbXjn0KnghMThJwzGAvs4bmUtKf5kIAqD56cv8RvG2YcZP7Fto3zBLlNOUflk+4DDrX0lSy1rfpm41v1f/H6/6exZo8vkXrKcKk9lK5uuQXCkTHGGGOMMcY48JnApGo2QwghhBBCCKFICL3VouuFUqlUKpX+WAo/b8x5USIju6689GY1UumpvlGv2ph3m2krj+ZtxVG8Mn1gLhTfmxrp4Navo9aWen22LtfLnges8YZ3Wre7QjBoqXJQi0NHx9yU1b7KP3DEMAzDMAzDMAzDAae8nU243f+KI4Zlnc9Sb2NKzhZLJ1++UrVaJJZK8agK8AYWwQ/Q+3L4XzCcM7uEhqVME/hgnaDmD2pnQiuIXzq1a7mcjZXlBVsJkCxzT/QcL2Wf5YoLAi9jcRd5JhM2qvt2HHkZopsywhJ4eutUOkif+hEkSZIkSZJSqVQaJRmkaN12RJdM82xfTYzpgi5PXwb1pVPtLoM5p0Qr6oEFaAJaCY6U6KqO7rnGzc7EUqxQ4ENW16QVudbLImcdr23rAX1fQt2p1KPoTTuSSJYk4ewOzPlFwoMgTpUkzXdzKM0lVU4cpoyZ17LI+rI2i0syaf1v6xLhf+oO7qHr/XH+pMPwQGKRYRiGYRiGkSRJFmwSypmEeFI/Oi+9M8pLH7z1RQCQCb5NraniugziphPaq/TUij96jR40vMYrl/vjg1t3k79sSeetvRdURlEURVEUJQiCiBQNVNcXvZTHXC6Xy+VyuVyhUCjkPcZqIEYwkDJtFEm5WodIibzZL6Tpbr3rz22xxMVisVgsFovF2dnZ2XLCx5+UxEokSzJDKa01jhaj7JOBW+pj5sGDe6DoqGmapmmapjmO4+jf1fsIPvtpFuX4FO/tUEXpXBllcd3gulRlfLlqyoy2ZQTBqVxnfztD1atpkkcAag63kkZxATHZgN/HmCfK/D1GAWyaLhyGoC40KXB3hJinShzMcDZfx/zFiWGWrzVbl6H8qTqvIl5d6iLgv4tB4KmNybZjOkgwDcWl1E6bJz/8m+crhCsXV8WpyuhuGszfzBB6hCUbF095gzd725JI6+L989nnfd2tv57L9SZ6Tsb5Xuktk/RcP+PkbfW7BaTi9M4TUkSi5knBC54M05lvFsPT020EwXPx4bn/cjjhOQSLkmw94hlv8lbv2JB372w9jq6n67X8c6J5UZDFPU97o7d4ez3MxQfY8gu5a7yfOzFfymeKFmU9mcIMJWQ1sl8Fd7xK9qs4naSvpZiLjuM4juM4Tq1Wq7lM1PpszYQn5TGjVWG7KS64U8YvO6CTwWhZhrJcJfubPYf3uCnbyrP88AKr789iqccAHfJRVVaub17TP74ZmXzi9F5sbrLIcflhvf48ThVzlQc8N6Ak4VrXGa8N+2yqGmHXKIBRm3TbJ+sp1hMcCzZm9ysHh6sMuytrGsD8gv5TlKJgZbIjmuBr91WPHvoeySee+Y67g4ODg4ODg4NXr169xoODQ7Kt28Qh0bmZ1ujpL0aYudwkbVneTnatzNbPH0rNoErEkqGRp7GZy4vqj94WSHx+qFXhdcIwSdtdGn75YiJdDkGeRcuaTNvxrITrAO0J8I3yiui+falmgL85PY/z3uf4yTiElzIyPKjS+QfV6vkbw0m+UK3b4Z2Ox+FzA+tLofNBbSSmayMwLVaZ4wfqlCSDc0U6fvLUNl82ZzCfBGsIlb+SGftOAcB/u7EF0AX9P7ELF1TyfWZvSKWSdHUl3Zf3VnIXlO5EGWcOK728YWNlhlUJpBNZAiQPfdafP/Vh6/4ZI3KOZ2dnZ2dnZ2dnT09Pz3AelIJeXN3GT/KXP/Rc9VnYfY4Oz6rAGhxypSQtPMQIcFNukHvIDqQRKZMrJHBLX/IddWR226aMJu9HSrUVzYrL/01yqJ7xa4aDRbafAcbCj/5Juw3pIEzlDwPZi6WBnkQikUgkkpjQQS/d59zSSSxkEqbIpraM0rM8t0OsG8Gm6enlbD2qjnvjbmoKQEAh3kFsiJOFn/xSDyEZz7I+odzZT1Sh2KHUQhkVJQ/5U/rPzQclyfrp08czj+eHzlhfYqkGzbYCGKr7fkUWdnZ2dnZ2dnYOh8MRd3Z2tSvfiHqJkkUZeEo11w0ebqOFT0i3kYuxZj+IC8jYPXGgJPVnmqZpmqaj5rg0BaeRXgxAr9fr9Xr9qi9nDOPjzhP6pCsygaxKDmaux6k3dHHTXbG0bJ4U58X5+6+xkP1gFrVFPeMmgT9P3GIPCkfGGGOMMU4dq/bGH5/llwwuuts5WGwa2/szC24Nm7l+WE3PxgtjjDHGGGOMI+PAqoqKqpqaZkbD6Oh4eaxCFRYnZEF0DYeFitB9VQr+ZyXJnL8UxWV6GCe8325qnMRiLzoCoZSqqBIIvSebcYrargGKW2WeslRSoZPaqqzX40mSJEmSJEmSJBklSSYhPiuQrUuLR+Pg0d8cRP2FnLv+flQQQlK3Q92YDPxwYLboeMHNOI7jOI7j7+NWYss6NM/effv/gOp3zW0BY7HuzC0vTfoXjoqIf7mV51G80fhkpehURbeUPnHXKixja1yvVbvyf8HuxVZrAgAAAAAQAepRlkUakFJKKaWck2fvvv0nCV2e07Oas2FuOKRtOCxHEi4tW5K6WO9m/cRg25fSyCQT+JQO0qtf0FVVVWNtUj6ZATKEzkcyomlT52fnzGr5mFpaLk51dK2Wm8+zo5pZF3pB8umH5xZdK+bPHhcXcUp/8FYJlvTEKN8mG1ZaQ2/gZn5I7vZsVw0EBtucG6ipLuR9uCzGNtsSkq9xvnNJu+dDPS84juM4juM4juOR4yvOemSUJEmSJEmSJEmSQfaXcGRaiTLT5dPFU18FBoILy5152qW30rWP3zn4rolbh5EGyijK6DQsd+sqEemkyKbr5HICo3S/KThrGS/C90mBLKuZq1KsS7sf6dT5Sa14F4QRIYQQQgghhBDO8diFFsmJ+abo2TqfwL4dyLVD6lsF4gDl/SX0H3lIaRrvv7IDyBele+wZy+d2g8ftuVPo0ezRSQKr8qS8JcPCT3NTIWHqRhKeElLNZXjStW6iu2ZBihmXpBYX6gIgcktAnIRapXbjCqqRqbHofvQg4StsHW8lNMjmPasL7s8DqI7vY/5NsquZZnatJvjMprMspaWMZf9CWRh9pE1oeVa7aTd0by9MvWxdPj8uE9+OYU3v+b2QNQdLd/YEOmGh16TMUui+mCtXssrI6uM8pfT2pLg/RR5FUiV2XSJ1D54SbLM2HX5FJTP31UFzDw6rfi5TOBdUhcNB7eER0gzV81M1MfhlHcS8ynlz6v3b91mc+xRllEtVGe6oFM1UGY1aVPtPGqWiFpVOZ9icqwaOO6Ul/YnpqMcHx3Ecx3GcYRgmcjzwMWitTUhIDinuX07axO6viNdz2CpEsrNDpeALEY9Bv6pLsSxUJHNXZiQrTuCXov98FZ67xh0swab87I9ofEWDSqVSqVSqrlri/Ivmlrx2j7vJOEYbqDWtp3gmHYRNmyhEYY/bYhu3J+3S7gwXR3+EJdDQmsJyam/jkMtnTduZ0Cpu3U2+qow3ZClyXPYO3UONTrbsp+kso+QqzDiBdqB5UrXV+5CevfyntdZaa02SsXXfireC5G5yr5jHO4a0S/k8j/R4c22lt+FtkCWZ8GF63LBEPr4bb/DpeRsMz5RoVdEl3FdmE2rs9EUrKRokDW+x633y1Q4jXI0UAN2R1qrj423CgxLDOH6LbPMahbzslI9udfrKPO2yMr4/jXVQPBsKjEudNHr0LnUD2pBsN45bNWlNw+ZXdVtC7Lw1rWBoQkV7hITAe0SuSMkcurEzNKMNy6fk6tCN9qOzLs1qbK6mxr5op65h8NEFAABEUNOatFEkhBBCCCGEEAr07LO1A5Gn7NoLi/4qpEkflIPb/rqyhxjH7TcAZhMKXM+3gg8O9+HwmoNtHiSVfYJykiRJkiRJkiRJMUlFymG/ZUSjP+yT2XRzmb4oKTHCbHCeIUw++kOZ1xh8cq1UqqQi8XWJi7YDpV+4XM9cFSyEK4quRXvNzcnO4v6MkbRyGTFoOa0caufWwMyyS4ZWqdH90Fc2HMGI9vANIQIAAAAAACDA9UXirvDJaypmXDUKzWQSF8kPpCaqFV3ytia0ZlEiIiIiIqIookTwgsjRumrWvMFKHd5NV6Cw0zP9SXXvE1XbBzxq7S9eZxTnpsqh6jL0xl0pX3JW8unBY7jdioKu7shd1cC7BkJl6bOb4KXFPXnw4sPPyWjoWnXpRx78ethtDs45H52h+9AjmtYkSZIkSZIkSVJMUpfQ8dExKzl24skSnYE+R03ZGBtDk+UEXlSXapfVMmF5krav9pwv9uDSqr1Um3oRfhvSpM42hkhQ3M6ZBSrEdVal86IWY4gIIYQQQgghFAmh0zwrWo+CZ56r/+xdc9BIbjrHeOtjvq6mDEL1wE33oPVl1kTLUpWp1cPScp6bjagxW5zytVxN1Skp/ENsapn/hLVS2r3iR4qiKIqiKIqiqKioVypkOuuVZU2Pep3CFRBqPm7MthGW1SUGoip5yv1CI4Qi3y/H+K+Nk+Z8/R4KPLn9wqVwiaQsdki9dpMOFR13B9fota8k2A64KHbmPtk9Pv55jX+uXpaxh9fcH2H27lsXREoA9jwnFqUrwRmd0Mc2FUMuje/DTMvvJRnzussrBKVStkOH6VIEvRV3/OdeZH3QdDg4sBS+GOoTI3i6xtfd46q14XJFb568a+Hs/8DV6PqbLhybyTfJhAOahGfTslk5nvsKlh3Crkxt2czZfVmi9rxkvvS2sA1x5uj4MHZae5EmQgghhBBCCIlCSBNrT+pxsCKRwh4uh57Xgy8iWrDocPI+neaZjyQ/HzL9ujcVNxS57i6w/yMtn+lAM9PnFQzJu52cMK7GVeSVVQ12FXQ0U84/Byz2bQNP9T7GlSTFOYknLXHiy/rKSvITXxMqbC60l/4mqXp6nzj37CMX7/uTulC+AUr6MYnmTPo6254xCIdXVCdO1DT5o6IsNMsmktdr7h2tfYeo9WoFfIWAEkhRsJ5p3piQ4nAyxoNP5XYGiITz7Jk/Kj/WZbBIMusD9zvfTAkYqUNDfmP9Kd+M33ny216QSF5amqtVu+pQX4885yQTcOgk2Wx315KU7doE0H5RdMc7IRn3pFB9gCPMwsLKLgZBEARBEFGwwXb5FRKGETQL4e/GOTiT3dN+9/fQ033Jk/Uy8dEzDMMwDMPkK4R9xFPjpeNmi+WPWn2LhAEAQAR4fzEv3loGPVnkK8EA9b3f9/wGN8Vuf0fORe6dObEivB8eisrxStHsm1/8ee4W4QEhhBBCkVCgowM5u6EGUsfxxVrmYLeACAAAAAAI4AWlPzLGGGOMI+PAo5vOzI/poKJGrsaRKIqiKIoxiuIJ07m4G7FVTnyFL+yXggvO6QtXARpCDIIgCIIghLDg3gpQAAAAgAgIOHpi1yGBBgKKsLwWZ9kMimOFh8kVDDbFbn9HnMV0OUW2ma7dxyHp58mCuLbGqmrIKl00OI7jOI5HzgRzdKFNwxU0FjNX59l1+bmofIyf6yS5m+c9+8eAVZLPHofNt+R6aaDg4uSiVuM3vFby2dlvT9Irk0aGgLNpwL0mktapRaAUp3EfjmJLI9gCtov9fTtmwj2Yx0V3c0jotll+x2xbl4f8WtJ1PchnRJUsYGeA7WBaDBG4nF6IMGmbLoLQ6zVseyEKkU/2c4FVPEtn+81cPNcopEmQT0Anvh5/3kbBd4cxyN9RrtWNc06OB47jOI7jolOHeh95xYLle/xEBo/en7n5popyv5xn8bL/8kWR7qdkVMCrgXvNofuKeZShWRLL0NoQAJjfNZq1sVWr1Wq1Wh1q7YzLszpgyRN9Ra67ML05ElU9Pjh+HPscJFdbjr/JKZMdmtEPLVL1chSYrB+8b5/2W7nxdibEV1GvzNbxzNMJgjHGGGMcGc+YEL2iU7pOZIw7S5b17kJQa5+KsBc8QYb+yZk1/Oe/BC3HO3dCngesKjqiipVKpVKpVCpVczDyXBNi91q2YVHeUQrMk7EOLr3106NURC7ijqRyvi+K4WGzerJAIqbjCy7moutAYbdTIrqzkA/a8J7wsAlU+MyFv4yzJK/KFS8vjowxxhjjX1QWfh6zGpiF4fjba0pj87FuFnuIVphNnYWftcVt/zbWIg3pi+vg5tsDRjJL+zJ2zBeux6o2MdqfsNmDp1B5couhXh/Txj+/4YSTU6Q+5pl3B8jm5e4hz39Xbpf2FPtYE4NyFntZLxhpkwK3OrYvo5azeOrR95rEvbcQ9oSVHYyexlOGj7m5ubm5uXmcm5unev6QJuWMMaOyt4NV2lkFuWeph2og/lhDFjcrPypL3MlPCSM0IGU50jDE+fIn0vIu9c0VtTWF2qvwAsUvWW/T+QN1lV1BJpPJZDJZzGSyeY+/aslSG1utVqvVarWv2x7vSao2tYPVwDqYX+8YuPruT7MEX0hasXZq1vF6YR127urOxtd8lZXA7xAIBAKBQIgCIQisdVC77SGAcRsIyipvrK+4GZJh4fGaL4ptv71hbrC8rBhEYCKDwWAwGAwGk7Q06dbJCqBSqVQqlRpVKjXNLX2prReVfzAA+xtX7T+aM8zDYtzzqclVMuwFkP29BbmbvpNwfmaA5XUeK68mk4tgxS91MYRhereezQv3bvfI371bM6WPKysrKysrK6u4srJKCTrDDBMeNiAzqqv4WmKxWCwWi2MsFifNerEgOYARgiAIgiAIJuU10yivzb4p+/vcX/LO+MUaFNpvG3vkXC29TVeqfYvvmBzj7mP7EfbFrm2we6MUl/+7XZCX5xp68eERHx4eHh4eHh4eX7gmvhhkIR4/3FYfI+iuw3D/xo0UNk+r54iHMCeGljeJc++re9nH0+NbhzUOPwiK96N455/+3c7FQCJ4937f3y8JyZaiGU5npQckelsvQOlpRRRCLqQcmTrek9dHzcZFVIqJSXHdslOBxwUpIqmO8lT5JVDa8d+q67k460HbUVcfiVeVOKqZYf0AwCv0uQZtuL+Yy3g5JMzHaYPPT27IztmZLj65NFo8i0XmYmZmZmZmZmZmrkWuGcggQKm0Ch6OWfk8dwbk/5DD4E98r7xj0o6TN068EQhGlmkEjv7mJ/kOj8fh/Guo9bffZyf364AiKdZKzl6WLwMEOn7XHqqAqlhkJa12jLEXOzs7Ozs7O3u6Kxpyug3ublqVYP/wvJjRHrIx6WH8N0VpoveD64IydArxFeIsgfvKJIUsV7hqC6rFpmmapmmalgrdBb0qWx2ZLMYYY4xFY8GOgCMDdJ4zRdi1WNMcfncp/HZv/Km3XDNCzjnnnEfnwRXhaei1lHpeqai/B7FP4aYj3ofzxU+uF3MlZ3ZtfxM/QlBzWZyE3tVlpyN0KMDTcviqw2BJ45CjMcV+KZ5vcxGIYQ4MJ0oon7x67O3csRAfgYZJ/bYT9aalc1zJXKEo4gRCPpto5TAmcybN3t7NJa1sHLv6v/hxHVeX63Xt0H1Jl+W8aA/0mBBOVitulPnbuUMxLS35YdOWn+Xprmjie0CTn/38Pr/oNyv4CsjMKrVHey2oKgzDMAzDsMIwrBbhdHK6BI6sAa2+YnzV9pafvAKUvX+uMAExTjOW4JNtg8RRU19HoyvAJXADZ3z+vLiJWwrdme59wSNbTk9l8CkeI4iTHjuI6+6tNrkRJ/OHM30rPK04bZrNZtxXnSYgr4hGDsBN8r3j0rn/NokllnVLqMO9i+kLNvTstuosv4yOdtcOM3r+/BO96hJHit5ph+l4JagkKKQRuG5U/2wmtgilUETk7aadC71cRKbzjNjDWGKHw22hPpBNGuiebheagp1fMKPDSGFzsjUpZ/viJOT8lEql83HvuJVwL9kuJqjytC/XUpqWkELgc1ohSf/pKpJsgpzIQUCpebUYyPMFNOMo8cTLMOgG18cO4macnpTx43JYJsfZbFTjYZFqahYeBRqo7/h8pkuKs2tu683xEPGlb6a7uJGdaUTlHh42qs5MLGdRigT1JyOLmqDUUo0WysCBcGs/Fl9BocTE5YAqB/LRzoMHXj5EtIwgSk4rqlRyCAt34qtDV+Xqz1/mmaAYsrmCHRl2inKZ5/usdgxL7ZSwQ0aRMMvtQcxhC4wTws6+ZJw8oJFtD2i7dTbFeuZXGCZ2AizDtfR3/YdF6tOEVfkZeVWZTkxNKirKxqNdHCtoeZJqJD4BBi/Wyp5arVar1WqNq9XazNS7zTvA3a/kG17LLS2u8rGx7MVN9Ox8CSu7WzrIOq0wtFzlbUkppZQyppR5Fb+EMLdJzrEniKKIiIgo6H7o8mWeZ/1M/29jLsKD1apgp5RSSqlYalYRRAAAwAhOJpfTFRf7fQq+L1v4ITwe7uv75df13sOTla8PDiTR5y8tIRn3uX1qIVx4vWMCEgl4D6Hej8Mk314Pcghv6H6/IcoXfqLX4R7ds331iNvC++64z6YuPgqOp5sHIjxAMH+mkvtFOqUftIGfh/QgSaYJ3SsyPsV/Om1YBtqElk2uvqcnF5M79M7CwczMzMzMHM3BXUkL8ftfsujtrGzF9DpZXImTlJqT+tVp5HaIkpw0c9ZuOZKV7YsKabVFAAAAAAAAAIgARiifss66NE9F0mbUIG3+Ohac+Re+GikD0wtR/KioynCZyHyojIQ5V1paY+4knXBrtb79ZCM9QVFRURRFURQVFIXmZLsgbyn3aSXOvCFmECDS1Pt6ra0g3Oq326G47W8pFKFMXK/pk5JoG23ir9yJtcE3lCR+EqL62BnZTRiw5btdFxff9NM+L3iM1oFIByD6+fpdvlau8YaApoWiFDzb+7SmIyNH4Ew3KnzdF9nh13QwWm4huNAqipgS1WVsEZnWpkCCTNTiu++7VGKvGljrANZGQKt/1UsvnEyINDw8oB7sw/p3J9gm+23w/DHTbDk8uHYrsP9Ds5WEpVrknQP47m5HnMdIzjIKw2Eo0V6wE2PhyDiql+Jr+Rts8hTkz8V+mr2ku3pss8/Mb5lGRzWSx9JR0hY3i4IgCIIgiCgIIsXj0UyXwcR8p5uDK3Lytp6zJHmdgwDXKkNSDwg2Z1RWTvvzPLlqehTgUWcfugNTqnqyeg7J4vqE66u8Amk5mMspOhwOh8PhcKLDCU43M46nw0sJ6kpJenRyzWAS3xZiL/MGXAT36mXiG2UslUqlUqlUhlISVPfxCgleLv9U4CpevGJzfFP0X2FvdDAW75bv/vaS4uJsoqajpmmapmmaPlOfD/ZvTLg+y03FeOcPf/nbdz/89Mvvmof6mf/57H+fU8p8+d5nFNiG3ePSzjZNld4wGuYSXgm8ymiZrcOr+GqSZOGj91Ay9eIsaBeYBp+uLyt0sWta3UiHbzNoOo9MGUtWezzsB3VkjENQOG3a9T5OC4cHfr00AHNwHMcDf3jZsKf2bQXT4S4trLtt4Gla7UnJ0NT9LlUeb6hYVdoSsR4hGy3LsizLsizLsiyb4poz9M9ibpIgF7jbFAuUvfVqBtUTQfckhe9MCH7IneBB8WeM8cQLx5Awdl7ShQkifjb6Tn8e7fWigeLUMgTvraGwTgFcmIcskS0TkuphdskMEw+ZKOvhmJPIKXLgyMiS1VmtohiZMBbnS+I2mYifVMDhtMT9AYIgCIIgCIIgWCBo8OnGCSp3AuPSgUqDJmjEG+PhAFxEYV/TuRNir6BztslveF/aOtDSPpcJDYfamw8kOSQy+8i2xISKj20N8MxH6o2yoyo9VIvIcLu0HZl+pBGGIYBAEHrDahG7lkl0r1VqELQp5/xbaRDSlt5CEmzyjmVUeKJO/ShM4n7TWTktk1RcHjcy3ZKDkdcqfZwb2nXCzYnyVCFzsguVc5Q1hLWQV/MAjHlOrtjPYuzxR7ThMNox0Psp9lpXKwPSrtBxMBPP+rnIGe4AwjzGI+AzOtkfUmqqSZRvBWKjcjkzJBKJRCKRA0n6dMrssvUzAsaxEMbZ/rr6Hm5SqssJv+kJHRefntkeqILmIZCMMI8mylZQNKkSrTD/3gm+PCqiSmnBxWiGmwMAyL7SUHSWOmUuXF7wp7wOXjlw4MCBAwcOHDKtpGJdvxJWK/+XsMAYxt2ULO4WpgFZfaVRY6WEEPfBnXfzntQSoB92gmrQc/c6eBzXQj/Od6O6ebx3ViyrN8X6P9uGwzI/ncGN11ZOIU2IzfNVp1HTJEkVu7nYA8aF2+x1pkNFd4+6C43PfjOxEcYRQuxuZaehGXrVdW16IJ5RXLTr29puutN7wLmeJ+b6azAxMDAwMDAwDAam7nQgMJsOZhTALnvuvu6RDG9Y2gkpoBifHosr18xZcvRQtscloZ+k5xQqTExMTExMTIOJzW1TTzE4OibWo/7NKNz71qEMWXJwsk4zUhAPzvVBgNKUtnR5cFN109zW+9+N+lxyLnno5OKcmvHbgru899euT0cEai5h12dZFBBMh32dYHHjNTRwUJrcOghS0+0pkirupkeKZTF7B8pQtqaPVETJecvVAsv4GVcZkyRPrtMxzaE2qb1TPvToSSojCaYWrZWd9K/nClUlxBvJ6bDBVioH1ZQCFtBEyE2te3mmDlW7xZnYY0iVExwsrn2tBdOcMi+xJnHjwxFDEARBEAQ9bV3M7Uvks3XMVC5KpVrf1nK4rJL97YziF4NhR0T3rlS/elVO2Ses07T+CAAAAABABBBAqcteqKau6T9lXpZbs2RDGbd8vITrRWSjJQiCIAgiiMEGjWUyVXTcd/ta0RxtlCh1qZ6H2xmqy/OhK2hGvRADy7Isy7KjtfGMmqVrsn/SH90Ws3A3Q+Rurx0iOBGS6qjSLYsasw3qfYl3dqWohoI4xNcq3JlQY/+ukWHJU1cENrQ5/LSRwDAMwzAcMXIXEciHLnEw9ADpYqfRaDQajSY0uhB7c0DB40JxRC2YdpUJQiziK+zFyRAEl5fE2rraQWWYJTo7UnqxiVxJK0dWCNJjkSweQW8kdZDGQ67hZEpVegX6vFUBoMkaCeVm7O34V2G0WCwWi8ViC0sgdDRwHjaSEnAG2q23KbaCZpCAN5TQSVLBz1GYa5xemWbYqTsbTLgkoyToDvO5TNk6zvAnwVSBEoEx4FWuayEvchQKhUKhUMLqU4VGOwvsQ1lpM3mIXJnEh+LspF8i/+iTDgq1caX+UcH+Sy4L3js5pPe4n7Q/Rt5t+n4hbOXkDoV5gzt8ZBXHWvfDRdrQqDJCXL0oagN+te6uSRuB/EVQmoEz+yY67fLPq72FMnQjnCSQdQvQJps0GoOtZZRYQk3NuorbEIrkRcdB/7JMcyld7HusocBQ9uZsp4sk2q7DmgyAiJirbE94vRlCYnRbv0I897VslA9d9oX3A3/353H/lP6TVqwLELELXRu+Ulemrl9dtZ+S1LTEuBFCvvpaKMXJop3kIBzt2w/Ravv1E8uxr40+VhqrFLxUwI2aBpU2jCdlo3qqPaxLsKRROEdGtEYORcg2nmUOsvSEqRnvdMntkk4JAX4mL7ev4/uXUS6e9U/k2Bcmva0BE1Y5r33MwWGOQU10Wp2KO+z8cU64ZiEu9THBnCGMY3ZIdDngs4+eWi/7EuzWPN5XhStWRGSTbfXZrDuNiqWUUkop1Sylm8AHv8EHRzMzM/Nob+m79xnVgq7VSEQzUJD98Jlr6ipya1HHahUQEDGEEEIIIc5UZ8kJ5AEAQASBLvq4yXfU1C6GadVzOtzq1N7TAAAAABBBoN/ef3OetO2KXj4dDtOwGcWsvevhesQ7R9M0LTZt1o7dPOm0I3uLheO5Fmd3lirStXnV0aLhZXUHCwT946vsEBKnKoA2BVVwbhbTBb8/w8T3u0zFD2JpTEmSJEmSDFI6DiH+qzN5WywWi8ViiYtzOI9pE0A58Gj5rP3cAtbKm3F7sB4YNhq59QdhGBfDcrf34o2rQ6iylVfPXVWvXFcznrqQHZmrdT1NrI8EKaxAYgCrv+EuSXEjrE/nLQyGKEug+Pe2mfVJa/R7elATa2xYKx2eiTP2V0JotedKwv181WJD8uoXpmm3K2/c2Yokz7QFYhoiGlcjLGUsT+5AIAIAAAAAQMPGbGh5DWmXamYH6UY1FCBdcZ+38KohfpVKpVKpVLHShIZ8nZm/a7m3nQV2po5Am6KTYFb9cmm1Wq1Wq42tvuw38g95oqa+hxzNbcDjvVH+tN5tueT3rj95ctD+arvvFDVelLFUKBQKhUKhyIv1er1APYUOPCAV3iGH8nN0NE3TNE1HzXG3nb0+d281eq63qIZAIgUoNJ3ZYS6q7/LSghIXa97er3GviHLApMvEt8u9qWozbhXgGGrooDLvlwPuZqhyx7ssEZGoDTLxI7nagrUk5U37CQB428mNGWQQzZUDAp0Pg3w6h9sXVTJCiO0HWV7Z6/ek8m82TDmJ+mVBgQnEBIDx5mg371P0+A+RrFeAZ78j/M0tSGoqpAtTBSqX/PCFGz6syfMLOlWuw9WS1kjGrqRRk7Wai9o/2/ojZCVltIQhZQCTFUruzqFtcaWenamvX26Losbfg/npotCwSBTs9jP/w0R8516x9bPjJJ0uY+5hoXur0bybPWQQCOErTRpsy0piezlYtuKTXQ++htNnM/N2yp0sM5muA5nh4wQrn1S5XDGpElYwQkJCQkJCQhMyM9Y26WqlJ/Nb7NciM0nhlqd31j4iNZEG7kwSipxYtNEt7RQ1Ma5627RuXro/t5J8G0iRk5OTk5OTFzkFhXPIlYRofyIqAXJ8GSbvxEl3W2+JmLovFv+o98z2mew8x2tXx/eb0G0TrXlKgXMyJXq+TO/Tox5ZdxzPNetEF7tGyhhqfFybAST1idrwqA/X4SkjHY8/sEKiPPm0hXkfg50kQtp6lkjiTquIRjo+swe+tyZz1UiMbKfZUCy6Zbg4MqxLAA0BknMslXgsS6SJQ4O9tBTvaP3scODX97MvtCCeDj+Oe3cmEeoYu/nw8BimDA7bMH7lOOypwvcKQlpa3S18EFE9VDkJ4kk4z+G3F5kz4WdD1ledqoOstrtcd2LRlQeVWfrleB3IF9GSn2yN7XQZf36nLdfKInoEPS44WobwuskAr/MAhAbkXZMcjeo2bVG0iMbjBO8karWW47ukEsNBR/RSyU4xFi3m16U2IYw9zc0arYeUpjxWGnnrSyUR1TfY9SbqAnCqJYtK3b2xVz5g4h7eUi3bQupGvblyCgvINneb2c707431VlkYRsbmqVWoGzTrD8bAcHagDIEUyvZ4iy+xEykaGZxYDzHtcZpIf+X785nKkVUB6ovKOdK4s9EJIa+ekya4qr5oeHP6yPGivZVUHIiJTbcM9GsNXkphOHp1z+rb941nByhDMeDJtSgpPdUWX3v6eHedbzjbp/sZZtWjirt5MJgRy0jHqqSl18L2yczA6Xq851jHHPJ6UoPCHSAJ5pOw2yDlEuDBv7icI1n9mPGi5Y2OmJRHB97b34cAzg/5clGBW+GZUWbG82F0XKnj5XulFB0YeRE8G4YFpPunulzQqagmWNpn6PbXX4SmkBo1QBo/hIBIDCvdrT67Q7JIgYau12DyRp9SoW4m8aI4865TGGS39Dbf7OvRF2V/HP5EHGxAnW0NsIBta+Clm+L3/ZdHWEYlDofD4XC4yOECN8R9TA1c01sjaGyrgaaAWENIIBAIBAJBDASCS+TWq+CaGlxPwMTHbP8pCxoybRYcI5FIJBKJRDESiexEVcxNlcMchYVs1bR2D0dh4zdV3di/1WgN3kKAPXu5BpWvnHdoFEWKiE5uExgK12whmLWZoBOsccz6NdLcV8y8r/a4CSosrQqIUVBQUFBQUBQFxdmCLXTYtlawQz1ewbkWkllMNf/8elkLb2RqCCHIY3lH0qPvzdb718FGm+NIM3DQdc7sqCnuvyVQBKMToFKPBqxrhRSbZV5daZuVDz98fHx8fHz8wsfHl2u1SfKrU42PVv+Wo26HCuTAGLm5QQZYs8DEFuUCueDlR9SWUmhlK38DOUJCQkJCQsIiJDShL6+wVXENl+N958VH6jjYbO578bzu8dfv9Gg+ykgeyPwSxABgbLPnGWZkHcLoHuBhnzTpWjd1lnvBxsbGxsbGLmxsY/N8jW7gwDMJK7MmobTuEEHJXYHe6p32302UMGFm1hgmgQKMbNQfs87X5ROJ8X6PIuFhYGBgYGBgFAaGMaBOCi13bUOzsE2EaIppyrQAAAAAAAAKAADJBNvuHnzg/0dqO2I7x6L/w/BEdil5FBGCV3oiQQ4P/UiMsBWFLLSgUCgUCoVCoRLRx/p75lzhvpZHm2sXeqz3n1vOSlqIhLn5xYMWnWEzklVoYOGaGerIAbTkrr8Bi8doJP+Ked07GDG8rot3qQAfwXp81gKnpkxupLdulAtrwnoZqpv1s7K6b7aytod+n/fGoaDl2XiK1nhW9wgnAdGYk3ANuE/15UPJ8B+W21b3pxLd3GpZCmxFfT9XwppZIZ9eXe54LMcLW0OX9yLaygeNHtCWrDZ6O94te7dNu2RZHieZyQI7SEwy6B+VuhymSQNRhKLsgf4aZ6M1KPmjNiD7b0fGAUOEVzekYckxbkrHuIBppn5N8iLapRuD81/2vpHeghzsaFkwucUipMqVEwsdkyHs6iiuGK8YLe8G6igFqP6OcoGL+wHwNbffOSHg0CVNBYooBAKBQCAQCAQCgUAghHuBBWE/kcd+hN2SzDViFTBravKmmJYLAaWnEanKuARhGqnCW3kYAf82TWvbgO+BpJUGzR79RDQLL5/o6enp6enpi56evl4DfNHo6yW+6/Wnb4Y7c/eq4Amk4y28sU/Z8l1LsTgbnWNJlpiEKVI3IVOUBqBZvh8te7ipydY6bc1spYMRIYQQQoWQkb+YxCZMZ/qYerNMEiT5k0LX+lgl23CldJuKqXabvrFuX2ggSaRin0u6Wg/O0pI4gqi3l2elvQU4vAs44gsu08BV18tbx5tc3j7YChBCCCHULBm/+d/faqnTg5C+XM290E6uWeOLD3UOhK+3wV3/GLfV5zJl77z31VcIsYEoi67uJkciXKP5XPgAvHiyK8M3y3YeIF4tzZsaVUKeREVEREREREREZCKKnyRTy6KQCNPMrX3pHlja7fXPLtPdpb+jz7QgWkREYZAvjxhQgUAgEAgEAoE2QnlihBpLX9UF3u2O8io6GDlf4ybJtcqmnf9ro66b+OYcPyhJ2jILq1uA9cWTndTsqQVyVzgO1WrSBXmjLFGUoWY2bUesI2dkXKvkZjr899MnLEsWwFhHEkLznC9EWvbYFrbXLys/s3G5Dl6/rhrPIrcVL1H1WzGohYtbuLi4uLi4uLjGDdsrsPTpMCCptB1ITfpnVpgd+BHAzr26ecBC8QotK4EbvE1Ak/KC7PoFLz6F24OLSQTeDjwKRIWoa9K5roGv+xLQVPU4bVGe/5oLXq8vQjbuH3vqGeqtsHvPhDqNFpVR+ShcFGX5xeVWfx+8Osmv2rlIRXqetkj89D8P+eciH/nkEy/8QlT2/u/YO14+/t285+8CVqdNz6k4ceLEiRMnTpw4SS823N763ua8tme0RuSr4Fi1S/5KpZyfk9zbJF6Gl+2aq8sSkq3yzRkctXBGbzzNGRTaYPptjJTdda6H/GmZUj6ch5R8FMKewtt9HxYmLwSs4jVJXMTExMTExMTEJiYgZa/ftc7lAzy50H5BBo18RahJtjR/SUh6VlT5qg9UYtszN4UCY+aOeaPly4QhGA/00TmmJyZhR+hlJlL35D59t/1x+wM91YH/QSCecVfpZk/cG9MrSKjl+3Ai4z9theSLnvnMbtYEWKpacxwvtTCzaHxdWUNIopbA+9cbNXfCXllZJq9JJ1hUjegzXSvjTf0aGLEnGmVXUbX068v549key/bipYfwb/d9OomJoVYlzVHvLo5t4MHMoCkYAwMDAwMDAwPDGCg4y64+KJKaQayJPi2oOysrU91kjvPWIkrAPp7zdYRENwB8HWYed1+zr2gJPDiYSNout4xu2pqfvaUfgP+2yKqbXb+dKra+vrBwwQW8LTof/S0HTK+SQRKdD/wEnO+DYOFBNSreabVvEaIv3gePCMQ+DlADXXUXUcnyzfN3KnyksV9bLr9ImF6lCefBTFy9iAMRERERERER0YhwqGgLhgqzaBgB5kTkzZ5iwfqw4qrQ+xVjVDbTyyrI5HKiG52f9Ap1Q7Xgf0t6vc1KBKivnobwE2t60X+lc9OjiNKmzzoS+4lu1vlhE7qsNComsrc1LRvGZbPQ18EL0EeEXtzxqpW77sUpXcXIfZax/453C/cIfFbbwj96H1/Gd35fvrQbBzzyX7DbfikeZTke08G37JdiUdBHYCKqeowtpv9VTAgXsr+paepQ3MbS34ejA9l/LH2M7a3i9L+iE8I1rE9j75QenSoiv8IJkxeqpGDgeJVi0JjNyWJhjDaSfSqWwdeIoFwipTozw7sjlKHSEru5xsfXheIhS/0RPYg9kYPnN6wYhgXEJExFgOUPA94hOqTdRri3s+j2WAmyzC4BDrDk1R80PIrx0Ez8tmFJnmAFVysJviD08HghKpZ0v32l7MfXAhxlFLm81nqBZOEBURQbDDojELyiX/eMhu+QmeiBMQ5156K/Zz1//+Le9PSMQnPIeEoQzS+GAbyBh4eHh4eHh4fnT95PAv49jGH8rZTGvtbFkZ8xD9c34WYPltMR4EzEeEKVjRDs0cebUxo/irw4QXrTJ+XSY4IXLRh3Ml7BJ+/2RGnsOSarICq1biJ5Kf6Eh7EMFWeBrf7pSVs4l5+EMjExk2J8gmNsjPumm6F89qy4GvYZgdlgrDAZacFXjzEVcxFMY6DeN8VwpJrxnyqHhcamwVpr2YuWdie4aJWqMPBd2jnm63PglR7D8DBi5GCO1Oz9+LgqvOQx5BiVR9PPgXt6XIcHCgpm1NSAl82kgVp/vAVoTAs0CXbTHct0M8RNqid7/373eTc36emyZ+9rfw4hDkrd1N1lhVPTHpCrNeLEfNrG69aN4ybGrF86IcOx9WOxMNUy0TAS5Q33MAiliWvxDNbsSIcD9wjol8kR1obN2B+YGMsd8WNVY+kPZVbQMqbWTqQT/mLlOAtUspnNnKZ3fo3fHRd74eOrj0rWzZMXKyt+8MMvw/iVfh2ao4ZVzGwUZ/k5VfDgRw7kydr1pYPq3N8VB8dII6rzOImKXSeSMqLw7TqVv8GVxkyp/yN19lE8SbzpZda6uWJsxcbExMTExMRkJhx37ni+P/rOYzzGYzzGYzzGY8Vj/Kb8zer3QQaeM0YC7jyQ2BzN7CHWjW4gEU2Foi4Dq/zhR2q7cz8ex1oGqXsTrntfK/O1U/jFXylxMQfDW42YyW2bc3A0LGOa/rucjeOLYleuuNMNr3v1orJNZi8aNmzYsGHDhk2xYfe78887jY0X5oNgi5zmrjCacS1Y0eJxiu9qMokCLYyrhdrJPM1xFkGDP2TC20htZrhjO5iJ0rgPw0CWmxmxgg5HE/sswtoos9f1lX4gdKmu0XS2dunphf6M8A7+VtJkn1l+qgO+3E0kCgbTI5GIDrcC/IoGg7eV56vjC4/BYDAYDAajNPtQIx+FOshoR8Yoh+XGh6/uTfbFVVwAAAAAf53Aog/CM2z+PPEVJ4kVayJMhL+aPd94kB7yPr1qVokCqmKnr0Xc9DY+LU3pUffxIATw2KOWcrYCm1uCWFZO4F7TPVwYPZQR8XGrvuEjDrG3wasM8qKhqGNlwaolEExHb5jHwz0KSiZG5ggq0gDlvkoZdWx7c5Ls4HxhY84wn4+g0kGvKqN+nM4L4tAFWlKXZ+1fk49+bZ9zvXZH4cMSFUtGkVlw3Ba3BMZuduHzAR6rmbnaz4dQT8qmbYKmVx+W/PuWwTMQEyOt4EuutC/fzPVCx0j32TawlYwYIv7UdxP1kHTBNIdXULK8s8L6/5SPTajjcgsaHLEZ3y+nW4V9zPhEeUruK5UE29K8XhHCq20/ORyyQHzgHUt5DYTc7K32Pdz6iqYVICsyc2Nu2dzAzkhM7MdmXVzPuJ5mt7NaOq6qjmXiLPLOTbuihyK218/V/aHsjDSMqlmr7v6ioaGhoaGhKRo6ujq21iz6Ol++t/sTN+OT4GSJFE46Edc5wH4qPVfc/DDIM5Hc+mUeivm/AQE16wpAAD3IL5MQh21oXtQ9PyWWWvhy+QphGQ27sphBqabFLIboQ3lGFQiIAgi+U+ZJnZISYvuwWS0+vkvMMuLnaYvvb3QRyoGsq6z4RqA5sjdhVtCit3qdTDo18rqHoaxx8APDD1ZWnG3zkSXgysBIxF4RYyDpdsuvHPM+sIkItqN95K7qCAbrbNz07i4od+B/QdqHc3sWEcrOlHaRCbGytlkDPmmPel2LXpfPB5MB5RuxFZ3psLfeY+OJL8Hc7KZCBZBDPI241C/+5yaiMN7rLChhwfnmeaeTUWo5PuzobvZXrJrB68g4G06fhfhivSlfjhyc1PrIjiXIRXJGJxj+rQYcjq1h9OwSqWS6RXs/cf6DbbREvkHvr2nFeFpbxH613WaxEtUjx4qrjmbgal2QyJDRrUC13iv5PoA9yIlfFBIYwp8Glbtsf1SybHHw6XL/+po+qASXLmc9rRNXOo41HZddzN+tvo1LH8S4bHFkVOTMdZwCwgwCshuPi5Genp6enp6+6BkZlbWsMIISMcJg6SXh9nJ8kRv6YkywZkcazh6OOVzPjxHodc2c+88YqiyLowiySgsnQnmPWmEJbP/OfgC3Q0UvzzqOwBRsMQ1w5nL27C8AeFfMlhToz7lpT1iROzz4MDbxglnZzqImAcK3GlmJsNeLhUU6FVpKtXMqJF53tn3gEcqtk445KqYmNl2zImoSv9o08WQ2m81msznOTuPpAmaU0EOhE4zlmk0Pc21jDX7FcVlk3nk18WnDzBoVLD/6dHcyeDnFa7OqGhuq0sv1bJJ84cCQAoFVc1UAAAAgAgIAnUbIM42f5ywShRBCCCEke1V+Fek2+hm/4TiHt1Lj4dvnhLdlL3f6sTHPjNjwGr6AWpste1VpfsM0WN0aXuF1vTw0DIXk9O5aWrobXp4P8PRIgt5+uMQz1z/X/Ka8MLDq74/K4aZ/1/R1d8hxdkgjr2d7pnU3r98g3s8cnks40Nujqvdy3VadYvQESmTsNtHVF4VSSimlUSlNktSboPLg53kdC3TkErtzbnN+6kjsojHGGGMsGmM+VWx12NtS38N4P8g0iO4Kgu98/4fRa4c1OLMIeJH6vHLL+jN3P6smnMNr+sc224eNXQCqCmLtKrVwwuEic0nHlM7XE2HagM+FdEx/yjREM0nfzJESby/JdGoExlyxfbo6HD6kgucUPpA8FpDybEHO7Of3rHUvoH05tKcb48qWqETMbtOPZP9wYlHb+NtqpZC9PHrhYtKrTagGhbchb9CQORPuRsSm1Xj4N7rjizK1MCEMOwf7YzDvvv5K7VKQRl2tDmqCMmh00cDBnKaQMtatxSC0JLcmidQ4lzERBICaSxNzA6BilYyLG+LqOlhZam4MH0BYXlp5lUPYOxkttGNs0+nwG1HPK/JKymUnfVvVAZQo0m1r7pXcJG1iGrRvc4rxjHNmYBQStSN20Neee9DsZuYEAj2NzDbN4Tve81dcdhz6DA4/rRIeBjxQmhJjUm4mgNoBNi2xqq1b5fLyaj0PnGk8+1H9ryTZI30cafY+/+67NnbicUYuY8h5xIhWHNTpkZNa1qPTnZNjnDsut4jyOCrPTjdI592uJYS+NziL3OmM3YriSPchQjvW1VA8s6EX6cNCHqAmyENSXUsG3bmLnTjdMVDhVKlBRGNJSGumDgQC0wFng77h44IjMePJC9GS1PzvIrbBSKLDJYSujfhiWFIkI0HllrAPeMIbdfzu6PoWYVKKvN6pr2A+r6a1IBcuXLhw4cKluPCZz90yh/nWv2o40wFPiRrIQo1vlqqxQPu/nMHK3RfhA4Lw12+BqXEyw+v4P0Hpo3eJV69/Wzw01z9fzRVsNGqW5BkFab4vrs1DedzSkn1OMklwKq1OQilrJn8CAoz6N9aKOVoUrqbtsI6bwKwASHA73v6eEo4B3vYvFIEaGnuntCYiJqxauRnluHN5P9ncYTcOgY7wNDg+Ut0vVWoR9vn7G7qERu4qYflTKaL/GqFknlVUy6ckscstIhOEraZkWpyFkd5ROssUBBrOBKK5TeXR+mpp7mqfOwIkEi7SreBthjxv8LOHnZBPT7a3DqIaNpc1yCgPyjnp4qJCSg7YCIy2b5RDwhev0AbYDfq9I4D3COBlHUkEe1HsJiG+nh1nHV2EDOmZp51KoUnDeTM3vg3uV3wzcB6jw+TjmqUva8RYu1dqul06Irt3QeNkr6IHSFmUFBQUFBQUFGcLKpBwJQLCuQLGWEs7wNJ/TTbgnpe5RWbp44k+K9s7F4TdBFKpfwOee8wJOE+8m16oZHeQVbP/r4bncliHJuI0Pd0N4WZM0b/7k7HBbMk8vN043hyZ/IPbisnsxYw3RJMgSnHrXjVcTa8WJs3lsKv2PqKmpqampqYualrTBgCDs9MAchk6iIYZAHQYBz4lTE4Lsk2v1ei4Zz6OxUar+1+duFgT9I0e9/p/jc66ajumSSZvLV8wRnjIHkTIHEidi+iWm220FeCILQ2BRk9xSpn/3MfQblbElzbcYbpx/KJ/OdDTdsdw4aTLhUVd9i9iYmJiYmLiIkYZlTqT+E/j9BLXQ7YyjgLAmvpYluqKoIwaVPBJG1OS4/XiOseBonFXxDU8rmnsvt+FCbtGe72T9OJ1iB5W7TJgMfevGlpyxE66/MNhpHnOTPJ8bg+V1cREXEkpzbwvXBwQ9JitWFk3Wm0k0Y0ubCwiPdLFV4F4zjbwBznwu4OepkdDXpWOtBF6oGGuZAQynu0YHRBRj/NdYAAO2bjOfogQM+ZkILjv9umUiRFeWMV9rDDY3N3eBw6H4fpWo/iR9kbhylXaPH0BvNmed7WtZjGLVPL92llsgxxV6gRp4DpOySljNq5gBQ13dXxIsSAp7XQz92RjYUlPud4Kla5GPECtbHu0fQYf/gDlYI/jU3esycSDk5/sjNXCqLNzI+LnonNe0jPreSLQfnZvp3BMjzvCmCfBxUZmoZiI7IavDd+4NLABf+nvFJ+FUfTNOaItWmpqampqampqxXhOG7f3NMWpj7lTVeawc1eFET2yL94p1eC4bGJdqZNuzQVErFVa3GhP1JV2JJk5DrXua8e2abFgZiwOwqqmEVwZppge1Ourg5v5w9bzdeaPHxmF4uVlwmAwGAwGUxhMMCCoh11pJ7f4ik14+grHNzBpvDjxfBjVM0ft7RIzZLT8dNVK3svgyLNYZuDnnwsLBPW+5BXj7DhZgg8d1gYoJBbmYoHM0cRAw/M/eR7SqZ41QyTEb5geZrdsAbEwhcFgMBgMBoNZ5+V+ZFa/fvV/KuM+o3z3l8E+2WpzQFYnNdAxd8JZWbFWgxUMBoPBYDAYTErtBpO+LAX/o/7JfjdILGr7Ogne06j3Hz5XmlDINr3EsMNXT9PuWnCGZs958SJFbCpHBWTx2zfO/5TDqBL1jjihYqHdqDdsbSMwMzmxSQ47C4/haSIvZWZxlBCDLRYTzSeuaTjPPQvBJR4IeLwN3TnbGi191l130Gl5byuWdlo1cVuvtAUABQAAAAAAAAjJGDLzTlkr+DU1UadJ1bnzKVRCJJQuOK3KkMOloZX0V1rTDisR2gXyLH8SFx1keQyuPV0Ua2y5uQsP3PRWxbHCjPFVCc+/yVT9r/UW+i5vVerNY1+S3FlcjYQy92yt2dZA3xkhRl42iqHhmhw9Urm61DKXXg7lIT+pGIhDWImlI1pHRCoSwZcVmWINT0llKaNDKPR9kqmAqBTv8okXXkzBsDApQvjJ+uyzkxdz+hImH3P2eQuVyX5oEVmBswtcCFGqRkh5211QKcB4wbdATHeU2i/QVT2toWBIEzcRcVqLn7juKZCih6M6sd1PTl9R6SjmexhZS1as6TaHyYF99Tl+9bVN747G4k5Yfgq5lyBEZ4Ww/QiNIwtZsM+pOvTJx0U2U3hzNewT/rxAry93RMhBtK6EXsbtk6sLi4u75e5TIuvh8k3X+yKyzo0+qfsOk3ueW1ZlsubzjsAzIuYUdZfm+LFpKZdQyUVWT+IkG2WFVtXf3EO3tf76bQUoWMF5UOyySFqvtefe0Vex5ZUdFnmeicsiNa/DaGK/97lEncynYhzFmjhf9+drxKfL+ocSdqWww71MitC8Um73II60a0ptgIQrtRt6Ee2iWGiiL3ncCXGaJx5yByXeKUwLVQZn5lq6dmfEj8z73wLv7A6Z+Z4bdJkUHqDYF58QiRbsc8tv/PoA9CwILhFnPB4WOlwHqGF479yLsTf+Wl+F5871yKJfLcGHFN9HxwE4WWMUk9q9G7mmIXAnyPU+N8WM1wtNe+D6sBBBGTJn2IfT3k4OB8nM9hOpwJ0eDke1CEFPKjtTTMS6YX1gWBTXUNeMreNF3+oeqU17GRyfcEhK5dK3QR2k3tAmfwUeqoWrkmPPB7BsXzUwOA9gWb+apQyW+aoskTFdDoYIgiAIghSCPBLw5UvS2dhhITf0iET0U7+7Hg7uyoWJtaVghoLRwpeIzitD9ak9MftF/tKToyUgczr0QtNw4HhNYoUkaEuz6tNhwbFrFntHLwi2HjHXep5YeLLNd2OfRmjO+5FHvmDRMsr7x18ujNAYlsW0lBtZvyoKc3VnNFcDWUcbBK7z9EM3W7vOEkD/H2gQMxlmgJzXvkBpwLP28IE5Ic4MjwBD9++FIBMIaElxOjqjJVXoedEwdGt7ATFB1p1nsLzzxOme4OaFQQ5cT9hOXrH1ighhy5CwEax3hpFO4iX85yBLiHSzleFd6dQcfymdXaSzbh+K6EzBSc3IYSdE3/jUpzvGZRxhaA5LOeQCIpFINNlYWO5JBnh9hOBcnT3ZmAlH5e8IbYkGsP58ICrOcA77RdtF1Bwy1KkLO9OLJy6+k1DBPLbADpzzodIfI1421DIMxCPz111nAVB0CRrpYvHHzPKuDoj71N/JdDrllMpFzajlYSN2qidsydGAFoR6CdMckX3LM/Sj1aO0jW4iHCUwXVhKBOneyOWZEQ4hNsJSKt4WcRWX4QCOAbmH7VDHQwNt7nHpZRvNZA7DAsAVaJcw34Yrn3HxwnEcx3Ecx1VYtT2I+NQBLn1ElF3DBcMwDMMwDNdyOZ/c948PdH/4P+PvZ/BCWTj/YSWTG8LthnPPg16O6gr/igCQs/o5CZ2ul0PvzqRWDNqJJsv3mbuV4AThVGxj2n/xkVCkhyVwy7j+JX+jMUtep3fejdUv8KU2pbkGUyx4cup/sfprNQalKd5zxP1rOTw1N/6w0g1b0gzDu9/bpDCyuqnzX212mfQreV0oMq25C00PKxA7tWONFaa+nFuJeaihDr3lvRSuZgVGyEW5xY2nnp8G9y28BGyHWA14z/JWFkIodmPHP4lT5fd0X9GJ+3aJRx/lCA6nfepQZ2MHMHPrp3qe969RtGSVTrAA7t27oKeMZ57VwdJkOWNmJI0+i+GXzOkRx0vMvEif6KeN296LFemFCAFVe3mVE+8JnQOdxLnefSIk/yTfWDn6fJwn+9m0NczHUuRXO+NYRusGt0mRIgvT1/YHOv3y5SKRp2SIMiGlEynYrf1iCmdL2vity2xAJGOwGEa89dgW7mkzxXdvGd5zYeb4fV6h32KO9Kz9aUJFlNxe2ibUfEvWhWTIrvA8eQUiv2A0Zh09EBfwGRDX6Q+Tk9Nw4fLZI3AALWQVG/bri/8rvLo+ZggkKHrwtOk3IIK2qGJ1M77HfpKXcsW1sJ4S8y/EpMQ6L7stUSMxvFIFu3TRIJrWVrYz/+lkp/gy3G9Rb1raC6/bpHGZY1w7aU3ZTfnlq4E2pTNdGjTuNQwMDAx0fuqOv+w708I/e1eux7A8HM5/oh0WAVYLylS01YuLjhXfJu9VbO1VMHiCAaTcqLNMqhlZQRdfzENI3TRtc5Pe/DZZQBawPA8bMbYjWr9X7Aosf9CY1NB1vrdh7+3pWAoPw5jv6mZJvBkzujhvfNYSLd6L9896rfeLn/s5Rxr0w+tT8DirAfxZcGdLN3jf8IHDDRwajUaj0Wh0Eotzyi6M0RzaT+0b9FjqB8UmhHAp2I/MCEVYHk+ns5VVYA1hOkb+AGrhNfhuUJvVIQXUTfecH/BAT1riHTHSDBHNyKofFY+ZcNQu0FCOf3jgZvtppV3u1WqxF4TOhE8SgN4PhA/Smibo4rIXaKT06TMAENfQGoJivGbl7udt1D5h4PPF5/B8D7sprToI1coULUk/N5CoA4Rfyfg/haUNC6aa9gISX8lhrL4D1zoxCBJBv/QNljsU3gnkM/RpqJqLvS1PWn/qXyesg5n0jwiLcZfAyHMji/SB3DawEB6uMuIzPSvTTpqx/nzGhv3BSMuI78uXHo+Wrm6j+Dnse+mRtVvGw4lsu8B16WUAvgXo6Gj9FbnkFCB0j6y+NtLIWcmeTUSAg1Ne9SbEIEoYKnpDBwcJsjA0NOrXWYgAxLMdyjD6LEXAp1Zx1m7XMjG/UDoG4hUyS45vlOCvSy+ZYuNyOQJ4q2k1cYYmolpEXCnxS2Znbg18ttkkbOcowc/qGP2e6otCCICq6CCM+BqzNangW+GYHW0saFeH72JFsFGWFrFhvmJ7fHnC9GWGsffzwqzPCBUGAAAAAHjvBKZl4+J0wkCgWh/xnWAWdAcxCIIgCIIgCN+piDtTJyBQuELU+tU3Ndqf+u0giUgVUNCHg/p0iQKLxWYeGXMnNjAMwzAMw4zBNodWyoGIqC6xIw872+pWf7NeL6q+7U9qWOhW3fpYi0for/L719KAnM+wtWe6rbtb4AUZToH+naRKU+NYekCbUhMVZjxkym2EBIYgkE/Y/gwjYvnf7ZJe2sz8ozMT4AkvqswMXZ/L9VfUyNbfhpzsKaEI1cEL6zT64GCuxu2FXqaiEKTqHlGyn9B4a69IqDCUTo5FUY1OGExlaDV5XJd6aUl7YfMlZv+umYZmwZ/magxC7dubaR+tzGEsFsvpYQ+5w+7LkcOikeWZs20zWJ0VFbMeFoYFgMikfjZ6WyzVSgDt79kijbGLStmY3G7qdVj4YQAir60WPc7ihpnvmYtR9ruUzx4L4vK0PhgFs0077H33vfKxtzmegYNX8VvBRYYSITJ3I7+DLrlAOKxzrST3aAiwXOC0vrL3+jQmAsh1O5sXMbGyA6wUGxm2Tg4XGiY23g8pjK/ASWEGg/LYXJ9WVv/oaF49eGtesXBdgIeN68vxXz/qV698bx7Y8SPdnABywmDCyexFljzhOsZkT6DflWFowAhATBspqwayq5qXP9mLOuzh3X3AmdturDqNeFLbc3i2y+Cjl4GPvglWL7wtTgZU1qB+SvfoR3T18nfFCwWYk2W7TFFpqeVcmgCnHx6TmY6YOdbyedRpb6LQRoFaXURVpnt5571ZlKqOeLrNrlKP8NePQPfyg1d3JMEfRPyeZRiyX3rsZcU1utLWeUU9vQvzctzMka5rJMJOtWMpZ/+QeeBEdkyClmemV38aHJ24TM4CdJnLrExHykDZuFkTlssUMzrfovYEVrIUu990SrvabWZXQ/n15fOh6fTrfGZWgjNwFgeGVbuw53t8iXPpUaxpOcLCOdHDXHxsUHevww53q6Y0mliG7JEBPTkbiC/OiSN7uFn+Ej/03grFm31TLSjJRM6RJrb3vu7Y9vpqEwaivSntcr0bY+Ozv8zb6zIjRU2djqE9N+V+umTYZrmjanV4WuUChV0FYWVcEEMgzLhtwegrgzEYJprrcKObOUfvLmX3FGK8RQ6mY4wsYB3I4nVffvEUZAH1YGy/AGCMDcYL8+J3Xq94lnaWXT6/lrbp3PN9pA+A96N98MPeBd2OjHBudQyrB9rosJkMFB0oiqIoiqJGHwVaXesH5i78TbmiiC1YnRYr06iySdYJY2IMEkjzrNNj6gvIHl96nVmLYwPDMAzDMAxTbOzbqbLBW5Pk1xKUD/oT4ppN56ToRhFjQ+9zBuRPmD3QNZnDUf/rydzaq5+nYp2496pveAuUrAtOh+u42Gozy13JIFjt5YzbfcdJgoM/+/v/PAryzJAPQcFRm/Ul2wZQUJNQobdVkR1+y/pu0BXjDzwcZ9xk092rJpTZprycANzMUNH5OpWjh3PTrD5M6kGNw+FwOBwO16r1cp18SqSU9icTc6FJWoDRslK4Gurc/cRi6iqry+9ouqUfZ3G7DgsQG/ZOedt64iYwCX4MlKxjdcoIXUq/ndOLjHsW462MGMExbDi7ObqddCzwbgzNdWwm4MrZl/GCfWbX3551z/Rb0rMdT/tM+b8xmeCxd7YvNZ24Fl9WvpT/SGtx4SzCigm9+ZUsxZtZ1VupBhUlJSUlJSWlKfsBh+OHkc9/KshDV8bLPUwF0O+RrDjbn/UTYUMPhkZKAhNMJZOICWISfsX1OlDZKqWs8hOcr/Al0KxvXW6hRJZ6K4fSH+q+KR97VtA6rD68l5X29oo8j8dNnDNWO0U1zh0lOswFI+NgpKenp6enpzd9dyw2HH2rWYjYXHUdGUpDpCYsPaU2zAOW8+WVrYqMQJAJ6UETD28gA+D1JBBtOttlV5BCCL5JCE47L9ujFUaHKGWWUTTmCF3u/wtTuk0hFHigbx56RJnvsuyecqDFk6pB+xTlpiXVEQgp/YojTRPBJnsj4VPBVjOOSroXWum3aBRnWFVjESQ1gXGZY1p/HalWf8Kz4iZxm6Xe69lEC9UmC6lhBkxGK+RFWLWelbkxLsLa/6gMltmJ0F+PMVIuIszgav/8K40ispe3GjdzI+NTEwK3OHFKKXRgiOCrHXzdVY11RATvjjN5dJIhv3KToSoG8WxE0cRmWADJ2FSn1spD+NEKI5mR7m2NzvQfJzq9wOwVFyYwi1kZOWfn9zKOc/B7r5aMC/yAW1WaW1NI9mrNXl0U0oJytKfNMqg2X0RaUUhuTSVa4M+zYpcmTil0uDutIoX259UDOMRd9+ynL5XxStd9RsC+/yMgd67D7mEs3BnfmMeJH/StuzYjV+5LfQkfOPJaQHh+1U4hAFHM0J3c8BRSyfyCGmAIVzP0k4bX5Ae72Wng4DQ4MTMzMzMzM7u5IkXEEJLscm/bpAwEPvxLOmMwBgNmwMADO/cT1gKoFb012AIyN1B00eGnF7kmhhBvwOQ7EDcJve2FYt2qOAMy1SgOK5aq32AoboqCoKxtBcLHJ61g4n/YqNYmwEmReeP5Opya0xpctd25ryKc3aDq+AmWpDWMtJJsgSyLVKUx+/k02Mt8U1uOyb2T1ux6EkYlDcjpxKvye6ecskqh8QeNBxkO6uYrP5erH5VQnvs/c1nHq1KNbKWz4VEYTQH0o0kf3gY0qhLEJ1/uDja2wcbExMTExMTEFJ7CtlZUJ2ZUKjgw1R1IoWIR+G1t7zuXdqDsq1RewcDYuCIJQ4/dqVJYvuYyKe2T6RPOyBiHyn3DNQOCJtNH02WFLprUPjzZuV8wJJb0PcVj2hKYEbj16hXZtX+vBPZS44cK8RdUaC2qUm6xK5xxHs4RQEheKSmfhqkPIdP+Bj/GElQ1XLWRgLMp+7If1ZMGThFtJ2m/kcPCm7XoBd1F/mte+VJJpmo1yM/SHWfYOuuFwB7Xe3wf6dUnt1q9G+fV6V4Oll9kCNtpFghoObupvBNQYAXLgIXVPS7pTq63j0JrmfOS2wwkzJYA2Fzt3KzrvEwWXrMxViq5aGX2z9BAW9TJNhbHlE8D/CHhtLV+m31yoePS0GO9FSLGDr/COqFhfF/KEalrB40ydWZd5gCDKsmmmGl/mbKCYzN7qyCs5Ghrrr5H/Ijf1pUDRuOMcvCQp6sC32Di3CkD4ChYuTb2ztPR0wEAlB57Geo9i5kbtm0UkHgPHiCspY3+IoylQI7z0i+YAgPEOQYL7Ys1nAYCi3Juk0WCJckBhIW+xiaz8kJy43S1EfpxItiFlHGuJIkRK24HzzHTG7smgPAF7MQN4pB+AoFpo7poBpJZLewqLphwcTdYK8sK4xkkx3d/DKw5XMSn/u3G4XE5gPHwpW0gELkY0nO8AIvFYo1YYZ9tfJcR11dk9qpPb4BZ1Em0TZFWYs/cPoipoXxCZK/rkomX2S8WfY3v7o119IR6yf5/kwiDYX2ohAztKYOErC5LjW4YUFCtzSSjNgK/+hVI1uipHV2rQFoDsVZAr33JTi+/BlD+cTmQzmej6IscmPdJDeutg6uPVnz8INI5rPqP/nL5LvDfBB8nv6/LXz5sDouO2chzf8lsYHsce9doHhckCpkDCAVN2LKxtlLaUjOrtZondH8DES9Ucseu3amtp2qNH42NdElxJ/67U9Fn6cr4RMIZChWSNfKCclX5UIMKlYvB1kaZZZCBlOLUHU21pAplKiR2LuW/btMiof/93E7+7y0srVDZP1BQOpe5UXkxN2+SAb9kG4xO92OBEdn1BCELCvVHt+KehEUkow9gWAxdU9MauCt11wFHwAEAQVS3b0CgzehlJQ7eul70fr1HwOcZ+KGQ8xerzDV6VGPcVaJ6ZVEJ3moyy+bavFffJr7Pr5obRvmoLPt9+cBoRes3WBq1LgzBDeXPiz9u+I66TCRTNw7O5VLhcS1eX7xQvGK+JT0vx7rleFSXyweLsRiLkcUS0TzUE5/Ro1rE+5GMNn+unuK6BDEAwqRuylTKNMT74ZRUyaljBwpkYeUoF3BvN7LiAiCQUKsg+juTFQdwSKeeyusewymp8aE2f+R27dWfsG007CWQOM4pmRCudnS3/xpn2EcvwqtPvhUnXqphGHgZv7uIi7iITIyU27JrNWY90B9q0yUdJ9FcgFGHB45VuV5MI1uNZNAiTgOh6epxTNKZ8vg97xX8mRhEBuuGLwrqXnhWd4WsPLZaegFtTj6Z0sE5IrgUIqcgzwFEAcPcm9jVQvXGyKXOYpP0yIJlu772dvO4GunKShh9XeHXAQyproIqGOZiow0+CB3P2azCSqK+jV2Vme9qQU1MCchggcd7WIt86hD9wJTgpQ8D562irs3BZXP1l/jH/6aRJBId9Hi1Ysx4EZSq82/TLvyQE00XuvtwD7yD9VI/rV/Rodh3K7Oe7Thlf/xnt96aEkflCP8RA8UZyUvfCX6Sk9s0Jl9aSmIYhmEYhmEYhhWGeXPKc5EziXNLDS6jrfcgJHSNj87CmXxu7LdGxwfElSEM98JzU8+kQbhifjc8md8EMhMWbDaveuh+nS1UzvzO+0paWP+YrFhlZ3Ou7EDIWmAU1svxRyMGGfSMTan67LmOYv+P3LuWVgNuIzJ4lSNTnEvOJQ+LfKuIptoJ9hu5wz9bLFfCxjEE//ju5FPVW81sleIeBhPML/7vSv5W13tHaNB0WwRrLu7CsB19PdaJ/76J1Yb/ynKTQl9FNzse7w9k/pV5J/BLgXg/8nqriCDW90coTuZrcoueapjsg2Y/2JsAGDTccFxdqFVPa4ej1Gtp0cytCfQ39gjzYHSteIC8UkUTAvOiJk2wUnQXoXZG1tBn+Q9VueOF1/JFOhF2JtK/LjORXiRBcKGkFLyud75WjvO0q2fNoa+nYln/60EjezSGHI5C/kB+TgfVrhTSln/I4LgZkSg+VTwoHua/NHm93JkzG/KlX+1//vrX7VvxKfNLaVTbv5+5vPe3+vvx53Hyf7FvcfVPBM/aPXhj7fkWpBeigN9K7/VnFQJPvLPMYHoKrqE/vVPyBT89ft7D/v34hJ3okMIOWJPEpjwgcjiKeQcfGQU2FCxR7/Kj5aDpBONz1WiQDEBIho5VFNfF/4p3Ak02x0kWXDfHFVER5TZg9OLcdC751CSeZWuNZt2TLMHkmS2XndCmN9mXG6PlzzkP4mynmN+ZLH9IMA4hRei/9/3GI6oGRaDRNNmUs40nco5qD+P/Xc7GJXj9of8mukT/Vnco9Pb3Qdsml9Z3fr00bb4zmKs64s+QVu6+VamguruqrIZOn8fx78nB2i+9suSh3P+iZ9tepAxMw82+Zpt4Dq7t7gdHheWn+O8M72tBQlqcHw/Mfg6tlRvG5fWTVaqMfKcjvOKBpS0PBIqsKGsjnzjGJ01+2rK2maKajcykr5XH3sZn5ud+5B3gmbfNZhY2N8uqC7Z9zygMByB8sfrDP8j5PL9TBHnpeg2UPuoe9lJbGWhkt31u4KYGucAYGclMz2oZ1lA/U7TXq3IVFSO2a6XWGsounv6D0gOIPdwEVTGKxsRLtLximvMhmLbQkoF/L3t22fVSBmNNisetrsHj8XhnbP1Mu1g99qxsS+tMRmmIzhRp3ijoDjzRrgoEVsRsWpHwJuiCs9AaeDdVnxu44X4I+qEtzFSnFOuUkax9p7FDQq/O/VDbLnR0Ag16+oUhUrcT8GVhFdaoCtULhR6tG4PqVSzrF6PwPZGkv+uUNJbrbbLobrSYmOzlROWkBLwNbfgLGj9202lb2zbK/bQ3iTdqd+LJRXxZlafVZhVQNqwqHpsDE9sQyxBrfY/jlYNX7iU0Gz7u3YPOPR5ysH2jnmamXi3CCUHluJlhiAWsrErPEk+6qfMbQE3C8sFzb42w2qsIBNV+N2KT0rOptdPL5lSxbzPUKG+0JrOSfp27Ag2uxfQAbPCTBIYER3k2gqoEBQ+DV+uBScoqllEogNDyui0R3kZH5ajvH80aL/qJDYoh7S3fJn0ptVUu3QKSB94yKnldEIfR6CdcAlUiKmWtkXTJAtjRvWsY4GbKKIqsh+zuqDyo+PWeGdj4JTuxFRdXzVw3Ey0fSdXqm2/F/4qH5rpuayvA7uOoHrlevmsVT5Bn9q24NrJOy9NKJpF012mogXZWIGnfE07nTPZ3q4AQULdLJvmpq2YKJJQytNfPmMMj90ivxFvxi+Kad9WAmCPUHDOzvsY/ZveFKN5lpCXS1QpMNcnR63W0fXEDqJ91NE5vjmH4APp6ApqCZs00jWeZ7ceyQIwfOnEZvLEkCMVDsfal9923HYANJ/yikPth+smzmWXKxa/RO5VoQT58IQ39fMfEbeJu8kGngG3gBHzQ2h3z9/HqYHDlJtE/u+4X12nj/JO47Nx6fhu5jyRjI0V/pd7fIH9z3JoYdRp3hhNLNgfwiK3+/1a8XJyKBwYu56UWQfOhvOy+eFB8ypy+awEVeVDTjZ411FAcMNM/KjHdK6e+tiCe+lpi/zbincmPvkmunn8rBvMX5bGQpX934QtTGGNMhfFdD3E1MEmKOMUAN2rjbsPbcpDX+fPxlfQcLXt410zhIxEREREREQsRO3Zs86QnVbOHzPr+Gj4CfpcZ6XD5pt35He5+7YSoBUKWuxfXm9ZuwmLf/HkxNMezh9mdPfjCx/JeQ/lTMck/B3DhD8hPY+npIMKNsgZpRqHRWSBajED7YgKECY5D9WASaIVJGgnSDhTvESXCGgtJqVcLpEBhrXX8J3H6ac35qM2dC1U/RPZjrp1ucYI2ndwe76dl6kpdHwcPEuiqyTBzahfejd5VnRzLu/kKSe7ObEjGGYvXh6/2sgMuNb9OA1MaPX6SnEoA+DAes0iPbRIVCcSh3EkN+0OFYciHgXZ8LZ8BAByUhAU3odBDesk58j4cL3NQvvb7rAf/ekOhr5GtcQ65sZ3TCka3aiABzOc2IxRvIlQCBRPl6X08q8gQttzewZylo3zBZ9KvdWTL2wP3YNMgrMUdZ2vl6x+wqJL3YIMmrCM+6yLyVL5q8puysjp3uP7Epfsl+SJr03tOgu9rM39NB+Q3O68jOJ1a33V9umlVxXpzqL8CW3Io8Xz3L11C8D+vPaStksPfGS9H36V1dX4qbyD+7n2T5xtRgVl+W9X51UDX+xOlQBucoeoa4P+Yb6ul60Ryt/snnzJyyNt548+spOlGvhFNw8Ao3h9+vwM9YY6jJIlPT3V1oplGS2Kbx4XZY0LDG0UuFsJE0rinBCTqp5p1dbSpNZ+v/28qv1qGbwYfxwRmzsmppMgC1sAx7KAUhkUW7sUJXaa5kw6dnvJG9Zlnd+W6lFezIA/5/1Mi6IO3h3Legg0bPdR+SEXK+Z54hXad/vO65UVlCvNxUThItfIZX4U3dbi7tPHZ5cb94UxXf97tIU3fOHyCKe8rpH2+lT+3RS/5u2j9FK+HqbA4PCkEUwZCZrSHpNzG5bXbExOMPRMmII94ltVdxycEQtmTyJZRBHSYtxXtZpdu0/5qbvAZQ0h/NkvToWUmx7rxu7tK1bfQf6PpZJ/3HCTT6VllRMghzpH6Mf2n0Sscjh7EkRuUB4w46IYqDxdRcp4Gn0Y3T3ICWgRLTypJ+V48Gfg+I8Tg4b5+movUMB1BAGvVb4fKMrS5OgKuoGnLs9gIQZIPrAbfkMelBuq5+cHYUSjEEqduex6KPU7zOGvo97LqPN0bonKHwrrkT6PGzze2vfZavginvb2bpqTbiZ7fcmv31FnvVWd/XavYQojEKZypfBCIOw3nptPWKNaeajy9rwHnWY0BYDS6HuER3hVjN6PIQpoE6PM8qVV5Sk5DoM46FCU1af11BVB1RqX/eWz4qxtYWgyJZEQ39YEnMV2Hl8TOtKdwZ6Wr6Xh7qqwiyes1l5dn01T8iZR1x02GkIL6tQ9tNkOhoJe7Ef6eeG9XHzgiX1QyfkFvklxUzGZpOKfo7jgjcqw2QWof7iPxYc7m28hLPVlAkOrHy9afnDUMCWkg4qJpz24O5W/O/ib/tgNPvG2fQJcJ9y2R6qrghz91fUPkDFYM6ueX9JIgQO47PuCsc74NHu/4fDg70HZYBHxEBw2bMg+D5VGIVPqsKk6UOQ/b8XCzX0RiBmgnX51G5vl+XXOXci755GSIqRkfm7TCNmGVcEzBTV/dhVz8vxH5uM3T0nOprJP/cJ7/Wv/ucQ70tf5+gse/va/8y9RPkJBglCIestfyWTX5u7mM8il7hFedrW7KPtF4XFWq3r1slJX6AAjuVh80JI33r6b1OvLr5d3Y+vCY6zn1n2v+4gcsAxw2VFe/eKTdg8Da3hVZc99esaB6licsTVtpmYfqDr/cMXsnvFzWppBAIBAIBAKBQCAQikAgiJigD5DSyIKrT79gd2vdXWvYQZViE/WT1Y6PjqckOeFvZRZytilnT1YZJAwCJp+nJU0L+8iLBvzrucfTkdUO+QsZfnKQPOXS11UCSq5frDLYWonD7WsRjzvSDdVb/zs5+b/YXije4QVOi8fFPuxt4Uy//05Fs53EdpNuD7pqvlcmSoj8aVRp3udC+FWPxUNtxYZY+FuU5VdGBLZlRGb2U9IabFJPrq8ZgTeBjFwFWhwJr3Nbj8O6xrxWlsPa/PGzT0ElEFOhX4HwGTGpzu5Ou84Jqr3DqSDxBiwwq1T0dF4cxwx8kOfRf0Di4CRivuvDp2RM4cGCEG6mcH+M74XMzC9lTm4m95vHvnzyIyj063tzl6Np6xg5ZfoxQm1035EcwV+rJqwVqlRW6jbOq1LaX0gpjuHKqmMzyfFfDKnUcXzcTBJ+0zYW/x7vcLj+XjqZN5IAihsRtJJrdnicnr/xDk81p3+2JaFzxbG6NYMq7V0ETmG/XA4dKtZKEiBUQNTT45zldBV4Rxtl9v9nvDgwZd0LaNSxkyc7192LnfyKTmCVOP6D6eX6TLNRw9mqmd7MtBm53Kp/ZLq7rYK/knMpwUq9D5zurs6GW6TDOi8nN+EjMQmo9MMaBLFDO7Oup1fNsM+73hWpBQJxu60553nyDwUXmAV57eZ8J9rQmXt8AfkuwDIRy4/4bl6ND+QS5KP4GzOt2lZvVSsnTpw4ceLEqTjxxpvMmPEzP01/uVKoOeGClziOFLEjhDf3tfY6V5WdvhbhCnUKg0HsJIfeiHWc2+GwE1zrhaDIo33BR8flzDxeBEX//7tbKstsBlv0qGRgpvCukLr2WapUf3m3z7eAc0W5Fvx0Apkw7DQLodbUWH63Z2Oie2Zxja974G1Xq/Unwp5R4Yisr9bXl3d+rX9l2XzSH1OjR+yrVrMeDdMQwZ0YT7VclxCu6VHfTV6+hAE3IHvaSiFVrwtAZe/LSEbQfHHZfycszTyUdQhpFRwOfS3EJKE0kdtCahNkfUmhpkdz+EMGGZwB8KjTohn/JDznumaXbNdZURVUMCBkYXavTuM7sEn9WI7t7EALf2QfeRoicb/XCkquS5dmMEJHu4N/DLJTIKPQoc7hSl0CtZSJAlwU/kWUJDcSn5CefxQW6gwOgR0Eb5O4qAeynKJgqjFvcLBSyznmAouFjAw9u01rWW2WUi3hmPlP4ikCLKYFtzuzvHC7DhozIOYNljmQjz3L4GbpIamLFfQGH8sDH/osZwx+jO6NRx2Eu13+c3a9W0860M7B60gxCFhOu6M17d9hABeJkOTKBxVLtUSgrBjHVlkOjsPVvitHByG+5yaZnUBZe7mzil/KN1O7VnsPg0KDMcL+XhMa7VReZLnCqNhoMMh8BIaQ3jGxe6uyNtM0gKW8UdAagpi6EVWKqDwZhpx/rNSRGW7IjiAo85wHQxVwQKkoP5bQeGhLYAI1Bmq8UakpjZpMZD9wm+8TP+EPp+/ZIVfEB9n5lzFNeF2TAa+NbKirJcVxu9irJ9Xmvpd1aOM17EtZuuX2/u0PExLN7dcHBcIRN2+VP0A3DGjuDRuf+QXiWtDtGJvK7fjMHZrzntFoNBqNxjhaLE1iPQOoQ2T62C8TFOaROk0AAAAAEAGMgF1iN1k6m8gAl1qtvxhFQgghhBDKg4tXWUQuXjwoF6QQAAAAACKA4yAPT2fvrMKcuzfZNptOVmiyOlFOBEu8zktdk2C1NK0dkK3TvbO23FaUJEmSJElGSZITw1ID8KEtW42aL4IgCIIgoiCC+IJj4N8fnud5nuej5/kPjdHmM9wOtGiMMcYYY7/Hv1O+0Vc2xGd1QvNP1rcOT3+jAf/YgR8rcd82rAXsVqQqAACI4DgiBjqsEKSssCyTJNO/ETe4iC8XDzhugGAMryxXH69XQ5j2gFqQqWvFI1l8RxLzmcAPtD4EN16AkW6Tf+adl3EYPbFt2N/S4aWEpyWHt1aVR5PHSyJ9B07tJY8GfewnbATyMthjLUn/g9VGw3H0lvV+7cCmGuxhnWuKk8lkMplMJtNWL3Qe9WX69u3bt2/fvuO3b9+Zw/hVv7Xkp+7g/qAPt5GaMx1zgJvckra+yG1UWT/S0+v1er1eH3u9vskEMJCA7jR6c5X/ffUNd9HsgACOOB1wSweKFARBEATBCMEAiZf65FRfdRFHSwGJbUfKjHfqXWlDkLfuvJfW+ejyGhc0wQZWdQd4b/Di40mO+eSOxhUHQQZr7htBSSPKxV8ORbk/nOaAQFEK1NqUKnqRtUWlZ1WTeUofuYib2YCAKC1xhA3C75allf8ci9NuNnWAaCt3NnXC1+h+8LuBoYN4gpXzx55uledeleMNN5FZSd7yn1T1T/8s5x89+7vh3+0RPZI87LPAs/bHOVrj+J4TpKNLdQGv4yWVSqVSqTSmUmnS8a0rXbUgrPZx+5tJqh1SPka+9z0CjehgwAkt2sE+Psa8wMTmCP3NohnXShQZe2+gHVF6/jgxip14F78ltI9ICl++a047XrEJ87Bmhcw6YOeUtQqnhbyE+bkuM41FvOrSQ6fT6XQ6Xex0sy7XiuHsyz4vrbKQHMr0xqeBrm0At9YXQiHj1qAOylxpI8z9FIWtg5KX9UkvF8ZEwVrJ10c1rdSZisXY0ABSFwp2B3DRUwxtPrrD5YFBqu2an2LI6xB5ozhXhggK+lgUw3gw7NxWWHSFqP8WsgR7jhRaReIwGzMc21LquamFnRHsTOBfKDmO9RIK+LCmgZkLAEBiE4ok7TMxp/8t5KChA7nmYADyLy1Qufn9ij9Y24F+ku0e7XgzHoB+rbdGLtCuocx4Kpad7o3hjWo04kUtNKMeB7gS4JTv6I7MrsIR4sK9zDIAX9MbDi+TuxCtroHWWmutjWvDHnHY7kWBUSfWxDHGGGPMMKYbHg5d0Q2von+e4GOZyPJneQMv5sbD2Hx0AcB2meUrW+98mT25Gz5Ou9z5GxHSNlQ6Ps3DTS6j1FdRtolEIpFIJIqR6HhEhHONUGfcFSIhWRp1kgmCIAiCiIIg5kK8FZdOgtQk3bFBCUYHH3gP48mg9iH6/49OTtv2yHRiax2HzuOuDKCcztriQTxlzMtZm0RU4KMPQ06phAogA3sJW9eqVyzhOR+y1VEuGD0LqMx99Ye7pDueiWkaA4+8H2+ImOOMW1ZScFpZ6RFPMxa9gNMFfQxM7dg+XSAtSR7m0tJ6O+ME6DNWRy7biJ6gsjgWgbqWNyQaftsmag4T2uoNjrzOw9brvWEQCaUI+x28gjsiPQLj5M/qpuAfPr/17CcfOjyz8HDXku8UybTySpVfMGVagKbmRe1/DcniRu91dLxUSXh5/Iw/xSc3G8zYMAjHYXpaNdepbSVSuDbdIaWaZm1CTEAL1B98vpeWyFy5cuXKlSvX4sqV60ZX/Holn/t+jn//G2sPmIHBK6HAbtpx4tJapev14p/ViZdC44iy9oU/rtIpB5gnltOd3kcsb4KREtbhhG5HduG7LvybneXEL4jlviN5IcYNycxkCES1IN8VEVxTCgCDT7ajIwLhj224cZFZcwEdPB2B1ZEoNld61tq5iI36IrArZz5SVY/bELTSawmmKgj7BF6VWBVU84/SwEFV3NERV3LgM30VHvaCAABhAzPgaK8ANDkCn0G8cpEHw/uk6zZtGM3u9wwQaEmXeHFxcXFxcXFxaV+2mV0EI1ZoEOF+hLkjBovA06XqfLexdLOVyOXSETZe2MA4jEdi/r4WrqxUC1QMdtiITtsvdMg6IvgL/7yutNC1Ld5PfiHOc6hPRtmow3FpXuDJO1hO4XFNKZwqsyfiYidpvSIZiSAIgiBIJAiSe09jJ30ATQ1NocIRapl94NsAjYDRCNQEN4wl07lqdDQ7GS/6dEUpq0c/ufrILEcRT/DLiRRFURRF0UjRGZ2Q/KjB13EtzWMDcfPGR3NX5cPDnDJ45DiO4ziO4/VXURRFURQVFUW9fx75qDT5Y3H6VCftlRNoG3E73uo4DEEm9DfqQPP3LSa2tw1BedSuLYcSasha8foTRsfHMxbpNXdejmTaIKIDc3oQURAEQRAE0YkKPsSG6k+YZz0NPa/YKsU8+WftNFlEUv2NQ0aXLCbE0MR1NDgb11hTN7pN3swAruraql+KV96/Z2r9ouYxckyjld9chD1CFSujJEkhVWgp+FihcaJpa7knXn+15L9yKZNFEO79ek0Q/C4e05Mnj0aniwgnyrUKC++mUJUhRJ7RcecnnXvrv24jxRtl9kmH5ItWy/yGj+b7o2+KCbyhzwAuCBqF4jD+3a1rpBHJt1hpmn4K5i481juWnE92QHdtM/bon2INPt3aydcFqllIOr2+G3+7tTV0BJgJUQAAAAAABilAxKQ9+8D8oYPRdRFcsao5LlauGj29G3S2CofD4XA4HK5wOOPS1VYY8avlOcP+sfcwoJew5PsUshC8CCIzPlYWFQ7KXil7/Za96V0XRXcweljU7z4RSq9jpbevgI+OyhMoPYqIrEiBrrQK8/5kXahwQjdrV1FrB5i9DFgU3+5Qo5SXG9IivvB4PB6Px+PxchE8eBKnCVyBTlho5sDhUMVzC9ugD3FfKgYP2R2s1tB8qfNsrW/SS9pffrVa6HQft5Kld4k45TjSL2pG+M2Vg0pEwJje8/j0ZHyfeXwRra2fvcZWoOP9tG+3EiTJJEXedR1WsYDDPM1GU78/afTkx7KdZvC+ixNXORjUkwnb+Ou6ZN+WhFILCYEQu2W/x6efj0Njgrid9s93LgnHCbTxO0F7xKTXzW3QxCbHACq3okSWmC8g44GMPu6wyjUiVuvhvWbDxWZTxj/Vj6bPIRIwMkF5o2FEb3QIYoIC31WGtH8rsbWcXV9EdnufOKSP9EuTIM+JqTmM+FuxwvQJEqlhEpfLC+Vz8ZkLFy5cuHDhYi5+Y8HpR56JJF/+8gIuNI9p0ka9O3pkT7VvRMuaVRvvQLdbTk23o4ujDtemZCVZkZGRkZGRkZGRqQBvwnI2ek4GVnVsYYigVGffFz9RuuSOHzhBxX+jQi4Q8FTufA1uWlwUCAiJvHxitVRijljCgs+YHeCBUG8sB11SNVIe0Z05+s2Y4c6uNRAXmQHmEwCT5hNolXKuXw8HN0gN3N8CIe8/q40UBefUY4x21ubtkHhLa2UeQGCawuN/rNxvVuSr2l5RrHTVYXHrG92tYfrGac6XTrcnUAzkniVKKqULMoVK4yAqOlo/aB50yznW8js1tVWnEWrYmwNiEurxAhaMlVV8Mjq6p8yUlLDri6g4kwFMs/EQJsQmeIsFXBDTgYM/7h/fWFf+HFytgnGOd3nwAaAlBJrm+kTflYSOYkKaZMZMMSNOisVtzQ1O4ZGsYJSun0G6AAMAAAAAAAAoafvEXAaLcA+oLEu7y4r0cRm/gvXYIaOoy+SVgmq+tQ+qwXmyH+FcwMEJ5Y39n7L1O4ITL6UchlVPBPCmnzdj0msDfoNEiuDfdL/f7grP9PO7dX8N5s2kGvt3MZJVmUOApcLBVl4ED7joUvh6cd1kjdV8daI2/VBklCYr5PhVmzH5bSlt37sc36w04BJl+6OyNOom7afz+0aqg7MBHvAJ4GjBPdxPg8d1qseOEoPEKCXJtS8/bgfAM3xgHFCGYkyjYJyW0U4CZNimPazhhR6oH3vJ/Eqs1I7MFPinMEa4pAihkewF64O879j8qbiYy93yGQ7GaCBRH0xMg4mBgYGBgYGBIZUE9R1RnPJsqqFPBD1C6pOigk1RfordMjk7+6lIwsRuZBnJHrJHSuijllp/SzPDlTTUatWO7p94gUdi3o/wptROma1Y7ClUOtoKga0YWzSJ9mzkDog9x+9XA7pqObVoZC9BG+gdgyFTwo0ayRNJZRD5QKEGipiYmJiYmJjYf0yAGdgPBNYzSc61vjKvJJCoC0akYPD5gLWSbDE+S5iZfNWEbFU5UqFQTd7PmudZWViYwky/9K3f48xoWBAmWfCRIFWxMScZZOWX1DdNX14j7ieZFVNN0e5YdSznKiRynY2RSwtOVueFMB71hjUk88LDp/s3EpUEYiGeQH0Q9H22ljK6FTcygADB3zCBGCRIO/4SGr4UDDLzpCPNQRx02XezSmBdnl3+CAvkj1uL/QMlg8Nc8TVjGvrsr3wZmAaQeLbHmCwFUZQEzRF1MEAaAo9yqyv1Zrz2VFvZBkwIv60ToLdxUQ10kWTsmXE7/lJC+SRhFKdgCjmIZIM03CeJpjDOi26BnRhHzjhvy1QX1bsR9BWN0eQrXd3XsQSCW95+yZRyPRzv9XlQta9FAvTzKAuI/MvZUzccyxcZqn/jJOE0SjckuEgUHndp8pI8PZ0ppXwnXdavd/LVfINFAs4wDzYMyKt0wTX+mATYEj5jFX8X5aNNByKiy98ps85IifnznMW0hNzRlyxM6YUUbTZpSTrm/PVQX5GTDM7Drt7WHLmZghKVPxAagXQOBj+WuGj1M5mIvNIWfHkBDv9FlVEzPUGW9svXe6CuYVohLRaqCnt0Lv6Q5ay0UvWLvH/osGikruLWk4XdRAyCKcNuRFUU2fnVzNumJLg+AOgI2R9NEztxgKenSFfyFNGpBQTcGWsFthmIDZt0MMmFw1sNfQtsU8XBHPD3jyN2moM+7pMbaDMjo2lTijDlvKHbSdWUTlxKh1dq7aEVEobNB48Zeyvsb2WlgN9APLH6d1yFlWMrOHaaRLp20OlqspIV+Vre3LTPDkByEKtvqJlaz2y5b7nkflwdCin6lmightQvIamOMDgr8lAMDjhTcgYAONiit5Mww5jFTDkJ4TKYg3UjyoMCPF2ors7AHnDt+wmEdacitFmhLnZ5uHAA6aEB7ipznSI1LyQ1RcmmWRisPl9jkWNkZGRkZGQsRkZG1VHK9wqZznS/tqc3tkBaYi0ROiS4E67c8tp1LkwvskNCSjVhqLBzkCho0kEUxseGh/dAqa3HpJj0w9XmQrCEspEzv9iBuswjJA8/2R1W6QrXK3CvD4pzw3vqAxc1DH8O2dXoS8VPHn74Fi1kZVlFFQU6kxxO9anT/CJTjjEh5F66SLmLAQcGhAbBolO6zrWGMrlaKL+tp5fpcRP9u3RX/omcrtkuZw2Lrjn6uswpxwwA4qa0xNscWbO/AfNMk63iUFzq4XJchcP7UYOkQwcK4H+6aJ6JisVpQ+TCso1KPU+leNx0fXGc/PE7SmMJX7RTQilEtVnx6JMylysU1Gf26VLgBM8VYWQmJEQBRgDkCKkYGXMTH5MlxTbmZ73akDTd4KMCECkPKu8Emuk6rxZryj4IIZ7kAArks7Z61ov9D/4/D//vMcxFwqt/Jv7Av/Cv/M+F9FiCiM4andlxZgwyndTZSWCjULqpIk2YYSDB6wgWklgjxXtqkZv47fOksczXIuo8szSRAPfTvRiISOBulz+7z9gWUJ3wdN4Br5RGFMCbPTNnz+Kdpl0h7bCWR1oNXrN/D3Qabzbh3fW+3djUXq6lS3ooNohSOwhIA6/GQDqcDU3DDv1JGpCN6+//xx4RAWrIqY9Kuo6UxjkIIYTqdMUYY4wxxhjjyBjnQvExiP4UpMJXH4NQzV+5Y+t/w9MCK1bu66v1FxrW1Nu3Tn9XAoi+zvgZC2yDynyjCstnvKrcAGJOpoB72Sgo79uZVQC9sS+6y9O2x4lKaQdoCa0nkJ96qeJzSWnQ3mqc/nGq1yM1mOdRxDyxYtCPstLp2/Jc8YFVRYRm3uY7S9F4ACsJH7LJrYenOHTNoQMTTyFLbIkuJcZkVf87a7tGNGL5mOMZ8rBQ+b+jo6sUk0J/rs9tx5dsmznFvyiK4q9HpJ/PxO6Mud9uLkh+Z7zZ7YKMT/eMW48wbg4sDzpk2xp2JkaPaOqmuxy8NGmYQ/7vaKrm3zGsHAI1aiTp8CJ/lXN6KNBccxzNEt18qw2Sa7V9Xeg9SBof+lq3UmLtzGLFSrWFMCqaSoKdODAbBQtzwWTqXLRBjMzNkhs3RnZeQUMnolwnqSpFh2jt/54OEejfyDr8Vk9kdyuDkL7LGbtS5t4n9zmAI3Lh8H/gj9fBqRSzf0X8FcMIUEENEGm9d9AkPvYNsFkyHdCxcte0UJca4qhwfKzbLe/2vPHal7NfR7Wyd0jUY2vO5bhFO7dkJ/SWVYJqVgX75rEHEOk6ez+bfJgaIvhh2OgSD60zVhKjsH1jYv/ekb3aWWVsnV0P7Sdf0/kV16Psi4Dgh5cEpy82xxH+z4cI5b1JGPE5MywBYPKwRGFHYMKOURhWhSMW+MdNhGK2BDR9W54L3mMaBSQgYWa3dd37VxJtUNYSK52YmnHxLyP2BjxrkK7usHlT8w3J0FFq6tOYYVNER+1BMoOJZqfYIh6Br84Nb9FXqDmYguJOboLxgnkX/zOOca712fmF8dAYOkKWm8kycUa1wOcBZq5lzdYw5OB0m7NN9uFbWHuL8A4MAAAAAANcfE6YMeMuX9wjKJXUmGbT0Y/OgwdPMXk4+cWd+GOux/P5rnTyIhSOvz9fXYduGP8SCDBaqYTpFPLSquAP+WXVQquz8/mjTE72dOrPi5ZzAi3IX4YHrqKi9on107c0C2JtQq8XNVWK6+n3l07K0G0xmTZKNuadIpByb8iiFPjoTFsbZbVGPY97cLJLvY7LPImYKrrqWprxZ/JiDQxRtojKFCiSGneT0mUnuIkKp9om6sOZLWTbkww6Ug++H6kqbXG3nE+n2cFyzbqbDia+Zj246kAy8dgm8HeoVrejU7CoIQN9b/2GYhLb1XdzMAW0tzuj0zF2AkMWXFrWEFWnUDR9h61QxVl5m+IzeI2Fy90irb1EnvUX7aaH90O99YWAHhTi36mt1JQ08hQ3VytyizSbi34Yxo50uSwDGlp/XnPaJ3QCxVj+B/+VNzgeIL/6015uHddp964e34P7XpNJ6mMwFmviaNuSpz5JF4s6sobLVGmSLguVtGh3uEEai+si8QGp8Zqgn5vQ69Ul4bjyJpoRKm4Ajk/oLftzhCGFz7g3x/7ZnwT4F0j9uf6PIRDphqmwnaNBHyFByPb4kq6T41g08cA2KWOSNjYtiy+zMm4SxOg3fp/SUDGSJ2G/nW8M2xQ2X+r9z7K8yx7I9pSc2xTkt7OckBvbr2L6K+r1zD+JYM8kJr6A6AfWPzYSDlXi+t+ytjMZbgLkyO4PKxTATOkaw2vXvQtczcxJSS6jVaEtdzb/RBpGoHaNT8VQeFL2lAWo2qqvatHk8zgt3TZMZyLMcLu5KHSry9gZG1oy/uTnk1diKf00FHfO2gk1bKHeqVaj6APGymuJcguLqlnjemOPMl8uwxsNrcIE368ZAcbMjEAQ046JSKLUnTqP9/yrW3WjrQyCSbG33n1gUvJNMDk+ECPfgj+2z+AKebW9J3FhVysoB5eBBmOyhdXi93QUdkG+qMskCh75tKZCjo6RDR2vEbRd5iYzd9GCOnQfJFxKZwotTR17cmPpuxdRfsx8d/jdZpfP5EKEQmxt8GeoMPn1tlkobj65+F0jjux8tdlTtxfZTEVMeTICrLMl+LkY2kQdeFiDKoIw4n2nDC5g8uk6eww0ws3V0ed/4AmEm6dG39O1gTi4767TqVzvCLGzKMJF+HSneFg24fMbGDW53cpY6/bNEfrdQ3uzOIjeq06vFxrqGk3UjtmqNWKPNPetxr6t2wjMHbxC3ZOJjrr03chnlMOPtHcqelpQ81CAijHKxPxPiDfqT4X3H6qUnzakSW7HyOpD+88De4L2AYw8dJkfsCL/nsacnnErRafEsSl4V88j+DLRealQERJtq2YZgYg10tNCP6Goews19gaxPvG45CqI/S26VdGYJrUgLNNNROmo6YPfifQGPl7P7ye8MrZBICqrfuG584PfJmD1Nc+rHEHiydJGRFLlLlz9Z1z86LVTAGRXAewEqQdZ5hYdPsHOCNHR0ApSrMR9RJixIvaRvhNfbZuoh/Ul5yN9IE6pb2qKFqvh4OA/QHj0BRc+Jelek6cX1hUfwai7EOm4duMoSNnvCJMQrejrEN8YBiEh17EqkJH3wOWx7PCq0S6oDJZhKUzeT9T9LruVvV9Fk4XyeoZXJaTew6OLbTUMuc3yD6nQVhSRxIusyBayLmyb200MG/6IvJg1sDokrFcZHvJzYFbebGIsOC22VeG5sqK6XwheJ8fOBLkqY5+fFd3OT3WVGjRGmH/7H2VmP7vAjGhBVeV2cmQhjxLt4XWlVGjvWwOu/OtIo42Xa/mM6Gmv0tHerw786saKbqEuJz+7Mntw1CmMli79EXml2byt2A5EddbNR8DWLboohVJGMaoEP0XJEWdVZu45lDXy80XyKWjxmcJP4AvTOdkU64ikY1sEqSwPd4dQtumCQXW7T8aUkdHRI97yOAGBG/V5aFQ0ZXAbhVERv+48HOwJef8PGRzz/yGWZ+9psmAz5lufyAQl7xMaZwtgZ1a30T/p/+32HHaE5guriZkbagxT2ORNKvQBPFpjDNZu+7GGEVGQfRi/GOX7kxkyJvxd9+mQFJ/GI5cDZ+VURI5lN0m41vA5BoSZVX9CraE5bFOIqPLN4l97MYI8Dv/bjzjJxxtFByvr6AxOURamqhqIbr9CWxnDGtRzXizq1q44Kce9tWn0pslLibVsUTKYzY8+nOSUEVq6qMNhZzSxOx728acVEnArS+TP0roOpzzSiBg8yU506cIvlDXKLeejJnB4vlWAHCwrTKFhsWkjeAdtNe31oEdYwn0F1q9T1rt5qYxO3wgeN3sHb9XtAP115b5L7kndpwCnieR1xrtpqLUuDrOKT0Vt6105ZIRn0to+HZiq6yFyUjV/ohzdwd641B3n2w9YkdDWbVciWga6ddMbPc3b6q+GbD8J5TQfZH8iTNV0rGfehWM8Pd1ufeg0Aa+noV/iKGa8aQPjkKgFe5Zdh8OWzZVfHjVLd2Q6RgLzwye6D4JsHx7AI00dSEg8a0H1SA8/p30OPSc9zJwORog5HSqm/S8xBfvCdspnnmyKw5Ga7DGmZeVkhcVC5WM66E3I7Q6KIegmQflCOnWKvqsM4fXdK2Be6e144eYncRA6YntpZVjQLVBXu/qmYYhEIlPSszQyjSTjJ9aHOK8wJnlNJfiCwmyS0DlZ2b/1RkmYKl3/I0D0sbINLrK8JauV6FEyYRu+EvkuHXq0xETg5pTkk5ELVc6uc0zXQ6Nvcbh0Dlu+ELT4vxOhooRKwoQj/5OQm73hvZ4vHYuwueJrA9GVcIfoSg4m5KdzVNm42hmLsC4sQVqgmlyLmvNncNyCI5f9nFcqdhQpY2vDupVTtCK51tNZ7CK3zAZSNOipm0pZ2xjILmRpJzLiO0WhN2t15uyJyS2GqjUW83NvuvKRn7Dp2DurmRhV0GvQrSfh022+pgO42Nf57NQDwkaocg9O/O7hP6+U4K7Rl98jfsRvJ//tLXYWjqoZbeqtMM605ya8pTTmv4ZAIBAGFovdyfOD5Xoqb/TJZwq+I9Grjoc0tkkhnfUaOjo6OhrhN7mhW42cK8J/AMvCMntBF2PVhR32sHLIiUY1J3rPvPUMJuiu83bsV+D6ed9JblcnV6698Vffdb+emz4+yQ9jqn4M1Q2Di8vfdx0KcG8N9/7F0OKS7d+bBhlXmP2J4TmsbiiQvN2hr8xO2Y5txDP7vGj8lGdvwsSIxd0GzRmniSTuJFsI10/KbkaeAABgAJi0/iFSC21cxVYrrRDQivdaKOynPm4Ig/o0InDIoXGjPS4B/vnOG7gk77kPhBMF+LR09HYSz+EvIbcZE9njstJEQONDh78MhQh0IErTIx7+f6B8ANw04vyxN8L9PcM9gPl+3gFcWhaDk508bvm6xydjWN7F3pyAwiLWz6D6g1UoOq4m4RG+KJo6YE6U7k09VjBWqq2y2l+fnkHLhU83M7eEOEFzyOMiE1tDy/RubaLlgjRYc1Sjo9WK5OirsQrBwJopOlTDES17VISLu5gQBntMwhC7s24W2H4RSnxk7nvkjyZg+9aFObQt/kac1QdQw4upxf9D6TOOpUgPdFtOEevkAQD0JQeP8uMAluecTJ9MebAegwC2lVyEj+vycnzAP3auID/v4pZjbLmdiPdmW8X8UrcY43Pz0fHI27+ee5UwUWmdy5KPITLT6ftHzBVw9e2jun6E3IOVYqTR1uEl5YIUP4Mg6PmMiTbvb/Ll0gi7LA1VCJtyKymAX2IYBrSeOAP5ZkMRyPGeuD5jSDHeKZqKAR2flmi67c85O7n/TKnpqwWUaTs0VnSIi+/ss84uY8O8wGR/3Niu7OHcE2xdYQOr1dxxDlsd02oTX3wbkxtcWGvFLhtuEpX7KNEgwsfHx8fHxzf+a0kY6XRX8sV01XbkdAoGuLBLy81bmSX2MEvlUzNhzmPzC2yXLoM9A4oXllNwZYIdr5O9ZGSH/z19qUnuqzTN+6kY4HxH922EMrjjErfTcgF7a6lS76ZzKsLe7fcRybAkaTmvNpIhTNJOZT/P5sHihz3nSBNhTUrRVTWGC/bqtZaiam0hmePmns1kTVuzjR4jA1lYCqMon7b+os0VFFOaS8ot6DaM+WI+KU6RbiNTn1TlyOL92n2scEXdOsccugcIPiS45+wRZuDs5TIm0y9tFuj4UXs1Dc4St4FZ0ny0nsYouyTUcysbF3XfO74dciAtW/smvOTL6MUt8NOCD+O6UJpFpt1L85jfU2nD0YXOV0sIJeieQhpPWzrjqs680qy2Vw1Nj0tB3pepSFSY3wgEdc2kqyqYfzrL0GU9hgxYqxbYRz/fWWPqW3VE1scpI3vLjxHrWKdRKwgQil2j9qWK854zXTlqUJ8BYAJhXpSbNBNLU/qdTdVXpCSb53Vhxv4Axe7pKsko9SDZkiCQbx7qdFzhcpN//3J3OvU7qUp6WrZlWg6NAR224jl71czZURkro1vLYjEyhfFwhfu68mSln6JkkrII4ljZTuKhaorJJOrM0g8Z4iW7TdA5L01jlf/KlzhHry8YP2WPfOJgkmXs920NI/cTuMH+K5r/3muUQeY0IvHKd6reWDnh/YzYHgpVTGbq6dvgwmm/q0au/6VindK6xyWep+sV7FP5qs9iUqruqbYk/0wwwiRrXqg+b/Yt4TXkCQsqWv1tPM3aaH5bmgNbfzk5xbKWQmfbRysDpInYjaJbfaeOzjU02ccSH/eBhLNPnohuw5+n21gss+Uqoxp71+grNM64TdkOUP0ti8iWyqmz2DGHPpYR7Jsif+CwNb/yOnviMmjxw1o/RBi29RVxxKsbFwGI2prQNTiA7wFJCOCG1r33OU4LuZo6gW/w/OCXBn5L9q+sKH8EFlzfBzExnsoXECjm+xVASgGoxIOHn4NF4WHD5KvIZwJ4bxbrQv303mR8IsKZr2pcBOe/w4fbTbJ/DwNgW5KDw6dYgJtHrPdoArsmV07bJVPhYUDQg9NCFrXHBzKbVOfNbbqHOwciw8FGUp9IlZpwUmPJjfgHHEkE4LSGW8m7jqj/psWtb1NY6x4phNiFYUVP1XJNPYLZSeZHOVu+2SprRpwdR+bs5TIixghn06gO3zrXK160e1PFXsfk7K0qFr5qXEC/kKoJt3yigoANM3uby7uC/nXzm591kpjEMJjBLzf0R6Z0K9/Km7HddhiVNk36zAELAUElLLwfIYQ7Jkg8Eow+fkeZf2KFhUi8gnawfAjfZsDzkxm0keOAMacJ5mcQ6RvNC1dMLghhLnjH1AskwnPFGH+iZHQXThMYwHHpyNJTcAB3sAdFrTkd96Dgz2NwMsM8tyTtwzO7+GAM3fsOixpfJ3tTWE9/3B08j05/5X70Yf/VXUYcDrbi/zQEJsy/VYnc/RJvp+oG9q08np6CP4GnIeyd/+kw0LtdgPeWWVktV39Qv711uwbgW63Al9GB41aovXmrq7tE+vPEksW3OSV0iJkNaWYEJodfttq4wyNvW7aLTebgNfmN7MQJVu1YDa1QoDeqXWbI6UKqxYkQYjMsp/eTgOPCQEqV2CDkpz3R+6f6eCCz7yZl3o9uk6fkM7K6sXWHHnwf8GbzO4wN3mKfRiNbk8tcZ8PFhMPuDwbHh8G3AArh6JPJwrOiqc2ZwOQExNuOmwNkdx7Nk8FMTPD+24R8vRzVfu0zFTgGsiXy2pZXDlLX8ypude1Zro8YA3bHzet9i7kZy06pI/E0lvoRXenK8ZfklHskClc8BU9jDi53+fhz4PHlZojo/x8E3Qy4cDnaG88+Qi7AfdsXAwNRfXb+vF5Yp0B/bt7pqNvW8+i0C4xToIJTMVCVrpqWf8llSx3kDA+3nk/hKWFMnOEQ4FqeIJXDWfa1pCk12s2cz7tFcLrcJs7Yp8RlpXMu8E6XDXhP28tiILYigoNXs/YBj3DAx18KOCv+HvGtSOC2xWfbrS8Q7hEHCE9z9/9Qw32bOoF52r+ZsSMyOQXtPQPXupb61LTMdM0F3SmowdWupltfX00xHfd4XfW4MZr8GAB+JG93CsXAz5ubn+NUIavLHa378HPdNflfBXf7RtKG/uiiLWOrtRoJWw/tofgm2nqwL0xVUU8FKGZgcLqR2Bxy6GgR7P+ARPHi3eVfXOLWmrOTixyk6PNHXJByP34n0ud99fXooS1jq7XdK05IJH65BHXfBzEKQv1FQvVpR+CQQ8eBYDTa/1Krl1W7w1wYDOmDeOWbSv9fYyXQLb+X90YsP0YdXH2JjnkDmUNEcS5dFk/Omh9tqJzF7s0mABL9v/nM/voX19zejzfxn5mHHelJyF2762O7Bu9Cau5O493OMM9wB2BoJlGX3d8mrMTreNTIwBVYVdHKCe36d+N1SU8aq8Q/uQ4nWUXYkXOK+bs3LpYw8Wt99sw64gBhf033gDY5oNVQ4F2HU6ytcEjrkKNzx2LnCYc57OpYQZ0oCkK42TdTIUxjERKyIpyHiR3vFKc6zRpvyxwrEFYsakQbz7t59by42oIlE/XlyhZ4yoBjLrRhVGJnWF/ho6ZoOg8d5jCHOcxhDrsiFlTv0EXfBqmjoz8+WHD0s2MZSNxQVo0kZgcC4RgUN7ELXWS3bys5S2K34WgQtUjWJMtVd3iBCpTYr58cg1WGYf4mEg0RUBWxwqFmXU51XjnMYQ5z2BWwoFYHJnIUVMvDy3TBogZWSTSWVMcH6sH39LfTNLaQvWP+s40VJMP8P7PjxuIFBGuxH5r0wp8IEy4y92Zoki6w+mtXqpahO9MgNv5YQdnDkVfPO1Ut5T3ZhF/Fqrah9V5t8nPohJhw3hxhHnTV2rldyTtnAGVHdyoXP8Pk5ERwYdJ+HzpdYCCgKx3Lofl+cRnB1MM7H84OLjvSw8xlhrkueiPaHGjnw4c/iT3yhInzNe+bB82l7d6MynZdIaPIRpUdyU4pqYV7dkRB3VcK0nvIkTSXSq2FzlpvDUSD5Yr2bwUlDWajRwiXU60v5ZzKBUc47BlhQfaHJPrwVwdHn0oWHD2STe8Hyj/WWpf0CLU7t0ESBnJKi3AvCm0h5Z1QyISBp/RbGQemuOspXTHczQ0W0j8StA2R2zf24JNqM4rsFBGhYyPypVYmLWGDy8+r9PTf/7R97b+7YUPCXESstC25aq6h+yKTBehZxelBEF6iprG1LKJTheDwItwbvUxVpY1poqY/tGrzz8wdX62pzCfpo3O3nzehuOsYLoX0vGvjR41yqdFeFn5Vjdu8/IcfosksiOsXUVCtajdLjk4ZgsPzOAI/KEpYmZDXiPat18rxJdwptXB1xzGJq1OXjM89BS2fVHuRopGt2P7/w2w0H60L4wwt7YjJsMvMelv1s7CNBYE47URoEN6+0G4CLhEv/D4kRJSo5y1YaH+/Nb4ZAFyYuBdgNbh2VfzC1uHF0R5TzKhJn0VK0qz2L5uWQvrinsrR+0nAxVhBnRQKEjXXTYDG1HZW1fuwrxd0Pb0w37Un2uxM360pUKDZ8EOhi9rWgm+1PhIKnmb6S/robq02sMcrE9BYW9y/bHoGTckT5SHrql1zDxsphFQD54Xi72f0DKjspSFEbnY/Z2BnH1Rq7+iPRhaCHsLbsCUgz0o31TcBbvfzqqXQ3Lht+KeqXVyfvhafT38W3/a7ubm/EBW/tvRLA+BNVn9dGSl0Ak/33Rii5K5U3wMXsbt3/LgH9aBUKNr/vWqRZv68yxNm/efoBz09PT09PT09vR9oVBHmoZ/GIsXpKkFhOdX9QfpLfxZSVa29Hu7H9XnUu64MHZIftcoytlrLUcwTicODNGVFccw5TJ8dp74fk3Ced6F7hMhlbLWWD3yxsy7EXpYlVzwFT3cOLnf5+HPgqHz/Tz1Ff6r6SwfXu378PT25j1t5fUjIRfB3CVlyOfKzVKs7Kkz/wf82EtZL3/O++Ix3Sbv7KbrDXJ827/VSf0OI0hP27WCBd4UVO3bkWhfmfCrcPpXqbADAYCKDo46dsTbTukPWINc45LC1tbNO+FJGQ/AaeECTGHSfSVzTnVaDAHtCWg1EFdu8YeD8SI/M+uo83uuTJ6G98Qugd1XT7DG6BsHhoPc2A9GPdQmdHsHGJS/QVmxbX3awQwklI+PMtoulqxYHX/fw0inirkdLJ5ql0Yh2+FU8W90hIxcWFvkWy2NG3bTbmHo4Cvu8W+tu1/kjrjZCac1weLq0T0QDrqIfX+ULx739qbaxH1MH7KZhyZez4LS1pRKtu7Lpc/WwDNqa79/3t/yyfd53d95/tMm3j2dDcgyDgY6Ojo6Ojo6ufJU0vP6Z+HFeAc08ckZx9qzmmAR/OicQVgVuMTGLdsmPZyryHzOF5czktMUVw/ZzOxyyuPHrLIVZnzhMRJ7z9EDOexLOyPQIDEk8x6lg6iwLAbtjjvzTF29J44UCAS2M1YswqmMwOU3rKVA4XbsM/pclI3jETCubfo0LPedp+nKP3UcVVCJ7fxB/f08pMlM7ZyOGckm5rwAFXAv1AXpC/ukV6cU/QpX7lxjd1pBRwm9zFr6/ypVFqeOm/He2nacfFVqnGB6kbRksV14SapwfZbXNk6UenFaaZxCOXfby4+Wb0LyIAqMDc33FJtjuhejFtHAmSbHl++4lLyZqmX4BNLlMAAGqm57hbyg9EzrBPhZ6COfo17D6FXHWTztkcdMxg1fk8GjgjeGf2sRmzUf1/dXgOdoz2X/FqFW6ivAObBtlBGG8nayu03vf8BkeR0kxTi0qWQikyH/qndQfHZ+S+5Z1uV/ZPx0ILFYZY0rMq0+aha/FRlUQZS1wOF209x5OMOJSU3aAnceeIErJPSiMIYSgnBzEeFT2UpZJp5G39b5wmle3l1724e3mWz9eFw/JgEC8NJOsd3n+Breb7Yf5eh3ZYfxgHyvdukDFsn6Z5XlLy47px+Ek7b0eBVB59/A8OI/zfH6pzhYH9xwMfDu9F0ivxr9ue1W5fv7T/nBEu3hpJA83lB174Gl7mi/sdDt4MJGXR4leUCMX3IMxBm/ENrPPI4mbB1UQXKPcYYFQ53mi2MoWEnPochgGEsGXZ5vyzCn7jP8Js/G1W1i7ybBQRUPsCZ3iUUaNXkwK/0K9GIwE5jJ16YovHIX3gHBwwHsqbFLeundaBOaVpYg/PXFfCKBxcMtUjae9OdW/yeQzQ3RXYzeu5466lk+qvegaB7bjnxQqhnQoMcdQPy10112Dp+welTo+9lGEX70cgN5FPeRoeO5AWj6pNiM5dgzUMbAAnrdEXeymFclIxMEuCU5eUJwqAAcOKC6G98r10jdYuS8GQihVpzNS+u757g/O5/q27z31HPDxDC/VwAGCIAiCIGgQoLQk9hWq0e65O5Xlk2q7aipu8AztRetSlGXkeVdG0UvzWD38ukae++g7vssa9SN/iXUu0so3EIqzPX8ACfWdnPw3f70wPOtjwnSYY3axh2twAQAAALy2VCIEsaN+HH5Fh5+ZLbLQovCN0Wx/xWXbnqiCqfH3MO/h7kXOB6Yw2uw2kXq82EhrVdde2E2sSTJgsdQiGKFwPKQAcfEPii29CvLn/maEmYwTk7hQzcz6qc9uK6TfGYxmtqsNv1C3sLhtfOuNV6iNlaZ6isfDBxE6oLg4AOT8Xz1XMXpSp9dB+PvKNn2oAOrTsVK3tT0qiYsbvisr2TMnIGkOGrMEUDTW7SIGDQ5c/FUlgOQI8Pj42H7rca/dKtW8kZ4v5ddmNpi17xIqLoID2DpUlsorGvel6dl4kanA0qw0hdWctdqZfioADVqFet9oiO3+awTyItHhU7AmR09yBSmjt8YMiXThhMnmWmW+xUnXrJ2jXLsytodNqv/YT18LnpOu6+VT47Q27ttcQiVFyBxMZmeDbrHQ14FtHLpzR+J1tMidLXB0J6ZJ3At19rHKaKAXWHAfj98ljOmlbSG8NEUoVdIOLizNEsXh8nfV8M0cN3gFaPcghsuXrQyPGwPmr+cdHYPl19wRw/t7z6GoQrs/wpuVbgW9qsKoqkYAI5XBLxiqIq4PoOgI3XsPXML6680h5PGJ7fB3Dje1O+yx+Ga9QAQAAAAAAAAAAPUeDyGEEEIIIYQRIfyzJOwKQfrxFDDyR0i3aS68+/Ltx1+9+Jk2OkL/GxOUrhVDvXn5dPqf6GkunulLSMS5fqsb890NLWhn1rMNRz/es3GIn88pqvYhZ5ZTysfJRIgZzbaOCW3KQx7nSWl5W2IvFaR50zdsOIMbLsi+BLvKfD1Wierw9vude/pxk1Hz5wGvXhqGYRiGYZFh2M2aDSi/mIySJEmSJElyXOaaN92Pzn5ecMt1McRFaOMQz+liqbPEHmNsaGaIUAs1q74pLdqUseCH3OiLV3GQXU0sz8b/w8qQi4KGUT576wLmXofLPzr66wJM3Ba/C0VmjVJoRK1xI32MzHrF+5gKbywarhjjM8zb+hNSsTGHZX5RqyQD0q5StTPqDb2iB9IBixsuVlmCM9BPFfvHCajpzOIP0rRYLl97V4SnYM0xo71MMFKp/rojLwLVahJjw72mC7iAjOsDJd8N/exOB39bIjbbJALx6gqNjKtuIMyL1DRPiBtkiQa4eeSft0HjxXoRlwUn+hyI6dI7ZMsSAV1fMvNCrGmReC8sJhmpQlDrjBYnF3HsLfmUXiLDTypyEugia8ks49bxSZ+gNw+RkSUR5icVAq+vMA3vuUn0K1LYAIiNjctwSVy414KijhZK4+I8qlxmOHL6srwNfgtyGV1pkUW0PhpgRqL5qi00G0WA570vaH7l7w1NESKZHZjJhyHn7jK0IMuG95Ap5kvPxXFUxxfO8RIiKMPIzACyoB27Au/K7JhMIbvkvUg2To5thR6lA/x7e0uAPqQXfHTboHz50RVAB5SAgICAgICAwOP+YVWgaDCrLaCdIgkoLKkvi/R7xBTq2mGHWlESwTZi+RNNE3UDM9EEYXDKN0rQbgckQCi1Jejbyf5m05Cp4tySJbM4p7QCwN2sMyH4MwJS6UTYrEMhoOm2LpAAOoY/vHnXdQWjpkeIFaXnUUwyUoWgVpzthAqt/wMIQQyLV4/pELGCkGAvqrDad1b9hR5xJayOxM4VXc7PCq4ECm5u5N7VFQbrK+1bmTKa8hmM0sSNEymmaqCqJED4IjbMM+Y2yqtRufgSVtBTeFl0d7YUXfpAQE1Z4GqNhdgfhVFgOnCheLKgKwv9fG7r5pyunitBXStPqQlF0LKPGXBEx8Dzs1akxSpmoR3AktXUYk0BUnyla4gvqPyhFdwzNisDJhIEvWlri+ujM0RA02D77BLZUCE3SxjlhxAUgUCLZ2ngHCVyEsqdQ6fRRBBELuxGNdoyr7SCKByB6pNhqxtVC8Lju1EDNhtDaVCoWVaOSEZGRkZGRjbIyEwGnbXmTHGENA/s9cpnERlEBK9wtHYiqJ55GwQga5aHrJTKHp+O+lEAZvtSihpOa0vDnQajwkEhAlauW58KsKGQFo+pXrSk4eU4XYJTlysFH7v+CqjI2PMgpY6ocmoBaVwkdYcVAfVFaPkYzxjk/ZkzG6bRw2uBs0+ejBMhzmJ9Zps1Tdqz4Syrbl4rYIumnKrmiYsBl8TlPwTjtVoX9pB21PS7dKiaOljp6u+JPfy91uwdxk2za+PITctK4tFvwFp8wjXMNk4Ai5AfUY4HzSrZZOpYEDCgpNZogsyW5Al5tHDcamU4pYCpxrDFaeW4AbT6/l+ymTjzQKzJKYLoNXRB0AoE5g5p5gFErzAVLJ8AEq2CbF0WZLPTWLbDDOAmXLwG3O1WxczQIk1P3PnV2aec7TnFbeqvKfV0PfQGXxb+otgft88qCdH8ILsO4vHyZrn/+y+T7f5XJ/A80oqzcjBwwDLWPQM1orR6UHWbyAefvgOe8Mf+4j2gRUxR0HGl0SiJVhCHeFgsxzIxxE4SesEYGE23FI6wAw4OMqHUbUOGy/JZXcPVuTgiFFzexdZjeqIprqc8txy0qNKdFEzTOSNySFQVEWhFG13W5TRDmwi1nOameavWn7eEaylBueCNNy8XAadFs0jRMIqmXXWsLQ/tXQN9lY5p+mRQSKv3Zd3mgydkAfr8keOksIWDPXbfNEfMLTNIojaBMixsdbOETOstNzlBgdBSxDrAtUatGlChJYb0xXpIliMacMQHshnNdScoVhjrDMMwDMNEwzC5NVG2qORhi8kVvtUpw1i3vn+qCUZG/739UP38StpQKt681htUU+9K5rJxTtjPKt+T5HK5XC6Xx1we8rEN9QkPhk1uefvbCtwdMqn/wKbYmG0rfWZER03TNE3T9ExPEB4hVNGBMTPfZm3dn9uawOgvRQn3sGYmDrExpD2tJ8lnJdPMQ08am7Iabj/AA1uc91VGQ0fRG0GAsgmrCNDgeHm8ViDsMg30IhnKJ1CAAZ7I5tt0qxK8G6L/QHW6MXne+OxGb+VfOsAwap3L/gzP1mUQ20aEwOIlbKDkhYR57Eh+McCI7sNNWauRWg/RYS7JF8448M2+lrOsLatteLLvYSWYgXnzQW+/+crdll4gtvdUMLNeHlq5gi6WPI7olhDcrIPSkogfxpf50ym4jG4/YVaid0SfHC+9gHgl1FQx3MnKg7l0M2sk0vr20t2DIUE6ijIWIyMjIyMjI6MZ08pK72EcrVQGYt37t40q+qgYBy2v7vQU5T8XM7o0JX8R1b6hZK6rzxSKz+KTTz755JNPPvnk893rrH9BBOwv8qatwVz8Vu4HykmIeow2Pls0VJfEGEEeDDHEyQUEBAQEBPfCKQfTYOTcsD/pPOnXe4xEw38sjIRxEdX1nyxGOrzoWvo4J5/MHkUuhiOBQw+cqlOteHoPCmC8JINfIwU89D6Exfu0PTwZJ59lEJudDoY//ymHIeOkwMv16laUd+DqZXn+wVv+vIjyQ/5RZS45Zj7WrDnsCW7kVucDzngbuBSLL6fef0M4se4JHz+KcDZbcoRUxBG+Hw1tx3unYiMISyS/7I+46dm+Z1XkPBM5Nrgm+BoFo89D1/MYbONCwBb4/c9z3IiAqx8PsNS5RFdGavuHjUh7rjy4NUYXm4ILrg3YK0kpSlmaPBG9+U0znbv58mG7mF8BB8vq2wj1/a8crN/1Xv6Kz3saBlLFF17KCg0mAVEAeDAziDXEIw4GdnWDSJvPbnhGPpe50LpCfjAQ3j7Ut88H2e5o15n1CDQ6duMzFEr9Mmm9loNmy2agFmvhnKkDge+vc4wDi4cel35XWtbrJl8XZZkCFCBfvY26bAMrRJrsIvLBVdJRmjLJtIbQPUZS8ht+k7pcUMjGiXHprG7JE64qGtoyDmGso0MsukVFeBdjkZrkiPGIEZCt4KS6jzYUNNaaBurlPp+uzsoB/6DLMMogBxUTemgpKaUyQLMT3S8+OQvIFZB7wmkpBfL6qinLlnh+MKh+HI00AcGY2Sp8OGch9cqsDGVZNnnbC6p92SKA5LNq5oiJEkhIR3hMtflKPvmrwR7KBu0ts5L4NU5zZD9S8HedRpYDZqWa9mjhTuFKTt3qPs0lzanCLNfdu2KTUSRLNq+oiL+TzD9UzC3LlK4L+zh7DenslZQPPtqIg0gkEolEIpGo60xUZywuJq8mEcSVsexS3I1W8QX9Oi2rmhDu7lbLDx/L3lbhXDIRHvjtyS2fW8Lj8Xg8Hj/weHzjncS3m5HH9+h2F9+vsS1lx9nvY4QbOBwOh8PhcLjM1nj+90jfT/+3y4tfD38xvd/pC78GFovFYrFY7MBirRWELnRsPCb0EjDHq2PNzDW2ieTY6esWZmLzoVAoFAqFDigC4dGOIurnl31eKwp5rbZ/tJhsZjTItRNVEsAtCNOgVyF8pk/+KI1G+KP12hWitHznPrpKnfpSx7uixFvCw34BL/jWrO9cNEYf+ycqlwyz2vMbnud40F4Fj5VVjncw3+PItMUtT+JctrfBngAR8FcaIE4ttw+JFPokz2zIqMyWI/LNdpv/CidtMpdPF6MTbmM5mbt0kBK29/j9jFSUKGPCaSZzl2vcXXY/+9tEXuZGcwHYjtd5sePXtvYK9+cNWVBT8ew8I8kQaz0nONP08zSXfuNDFO19KL+UCt5aDUoANW7JCKNWa+vNLTgLY13+OFld8gFy5eH8IKsO6gM/njZgDgMWdIgoy71UShZBoX1I0xYGzc+HUV66BV93yuoMqB7yxdFdbkbBQYluW+M5hCNbAjFbPymSziZif5NPIkHjNyn/frjKzkqtQHTWi/JvMpulcHG7hoyMjIzsxRJobZtCo85r6Onp6Wmn8aCBZylAw2DoDGeNtEad0svDueKysyhu3MoSxz1z2++uDAfZzwpvfipVzt7DGFn8/LU8g+nM+CpuIPf9iO5M23nmHsMgpni6+/rzoh1hWlMLSUWyuW6TqWWXDqEilJNWLg9GRrvcceA1lMVdmeZxQGWZXR2hFc66xbNC7WpNgKEXLnChaNmUiyH8Op4GxeeSuUCds7Q06E6Vu2/rs8Se3V9Lk8enV7/vzPabIVyw/S4zDb/l0+Sw8ie9e0pqXlq/gKmome/YTboq70WHMSkC6EomMIoK/wmFInCkhIn3TcX1bBjkK4LDsUoxg7dYzly7VNlfE3njZC3vCD6E0xVAsB9dOb4qQ9mdLWEdBvSlO8Guy3/2A9EX5Zn12Q6fqmZSVcFVB4PoK8JFG7pqy/9cD4/0kLba9jpM1qfdPkFOzKw7YeCm2OASQ5jPyRu8CdiRu7LLgjCh0xoiQzaE53LQovOZIPju5I8ae8GwrupsCGQgdrLbV5AVVO2IRorhZwmmZwHuRpqYCEmEXSz4s+GiXW0LuC2FznVR8Z3na0DQSsVbQMyFFn8xy6T6FJVFuilH4NgSJB3fNaQXCnI56+xYwwRcVffL7fiG2xfITO2uppXDanbQCMpMFRbRoB+1NXHPdmoSASDAvmZAVr7rrZq/Abw8YP4kEq98BqjmVXCChVGgtoGgZR207JJpKvZt7ma0MMfQAgDAAJA3Ecgu/b6lnQnpqlLOZESbIb3DQEsa+uynHBTtdXy6bDAx8d7dKWeJzcSaCR29DTP8+nSnHe1rR+hir8DGTnUSpq2mT10VYGbWuim0/aRqH5HCvup55D0eHGE5jgHPaC5x1T8/+9MwTNjMQupfB2FHI942UkaAr6L347CZAJfgSx3Ki6tA6oK1ONwNdN6Acb6LWMWmRhh+Qn/YWPW2tTtdqMA3Fm/m0VdDfBF+aCZ7vuQ0IsskLT8xnlnG3A0Dcu4e1XEZvrvt7I9ig5EHeQ6TtBXXzrVDnfktvBFAJu1rRgKpJ0e/FfZzpfaV8iFhdBxldmBk0vrFw5bWtiktaSdwPn5m61a9jozbkduWsQNZmpn7ViSDa7NyAuPPJGeXPeNNcgXoNqyo/XgSOLYpTFMEj5gge9lYdxEAAAAAEAEcB8MTYwC2JRy+j1CZ4/lGu2OkdD3KPDt9kMliJpPJZDKZLGTh+kgxcD1o3g03l2xTXcKfzVmKPDEuojwKlHCd1vv5A1WB7z0LFhYZhmEYhmGBhbujA8zdeBFNq2v+zx+N6rK5V8YXVLHu1wnKY/hiErqO3L5EA3PSrbJaDaxSfB598Zi9LDvYKkmgEolEIpFIYiI5nnBDy2uY21vFyVIcY7FYLBaLxSFePPjHa88M3EP09bAlumFLy96oKJYk71Fo7vVjGyKXJSFcngdCSZDHw+APkbSrO5Lb7l4FjGAioYvvPeUn2qxrOOOiMnTVt/tngSd81dnLg2KtRNIgCIIgCCIKQjlOiHoBTqLfXM0mc9FrItdwo/M1HwabCt4mjl5ODTeKdmdGRi+WiG/9lIEZPBgN78p3AqxnVq9TUfuYxn4AZyNmyLWqoHG9kQjD5Alj1KjMfBLBo0jovbuVCyUHdIxw43moz+HnNe1GNohmN+BVl/uKG5CAJrBCf/SPXn4bHA/+DN4MEjZxeWW9fWANLGuVXweItwn6sAESlx2/UOmxlWSJvUxXDQ6QX1d2zeo20qdu6HywpS2xwOvxKmTFn7pOX06H03UvisZYOIb0RjekcN7Y8ZtSgNU2FU9uopeCxgOzrnCQP+z4y6EmyId1eMKBlFhMf/FM3Ifuo2NurZ44DD0ePxIKtwc3XJT+FyKaEj4DSZDta7oI/tNjamhT34378Whfla/Jao8NoNrJs7KCbIGsXbYaauqfILzMUgjE5KGm0FvRlwXtg260zPknbEemQ2koRT6QuHbst2r7r0tVPf+XzFb9OvyQe0y2jmpuQ+4E8+0osivlsSu6IsTX2mm85qXvcgH9OKSq0v8CnT4ilATvYQrraMgpWwDt+kw4FLZV3aKCbo8GsPC34W+zTDh6FAQH+82XaBLBqZacrPQhDazuMzWjR8ez7/QC4Mj0LC3wSodJt4fZzjdjESz4CmcezbPmAn1WFeLE6jmzsA21xkTrevsstLfK1hXuejewMiNJ3n49b5UeHYGZuS4+Ja4jqKwrx7ESIRJNKtP7Y+lEUMiEsoVZUe+jHoWSA0D2UC0HPm47jZCBzbUIx3Jt6+Qhw+UcGUFbVwpxBs5x5NeQodP8fTY8WwYJCZLa3qcWQ8OGO+rognmilt+bovORfIglSpBKdUUrY8yZYlpg81r+S2FdaiE6ZM/gbCEUJlKTueTqQALMc78N053fGn07aYO+9m1XvXMWCnLoMuhAwi7zAGPnmhy77HV3u4SzV7WBloRxE3Y6TRlq4BpCQkLCQUhoQkq2FABsYwfDGu9nchbhqqBSqb8nVqZKQB63jXc9fAjmpoSwHG+YR9xYY2JxBJDPLNmYW9IkJNCbzUTiK9AbuWpClIc1TMxX7GPYIdyjceNTiXgoNENyuO0eTzDvsB2qieUBAAAAAAAAAEAEAHLVSc8QIYWV7Dp13nMwDMOwD+K/CZS87FzdTksbj9hx/WTwa3bCEYPCImQ0dIHwy0AsxV0E5ncGvWyZPwuE1bb47tqwdLOkA+FR9x7EN5zl7ruAtgleqz17y4pxdo+9Y71Lt0t7VrIN6/mluVW29qp6wZYXkZRxqotjdK+VTwKq+91YINVBDuKpUlqmV0rQXNkj2IYEIr91I1ip5ViSZf9Aohpd9yjR33QrWTfZgLH+Vwv+3uax4aA+baA9ROhozwiBntJQnpGK8hCBnpUhwkBCsO9Bv0qHXp/Vpy/GxQg8Xn/clIsVBDTuzw6e2e14uoo3PLT7zYKg4ea5XY7dyftMzLi3O09D43x9NBTH+/XRcrDQnHsRZLhP9GDiWxABAAAAAAAAAEbgFIk9hLt9Wl0RqibK/PauLCqmakB3wjJfDhBl4FoXXghLlmaZLz2pPH9Nb1BTzwbaHJlqzlLhmVvXryUq0HadDWLXl1nT4e1yInL13fjBT37xuyFJNRMmJwoTgaA+SeIImcshBn+/AIlEIo0Mpnxy3apilu7VI1kLevQ97qBD1ZZnOPWKXuKEjeR2hVUJMOlgJKdNMJqtKF99Aw9QjLlGqW8S+HBaYMh3paEhAg2+ILzKUkPgTfiYwLAbhI4GSYua1Wd7ruINS0BTWat2T7V2vG+JwuZ7nTK6cVbBZsAid4jel2oeshnxzWfHWkCV5hifKGc5n09FT2bxK4pFrbrFADGpqFznBmv5O47o1z9seZb9Ic+2mCwNATzfUK8zLsg0UQCyd32JRFYiAa2G2VPPlbapy1s57djJFcXBxESmQPloG0VOPSc8bwCZUnv5N1IZ5nGMbkU3pWkQ+bMHxJREkCZO7bNmmGIt8H3us3k4juZAeOHGdwARbh1J5Yr8/Nip3MkvfMxt9/TJh/+I/pSQA4EP22ss/XEdCsa3GtiOsvkURsZ/MhrbuCaQR2vgrX2z9IL/aF38xYGN8Mpr+ZV/y6aufk269a3AscI9LhaVjPD9iG1St6c1zg2k1dSZtW2oN6meDBSTfZ3EUxWwHt89JuYw2qlAQzDbl8wz1kHmeymeHpbVvZ3i/hXmTa03CeGiGDu6abVY0W2XDfzSyhyf4wOypoTrsJv3jV5xK82Q9yRjQiYpdKMlJdu5MB0xfnOTjAiIKz6jmvG9gxGWXqFPpx8YaL1hipNd2Mfpe4PWgu0TCQBDJMwDDgxbANdSx0Zqy953PB3L3PfHNnGc6Tosaz32A4IWw2QTs7iGryNUfV+tWm1Neq+wHzZ+TyIcnN2/CZ8a3RkhcrzD5VM+tzoIxVW/QnJ29tYiloDOE5l4UaxOwRi24TauoIKSnf5ALmPaZYWe39DBfuP1zVDcLIBOLjctZ4+JMEcFuhIsbX2+rLb5rgzQZ5QvvZtTGT+DDCr6+ny/S1IDMh/c1fkB4hT88OAvbxguvsvkTgANkfY9SRFCWRavmNE6xHg6ISyWBvDXMDAwMDAwMAwGBoZ0Ui7fpHJbOfifwzKjqoZ0Ijyy2sYTrLBIcxGLxoRWkLDYRx4qWCZwdKggRdIL+QtI/bgOW8MrJYOYjlfbJ66aqvWu9FtP47iFgb7kjO+9lrL1rQ1nZ4Qmh9ZbgyH15HYp4LFo1vjyFOO9xIEddSZyl+g7uA5mjju8tkI7aqgDA/Qo09cQqMZ39JnuhehAURRFURQ1Sl851y4PisOx5HVdvLIw7examZU9B1+ZeR20fzd6FYFsuNZ3NcqF1u9omPJvVKQZSTpUSu9GZR4XexkUGdoU+NsrnyisFm2yPjCuso7zxOwusx1tJMP9+vjsZ1D0xbdXPtmdhQTKenZUWmFdDMqV+g6yaL8jC8Qo4lDAonacIUI3LrZEJlWaSLX72fhalCVQHC9Bcol+inQKciY1GK0JEaU2nhnqhTk4I0cIhbQIhSzy97A81z9LbWcTnm9JWHK3Fk57/j2+I4/B6J0+cFCwodEEPn3TayWntjF3ugu4om0oH2So50bflpHXIxYfaM8eCvac5eWzhkD4S/znW+OOhPheDvNJBHV4S3uwdWEQyB9x2sZxcOJY9ZJjb8wuUbCNmM1DdKmDi2iTaM5837GfDfFL6SY9Cy5xa6QqmGdcQrW0JOOy6pCeUsgcqrCqoUhecR3+foIvIes+3QgVA9+od9i0vuqbfEfUbm2mX1BiZMObPNJ07ymnLBUHPLBp+94gTZG4KcxMhLE4DFnw4+om+04Q7L79q72oemkO5V497+/o09hnirfhG5K4Z+rtGIph3QDTkOSvkr9iw6Q616sR0P8ZWwc3E21Yglw0jzVexnPzj+c5wq+42/veHTBkPO5pGtI+gUrayX+0V4TzJRKWVnceit17pfhpe3EEFb+kcBsy4cSx4BAq4upkI5xGRVJEYmY7k06uu3Zg8a/Ge8xyywHYYXZbe1kDSB3PY8H1v3ZJ/VCIUX5OkpVxxv9+o8CZN94kIuJL5SxuiaxBXWF07dZr5bS9DDIoyRU89EmWxKgEEAEIXGXOJvBLHIKrW8xsnoKNEVDadFcxkd3OlU7jIAOKuxSthulXKHnRSQcZEINPGaCNpY/AwEyh7HRNgcTysE0XI6ODCbKIVketaXT6RyWiW+ftJ8+4AlRZpg4hZ8p+YicoCKOlfgPfkLtaTb2uH3lfZxSVYZkeUjoFvhTNBc1EGc/diqyEquQDaSCF9J4ThDchAEQNOlaMCj86AFD3F0GFRSC+p/6DevTf+OsMqs/e1Jnj7X0Ws25wtyZh08x+GCKrRftpF20iZ9q0c/T1vuSmk9abEzbzJENfh7M81DOLjpqQ2qNUpc3KD2Y4LDCLceQmto++HrYDW6WAOYHFVoudNlcdnTgQQA3iiBCybJBY7xIHrr3dNYWeG20RtZ5m3aKBRTFQOaVhffUzcHi3wC6JHW4MdvuNqITsrmdX+RGdgiUHVGvKhQHXnI614IUWiQe3DgsdrYKS7pifrPU42T8VhUKhUCjUQJF7MMQPG4e5mm79/4AGeAEfPNrqFNw5TlBtby0d9WH4dJhabhFvbtAbFIXlqJ5sBFo9PTFS0Hd2GfGnHdw0lUWg7AkpdtAit/GUopMQU5KanlOXObddONS3snuVa/aLb7+DEf3UW12FImyhlWGjdHbYcGxLuuBTBBAEiMmZaZuhr6JPn73HAvpcNPOUkJqgWP+aQVolAO1lS59psrR8G1BRLbTPsIyu8Cp9OZxUAZ1V9v820HxRg68SkxCTa7CIk1ceE59Cr4Im3pFM7o1K682yomNVvIyLSBFfKq4Z2/1Tr6N3A8fCiPLwFuaD8Y2ChrAwdWK9tAxjLBczR0OSu/ZI4B8cxUGfZOuLSn1hbHhYcAeNCl6VeEa3LiJxDb7S7CxcqmwIYAcRbpxLoUNxo7p5uIr3iyaO7TUUPLFxDic0ymNfVO2GY1QNuTYM934qmbcx6EV5dEv2FWBlNLXbNAmTg4A4A8QGUICI6yC0RYnxsHFbpXGsIW1aZuNW4npwICpqC2JGZlh/oJiPGnE3Ws8V2ofGUEhJH/rpYtMkNV0WEyKTBJtvZyN4MPY2tiwJuhp87PR202nV8FqvCEs2Q/ppwOsk0u8WaEBgcPcO1oMnsR5iJyeP475UXZs9V7/AAFHXkSwQd3Pyp/EFylUr8wzamVs/N4khWxl33+Tf9HVcSilvBJ7xpQL8Nt0095M4TmONjo6Ojo6ObtAxxOF4+BU/VW6bRtLaTNLcnxsACxfyEWnPTwA7A3ECsDoISLfczi20jWgC2moovEhMSDkbfJci96wO7weAs3HCtLy2VsTf7jaAJiihl8LQdRmIHmClb8+t4hS2UUFANpSdj2AjWcnc1mjizCTAXMnr/Y/P0pBnTCp8sjDGM2yGnvWzE+EyNLsaxj1eKzCOS+bMLTPtuzKzrd1UGxyfu6LHAJkRi/Wl/gJkj6XLnJyLf674Z7Z6HfzevBrK+m59QpwNe0jbbFOZJdYjGwoRUHdU5lxEzvGDsssF4JePtDLlck28XW3O7vayu1HyWSpN38YpFRUVDMMDpqLyZ6Gd/7dOrUZzOihOXp0kBe5ZE4mC91zdDWnWVvDSLtpE8towGH+D7tCxPwXtI0APGM2uzDExxpoDAQFTgnwLo6n+uARsAMJUc22uerCtOV1kbcNzN8xCy06jrN1BrmMqnYKLSYDXiWTTtqyUV0oDVeeCK1WKwSisbxZGVL4EzIQyc+D3S3eVBrVTTMpOlq14lzxsHty/CVxwv1a33I3JkFd8fPiRX0QkSMYc+/1FVc81T4KjsocJaAdlAe0n/ZYJ0ZJrjhUIpESLH76tKlw3ctKsF9KHQTs0g6tklX75L8qkk0Ow3uU3Ym0Rr48eCiEQKClcZYC4EY1IEjC85OnULBIKOqBg0cMPSvy2JFUthdACEbBWgyN5iShfSUy2TD/U68TKEmWTaWTz/AUHTX43FJDFqxImS5QoCYoWEf/C3MRYZIykagljwGgisoCOFxnyIluULtyrshvnQR8bmqHKk/7uZgFpM9KsS3BvrGFWSx+Pn8o4OtP2Ba0KkIzCrYO5Zx/eV0LrJEjMQBXjU3Ou8UqyNJZ1MWXomzh72RnBBCpG2OxcXshBRQ4xwYEVpPLX+U4dvzcJZ0dNUqxdW+URoFeR5xMt79mh0cVlw5/6eRVrXFNZmbr2teJ6H7nq09hMNkMg3iyjHYzT+KaHj4L1xwBtle5LB+OL5Fl3q/6lxFGi0TgTP0ESUcSepZ6Xo7HEX1+1g7SsQniE0YretXEAkXlIuIZ85sX2BIEAUvVpXcOLSWgNGWOifxrsNnE6oQrUB+GLN5hgGAluI7zkaPeJRivZj+LOqsawcXYCAfcEz1giFqCXTQwJoRkuULudSmYCArEsq7uxCwTYxxblGmFCkiRXUzIeMrIbxsqbME5k4AViEGiVKOBVeH/CoETVLUXZ6bL7pRGRwpS05WQ5KczeSmpf082ySckzxlzhseIGSvGkcIWDY3fxhP1gsNa13ujffqPwB1YNVD+HNCirD+A7UU+UGLf5+zOVvIj1OC1ycrVHdQwdVxhJ7kYwFZRymrnlPwyQuQbZWzenPp2ONoDBVtSrt+WwgelN3OFoZ9bcTQpnKekLkHka//7oyKuezoWmN1UIpzjYgdm31rjjD5B2E3jwEbB4RFL5g2GEOStm76VSkTav4bZmsDayuEAz8c3LGdtNtNo/itnEwVVTbQEAVCBvvkulvVzdxoauxYgYHcoQqzQAkDu6i5yMPESEfWc5EBrpgdKvNuE0U50xpPYYvyqlyy+4lVtOguEVTosrfnxvkpcK9QYmR2GUoSRkoUm+VZngNM6ECLIaEKCXUzXVYYbfRJqMqEqAAF+0+RVZ9pYNSi3EqCELNI0lzMo0vUi62rWU+fGhh0XmOW2t2ISI5AyMTks825dIwPK3U65ljHkin+3xcZ6HciOLqy7SirPpcJb70Ylag2B511iqtDpDwPnl49qGRheEqh4QaEdVXrfhYI76RVBFEMyQ3u3GIuVyPhOxck6dhoRzbSdhkG3tklYIKpNcmASBpdFvKbSOX2cB2RrMMf2bRTGzZBy4AbVC1AOqfvD62UvfVr9LIxFF/9Mv6WevXwxeGLzLPAzJUyJzWEA+BKAElezl1ZF4axNUQ4DNS2yRl53GxL9pOJmHRsE3NDMu6gNScDOhn17y4oaBhFIvlmRnN8h/0DwQpBdoHs+FLXocHotv/UZMcT4mtkFxpp0IGbFRSKsVcexkARWH+fn7FmiScFFRFe5EnkX3K/p94vNcolhn3C05O5zLls2RgSy4XvIK8GPYoJ8kkcrJS5fXSzBsdjllRJZt0wOsvh989LcSUzRgrUU25nJdTkCC+LZ0f3fi7cvxbQi8icJMk0yHLM6lPQR3I6gVlFIOSKANCI7zjwyAk7bmCB/ENKnAu4aR+TufnmBWy0tm+9TrEbMc4CHeS292FiZBlHVO9N+EpLwMZigK598ERFb3VuuWFO/VjJjrwfXgxQG80UOgXA8eDl4cgLkurVw9ZHj4S5I9M0Ldfhwwcu3G8xOLaIutnVY2m2a56eBkGpyuA9RZbA3thTY2BYzxteIOWQszKom1lo4CBqWbiHuMi3Q6NHcjGGjWg1na3HEf/ag11zd3e8Qp1cSIKNGPBBWFT5teUBELIKNIltQwt+mf7mB8268E+sO+CTxCaEH33V0b3CUBARDw0fdrPivKRf+WydbzwMlPBNMZ/JcilDO7H6AAJEt/8n6q37s34FgewqPtwjvpFUKExkhVVVbmb4kAs52GpuGRhmDP5TeOu4RqMQgQcwwsxi9HoIR0Zwt2H9phSxtp+IhsfBJiCmrBvBY8UkuMlcNfYPjzU+3kfJrXcdtZ6+HbSdbKoIsvudbzZzFIiwJEDaxpWFcppR6WvlI3j9XZXqnUubMqHdQ9zJWBuJYTnunj0BIhBia+32ExAE8XbC/ggzIJKEsVh4Tyunpxso4yDT12CSdeJwoqJCyTPpRLl6OkbqlFjL1kRqGFtXm4s/uww4H2haj6B6FFIHYWLTLqsj8zDf9EgMZB4AOWnRXYK06O7yQCrwpOB4J3rS5jlwrHqIWzmaQOCZb6stslYkeWhcG63NnYGShNOSiNeMkbIbVm2ofuMh3PEHOUU2DscdRPDjuJ2oNIVOcY0FcqEwIA+gUcH1FAad6IVYSgT9Ce5jwri9EboGgL49Wn49GmB/QB+kWdP6+jstByiKDtpgHjKVLRR3UWSHO2AsAor1QH2SMJgAeN6ByHHXsdkDTBRFLiKfDqwSZpvQlDUx6YiAIEIjMjZQokhGLWil2sSYQ/W38JJAtHTUAPsW6EGV+D84KeAscokzrBqU2G+YMZ0Kk7kPvNJMxFc+TroDMTCdFjzokedNb392Fjb3HmYe4incbhztYQ1SBTRPZ1vAfL98MoX3OfUcfjJ1sj1sCwk5qJbe00suzr6JdkdPDcROo2UU5B3QzKaglqEGAveTriyrBWyFwXXZ948RlVYYsplF9bgrQ8JMEgdxpUOK6EonNDxDHy3G2i3RLaGWGO5nsGCVuZ0E7yroGLNZQSMBHtjw6erXk90rE0l9dQ5Ke98APec9SYSDkeflkEo0NgGtIaJNlLVz4tQU0CTL3gPKN/7PMX71NGu6dEOeXMeiTV0uduaM3urGKMiKqjR329F2mFOUyiBvY+J9POSZrfI0dLq8jxbO08lzqI4/b4Whn26R7JUkh1WXnoZmoK4T4eHXvba6PZnBZetIfGXpJD2q0MSyTZ8k28Je+yjKC176sUG3vry8euAmtM4DkHM0jg5Ap8Ln4isdlNI9xe4oqISiHK3UxBvgjiaODFod7jk/rplQlMF5CmIfre/hXA6H6n+AEGhdiOxBQDYhdLj23TtFoefR6826zeRVEPz10CRA73WcS9IBY77rNyBv2zXdHFi9+EKgLjup6Nl5rEXmT3oPpBut5zkRxJuAWBfcSSAu+gDMkj9nq+llQeiXSbrI1omzHcYoT1vb3N2enisopzO7LXCcmK3xx8CfLbYQy/Azp4fF/cecTdcfysRuI7kOkQoFYA9j0v0rH/mrhnSlAPeKpESXD0/aMyekKUF91aFMLF/jO1IBHxbCHXsIClxpUIeBY+q3wCO4OYCydJsO5vPmIzmpTEEkgMx53vwOI7YDzWbwS2vzNJr4VLqtNhap6Mt7DwigVxW2AOtSdhuNxXgD5JIS0akEgpCyj+9sRLuvQVSBVBm07uKkDxc4rrmsXlZJpo/+DcxiFsDjbWsAyecJTNrLQfJO88olYKBPj/r5yDwWT9WQZ1N3zpNjmYAwnLCLtu6TjO8ZdqlUAWzbdbKRmB/w1pIgDyHJRsRDvPrv//MNSXpAqVm3kY4K78t9nxOgOB4jCMdsMI000yzjSROm03Mo3CLlASzv///sIaYrQTIZ0PkGNSJy0B/jX6iBElGKp3PWFWygPeNLyqqb4e9WKdcqoHx4h6tDfoEKo5xgd3pM39SCp9wC+ma9JfyudG5kGDBurKutjLgB4LPi/orv4xSKT0CVl+9LyRkAtEl0hZqDivc7aPWOBu6nghgjLlcBT04eBkjfI4p6365GaGkRYpOgSU9aP0LKzc1pfIPdV+q+m7mm9XDEE6dcpVkGhLrhVGhzB/kVm6qnGXbK1ZLHOPmDvGwzcM08uL30KtltGVE4Wr5KEtLqYAcVLRM+VxgUgm7qerk3SDBvXbWKWGXO8eGhbtE4oXU6WBJQ35E+hEe4C5+hnVp4OWkSggPYHMN/THYrmAfWI9VLCODmhUsbaItSvU+8naBoDdYgQnpncLQxbYnt7OBUD/kKalt8S5GILuXSoDNbivpj+HiKDvKtL3lRpyXuFAcyh9DPAfAvr1p68a5rP9OzQhAffh43yY3ve1rdYWgj4I2QnmfQTeGVaz4ehho49TDlKr66H2j/194CGd7puK/hZXAxf1IscBFd0Wtw79uyf4cLhn5zp9LzNGTVvdAFyR826+EQty5jfPIyfpPrr7gX5QTqDdtrrD7aCO2SSgL1Sag9tYE5vNrnh+l8eHugLm/1kz0u8L6xDQnxL3HorrL2LNatCTjgUuC7Roo6ibqHFoQO78W04Y1rpT4fW2mLjDXAEj9ve6T53NBcAfyKifARLyTxzUXWTMThOqcw9VkPdOQMYz32jJV2Hvahi7cS29izoFUuPvWD+q7AL8hV0ZpJVIYi1sVyjffQZsKOso/OeiHeEvnBQS7aZprXC/UfSMa3qcOpm9JjSdsMw8t58ygM7J+XSPase5l0rlY5KzmtIPfAJoulLKSCBLxHM6St9SjwIBM1GMCe4BNJmchzdJ45D6N69CufuLUsfSp3TEfuA7LsIH/GvhUwx+Hnx8QZqS9yyUESZ0HdU08MKun7YvJ6qUuGHEa9VhRCwkY2vY3YqohwO3VAIXEN/Krdwa7xNv042koH8U8fUW4NLM3zKakvkDMLlAGnE1uRz05hxqtcadRCWnHiRpD52JO1FycomA1wJSomKJqE0jlbB8TA/DHIfirsDU4u9IObIGw2MEwmmMQDHEHkkzIuvU7dTXmFdGuqCbr6lST5jmCBo6CQ/KJmdfeY4Eza8YxDOmPzmn/ibsDUtw1bLT86fePdA8wS6uTxq2uc/YfTHV15LCSdQESedHebIG8qdPFQert8rodJIm4TfLsFqV+KSt2D2pLLYEgDREkCbDONOjIXZdNaRp0M+qTmQcpLsM74gC7JONmkdT1Ey8YI2b2DzXSndn0G7sG6xsQkKyEUttHnaxo0PASLeU2PXDUhB5bWJcSSyJ2F565AYMwApq2pKrSvfLrIVhm8muA1dodxjGtiGeNQtDz3EnvsRNiPbviiV41mYx9JwcUkqSSNr+ibTPlZBF5ETcLU2y93cz9NRA2skSsrr/GO0dKHvWjjL0nCVkPZkp6rmuOBe0PeJLRB9qA219QvGs7WHoOXPIUjKJ1O3voGWS6xIakhgtM756bVZ2KT1M7X1qb1NnW/ZcEdJGdg9eInUuLKknIAfYnmcYmUBKSFXfEtqltWweJSf1NJKHPOQhD3ma5+41YJodQ46YBG/HMdnDIAV1HzwDyGI4+FEyDedEb2aKMnDoAD3OUXW/wY5cFUtkUidAeNLabOBahOvxXCpddY1GQKZTMnd/A7eaxSM2Bm88/kxNw1QBphhA3LJbc0Z2mHtcOT5xFPwRvNY+fy+Ir4CqghgANOb1D53rgVsDVgC0BigHqKoH/e7Ht/CxWMacQbncHQZdOxwjZHzXk8Xu450MJm+h/r7oxnwsNNBSKcYZU4Mxe274a8U8rn8KZHYzPaUosiiMocpGTUgRKSJFRRdhEIwfkelqiYyp1WqBxSUc1FRh3vIh5l9DR69J0OElTo6kGW49pqGSE3SyT7jj7GsgPjwXXos2UcVsmKW22kGVScRyFNYDgjSK/TtpdNuaXzbVRh4MR+4oAoKRUfDlftbDpbz5DgpXHacmUTSKDw9RZM8nya0IbuBkl6smhic5+WKftdUa4JncdEtRRtQ1qgup95tQg4Fe8u/gX3X667hpLNB5+SWic31e1BQpty9QzUAKsU1PKW3j8GegoFq8T7T1XAH+2JoOA9Imx69B5ujg2Vu8rUINO32PBQ+gLXasGiTV419nHdKqHMNd5svDuH4dbcC1H5jvIrl5jG4G/jMQzSB8Br4zCBoB6NtIaRrpWayyG/SL5r2C82fqeai/Ey7hCm5plIqnarsU9pfwKH0NUn/9+YmSYxdyZgnyO2hHvDK2iSRmOtgnKK5gDpQL6+1PwMI4Ww88XSAdvSohMT7wV4RmA0//Dky31zxG7LI4x/P2bz25Gjvi3PYQ6dMytVmNVNG/6NSjvs0+qU3Feo4jxm5hFRJZgNMDDO/V5STnib2cA6Ki5AbRa2Sm1aYLJftSFfpUvOvrxLkemW5c/kTTWAxNHAMaNClfPJ+Kp7BN4xHx2Uh1plKOzRHWUyXFbh90vD7uVHS7cUr9mDpD5n4S9+reHrj3UCRVAwK/byhvBorlOnDtcKCzPLzC1dtX0IDrvHcHJ8XHbZ8KTl43rj3W00UIKZaT8Vt/yDxPD5DgRIeRnwTge89Dmq6HOUAufwcqE5kpBQ7BuMXMAUqY7jSeuoaNOnDlB7NB+1ipIbOSwOnf30eRgHxXHQO4r6+ULga+BURZAPcbrlNBCQf9WrwMxK1Anxfngcw8EF+k64EPpDxAPKeFHbUV67Ht+3ZZ8Z/QKPUD0ciX8SzSAuBLTEuPgcyXFqUfQWaWNjEWtsUycqcm7vfabgmA+ITCZ7kjlLyLHUDsA/47nwIfx/MhV5nT+RzEFigVZbg7jNhdBTJX83R5ewm+kvkU+C0QM7iPxkwX5ypcnICd7gb+BmQAVF0s/rtTIFvxHRcsthl8msccCmb7mNsuuB3MfAErfQ5n+fR+YV60pHYY2FGqeLTdpKqUOWfgpYB6gejiQXSCOh64HdTxuHQzahTFZcGcF9wcgXtNaCOWy7gEBq7+NQA0BYG/8OhDAMBgOxT0G9HxjhOuapJlqyb9n/q5/1y1QfWYseXUOQOPp4w8bZl3dW4+ekxnbA3EpYy1M+bfWQsYJSKefhij606taPrN2A/gWkR29JWUFtvQI5CRDpAIlO/JGJavgNL5f5JKI26yPzRgKxh3oHgWGkpnGfn9Bt0mxsKBd4HIQ/+OU9UA9AMjkLb3Wc+DAIX3zEWjChIoANQFDPovDASguU8hAIBx89MLszxA0pfsgSB6GTcQzS/jAyx9dR4Q9DVoQPHX7AHzj7fzQGa/FQ+UDyEfJweq8sHa3c2PVWDeVyTwhY89JwTvTx9dhNKfPC68LA2AfwcGPM2LcMCXvlQMIM+9nInT3e8HAuqVMBCqXkMHog/drzhA3fwWMcC+qHifgdjphy8vTDz3yEsywCcfd4UTx+RLwUpKfiPsfvZGJ5z+8I0grv3yjUjc+pO3QEGcJnVE0J++JQkJJPKdjySKRE3P90gfeRvV731P/6l6lsztC6k6lkWJAmsKWwFAImALb4u3lQ8kgczCa5IMX+hYtiCqqxC+7xYzWAf2zKx/4BED15QQ7RYE2SQzFNJG3pvHRwfRZDq0QGb12osMiZOANbDQkFhUJoE/Kwaki0/GuCQlfqK0I1kYR+Dodyzk0rOovmc4iYtEsrmGZ1gQJHU5UO8wCcqL8PwnTOI3zpVE2fUr20GJQA0MBYQvnHcpns0uI+CTJhdcgCSZN4nhAe4FSwXikgD3IofgT6xBxPc+kAAfMQYWl0uxiJj568CsE4V5QWDj4mCBAsl+SjSTyxQKH8IBB3V2C8p/UFRTpieI+zuRe4oIK+IyJA1KTLrCsBIhOMkG8YO5SMLFVazZjo/aWwixEXwpNfh8pnIWa09xpsXEnm6pA+De6OlEEAKKvEeymq1WCFsx85cHvazPqnn+GmEUCovbp0dOYz3jPwu72KLVX3OSqEigLDSgFjs4zgsxcldH6PAD9mb7D48M0y2GRohaZvvwIwyIGX7yTbtO00oLgI51BO/qI+ArHQG+OtamgXTHALReg1/tDBrGZnsAeN0dFkCZNzCEV14TXLueyr5fxj5mj5NFjsiQcHOjFnI1tYD9I8AxCqlM50BvHXyoIUcG46+BvNcMQ9gGmKdxBWKBF2qoHge9IfwgMwip6zi/NujMu8RMrn8aa/MlIofEr5DMydchVh0CAj62RFe6J5U9qgvdQ+jw/z4Z4BRq0HCy04qanYFTbDj0Jz9qgZxnA/LAl3AC8erfuwk7hNKD0HFdQ3Ax0LYJ4W/HKLktXwGIHVE+ROf6EurJH4HbItwWUZYbJZ3pOWWj0zS6w5uVk2Rmo9+ZTLGEH7xQUW/4UWPEQctIgvW6KofUGMwOVYNppLg+UhbmIc18340G+wkvBGURpLDyoJ+gw6Tls9U4G5qXn/AdqE7LXAJaC5YkQ9YMticX2XKtsWlD7oxjz7hOX6CH3sE3MUNd61BmvcQgpCS/ruMmex32u3Xy94Zh9M0IXb1q6pqlsz64sc7mDgGN39VsiiblOtwrLzVOLNfTEH4CK1PEiii3qFax42RIHXksjCgXb2KQldccM/PxxQuJlhmD3Za3Alc1zwyZmlq+wF4GUnXe4soLzdL/0JBFnWkyRfR38oMI/IJTyThfGXIEobxIKH6ZRGz940kPCswdmvA704TaAecN4UDHD2h4oxuToTRGDaAcBp7Kj2TQvNGViLpOejeaR09vBbWEx4l5/bg63EEcyZCcPAQw1BHIwqs0rhTl8ViWAwwczJ+e19h8CaVr0NKsrKJ+RZcBe2ZQCOsO4w/mQ9ZO3nDEsvZu8uhG8lmoLU00qNeQXos1JkjDHz4FK7/cgjGZAYW6jiXAYUrrM3qRR1JPGCVC432NNJG+3ewNFKadCbJ2O+/MiPoUwPpbn3BHRED3N4LS8sXggeBxD4VmNj/MMB7ZA2+zKZqDQ5x/DqFcuK7I4hr7zepVPUjLdSIC10GcGeDG7Mupx+dtp2qKjEgCCGD8Z2f/IS/9/0/lAwAKCwN0gY1QpxwDbuo0d8jGGi5eHk2gWdtHJ3C7fMixAYbgXTdR82Xhab0GwDhGUf5w76dGAYztlO22ObjvVL3NOBvpHv73NBho/1//vRf7cj8N8PyPR/n+C5yzmNXQdAp/uzYgU3cH7cQ9YMfsxB2x5W997s9d3+R0INfj9DwDTrPMn5kBgFRDMB//q7fwHkCgQhEMISFkBAcMEmRwKBi9/b9sbtNmltmOWe25ORZboMlWm0KBevfNtMJH+ASLrDHPGXYfoFmnz9ALfbDRdn/50w6lUmGpci4aTLcLrrrksiteqOCGa67bqZL3sMxtN91SxStvzFdDNUMYio1htBjOSEYwitGMZQzjGM9LE5jERCYzlSkc0moatdSZ7rW3ur5F/rnLlDlL1jSsnPts7jpfKJbKlWqt3mi22p1urz+4GY7Gt5O76f1svliG0Wq9oZyFbxdxt6qXqQkEQ+FIFKd9H08kU+lMNpcvFEvlip+Gr2r1RrPV7nR7/QFB/3E0nkxn88Vytd5sd/vD8XS+XG+MP308XyTj54/Pr+9AMBSORGNxaSKZSmeyuXyhWCpXqrV6o9lqd7q9/mA4Gk+ms/liuVpvtrv94Xg6X663++P58vr2/vEZhFGcpFlelFWt3mi22p1urz8YjsaT6Wy+WK7Wm+1ufziezpfr7f54vkJMudTWx1z73EOBHNouxtXNcffw9PL28fXzj8VZ4wlEEplCpdEZTBabw+XxBTZCkdhWYie1l8kVShBSqTVanYOj3mA0OQGAIDAECoMjkCg0BovDE4gkMoVKozOYLDaHy+MLhCKxRCqTK5QqtUar0xuMJrPFarM7nC63h6eXNwAIAkOgMDgCmVXPCxqDxeEJRBKZQqXRGcycTK4SK+eLzeHy+AKhSCyRyuQKpUqt0er0BqPJbLHa7A6ni6ubu4cnAEIwgmI4QVI0OoPJYnO4PL5AKBJLpDK5QqlSa7Q6vcFoMlusNrvD6QIQYUIZF1JpY92JvQkgKVQa0hlMFpvD5WVz1/lCsVSuVGv1RrPV7kC91wz7+fgW7b3/Qzf72XyxDKPVerPd/WQn7lb1MjWBYCgcicbiiWQqncnm8oViqVyp1uqNZqvd6fb6g+FoPJnO5ovlas34wXa3PxxP58v1dn88X++Pz6/vQDAUjkRj8UQylc5kc/lCsVSuVGv1RrPV7nR7/cFwNJ5MZ/PFcrXebHf7w/F0vlxv98fz5fXt/eMzCKM4SbO8KKtavdFstTvdXn8wHI0n09l8sVytN9vd/nA8nS/X2/3xfIWYcqmtj7n2uU+yiClApRE6g8lic7g8fizOGk8gksgUKo3OYLLYHC6PL7ARisS2EjupvUyuUIKQqssWIHUUUJeilYgBAEFgCBQGRyBRaAwWhycQSWQKlUZnMFlsDpfHFwhFYolUJlcoVWqNVqc3GE1mi9Vmdzhdbg9PL28AEASGQGFwBBKFxmBxeAKRRKZQaXQGk8XmcHl8gVAklkhlcoVSpdZodXqD0WS2WG12h9PF1c3dw5Odg5OLG+bxH83Lxy8gKCQsIiomLiEpJS0jKyevoKiEweLwBCKJTFFWUVVTBxqaACJMKONCKm2s8+nZc36LAHcPhw+fnr58O/34Zbk1L4iSrKiabpiW7bieH2zCKN4mu3Sf5UUJUVU3bXc49sM4nQAQghEUwwmSohmW4wVRkhVV0w3Tsh3X84MwipM0y4uyqpu264dxmpd124/zuh/P1xsAIRhBMZwgKZphOV4QJVlRNd0wLdtxPT8IozhJs7woq7ppu34Yp3lZt/04L9fb/fEEEGFCGRdSabphWrbjen4QRnGSZnlRVnXTdv0wTvOybvtxXoDEouaR1bNjuZw2u8OJcbk9Xt4+vn7+WJw1nkAkkSlUGp3BZLE5XB5fYCMUiW0ldlJ7mVyhBCGVWqPVOTjqDUaTEwBCMIJiOEFSNMNyvCBKsqJqumFatuN6fhBGcZJmeVFWddN2/TBO87Ju+3Fe9+P5egOAIDAECoMjkCg0BovDE4gkMoVKozOYLDaHy+MLhCKxRCqTK5QqtUar0xuMJrPFarM7nC6ubu4engAINTb5BkFb2/oGa27pWzywrwiSolX5lcFksTlcHr/vBEKRWCKVybv38IdSpdZodXpDV3+azBarze5wugCJRc0jq2fvTxvGKSE1LUnPyMzKzsnNy4/FWeMJRBKZQqXRGUwWm8Pl8QU2QpHYVmIntZfJFUoQUqk1Wp2Do95gVOIQAwCCwBAoDI5AotAYLA5PIJLIlOg8r2h0BpPF5nB5fIFQJJZIZXKFUqXWaHV6g9FktlhtdofT5fbw9PIGAEFgCBQGRyBRaEx6OTYTl9HfPgklidllcckpRBKZQqXRGUwWm8Pl8TsEQpFYIpXJFUqVWqPV6Q1Gk9litdkdThdXN3cPTwCEYATFcIKkaHQGk8XmcHl8gVAklkhlcoVSpdZodXqD0WS2WG12h9MFIOr967L7TxkXDeZ/pY11zjEHYohpsdrU7nC63B6vD4uzxhOIJDKFSqMzmCw2h8vjC2yEIrGtxE5qL5MrlCCkUmu0OgdHvcFocgIAQWAIFAZHIFFoDBaHJxBJZAqVRmcwWWwOl8cXCEViiVQmVyhVao1WpzcYTWaL1WZ3OF1uD08vbwAQBIZAYXAEEoXGYHF4ApFEplBpdAaTxeZweXyBUCSWSGVyhVKl1mh1eoPRZLZYbXaH08XVzd3DEwAhGEExnCApGp3BZLE5XB5fIBSJJVKZXKFUqTVa3RA3eThusX/xCfbbw8td/2dfELU2zCm4e63koM+oTcvk/b/98wfmmUj9eojJO3xkHyOw8uF2OFuSZoLSxjpuXpkwAcr4y/jIcZgdWE6Hb4wxxoRs5QhAGRdSDSCEEAITPgEAAAAAAOB/Sh+eZkXT7Qw9fIyE4YlSSimllNLVSGHKuJAv6sMWwxvracgYW10QKONCKm3stfPZP3dQme5vDUJMgDL+Ij78ENz+95exD+VjN85SOvxHv0vDbvjZ5lER4MpYx81rEeZCG8fNaxMmwIVUbl6HMONCqkyXMAHKuJBKG+u4eT2ECVDGhVTaWMfN6yVMgDIupNLGOm5eH2EClAmptLGOu38HIcIEKONCKm2s4+aVCROgjAuptLGOm1chLqTSxjpuXkGYgJBKG+vkVpkAZVxIpY113LwaYQKUC6m0sY6bVyfMuJBKGyevQZgAZVwqbazj5jUJA2VCKm0dN68llHEhtXXz2oQJUC6UNtZx8zqECVDGhVTaWMfN6xImQJlU2ljHzeshTIAyLty8MUkjhBBCCCGEEELIVhbABCjjQiptrOMinv+Aj2RkEcqd4j4fmVLU5vbJzBOAkUmVgHrPmntX5kabHN2HttDvvSTuA//xO5mJGUptc/l43E7OyKDOyn5vFwa1emg6p+Yyq5r7u6x5fPhItI2TXMOOsqqbNyZ8AAAAAAAAALDFApgAZX/6p0WnvL67yyRbFiNvwxhPAgAAbLEoTIAy/ix+SEuknzZ1pIwe8Tn6NhMAAACglFJK6Ri7AgAAAGyxICZAGRdSaWMdN69OmABlXEiljXXcvIYybayT21TGhVTaunktwgQo40Iqbazj5rUJA2Vc/Jqfnt13LrPYQD1qR3O11lpv54iYAGVcSKWNddy8LhOgjAuptLFObp8AZVxIpY113P27Xok+yS6ur+FcUHxty5gAZVzIVDld7DtndJlYrTMRxoPsiAllXMhUgTAByriQqVLCBCjjQn6kZt1ByFYzBRGgjAuZqiRMgDIuZKqKMAHK+Bm9ZTeiRbRa/XGKCVDGhUysWb6dV8wEj4rykbqPYf+5umJcSKWNzWnQI/Z3MR6ZfjGn2946FTLV3NuD/V8iz7JbS06BC6m0sTltwgQo08Y6bl6HMAHKuJBKG+u4eV3CRMi8HsIEKOPiVgdv6ljBSSmllFJKKaWUUkoppXSrC2IClHEhlbt/ByMKlwmTSOBfvA8aoEPvmABlXEiljXXcvNIlTIAyLqTSxjpuXukRJkAZXyc6OMToGEuVW2YClAuptOPmVUEZF1JpYx03r0aYAGVcSKWN4+bVmQBlXEhtrDNgG0cgwNJzOK0rAFA0IxShBV5eIsAEKONCKm2s4+aVCROgjAuptLGOm1chTIAyLqTSxjpuXkGYAGVcSKWNddy8KmEClHEhlTbWcfNqhAlQxoVU2ljHzasTJkAZF1JpYx03r0GYAGVcSKWNddy8JmEClHEhlTbWcfNahAlQxoVUOtMWAJIUzQhFiBVjCRffEQCSFM0IRYgVYwkX3xUAkhTNCEWIFWMJF98jACQpmhGKECvGEi6+VwBIUjQjFCFWjCVcfJ8AkKRoRija0+ERYQKUcSGVNtZx88qECVAmlTY2p0KYAGVcSKWNddy8gjAByriQShvruHlVwgQok0obm1MjTIAyLpRx8uqECVDGhVTaWMfNaxAmQBkXUmljc5qECVDGhVTaWMfNaxEmQBkXUmljHTevLQAkKZoRihArxhIuviMAJClGKEKsGEu4+K4AkKQYoQixYizh4nsEgCQjFCFWLOHiewWAJEUzQhFixVjCxfchSTFCEWLFWLJzp0hEmABlXEiljXXcvDJhwrgw5+/rnO7C+c6ffqJiqbsKkDIhlTbWcfMKJkAZF9JYx82rEibAuJBKG+u4eTXCBCjjQiptrOPm1QkT0MY6bl6DMGVcSKWNddy8JmEClHEhlTbWyW0RJhBtEyZAGRdSPZ2BuGQ/KkYL6XUYCdACRu2DZnLzlyqnfs18d9Scfk1fnzv3NXPZQU2iMblInmeie4kxAcq4ynnAG8F+GoaJNgNVukJYqGv92ZxDA87KDy4WojNVJkCNk1sDNdZx8+qECVDGhVTaWMfNaxAmQBkXUmljHTdv9IH4hVBAmdi+TrD3RAUHI8IEbF6ZgAqZ+T3zgwZtHV86CjJ3/e/AzXZ/FvOcft7M7bjWWmuttdZaO7fj2LHqHEIIIYQQQgghhBBCCCGEGxzUe/5oQyKFCVDGhVTaWMfNKxMmQBkXUqUrhNfD35S8Wfr1Z0LnPWVN3ZnUFIaqrgkhJmv+hiOvNaGn7eXWwq1QHeJ3OdRJDOdjQaobSX2qt9Cttgs/8MdY9nHxq9o5FQokxsO89FGHdDOoipOi+FMulXHyygxM7Hr6GeGtH0lj1DJlIHwAm5dhk8IEKONC7uoU0MaFVNpYx83rECZAGRdSaWMdN69LmABlXEiljXXcvB7CBCjjQiptrOPm9RImQBkXUmljHTevjzCBaJswgZf700+yLyTPzh//1h2LDOhb6ZqcD3v97f/FdZmN2nxAzT0aF7GE4/UACioaOoZ0TCxsHFw8fAIAIRExSaRX1Bam7ugSp9GtboCfJ6qbawyoTvnQrWYK6iMou1sPiHLqtppCG63SHamNq+g5a1V0W8dUdNcsdwRZ5+L1u71b+Gk+3HxQgats3cEGrjUud0p5jegzbfna/D0Qwflb3f0LXAOavbZ1A5+IZN5qKsPr5gv8LTLN6/ab9m/eG9+BNO8nX+YfnpPtq8dKstuYdaX22WPY7vy3oO+Nq89eBxsMxjfbws48TO9i1iyG1WZ3OFlpp4jbf3yMWf49WS1mJmZzITnNbLHa7A4nKw0yWwyrze5wstJKZothtdkdznbNtlPN9IDfvY1xwIdevUXbhFf5AKr+525bPzycHl41q5lOl07hTzwAbj8hXVBQiJ+QEzB0hOGLDFeA2j/BCSjmy19dSJAQ/XQoIKnl9/EB9H+8smwFAA==) format("woff2"); -} - -.scope__settings { - display: flex; - justify-content: center; -} - -.scope .kiln-permanent-placeholder { - max-width: 1440px; - min-width: 300px; - min-height: 18px; - margin-bottom: 10px; -} - -.product-zone__title-underscored-url, -.product-zone__title-url { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.product-zone { - display: flex; - justify-content: center; -} - -.product-zone__inner { - max-width: 1440px; - min-width: 300px; - padding: 0; - width: 100%; -} - -.product-zone__title-url { - font-size: 30px; - line-height: 30px; - font-weight: var(--theme-zone-title__font-weight); - letter-spacing: 0; - color: var(--theme-paragraph__link-color); - -webkit-text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-color: var(--theme-paragraph__link-decoration-color); - -webkit-text-decoration: var(--theme-zone-title__link-decoration); - text-decoration: var(--theme-zone-title__link-decoration); -} - -.product-zone__title-url:hover { - color: var(--theme-link-color-hover); - -webkit-text-decoration: var(--theme-zone-title__hover-link-decoration); - text-decoration: var(--theme-zone-title__hover-link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); -} - -.product-zone__title-container { - display: flex; - align-items: baseline; -} - -.product-zone__title { - color: #0c0c0c; - font-size: 30px; - font-weight: var(--theme-zone-title__font-weight); - line-height: 30px; - font-family: var(--theme-zone-title__font-family); - margin-top: 0; - margin-bottom: 24px; -} - -.product-zone__title:after { - border-top: 4px solid #e6e6e6; - border-bottom: 4px solid #e6e6e6; - height: calc(8px + 1px); - margin-left: 16px; - flex: 1; - content: ''; -} - -.product-zone__title--full-width, -.product-zone__title--full-width .product-zone__title-url { - text-align: center; - font-size: 48px; - display: block; - letter-spacing: 1px; - font-weight: var(--theme-zone-title__font-weight); - line-height: 56px; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - margin: 24px; -} - -.product-zone__title--full-width .product-zone__title-url:after, -.product-zone__title--full-width:after { - border-top: none; - border-bottom: none; - height: 0; - margin-left: 0; - flex: 1; - content: ''; -} - -.product-zone__title--18-24 { - font-size: 18px; - line-height: 18px; -} - -.product-zone__title-underscored-url { - color: #0c0c0c; - font-size: 16px; - line-height: 30px; - font-weight: 400; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; -} - -.product-zone__title-underscored-url:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.product-zone__title--underscored { - font-size: 36px; - font-weight: 700; - margin-bottom: 24px; - margin-right: 12px; - text-transform: none; - line-height: 1; -} - -.product-zone__title--underscored:after { - display: none; -} - -.product-zone__title--underscored .product-zone__title-underscored-text { - border-bottom: 6px solid #0c0c0c; - padding: 0; - margin-left: 0; - display: inline-block; -} - -.product-zone__title--underscored .product-zone__title-url { - font-size: 36px; - font-weight: var(--theme-zone-title__font-weight); - margin-bottom: 0; - margin-right: 12px; - text-transform: none; - text-decoration: none; -} - -.product-zone__items { - display: flex; - flex: 1; - flex-wrap: wrap; - justify-content: space-between; -} - -.product-zone__items > div { - width: 100%; -} - -.product-zone--outlined { - padding: 20px 12px; - border: .5px solid #ddd; - border-radius: 5px; - margin-bottom: 30px; - min-height: 400px; -} - -.product-zone--t-highlight { - background-color: #f8f8f8; -} - -.product-zone--t-light { - background-color: transparent; -} - -.product-zone--t-white { - background-color: #fff; -} - -.product-zone--t-dark, -.product-zone--t-dark .product-zone__inner, -.product-zone--t-dark .product-zone__outer { - background-color: #0c0c0c; - color: #fff; -} - -.product-zone--t-dark + .product-zone--t-light, -.product-zone--t-dark + .zone--t-light { - margin-top: 64px; -} - -.product-zone--t-dark .product-zone__title { - color: #fff; - font-weight: 700; -} - -.product-zone--t-dark .product-zone__title:after { - border-top: 4px solid #c00; - border-bottom: 4px solid #c00; -} - -.product-zone--t-dark .product-zone__title-url, -.product-zone--t-dark .product-zone__title-url:hover { - color: #fff; -} - -.product-zone--t-dark .layout--7-3 { - padding-top: 16px; -} - -.product-zone--t-dark .container__title:after { - border-color: #404040; -} - -.product-zone--t-dark .container__headline, -.product-zone--t-dark .container__headline:hover, -.product-zone--t-dark .container__item a, -.product-zone--t-dark .container__item a:hover, -.product-zone--t-dark .container__link:hover .container__headline, -.product-zone--t-dark .container__title, -.product-zone--t-dark .container__title:hover { - color: #fff; -} - -.product-zone--t-dark .container__title-arrow, -.product-zone--t-dark .icon-sig-photo-default, -.product-zone--t-dark .icon-sig-video { - fill: #fff; -} - -.product-zone--t-dark .container__item:not(:last-child) { - border-color: #6e6e6e; -} - -.product-zone--t-dark .container__item .image__credit, -.product-zone--t-dark .container__item .image_sponsorship__credit { - color: #b1b1b1; -} - -.product-zone--t-dark .container__text .icon-sig-photo-default, -.product-zone--t-dark .container__text .icon-sig-video { - fill: #f8f8f8; -} - -.product-zone--t-dark .container__text-label { - color: #fff; -} - -.product-zone--t-dark .container__text-label--type-breaking, -.product-zone--t-dark .container__text-label--type-updates { - color: #c00; -} - -.product-zone--t-dark .container__title-url .right-arrow { - fill: #0c0c0c; -} - -.product-zone--t-dark, -.product-zone--t-day-of-deals, -.product-zone--t-sleep-week, -.product-zone--t-underscored { - position: relative; - padding: 0; -} - -.product-zone--t-dark .product-zone__outer, -.product-zone--t-day-of-deals .product-zone__outer, -.product-zone--t-sleep-week .product-zone__outer, -.product-zone--t-underscored .product-zone__outer { - z-index: 1; - position: relative; - right: 50%; - left: 50%; - width: 100vw; - margin-left: -50vw; - margin-right: -50vw; -} - -.product-zone--t-dark .product-zone__inner, -.product-zone--t-day-of-deals .product-zone__inner, -.product-zone--t-sleep-week .product-zone__inner, -.product-zone--t-underscored .product-zone__inner { - z-index: 2; -} - -.product-zone--t-dark .product-zone__inner:not(:has(.layout--full-bleed)), -.product-zone--t-day-of-deals .product-zone__inner:not(:has(.layout--full-bleed)), -.product-zone--t-sleep-week .product-zone__inner:not(:has(.layout--full-bleed)), -.product-zone--t-underscored .product-zone__inner:not(:has(.layout--full-bleed)) { - padding: 40px 0 32px; -} - -.product-zone--t-underscored { - margin-top: -32px; -} - -.product-zone--t-underscored .product-zone__outer { - background: linear-gradient(to bottom,#fff4d1,#ffe0e0 28%,#e2f8ff 65%,#fff 89%); -} - -.product-zone--t-sleep-week .product-zone__outer { - background: linear-gradient(to bottom,#120038,#e6dbff 32%,#ffe5fa 65%,#fff 89%); -} - -.product-zone--t-day-of-deals .product-zone__outer { - background: linear-gradient(to bottom,#e7e0fc,#e5fbff 32%,#f7fff2 65%,#fff 89%); -} - -.product-zone .product-zone__items.layout--full-bleed { - left: 50%; - margin-left: -50vw; - position: relative; - width: 100vw; -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-sleep-week .product-zone__outer { - background: linear-gradient(to bottom,#120038,#e6dbff 22%,#ffe5fa 26%,#fff 39%); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-day-of-deals .product-zone__outer { - background: linear-gradient(to bottom,#e7e0fc,#e5fbff 22%,#f7fff2 26%,#fff 39%); - } -} - -@supports not selector(:has(*)) { - .product-zone--t-dark .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed), - .product-zone--t-day-of-deals .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed), - .product-zone--t-sleep-week .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed), - .product-zone--t-underscored .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed) { - padding: 40px 0 32px; - } - - .product-zone__with-ribbon { - margin-bottom: 0; - } - - .product-zone__with-ribbon .container_ribbon__field-links { - margin: 0; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .product-zone { - margin-bottom: 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__title-container { - flex-wrap: wrap; - margin-bottom: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__title--underscored { - font-size: 30px; - margin-bottom: 4px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout-homepage .product-zone:first-child > .product-zone__inner { - padding-top: 24px; - } -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .product-zone__inner:not(:has(.layout--full-bleed)) { - padding-bottom: var(--theme-zone__padding-bottom-small); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-day-of-deals, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-sleep-week, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-underscored { - margin-bottom: var(--theme-zone__padding-bottom-small); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-day-of-deals .product-zone__inner, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-sleep-week .product-zone__inner, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-underscored .product-zone__inner { - padding-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-2-fixed-300 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3-fixed-300 > div:nth-child(4) { - width: 300px; - margin: 0 auto; - } -} - -@supports not selector(:has(*)) { - @media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .product-zone__inner:not(.has-pseudo-class-fix-layout--full-bleed) { - padding-bottom: var(--theme-zone__padding-bottom-small); - } - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .layout--full-bleed .container_shelf-carousel:last-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light .container_shelf-carousel:last-child { - padding-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .layout--full-bleed .container_hero-card-feature:last-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .layout--full-bleed .container_shelf-carousel:last-child { - margin-bottom: var(--theme-zone__margin-bottom-default); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .layout--full-bleed .container_shelf-carousel:last-child .container_shelf-carousel__text { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light .container_hero-card-feature:last-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light .container_shelf-carousel:last-child { - margin-bottom: var(--theme-zone__margin-bottom-default); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light .container_shelf-carousel:last-child .container_shelf-carousel__text { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container__item:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container__item:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images:not(:first-child) .image_sponsorship__credit { - display: none; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout__top .product-zone { - margin-bottom: 40px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout__top .product-zone:has( + .headline) { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone { - margin-bottom: var(--theme-zone__margin-bottom-default); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone:has(.container_ribbon) { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone:has(.container_ribbon) .container_ribbon__field-links { - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone .container_ribbon { - margin: 0 0 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .product-zone { - margin-bottom: 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--outlined { - padding: 30px 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark { - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .product-zone__inner:not(:has(.layout--full-bleed)) { - padding-bottom: var(--theme-zone__padding-bottom-default); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light + .product-zone--t-dark .product-zone__inner, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-light + .zone--t-dark .product-zone__inner { - padding-top: 64px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__title--18-24 { - font-size: 24px; - line-height: 20px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--full-width > div:first-child { - width: 100%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--full-width .container_vertical-strip { - padding: 0; - max-width: 769px; - margin: 0 auto; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--full-width .container_vertical-strip .image__container, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--full-width .container_vertical-strip img { - max-height: 433px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--6-4 > div:first-child { - width: calc(60% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--6-4 > div:nth-child(2) { - width: calc(40% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--7-3 > div:first-child { - width: calc(70% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--7-3 > div:nth-child(2) { - width: calc(30% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--4-6 > div:first-child { - width: calc(40% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--4-6 > div:nth-child(2) { - width: calc(60% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3-fixed-300 > div:nth-child(4) { - width: 300px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3-fixed-300 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3-fixed-300 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3-fixed-300 > div:nth-child(3) { - width: calc(33.33% - 100px - ((24px * 3)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--5-4-3 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--5-4-3 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--5-4-3 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-center > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-center > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-center > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-right-2 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-right-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-right-2 > div:nth-child(3) { - width: calc(33.33% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-left-balanced-2 > div:first-child { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-left-balanced-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-left-balanced-2 > div:nth-child(3) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-2-fixed-300 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-2-fixed-300 > div:nth-child(2) { - width: calc(50% - 150px - ((24px * 2)/ 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-2-fixed-300 > div:nth-child(3) { - width: 300px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-2 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-4 > div { - width: calc(50% - ((24px)/ 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-4 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-4 > div:nth-child(2) { - margin-bottom: 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items .container > .container__ads > .ad-slot.adSlotLoaded { - padding: 0 0 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_card:first-child .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_card:first-child .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_card:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_card:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_card:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_card:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:not(:last-child) .image_sponsorship__credit { - display: none; - } -} - -@supports not selector(:has(*)) { - @media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone--t-dark .product-zone__inner:not(.has-pseudo-class-fix-layout--full-bleed) { - padding-bottom: var(--theme-zone__padding-bottom-default); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone.product-zone__with-ribbon { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone.product-zone__with-ribbon .container_ribbon__field-links { - margin: 0; - } - } -} - -@media screen and (min-width:1280px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-center > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-center > div:nth-child(3) { - width: calc(30% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-center > div:nth-child(2) { - width: calc(40% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-3 > div { - width: calc(33.33% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-4 > div { - width: calc(25% - ((24px * 2)/ 4)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-4 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--balanced-4 > div:nth-child(2) { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--5-4-3 > div:first-child { - width: calc(41.66% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--5-4-3 > div:nth-child(2) { - width: calc(33.33% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--5-4-3 > div:nth-child(3) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-left-balanced-2 > div:first-child { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-left-balanced-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-left-balanced-2 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-right-2 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-right-2 > div:nth-child(2) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--wide-right-2 > div:nth-child(3) { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone__items.layout--full-bleed { - justify-content: center; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2:first-child .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2:first-child .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2:not(:last-child) .image_sponsorship__credit { - display: none; - } -} - -@media screen and (min-width:2000px) { - body:not(.layout-homepage) .product-zone .layout--full-bleed { - max-width: 2000px; - width: 100%; - object-fit: cover; - height: 100%; - margin-left: 0; - margin-right: 0; - position: inherit; - } -} - -.layout--4-6 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--4-6 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--4-6 .container_list-headlines-with-images .image__credit, -.layout--4-6 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--5-4-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--5-4-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--5-4-3 .container_list-headlines-with-images .image__credit, -.layout--5-4-3 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--6-4 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--6-4 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--6-4 .container_list-headlines-with-images .image__credit, -.layout--6-4 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--7-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--7-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--7-3 .container_list-headlines-with-images .image__credit, -.layout--7-3 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-2 .container_list-headlines-with-images .image__credit, -.layout--balanced-2 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-2-fixed-300 .container_list-headlines-with-images .image__credit, -.layout--balanced-2-fixed-300 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-3 .container_list-headlines-with-images .image__credit, -.layout--balanced-3 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-3-fixed-300 .container_list-headlines-with-images .image__credit, -.layout--balanced-3-fixed-300 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--full-width .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--full-width .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-center .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--wide-center .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-center .container_list-headlines-with-images .image__credit, -.layout--wide-center .container_list-headlines-with-images .image_sponsorship__credit, -.layout--wide-left-balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--wide-left-balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-left-balanced-2 .container_list-headlines-with-images .image__credit, -.layout--wide-left-balanced-2 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--wide-right-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--wide-right-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-right-2 .container_list-headlines-with-images .image__credit, -.layout--wide-right-2 .container_list-headlines-with-images .image_sponsorship__credit { - display: none; -} - -@media screen and (max-width:640px) { - body:not([class^=homepage-mobile]) .layout--4-6 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--4-6 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-3 .image__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-3 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-4 .image__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-4 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--6-4 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--6-4 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--7-3 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--7-3 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2-fixed-300 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3-fixed-300 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--full-width .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--full-width .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--wide-center .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--wide-center .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--wide-left-balanced-2 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--wide-left-balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--wide-right-2 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--wide-right-2 .container_grid-2 .image_sponsorship__credit { - display: none; - } -} - -@media screen and (min-width:960px) and (max-width:1279px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_app-collections:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_app-collections:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-3:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-3:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_vertical-strip:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_vertical-strip:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:last-child .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:last-child .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2 .image_sponsorship__credit { - display: none; - } -} - -@media screen and (max-width:1279px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--full-width .container_list-headlines-with-images .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--full-width .container_list-headlines-with-images .image_sponsorship__credit { - display: none; - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; - margin-bottom: 24px; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - line-height: 36px; - margin-bottom: 0; - margin-top: 8px; - margin-right: 12px; - text-transform: none; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__kicker-url, -.container__link { - text-decoration: none; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - display: inline-block; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - display: inline-block; - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_ribbon { - margin-bottom: var(--theme-container-margin-bottom-default); - position: relative; -} - -.container_ribbon__field-links { - display: flex; - justify-content: center; - flex-wrap: wrap; - -ms-overflow-style: none; - overflow-y: visible; - scrollbar-width: none; - white-space: nowrap; -} - -.container_ribbon__field-links::-webkit-scrollbar { - display: none; -} - -.container_ribbon__text { - display: inline-table; -} - -.container_ribbon__headline { - align-items: center; - display: inline-block; -} - -.container_ribbon__headline.container__headline { - font-size: 16px; - line-height: 22px; - letter-spacing: 0; -} - -.container_ribbon__text-label--no-image:after { - content: ':'; - margin-left: -4px; - padding-right: 4px; -} - -.container_ribbon__item { - border-top: 0; -} - -.container_ribbon__item:first-child { - padding: 0; -} - -.container_ribbon__item:not(:last-child) .container_ribbon__text:after { - color: #b1b1b1; - content: '|'; - display: inline-block; - padding: 0 8px; -} - -.container_ribbon__link:hover .container_ribbon__headline { - color: var(--theme-color-link); -} - -.container_ribbon__link:hover .container_ribbon__text { - text-decoration: none; -} - -.container_ribbon .container_ribbon__field-links { - margin: 16px 0; -} - -.container_ribbon.component-selector-wrapper .container_ribbon__field-wrapper { - height: auto; -} - -.container_ribbon.component-selector-wrapper .container_ribbon__field-links { - height: auto; - position: relative; - width: 100%; -} - -.container_ribbon.component-selector-wrapper .container_ribbon__item:nth-child(1) .mini-selector.selector-left { - right: calc(100% - 51px); -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_grid-2 { - margin-bottom: 0; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_ribbon .container_ribbon__field-links { - margin: 0; - } -} - -@keyframes ad-loading { - 0%, - 100% { - background-color: #f8f8f8; - } - - 50% { - background-color: #e6e6e6; - } -} - -[id^=browsi_ad] .ad-slot__feedback { - display: none; -} - -.ad-slot { - text-align: center; - width: 100%; -} - -.ad-slot.adSlotLoaded { - display: block; - padding: 0 0 24px; -} - -.ad-slot.adSlotLoaded .ad-slot__ad-label::after { - content: 'Advertisement'; -} - -.ad-slot.adSlotLoaded .ad-feedback-link-container, -.ad-slot.adSlotLoaded .ad-slot__feedback { - visibility: visible; - display: flex; -} - -.ad-slot .ad-feedback-link-container, -.ad-slot .ad-slot__feedback { - visibility: hidden; - display: flex; - justify-content: space-between; - padding: 0 4px; - max-width: 350px; - margin-right: auto; -} - -.zone__ads .ad-slot:empty, -.zone__ads_side .ad-slot:empty { - display: none; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text, -.ad-slot .ad-slot__feedback .ad-feedback-link, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text { - margin-top: 4px; -} - -.layout-explorer-hub .ad-slot { - margin: 0 0 24px; -} - -.layout-explorer-hub__full-width .ad-slot { - margin-bottom: 48px; - padding: 0; -} - -.layout-explorer-hub__rail .ad-slot { - padding: 0; -} - -.ad-slot-top .ad-slot.adSlotLoaded { - padding: 16px 0 40px; - border-top: 1px solid #e6e6e6; -} - -.ad-slot-top .ad-slot .ad::after { - content: unset; -} - -.ad-slot[data-desktop-slot-id=ad_ns_atf_02] { - margin-top: 16px; - padding: 0 0 24px; -} - -.zone__ads .ad-slot.adSlotLoaded { - margin-top: 48px; -} - -.zone__ads_side .ad-slot { - margin-top: 0; -} - -.ad-slot .ad-feedback-link-container, -.ad-slot .ad-slot__feedback { - width: fit-content; - width: -moz-max-content; - margin-top: 8px; - font-size: 12px; - margin-left: auto; - color: #6e6e6e; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text, -.ad-slot .ad-slot__feedback .ad-feedback-link, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text { - cursor: pointer; - display: flex; - color: #6e6e6e; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link .icon-ui-speech-bubble, -.ad-slot .ad-feedback-link-container .ad-feedback-link__label:before, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text .icon-ui-speech-bubble, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text__label:before, -.ad-slot .ad-slot__feedback .ad-feedback-link .icon-ui-speech-bubble, -.ad-slot .ad-slot__feedback .ad-feedback-link__label:before, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text .icon-ui-speech-bubble, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text__label:before { - width: 12px; - height: 12px; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link .icon-ui-speech-bubble, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text .icon-ui-speech-bubble, -.ad-slot .ad-slot__feedback .ad-feedback-link .icon-ui-speech-bubble, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text .icon-ui-speech-bubble { - fill: #6e6e6e; - margin-top: 1px; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link__label:before, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text__label:before, -.ad-slot .ad-slot__feedback .ad-feedback-link__label:before, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text__label:before { - display: inline-block; - content: ''; - -webkit-mask: url(/media/sites/cnn/icons/ui-speech-bubble.svg); - mask: url(/media/sites/cnn/icons/ui-speech-bubble.svg); - background-color: #6e6e6e; - position: relative; - top: 2px; - right: 4px; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link:hover, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text:hover, -.ad-slot .ad-slot__feedback .ad-feedback-link:hover, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text:hover { - color: #0c0c0c; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link:hover .icon-ui-speech-bubble, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text:hover .icon-ui-speech-bubble, -.ad-slot .ad-slot__feedback .ad-feedback-link:hover .icon-ui-speech-bubble, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text:hover .icon-ui-speech-bubble { - fill: #0c0c0c; -} - -.ad-slot .ad-feedback-link-container .ad-feedback-link:hover .ad-feedback-link__label:before, -.ad-slot .ad-feedback-link-container .ad-slot__feedback-text:hover .ad-feedback-link__label:before, -.ad-slot .ad-slot__feedback .ad-feedback-link:hover .ad-feedback-link__label:before, -.ad-slot .ad-slot__feedback .ad-slot__feedback-text:hover .ad-feedback-link__label:before { - background-color: #0c0c0c; -} - -.ad-slot .ad-slot__ad-label { - display: block; - cursor: default; - margin-top: 4px; -} - -.ad-slot .ad-slot__ad-label:only-child { - width: 100%; -} - -@media (min-width:960px) { - .ad-slot .ad-feedback-link-container, - .ad-slot .ad-slot__feedback { - margin-top: 0; - } -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_03] { - display: block; - padding: 0 16px 24px; - min-height: 270px; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_03] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_03] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_03]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 300px; - height: 270px; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_01] { - display: block; - padding: 0 16px 24px; - margin-top: 48px; - min-height: 110px; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_01] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_01]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 728px; - height: 110px; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_nfs_btf_02] { - display: block; - padding: 0 16px 24px; - min-height: 120px; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_nfs_btf_02] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_nfs_btf_02] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_nfs_btf_02]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 300px; - height: 120px; -} - -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01], -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_04], -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01], -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02], -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_03] { - display: block; - padding: 0 16px 24px; - min-height: 270px; -} - -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_04] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_04] .ad-slot__feedback, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02] .ad-slot__feedback, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_03] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_03] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01]::after, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_04]::after, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01]::after, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02]::after, -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_03]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 300px; - height: 270px; -} - -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] { - display: block; - padding: 0 16px 24px; - min-height: 270px; -} - -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 300px; - height: 270px; -} - -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_02], -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_04] { - display: block; - padding: 0 16px 24px; - margin-top: 48px; - min-height: 110px; -} - -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_02] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_02] .ad-slot__feedback, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_04] .ad-feedback-link-container, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_04] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_02]::after, -html[data-layout-uri*='homepage/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_bnr_btf_04]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 728px; - height: 110px; -} - -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01], -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01], -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02] { - display: block; - padding: 0 16px 24px; - min-height: 270px; -} - -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01] .ad-slot__feedback, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02] .ad-feedback-link-container, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02] .ad-slot__feedback { - display: none; -} - -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_01]::after, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_atf_01]::after, -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .ad-slot:not(.adSlotLoaded)[data-mobile-slot-id=ad_rect_btf_02]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 300px; - height: 270px; -} - -@media screen and (min-width:960px) { - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02], - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01], - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01], - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] { - display: block; - padding: 0 16px 24px; - min-height: 270px; - } - - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01] .ad-slot__feedback, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-feedback-link-container, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02] .ad-slot__feedback { - display: none; - } - - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_atf_01]::after, - html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded)[data-desktop-slot-id=ad_rect_btf_02]::after { - display: block; - animation: ad-loading 2s ease infinite; - content: ''; - margin: auto; - width: 300px; - height: 270px; - } - - .ad-slot-top body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot.adSlotLoaded { - padding: 0 0 12px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot #ad_ns_atf_01 + .ad-slot__feedback { - display: none; - } -} - -@media screen and (min-width:1280px) { - .layout-explorer-hub__full-width body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot { - margin-bottom: 56px; - } - - .ad-slot-top body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot.adSlotLoaded { - padding: 0 0 24px; - } -} - -.card .container__text { - display: inline-block; -} - -.card .container__text-edit { - display: table; -} - -.card__label { - font-size: 10px; - font-weight: 700; - position: absolute; - bottom: 0; - left: 0; - margin: 0 0 8px; - text-transform: uppercase; - white-space: nowrap; - padding: 4px 8px; - display: flex; - align-items: center; -} - -.card__label-indicator { - display: none; -} - -.card__label--type-breaking { - background: #c00; - color: #fff; -} - -.card__label--type-exclusive, -.card__label--type-investigates { - background: #0c0c0c; - color: #fff; -} - -.card__label--type-live-video, -.card__label--type-updates { - display: block; - background: #fff; - color: #0c0c0c; -} - -.card__label--type-live-video .card__label-indicator, -.card__label--type-updates .card__label-indicator { - display: block; - color: #c00; - font-size: 26px; - line-height: .4; - padding-right: 4px; -} - -.card__label--type-analysis, -.card__label--type-opinion, -.card__label--type-trending { - background: #fff; - color: #c00; -} - -.card__label--type-custom { - background: #fff; - color: #0c0c0c; -} - -.card__label--type-custom-video, -.card__label--type-gallery, -.card__label--type-podcasts, -.card__label--type-video { - background: rgba(12,12,12,.5); - color: #fff; -} - -.card__label--type-custom-video .card__label-icon, -.card__label--type-gallery .card__label-icon, -.card__label--type-video .card__label-icon { - float: left; - fill: #f8f8f8; - margin-right: 4px; - width: 12px; - height: 12px; - background-repeat: no-repeat; -} - -.card__label--type-custom-video .card__label-icon, -.card__label--type-video .card__label-icon { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f8f8f8' d='M12 3.333c-4.779 0-8.667 3.888-8.667 8.667S7.221 20.667 12 20.667s8.667-3.888 8.667-8.667S16.779 3.333 12 3.333M12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10m-1.064-6.793l4.61-2.74a.715.715 0 00-.003-1.23l-4.61-2.712a.714.714 0 00-1.076.616v5.452c0 .554.603.897 1.08.614'/%3E%3C/svg%3E"); -} - -.card__label--type-gallery .card__label-icon { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f8f8f8' d='M12.017 15.672a2.67 2.67 0 01-2.667-2.668 2.67 2.67 0 012.667-2.668 2.67 2.67 0 012.666 2.668 2.67 2.67 0 01-2.666 2.668m0-6.67c-2.206 0-4 1.795-4 4.002a4.006 4.006 0 004 4.002c2.205 0 4-1.795 4-4.002a4.005 4.005 0 00-4-4.002m8.681 8.867c0 .26-.211.471-.472.471H3.774a.472.472 0 01-.472-.471V9.106c0-.26.211-.47.472-.47h4.348l1.211-1.97h5.334l1.24 1.97h4.32c.26 0 .471.21.471.47v8.763zm0-10.534h-3.96l-.915-1.663c-.195-.381-.49-.672-1.156-.672H9.383c-.477 0-.956.23-1.193.672l-.927 1.663H3.327C2.577 7.32 2 7.937 2 8.654v9.686c.001.78.667 1.326 1.303 1.326h17.364c.68.025 1.332-.564 1.333-1.326V8.847c0-.826-.583-1.512-1.303-1.512z'/%3E%3C/svg%3E%0A"); -} - -.card__label-bull-span { - align-items: center; - display: flex; -} - -.card > .container__link { - display: block; -} - -.card [data-component-name=interactive-video] ~ .card__label { - margin-bottom: 6px; -} - -.card [data-component-name=video-resource] { - margin-bottom: 8px; -} - -.card [data-component-name=video-resource] .video-resource__details { - display: none; -} - -.card .card__headline-with-timestamp { - width: calc(100% - 40px); - float: left; -} - -.card:not(:first-child) .container_lead-package__text.card__headline-with-timestamp { - padding: 0 0 12px; -} - -.card .card__timestamp { - display: flex; - width: 40px; - justify-content: flex-end; - align-items: baseline; - color: #6e6e6e; -} - -.card .card__timestamp-recent { - color: #c00; -} - -.card:first-child .card__timestamp { - line-height: 26px; -} - -[data-page-type=section] .card--media-large ~ .container__text .container__headline:not(.container_hero-card-feature__headline) { - font-size: var(--theme-container-lead-title__font-size); - line-height: var(--theme-container-lead-title__line-height); - font-weight: var(--theme-container-lead-title__font-weight); -} - -[data-page-type=section] .card--media-large .card__label { - font-size: 12px; - line-height: 18px; - padding: 8px 16px; -} - -.card__label--type-custom-video [data-page-type=section] .card--media-large .card__label-icon, -.card__label--type-gallery [data-page-type=section] .card--media-large .card__label-icon, -.card__label--type-video [data-page-type=section] .card--media-large .card__label-icon { - width: 16px; - height: 16px; -} - -[data-page-type=section] .card--media-large :not([data-component-name=interactive-video]) ~ .card__label { - margin-bottom: 24px; -} - -[data-page-type=section] .card--media-large .image__metadata { - margin-bottom: 0; - min-height: 24px; -} - -[data-page-type=section] .card--media-large .image__metadata .image__credit { - display: block; - visibility: visible; - padding: 4px 0 8px; -} - -[data-page-type=section] .container__item-media-wrapper:not(.card--media-large):not(.container_shelf-carousel__item-media-wrapper):not(.container_hero-card-feature__item-media-wrapper) .card__label { - font-size: 10px; - padding: 4px 8px; - line-height: 16px; -} - -[data-page-type=section] .container__item-media-wrapper:not(.card--media-large):not(.container_shelf-carousel__item-media-wrapper):not(.container_hero-card-feature__item-media-wrapper) .image__container { - margin-bottom: 8px; -} - -[data-page-type=section] .container__item-media-wrapper:not(.card--media-large):not(.container_shelf-carousel__item-media-wrapper):not(.container_hero-card-feature__item-media-wrapper) .image__credit, -[data-page-type=section] .container__item-media-wrapper:not(.card--media-large):not(.container_shelf-carousel__item-media-wrapper):not(.container_hero-card-feature__item-media-wrapper) .image__metadata { - display: none; -} - -[data-page-type=section] .layout__top .product-zone .container__item-media-wrapper.card--media-large.container_hero-card-feature__item-media-wrapper .card__label, -[data-page-type=section] .layout__top .product-zone .container__item-media-wrapper:not(.card--media-large).container_hero-card-feature__item-media-wrapper .card__label { - margin-bottom: 0; -} - -.interactive-video { - margin-bottom: 20px; - margin-top: 20px; -} - -.interactive-video__player { - width: 100%; - overflow: visible; -} - -.interactive-video .interactive-video__container video { - position: relative; -} - -.interactive-video .interactive-video__container:is(div):after { - position: absolute; -} - -.image { - border-bottom: 1px solid #e6e6e6; - margin: 32px 0; - padding-bottom: 8px; - width: 100%; -} - -.image__hide-placeholder .kiln-placeholder { - display: none; -} - -.image__picture { - width: 100%; -} - -.image__metadata { - display: grid; -} - -.image__caption { - color: #0c0c0c; - font-size: 12px; - font-weight: 400; - line-height: 18px; - margin-top: 8px; - text-align: left; - order: 2; -} - -.image__credit { - color: #6e6e6e; - font-size: 10px; - font-weight: 400; - margin-top: 4px; - text-align: right; - order: 1; - visibility: hidden; -} - -.image__container { - display: flex; -} - -.image__dam-img { - width: 100%; - object-fit: cover; - height: 100%; -} - -.image__dam-img--loading { - background-color: #e6e6e6; -} - -.image__img { - width: 100%; - height: 100%; - max-width: 100%; -} - -.image__img--fade-in { - opacity: 0; - visibility: hidden; - transition: opacity .4s ease-in; -} - -.image__img--visible { - display: block; -} - -.image__img--hidden { - display: none; -} - -.image__label { - font-size: 10px; - font-weight: 700; - position: absolute; - bottom: 0; - left: 0; - margin: 0; - text-transform: uppercase; - white-space: nowrap; - padding: 4px 8px; - display: flex; - align-items: center; -} - -.image__label-indicator { - display: none; -} - -.image__label--type-breaking { - background: #c00; - color: #fff; -} - -.image__label--type-exclusive, -.image__label--type-investigates { - background: #0c0c0c; - color: #fff; -} - -.image__label--type-live-video, -.image__label--type-updates { - display: block; - background: #fff; - color: #0c0c0c; -} - -.image__label--type-live-video .image__label-indicator, -.image__label--type-updates .image__label-indicator { - display: block; - color: #c00; - font-size: 26px; - line-height: .4; - padding-right: 4px; -} - -.image__label--type-analysis, -.image__label--type-opinion, -.image__label--type-trending { - background: #fff; - color: #c00; -} - -.image__label--type-custom { - background: #fff; - color: #0c0c0c; -} - -.image__label--type-custom-video, -.image__label--type-gallery, -.image__label--type-podcasts, -.image__label--type-video { - background: rgba(12,12,12,.5); - color: #fff; -} - -.kiln-edit-mode .image__label { - visibility: visible; -} - -.image__label-icon { - float: left; - fill: #f8f8f8; - margin-right: 4px; - width: 12px; - height: 12px; - background-repeat: no-repeat; -} - -.image__label--type-custom-video .image__label-icon, -.image__label--type-video .image__label-icon { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f8f8f8' d='M12 3.333c-4.779 0-8.667 3.888-8.667 8.667S7.221 20.667 12 20.667s8.667-3.888 8.667-8.667S16.779 3.333 12 3.333M12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10m-1.064-6.793l4.61-2.74a.715.715 0 00-.003-1.23l-4.61-2.712a.714.714 0 00-1.076.616v5.452c0 .554.603.897 1.08.614'/%3E%3C/svg%3E"); -} - -.image__label--type-gallery .image__label-icon { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f8f8f8' d='M12.017 15.672a2.67 2.67 0 01-2.667-2.668 2.67 2.67 0 012.667-2.668 2.67 2.67 0 012.666 2.668 2.67 2.67 0 01-2.666 2.668m0-6.67c-2.206 0-4 1.795-4 4.002a4.006 4.006 0 004 4.002c2.205 0 4-1.795 4-4.002a4.005 4.005 0 00-4-4.002m8.681 8.867c0 .26-.211.471-.472.471H3.774a.472.472 0 01-.472-.471V9.106c0-.26.211-.47.472-.47h4.348l1.211-1.97h5.334l1.24 1.97h4.32c.26 0 .471.21.471.47v8.763zm0-10.534h-3.96l-.915-1.663c-.195-.381-.49-.672-1.156-.672H9.383c-.477 0-.956.23-1.193.672l-.927 1.663H3.327C2.577 7.32 2 7.937 2 8.654v9.686c.001.78.667 1.326 1.303 1.326h17.364c.68.025 1.332-.564 1.333-1.326V8.847c0-.826-.583-1.512-1.303-1.512z'/%3E%3C/svg%3E%0A"); -} - -.image__label-bull-span { - align-items: center; - display: flex; -} - -.image__lede > .image { - margin: 0 0 32px; - width: 100%; -} - -.image__lede > .image__container { - width: 100%; - height: 0; - padding-bottom: calc(100% * (9 / 16)); - position: relative; -} - -.image__lede > .image__dam-img { - width: 100%; - height: auto; - position: absolute; -} - -.image__related-content .image { - border: 0; - margin: 0; - padding: 0; -} - -.image__related-content .image__outer-container { - margin: 0; - padding: 0; -} - -.image__related-content .image__outer-container::after { - display: none; -} - -.image__related-content .image__container { - display: block; -} - -.image__related-content .image__caption, -.image__related-content .image__credit { - display: none; -} - -.image__related-content .image__img { - width: 100%; -} - -.image--eq-extra-small .image__container { - margin-bottom: 24px; -} - -.image--eq-extra-small .image__credit { - visibility: hidden; - margin: 0; - padding: 0; -} - -.image.image--eq-small .image__container { - margin-bottom: auto; -} - -.image.image--eq-small .image__container:only-child { - margin-bottom: 24px; -} - -.image.image--eq-small .image__credit { - line-height: 12px; - padding: 4px 0; - visibility: visible; -} - -.image.image--eq-small .image__label { - font-size: 12px; - padding: 8px 16px; -} - -.image.image--eq-small .image__label-icon { - width: 16px; - height: 16px; -} - -.underscored .article__content > .image, -.underscored .article__main > .image__lede .image { - border-bottom: 0; - padding-bottom: 0; -} - -.underscored .article__content > .image .image__credit, -.underscored .article__main > .image__lede .image .image__credit { - padding-bottom: 0; -} - -.card:not(:only-child) .underscored:empty { - min-height: 24px; - margin: 4px 0 0; - padding: 0; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .image__caption { - margin-top: 4px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .image__lede > .image { - margin: 0 0 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .underscored .card:not(:only-child) .image__credit:empty { - min-height: 24px; - margin-top: 4px; - padding: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .image__related-content.related-content__image .image { - border: 0; - margin: 0; - padding: 0; - } -} - -.video-resource__description a, -.video-resource__details--leaf .video-resource__showlink-url, -.video-resource__details--leaf .video-resource__source-url { - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.video-resource__description a:hover, -.video-resource__details--leaf .video-resource__showlink-url:hover, -.video-resource__details--leaf .video-resource__source-url:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); -} - -.fave-player-container__tv-co-branding-container { - background-color: rgba(0,0,0,.5); - border-radius: 4px; - padding: 4px; - position: absolute; - right: 12px; - top: 12px; - z-index: 3; -} - -.fave-player-container__tv-co-branding-text { - color: #fff; - font-size: 12px; - text-align: center; -} - -.freeview-overlay { - position: absolute; - top: 16px; - right: 16px; - background: rgba(12,12,12,.9); - color: #fff; - z-index: 5; - display: flex; - align-items: center; - padding: 12px; - border-radius: 4px; -} - -.freeview-overlay__cta { - background: #f13a3a; - font-size: 14px; - line-height: 36px; - padding: 0 16px; - text-align: center; - border-radius: 4px; - font-weight: 700; - margin-left: 24px; - cursor: pointer; -} - -.freeview-overlay__t1-copy, -.freeview-overlay__t2-copy { - margin: 0; - line-height: 18px; -} - -.freeview-overlay__t1-copy { - font-weight: 700; - font-size: 12px; -} - -.freeview-overlay__t2-copy { - font-size: 12px; -} - -@keyframes stickyVideo { - from { - width: 50%; - height: 50%; - } - - to { - width: 360px; - height: 202px; - } -} - -@keyframes stickyFeedbackLink { - from { - width: 50%; - } - - to { - width: 360px; - } -} - -.video-resource { - clear: both; - margin: 0 0 16px; -} - -.video-resource video { - object-fit: fill; - max-width: 100%; - max-height: 100%; -} - -.video-resource .theoplayer-poster { - background-size: 100%; -} - -.video-resource .theoplayer-container { - transition: right .5s,width .5s ease,height .5s ease; - -o-transition: right .5s,width .5s ease,height .5s ease; - -webkit-transition: right .5s,width .5s ease,height .5s ease; -} - -.video-resource .auth-player-container__back-player-icon-container { - display: none; -} - -.video-resource .fave-player-container { - transition: right .5s,width .5s ease,height .5s ease; - -o-transition: right .5s,width .5s ease,height .5s ease; - -webkit-transition: right .5s,width .5s ease,height .5s ease; -} - -.video-resource .tve-video-title, -.video-resource__tve-streaming-thumbnail { - display: none; -} - -.video-resource .pui_metadata_title { - font-size: 14px; - font-weight: 700; - margin-bottom: 8px; -} - -.video-resource .pui_metadata_source::before { - content: 'source:'; - text-transform: capitalize; - margin-right: 4px; -} - -.video-resource .image { - border: 0; - margin: 0; - padding: 0; -} - -.video-resource .image__container { - background-color: unset; -} - -.video-resource__stuck-headline { - display: none; -} - -.video-resource__stuck ~ .video-resource__stuck-headline { - display: block; - color: #0c0c0c; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - position: fixed; - top: 262px; - width: 360px; - padding: 4px 0; - max-height: 40px; - background-color: #fff; - z-index: 1; -} - -.video-resource__stuck ~ .video-resource__stuck-headline::before { - content: 'now playing'; - text-transform: capitalize; - color: var(--theme-color-link); - font-weight: 700; - margin-right: 4px; -} - -.video-resource .video-resource__stuck { - animation: stickyVideo .3s ease-out; - transition: none; - -o-transition: none; - -webkit-transition: none; - position: fixed; - top: 60px; - width: 360px; - height: 202px; - padding-bottom: 0; - z-index: 2; -} - -.video-resource .video-resource__stuck .pui_metadata_title { - font-weight: 400; - margin-bottom: 4px; -} - -.video-resource .ad-feedback-link, -.video-resource .ad-slot__feedback-text { - padding: 4px 0 2px; -} - -.video-resource .video-resource__stuck-container { - background-size: contain; -} - -.video-resource .video-resource__stuck-container + .ad-feedback-link-container, -.video-resource .video-resource__stuck-container + .ad-slot__feedback { - right: 29px; - top: 40px; - z-index: 2; - width: 360px; - height: 20px; - position: fixed; - margin-left: auto; - animation: stickyFeedbackLink .3s ease-out; - transition: none; - -o-transition: none; - -webkit-transition: none; - background-color: #fff; -} - -.video-resource .video-resource__stuck-container + .ad-feedback-link-container .ad-feedback-link, -.video-resource .video-resource__stuck-container + .ad-feedback-link-container .ad-slot__feedback-text, -.video-resource .video-resource__stuck-container + .ad-slot__feedback .ad-feedback-link, -.video-resource .video-resource__stuck-container + .ad-slot__feedback .ad-slot__feedback-text { - float: right; -} - -.video-resource__headline { - color: #0c0c0c; - font-size: 12px; - font-weight: 400; - line-height: 18px; - margin-top: 8px; - text-align: left; -} - -.video-resource__credit { - color: #6e6e6e; - font-size: 10px; - font-weight: 400; - margin-top: 4px; - text-align: right; -} - -.video-resource__wrapper { - height: 0; - padding-bottom: 56.25%; - position: relative; - background-image: url(/media/sites/cnn/video-placeholder.svg); -} - -.video-resource__details { - border-bottom: 1px solid #e6e6e6; - padding-bottom: 18px; -} - -.video-resource__details--leaf .video-resource__headline { - font-size: var(--theme-headline__font-size); - font-weight: var(--theme-headline__font-weight); - line-height: var(--theme-headline__line-height); - margin-bottom: var(--theme-headline__margin-bottom); -} - -.video-resource__details--leaf .video-resource__credit { - font-size: 12px; - text-align: left; -} - -.video-resource__details--leaf .video-resource__showlink { - margin-bottom: 16px; -} - -.video-resource__details--leaf .video-resource__source-url { - color: var(--theme-paragraph__link-color); - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - -webkit-text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-color: var(--theme-paragraph__link-decoration-color); -} - -.video-resource__details--leaf .video-resource__source-url:hover { - color: var(--theme-link-color-hover); -} - -.video-resource__details--leaf .video-resource__showlink-url { - font-size: 14px; - line-height: 22px; - color: var(--theme-paragraph__link-color); - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - -webkit-text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-color: var(--theme-paragraph__link-decoration-color); -} - -.video-resource__details--leaf .video-resource__showlink-url:hover { - color: var(--theme-link-color-hover); -} - -.video-resource__details--leaf .byline { - display: flex; - align-items: center; - margin-bottom: 24px; -} - -.video-resource__details--leaf .byline .byline__images { - max-height: 40px; -} - -.video-resource__image { - overflow: visible; -} - -.video-resource__image img { - min-height: 83px; -} - -.video-resource__image-deleted { - height: 89.25px; - background-color: #0c0c0c; - width: 148px; - background-image: url(/media/sites/cnn/video-placeholder.svg); -} - -.video-resource__description { - max-height: 100vh; - transition: max-height .5s ease-out; - letter-spacing: .4px; - word-wrap: break-word; - margin-bottom: 8px; -} - -.video-resource__description, -.video-resource__description a { - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 400; - font-size: var(--theme-paragraph__font-size); - line-height: var(--theme-paragraph__line-height); -} - -.video-resource__description a { - color: var(--theme-paragraph__link-color); - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - -webkit-text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-color: var(--theme-paragraph__link-decoration-color); -} - -.video-resource__description a:hover { - color: var(--theme-link-color-hover); -} - -.video-resource__description > p:first-child { - margin-top: 0; -} - -.video-resource__description--hidden { - max-height: 0; - overflow: hidden; - transition: max-height .5s ease-out; -} - -div[data-component-name=video-resource] .ad-feedback-link-container, -div[data-component-name=video-resource] .ad-slot__feedback { - width: fit-content; - width: -moz-max-content; - margin-top: 8px; - font-size: 12px; - margin-left: auto; - color: #6e6e6e; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text { - cursor: pointer; - display: flex; - color: #6e6e6e; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text__label:before, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text__label:before { - width: 12px; - height: 12px; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text .icon-ui-speech-bubble { - fill: #6e6e6e; - margin-top: 1px; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text__label:before, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text__label:before { - display: inline-block; - content: ''; - -webkit-mask: url(/media/sites/cnn/icons/ui-speech-bubble.svg); - mask: url(/media/sites/cnn/icons/ui-speech-bubble.svg); - background-color: #6e6e6e; - position: relative; - top: 2px; - right: 4px; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link:hover, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text:hover, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link:hover, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text:hover { - color: #0c0c0c; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link:hover .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text:hover .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link:hover .icon-ui-speech-bubble, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text:hover .icon-ui-speech-bubble { - fill: #0c0c0c; -} - -div[data-component-name=video-resource] .ad-feedback-link-container .ad-feedback-link:hover .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-feedback-link-container .ad-slot__feedback-text:hover .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-slot__feedback .ad-feedback-link:hover .ad-feedback-link__label:before, -div[data-component-name=video-resource] .ad-slot__feedback .ad-slot__feedback-text:hover .ad-feedback-link__label:before { - background-color: #0c0c0c; -} - -div[data-component-name=video-resource] .ad-slot__ad-label { - display: block; - cursor: default; - margin-top: 4px; -} - -div[data-component-name=video-resource] .ad-slot__ad-label:only-child { - width: 100%; -} - -@media (min-width:960px) { - div[data-component-name=video-resource] .ad-feedback-link-container, - div[data-component-name=video-resource] .ad-slot__feedback { - margin-top: 0; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .video-resource { - width: 95.5%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .video-resource .pui_metadata_title { - font-size: 16px; - line-height: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .video-resource__headline { - margin-top: 4px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .video-resource__stuck .pui-wrapper .pui_metadata_title { - font-size: 12px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .article__lede-wrapper .video-resource { - margin: 0 0 24px; - } -} - -@media screen and (min-width:1280px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .video-resource { - max-width: 856px; - } -} - -@media screen and (min-width:1360px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .video-resource { - width: 100%; - max-width: unset; - } -} - -.tags__list, -.tags__title { - font-size: 12px; - letter-spacing: 3px; - text-transform: uppercase; -} - -.tags__list, -.tags__list-item { - display: inline; -} - -.tags__list { - padding: 0; -} - -.tags__list-item:not(:last-child) .tags__link::after { - content: ','; -} - -.tags__list-item--hidden, -.tags__list-item--invisible { - display: none; -} - -.tags__link { - color: #0c0c0c; - text-decoration: none; -} - -.tags__link:active, -.tags__link:focus, -.tags__link:hover { - box-shadow: 0 1px 0 var(--theme-primary); -} - -.tags__more-link { - color: var(--theme-color-link); - cursor: pointer; -} - -.byline { - margin: 8px 0 0; -} - -.byline__images { - display: none; - float: left; - padding-right: 4px; -} - -.byline__image { - display: inline-block; - width: 40px; - height: 40px; - border-radius: 100%; - margin-right: 4px; -} - -.byline__link, -.byline__names { - color: #6e6e6e; - font-size: 14px; - line-height: 20px; - font-weight: 400; -} - -.byline__link { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); - -webkit-text-decoration-color: #6e6e6e; - text-decoration-color: #6e6e6e; - color: #6e6e6e; -} - -.byline__link:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #0c0c0c; -} - -.byline__image-link { - text-decoration: none; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .byline { - margin: 12px 0 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .byline__images { - display: block; - } -} - -.social-share { - display: var(--social-sharing-display); - margin-top: var(--social-sharing-margin-top); -} - -.social-share__close, -.social-share__open { - display: none; -} - -.social-share button { - background: 0 0; - border: none; - padding: 0; -} - -.social-share button:hover { - cursor: pointer; -} - -.social-share__share-links { - display: inline-flex; - gap: 12px; - align-items: flex-start; - position: relative; -} - -.social-share__share { - text-decoration: none; -} - -.social-share__share .icon-social-twitter { - fill: var(--social-sharing-twitter-fill); -} - -.social-share__share .icon-social-facebook { - fill: var(--social-sharing-facebook-fill); -} - -.social-share__share .icon-social-email-fill { - fill: var(--social-sharing-email-fill); -} - -.social-share__share .icon-ui-link { - fill: var(--social-sharing-link-fill); -} - -.social-share__share:hover { - fill: #6e6e6e; - transition: fill .2s; -} - -.social-share__close, -.social-share__open { - fill: var(--social-sharing-open-close-fill); -} - -.social-share__close:hover, -.social-share__open:hover { - fill: #0c0c0c; -} - -.social-share__copied { - visibility: hidden; - display: inline-flex; - background-color: #333; - color: #fff; - fill: #fff; - border-radius: 50px; - padding: 0 4px; - position: absolute; - z-index: 1; - font-size: 10px; - align-items: center; - justify-content: space-evenly; - bottom: 32px; - left: 72px; - right: -32px; -} - -.social-share__copied svg { - width: 12%; -} - -.social-share__copied.show { - visibility: visible; - animation: fadein .5s; -} - -@keyframes fadein { - from { - bottom: 0; - opacity: 0; - } - - to { - bottom: 32px; - opacity: 1; - } -} - -.zone__title-underscored-url, -.zone__title-url { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.zone { - display: flex; - justify-content: center; - margin-bottom: var(--theme-zone__margin-bottom-default); -} - -.zone__inner { - max-width: 1440px; - min-width: 300px; - padding: 0; - width: 100%; -} - -.zone__kicker { - text-align: center; -} - -.zone__kicker-url { - text-decoration: none; -} - -.zone__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.zone__title, -.zone__title-url { - font-size: var(--theme-zone-title__font-size); - font-weight: var(--theme-zone-title__font-weight); -} - -.zone__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.zone__kicker:not(:empty) + .zone__title--full-width, -.zone__title { - margin-top: 0; -} - -.zone__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.zone__title-url { - line-height: 30px; - letter-spacing: 0; - color: var(--theme-paragraph__link-color); - -webkit-text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration: var(--theme-zone-title__link-decoration); - text-decoration: var(--theme-zone-title__link-decoration); -} - -.zone__title-url:hover { - color: var(--theme-link-color-hover); - -webkit-text-decoration: var(--theme-zone-title__hover-link-decoration); - text-decoration: var(--theme-zone-title__hover-link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); -} - -.zone__title-container { - display: flex; - align-items: baseline; -} - -.zone__title { - color: #0c0c0c; - line-height: var(--theme-zone-title__line-height); - font-family: var(--theme-zone-title__font-family); - margin-bottom: 24px; -} - -.zone__title:after { - border-top: 4px solid #e6e6e6; - border-bottom: 4px solid #e6e6e6; - height: calc(8px + 1px); - margin-left: 16px; - flex: 1; - content: ''; -} - -.zone__title--full-width, -.zone__title--full-width .zone__title-url { - text-align: center; - font-size: 48px; - display: block; - font-weight: 700; - line-height: 56px; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - margin: 24px; - letter-spacing: 0; -} - -.zone__title--full-width .zone__title-url:after, -.zone__title--full-width:after { - border-top: none; - border-bottom: none; - height: 0; - margin-left: 0; - flex: 1; - content: ''; -} - -.zone__title--bold { - font-weight: 700; -} - -.zone__title-underscored-url { - text-underline-offset: var(--theme-paragraph__hover-link-offset); - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - color: #0c0c0c; - font-size: 16px; - line-height: 30px; - font-weight: 400; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; -} - -.zone__title-underscored-url:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.zone__title--18-24 { - font-size: 18px; - line-height: 18px; -} - -.zone__title--underscored, -.zone__title--underscored .zone__title-url { - font-size: 36px; - font-weight: 700; - margin-right: 12px; - text-transform: none; -} - -.zone__title--underscored { - margin-bottom: 24px; - line-height: 1; -} - -.zone__title--underscored:after { - display: none; -} - -.zone__title--underscored .zone__title-underscored-text { - border-bottom: 6px solid #0c0c0c; - padding: 0; - margin-left: 0; - display: inline-block; -} - -.zone__title--underscored .zone__title-url { - margin-bottom: 0; - text-decoration: none; -} - -.zone__items { - display: flex; - flex: 1; - flex-wrap: wrap; - justify-content: space-between; -} - -.zone__items > div { - width: 100%; -} - -.zone__items.layout--full-width > div:first-child .container:first-of-type .container__kicker, -.zone__items.layout--wide-center > div:nth-child(2) .container:first-of-type .container__kicker, -.zone__items.layout--wide-left-balanced-2 > div:first-child .container:first-of-type .container__kicker, -.zone__items.layout--wide-right-2 > div:nth-child(3) .container:first-of-type .container__kicker { - display: block; -} - -.layout--4-6 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--4-6 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--4-6 .container_list-headlines-with-images .image__credit, -.layout--4-6 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--5-4-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--5-4-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--5-4-3 .container_list-headlines-with-images .image__credit, -.layout--5-4-3 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--6-4 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--6-4 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--6-4 .container_list-headlines-with-images .image__credit, -.layout--6-4 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--7-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--7-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--7-3 .container_list-headlines-with-images .image__credit, -.layout--7-3 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-2 .container_list-headlines-with-images .image__credit, -.layout--balanced-2 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-2-fixed-300 .container_list-headlines-with-images .image__credit, -.layout--balanced-2-fixed-300 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-3 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-3 .container_list-headlines-with-images .image__credit, -.layout--balanced-3 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--balanced-3-fixed-300 .container_list-headlines-with-images .image__credit, -.layout--balanced-3-fixed-300 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--full-width .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--full-width .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-center .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--wide-center .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-center .container_list-headlines-with-images .image__credit, -.layout--wide-center .container_list-headlines-with-images .image_sponsorship__credit, -.layout--wide-left-balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--wide-left-balanced-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-left-balanced-2 .container_list-headlines-with-images .image__credit, -.layout--wide-left-balanced-2 .container_list-headlines-with-images .image_sponsorship__credit, -.layout--wide-right-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image__credit, -.layout--wide-right-2 .container_lead-plus-headlines-with-images .container__item:not(:first-child) .image_sponsorship__credit, -.layout--wide-right-2 .container_list-headlines-with-images .image__credit, -.layout--wide-right-2 .container_list-headlines-with-images .image_sponsorship__credit, -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .auth-player-container__back-player-icon-container, -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t1-copy, -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .pui_metadata_title, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .auth-player-container__back-player-icon-container, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t1-copy, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .pui_metadata_title, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .auth-player-container__back-player-icon-container, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t1-copy, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .pui_metadata_title, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .auth-player-container__back-player-icon-container, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t1-copy, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .pui_metadata_title, -.zone [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__back-player-icon-container:first-child { - display: none; -} - -.zone--outlined { - padding: 20px 12px; - border: .5px solid #ddd; - border-radius: 5px; - margin-bottom: 30px; - min-height: 400px; -} - -.zone--t-highlight { - background-color: #f8f8f8; -} - -.zone--t-light { - background-color: transparent; -} - -.zone--t-light-with-margins { - margin: 0 16px; -} - -.zone--t-white { - background-color: #fff; -} - -.zone--t-dark, -.zone--t-dark .zone__inner, -.zone--t-dark .zone__outer { - background-color: #0c0c0c; - color: #fff; -} - -.zone--t-dark + .product-zone--t-light, -.zone--t-dark + .zone--t-light { - margin-top: 48px; -} - -.zone--t-dark .zone__title { - color: #fff; -} - -.zone--t-dark .zone__title:after { - border-top: 4px solid #c00; - border-bottom: 4px solid #c00; -} - -.zone--t-dark .zone__title-url, -.zone--t-dark .zone__title-url:hover { - color: #fff; -} - -.zone--t-dark .layout--7-3 { - padding-top: 16px; -} - -.zone--t-dark .container__title:after { - border-color: #404040; -} - -.zone--t-dark .container__title-url .right-arrow { - fill: #0c0c0c; -} - -.zone--t-dark .container__headline:hover .right-arrow, -.zone--t-dark .container__item a:hover .right-arrow, -.zone--t-dark .container__title-arrow, -.zone--t-dark .container__title.hover:hover .right-arrow, -.zone--t-dark .container__title:hover .right-arrow, -.zone--t-dark .icon-sig-photo-default, -.zone--t-dark .icon-sig-video { - fill: #fff; -} - -.zone--t-dark .container__headline, -.zone--t-dark .container__headline:hover, -.zone--t-dark .container__item a, -.zone--t-dark .container__item a:hover, -.zone--t-dark .container__title, -.zone--t-dark .container__title.hover, -.zone--t-dark .container__title.hover:hover, -.zone--t-dark .container__title:hover { - color: #fff; -} - -.zone--t-dark .container__link:hover .container__headline { - color: #fff; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; -} - -.zone--t-dark .container__item:not(:last-child) { - border-color: #6e6e6e; -} - -.zone--t-dark .container__item .image__credit, -.zone--t-dark .container__item .image_sponsorship__credit { - color: #b1b1b1; -} - -.zone--t-dark .container__text .icon-sig-photo-default, -.zone--t-dark .container__text .icon-sig-video { - fill: #f8f8f8; -} - -.zone--t-dark .container__text-label { - color: #fff; -} - -.zone--t-dark .container__text-label--type-breaking, -.zone--t-dark .container__text-label--type-updates { - color: #c00; -} - -.zone--t-dark, -.zone--t-day-of-deals, -.zone--t-sleep-week, -.zone--t-underscored { - position: relative; - padding: 0; -} - -.zone--t-dark .zone__outer, -.zone--t-day-of-deals .zone__outer, -.zone--t-sleep-week .zone__outer, -.zone--t-underscored .zone__outer { - z-index: 1; - position: relative; - right: 50%; - left: 50%; - width: 100vw; - margin-left: -50vw; - margin-right: -50vw; -} - -.zone--t-dark .zone__inner, -.zone--t-day-of-deals .zone__inner, -.zone--t-sleep-week .zone__inner, -.zone--t-underscored .zone__inner { - z-index: 2; -} - -.zone--t-dark .zone__inner:not(:has(.layout--full-bleed)), -.zone--t-day-of-deals .zone__inner:not(:has(.layout--full-bleed)), -.zone--t-sleep-week .zone__inner:not(:has(.layout--full-bleed)), -.zone--t-underscored .zone__inner:not(:has(.layout--full-bleed)) { - padding: 40px 0 32px; -} - -.zone--t-underscored { - margin-top: -32px; -} - -.zone--t-underscored .zone__outer { - background: linear-gradient(to bottom,#fff4d1,#ffe0e0 28%,#e2f8ff 65%,#fff 89%); -} - -.zone--t-sleep-week .zone__outer { - background: linear-gradient(to bottom,#120038,#e6dbff 32%,#ffe5fa 65%,#fff 89%); -} - -.zone--t-day-of-deals .zone__outer { - background: linear-gradient(to bottom,#e7e0fc,#e5fbff 32%,#f7fff2 65%,#fff 89%); -} - -.zone .zone__items.layout--full-bleed { - left: 50%; - margin-left: -50vw; - position: relative; - width: 100vw; -} - -.zone [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-image > img { - position: relative; - object-fit: contain; -} - -.zone [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-container { - top: 4px; - right: 16px; -} - -@media screen and (min-width:960px) { - .zone [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-container body:not(.layout-homepage-mobile.kiln-edit-mode) { - width: 35%; - } -} - -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay { - padding: 0 4px; - top: 2px; - right: 0; -} - -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t2-copy, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t2-copy, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t2-copy, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__t2-copy { - font-size: 8px; -} - -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__cta, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__cta, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__cta, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .freeview-overlay__cta { - font-size: 11px; - line-height: 26px; - padding: 0 8px; - margin-left: 7px; -} - -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-text, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-text, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-text, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-text { - font-size: 8px; -} - -.zone .layout--5-4-3 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-image, -.zone .layout--balanced-2-fixed-300 > .container:nth-child(3) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-image, -.zone .layout--wide-left-balanced-2 > .container:not(:first-child) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-image, -.zone .layout--wide-right-2 > .container:not(:nth-child(3)) [data-component-name=video-resource][data-custom-experience=tve] .fave-player-container__tv-co-branding-image { - height: 20px; -} - -#taui-mvpdpicker { - z-index: 10001; -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-sleep-week .zone__outer { - background: linear-gradient(to bottom,#120038,#e6dbff 22%,#ffe5fa 26%,#fff 39%); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-day-of-deals .zone__outer { - background: linear-gradient(to bottom,#e7e0fc,#e5fbff 22%,#f7fff2 26%,#fff 39%); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .zone { - margin-bottom: 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title-container { - flex-wrap: wrap; - margin-bottom: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--underscored { - font-size: 30px; - margin-bottom: 4px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout-homepage .zone:first-child > .zone__inner { - padding-top: 24px; - } -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-dark { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-dark .zone__inner:not(:has(.layout--full-bleed)) { - padding-bottom: var(--theme-zone__padding-bottom-small); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-day-of-deals, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-sleep-week, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-underscored { - margin-bottom: var(--theme-zone__padding-bottom-small); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-day-of-deals .zone__inner, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-sleep-week .zone__inner, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-underscored .zone__inner { - padding-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width.zone__title .zone__title-url:hover { - text-decoration-thickness: 1px; - text-underline-offset: 4px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-fixed-300 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3-fixed-300 > div:nth-child(4) { - width: 300px; - margin: 0 auto; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-min-300 > div:nth-child(3) { - min-width: 300px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width.zone__title, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width.zone__title .zone__title-url { - font-size: 42px; - font-weight: 700; - line-height: 48px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container__item:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container__item:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_lead-plus-headlines-with-images:not(:first-child) .image_sponsorship__credit { - display: none; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l1, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l1 .zone__title-url { - font-size: 64px; - line-height: 86px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l2, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l2 .zone__title-url { - font-size: 74px; - line-height: 96px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l3, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l3 .zone__title-url { - font-size: 84px; - line-height: 106px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l4, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l4 .zone__title-url { - font-size: 94px; - line-height: 116px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l5, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--full-width-size-l5 .zone__title-url { - font-size: 104px; - line-height: 126px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__kicker-text { - font-size: 30px; - line-height: 36px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__kicker .image { - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__kicker .image img { - max-width: 500px; - max-height: 50px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--outlined { - padding: 30px 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__title--18-24 { - font-size: 24px; - line-height: 20px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .zone { - margin-bottom: 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-dark { - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-dark .zone__inner:not(:has(.layout--full-bleed)) { - padding-bottom: var(--theme-zone__padding-bottom-default); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-light + .product-zone--t-dark .zone__inner, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-light + .zone--t-dark .zone__inner { - padding-top: 64px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--full-width > div:first-child { - width: 100%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--full-width .container_vertical-strip { - padding: 0; - max-width: 769px; - margin: 0 auto; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--full-width .container_vertical-strip .image__container, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--full-width .container_vertical-strip img { - max-height: 433px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--6-4 > div:first-child { - width: calc(60% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--6-4 > div:nth-child(2) { - width: calc(40% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--7-3 > div:first-child { - width: calc(70% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--7-3 > div:nth-child(2) { - width: calc(30% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--4-6 > div:first-child { - width: calc(40% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--4-6 > div:nth-child(2) { - width: calc(60% - (24px / 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3-fixed-300 > div:nth-child(4) { - width: 300px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3-fixed-300 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3-fixed-300 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3-fixed-300 > div:nth-child(3) { - width: calc(33.33% - 100px - ((24px * 3)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-center > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-center > div:nth-child(3) { - width: calc(30% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-center > div:nth-child(2) { - width: calc(40% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--5-4-3 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--5-4-3 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--5-4-3 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-min-300 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-min-300 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-min-300 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-right-2 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-right-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-right-2 > div:nth-child(3) { - width: calc(33.33% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-left-balanced-2 > div:first-child { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-left-balanced-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-left-balanced-2 > div:nth-child(3) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-fixed-300 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-fixed-300 > div:nth-child(2) { - width: calc(50% - 150px - ((24px * 2)/ 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-fixed-300 > div:nth-child(3) { - width: 300px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-4 > div { - width: calc(50% - ((24px)/ 2)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-4 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-4 > div:nth-child(2) { - margin-bottom: 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items .container > .container__ads > .ad-slot.adSlotLoaded { - padding: 0 0 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .product-zone + .zone .zone__title { - margin: 0 0 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_card:first-child .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_card:first-child .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--5-4-3 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_card:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_card:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_card:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_card:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:not(:last-child) .image_sponsorship__credit { - display: none; - } -} - -@supports not selector(:has(*)) { - .zone--t-dark .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed), - .zone--t-day-of-deals .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed), - .zone--t-sleep-week .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed), - .zone--t-underscored .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed) { - padding: 40px 0 32px; - } - - @media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-dark .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed) { - padding-bottom: var(--theme-zone__padding-bottom-small); - } - } - - @media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone--t-dark .zone__inner:not(.has-pseudo-class-fix-layout--full-bleed) { - padding-bottom: var(--theme-zone__padding-bottom-default); - } - } -} - -@media screen and (min-width:1280px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-center > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-center > div:nth-child(3) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-center > div:nth-child(2) { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-2-min-300 > div, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-3 > div { - width: calc(33.33% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-4 > div { - width: calc(25% - ((24px * 2)/ 4)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-4 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--balanced-4 > div:nth-child(2) { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--5-4-3 > div:first-child { - width: calc(41.66% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--5-4-3 > div:nth-child(2) { - width: calc(33.33% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--5-4-3 > div:nth-child(3) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-left-balanced-2 > div:first-child { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-left-balanced-2 > div:nth-child(2), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-left-balanced-2 > div:nth-child(3), - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-right-2 > div:first-child, - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-right-2 > div:nth-child(2) { - width: calc(25% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .zone__items.layout--wide-right-2 > div:nth-child(3) { - width: calc(50% - ((24px * 2)/ 3)); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2:first-child .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2:first-child .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2:not(:first-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2:not(:first-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2:not(:last-child) .image_sponsorship__credit { - display: none; - } -} - -@media screen and (max-width:640px) { - body:not([class^=homepage-mobile]) .layout--4-6 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--4-6 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-3 .image__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-3 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-4 .image__credit, - body:not([class^=homepage-mobile]) .layout--5-4-3 .container_grid-4 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--6-4 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--6-4 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--7-3 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--7-3 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2-fixed-300 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-2-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3-fixed-300 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--balanced-3-fixed-300 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--full-width .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--full-width .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--wide-center .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--wide-center .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--wide-left-balanced-2 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--wide-left-balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not([class^=homepage-mobile]) .layout--wide-right-2 .container_grid-2 .image__credit, - body:not([class^=homepage-mobile]) .layout--wide-right-2 .container_grid-2 .image_sponsorship__credit { - display: none; - } -} - -@media screen and (min-width:960px) and (max-width:1279px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--4-6 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--6-4 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--7-3 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_app-collections:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_app-collections:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-3:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_grid-3:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines-with-images:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_lead-plus-headlines:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_vertical-strip:not(:last-child) .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3-fixed-300 .container_vertical-strip:not(:last-child) .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-center .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_card .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-left-balanced-2 .container_grid-2 .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:last-child .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_card:last-child .image_sponsorship__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2 .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--wide-right-2 .container_grid-2 .image_sponsorship__credit { - display: none; - } -} - -@media screen and (max-width:1279px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--full-width .container_list-headlines-with-images .image__credit, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--full-width .container_list-headlines-with-images .image_sponsorship__credit { - display: none; - } -} - -.stack_condensed { - display: flex; - justify-content: center; -} - -.stack_condensed__inner { - max-width: 1440px; - padding: 0; - width: 100%; -} - -.stack_condensed__items { - display: flex; - flex-wrap: wrap; - justify-content: space-between; -} - -.stack_condensed__items > .container:not(:last-child) { - margin-bottom: 16px; -} - -.stack_condensed__items .container_lead-package__item:last-child, -.stack_condensed__items .container_lead-plus-headlines__item:last-child { - padding-bottom: 0; -} - -.stack_condensed__items .html-embed { - width: 100%; - margin: 0; - padding-bottom: 16px; -} - -.stack_condensed:not(:last-child) { - margin-bottom: var(--theme-container-margin-bottom-default); -} - -.stack_condensed .container__title--bulleted-headlines::after { - top: -2px; -} - -.stack_condensed .container__title--bulleted-headlines .container__title-text, -.stack_condensed .container__title--bulleted-headlines .container__title_url-text { - margin-bottom: 12px; -} - -.kiln-edit-mode .stack_condensed .stack_condensed__placeholder { - margin-bottom: 10px; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .stack_condensed:not(:last-child) { - margin-bottom: 0; - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; - margin-bottom: 24px; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - line-height: 36px; - margin-bottom: 0; - margin-top: 8px; - margin-right: 12px; - text-transform: none; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__kicker-url, -.container__link { - text-decoration: none; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__link, -.container__text, -.container_lead-package__item .container_lead-package__link { - display: inline-block; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_lead-package { - margin-bottom: var(--theme-container-margin-bottom-default); -} - -.container_lead-package__ads .ad-slot.adSlotLoaded { - padding: 0 0 24px; -} - -.container_lead-package__item, -.container_lead-package__text:not(:first-child) { - padding: 0; - margin: 0; -} - -.container_lead-package__item .interactive-video { - margin-bottom: 24px; -} - -.container_lead-package__item:not(:first-child) { - margin-left: 24px; -} - -.container_lead-package__item:not(:first-child) .container_lead-package__link .container_lead-package__text { - display: list-item; - list-style-type: initial; - clear: both; -} - -.container_lead-package__item:not(:last-child) { - padding: 0 0 12px; -} - -.container_lead-package__item:nth-child(1) { - padding-bottom: 16px; -} - -.container_lead-package__item:nth-child(1) .container_lead-package__link:first-child { - display: block; -} - -.container_lead-package__item:nth-child(1) .container_lead-package__headline { - font-size: 20px; - line-height: 26px; - font-weight: 700; - letter-spacing: 0; -} - -.container_lead-package__item:nth-child(1) .image__credit, -.container_lead-package__item:nth-child(1) .image_sponsorship__credit { - padding: 4px 0; -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-package .container__title--emphatic { - margin-top: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-package .container__kicker ~ .container__title--emphatic { - margin-top: 8px; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-package__item:nth-child(1) .container_lead-package__banner { - font-size: 36px; - line-height: 42px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_lead-package:nth-child(1n + 4) { - margin-top: 48px; - } -} - -.show__showlink-url { - font-size: 14px; - line-height: 22px; - color: var(--theme-paragraph__link-color); - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - -webkit-text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-color: var(--theme-paragraph__link-decoration-color); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.show__showlink-url:hover { - color: var(--theme-link-color-hover); - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); -} - -.stack { - display: flex; - justify-content: center; -} - -.stack__inner { - max-width: 1440px; - padding: 0; - width: 100%; -} - -.stack__items { - display: flex; - flex-wrap: wrap; - justify-content: space-between; -} - -.stack__items .container_lead-package__item:last-child, -.stack__items .container_lead-plus-headlines__item:last-child { - padding-bottom: 0; -} - -.stack__items .html-embed { - width: 100%; - margin: 0; - padding-bottom: 16px; -} - -.stack:not(:last-child) { - margin-bottom: var(--theme-container-margin-bottom-default); -} - -.kiln-edit-mode .stack .stack__placeholder { - margin-bottom: 10px; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .stack__items .live-story-timeline:not(:first-child) { - margin-top: 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .stack:not(:last-child) { - margin-bottom: 0; - } -} - -.live-story-timeline h5:after, -.live-story-timeline h5:before, -.live-story-timeline__wrapper--hideTimestamps ul > li > a > span { - display: none; -} - -.live-story-timeline { - margin-bottom: 12px; - width: 100%; -} - -.live-story-timeline .kiln-permanent-placeholder { - min-height: 50px; - height: auto; -} - -.live-story-timeline__wrapper > div > div { - overflow-y: none; -} - -.live-story-timeline__ghost-wrapper { - min-height: 122px; - padding: 12px; - background-color: #e3f2fd; - font-size: 14px; -} - -.live-story-timeline__ghost-title { - text-transform: uppercase; - font-weight: 700; -} - -.live-story-timeline__ghost-info-text { - font-weight: 700; - font-size: 16px; -} - -.live-story-timeline h5 { - padding: 0 0 8px; - color: #0c0c0c; - margin: 0; - font-size: 16px; - line-height: 24px; - font-weight: 700; - text-transform: none; - letter-spacing: normal; -} - -.live-story-timeline h5 a { - font-size: 16px; - line-height: 24px; - font-weight: 700; -} - -.live-story-timeline h5 a:hover { - text-underline-offset: 4.5px; - text-decoration-thickness: 1px; -} - -.live-story-timeline__wrapper a { - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 16px; - line-height: 24px; - font-weight: 400; - text-decoration: none; - text-transform: none; -} - -.live-story-timeline__wrapper a:hover { - text-decoration: underline; - text-underline-offset: 3.5px; - text-decoration-thickness: 1px; -} - -.live-story-timeline__wrapper li { - margin: 0 0 0 8px; -} - -.live-story-timeline__wrapper li span { - color: #c00; - font-size: 16px; - line-height: 24px; - font-weight: 700; -} - -.live-story-timeline__wrapper li div { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 16px; -} - -.live-story-timeline__wrapper li:before { - top: 12px; - background-color: #c00; -} - -.live-story-timeline__wrapper li:after { - bottom: -7px; - background: #e6e6e6; -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .live-story-timeline__wrapper > div > div { - overflow-y: auto; - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored.hover:hover:before { - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - line-height: 36px; - margin-top: 8px; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__kicker-url, -.container__link { - text-decoration: none; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover, -.container__title_url-sub-text { - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - display: inline-block; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - display: inline-block; - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_grid-3 { - margin-bottom: var(--theme-container__margin-bottom-grid-3); -} - -.container_grid-3__field-links { - column-gap: 24px; - row-gap: 32px; - display: grid; - margin-top: 0; - padding: 0; -} - -.container_grid-3__field-links .container_grid-3__item { - border-top: 0; - margin: 0; -} - -.container_grid-3__field-links .container_grid-3__item .container_grid-3__headline { - font-size: 16px; - line-height: 20px; -} - -.container_grid-3__field-links.paginated { - row-gap: 0; - margin-top: -32px; -} - -.container_grid-3__field-links.paginated .card { - overflow: hidden; - transition: opacity .5s; - margin-bottom: 0; - margin-top: 32px; -} - -.container_grid-3__field-links.paginated .card.hide { - margin-top: 0; - height: 0; - opacity: 0; -} - -.container__title--underscored, -.container_grid-3__item-media .image__container:only-child, -.container_grid-3__item-media .image_sponsorship__container:only-child { - margin-bottom: 24px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; -} - -.container__title--underscored .container__title-url { - margin-bottom: 0; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - margin-bottom: 0; - margin-right: 12px; - text-transform: none; -} - -.container__title--underscored .container__title-text .container__title-underscored-text, -.container__title--underscored .container__title_url-text .container__title-underscored-text { - border-bottom: 6px solid #0c0c0c; - padding: 0; - margin-left: 0; - display: inline-block; -} - -.container__title--underscored .container__title_url-sub-text { - display: block; - margin: 0; -} - -.container__title--underscored .container__title_url-sub-text:hover { - text-decoration: none; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_grid-3 { - margin-bottom: 0; - } -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_grid-3 { - margin-bottom: var(--theme-container__margin-bottom-grid-3); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_grid-3__field-links { - grid-template-columns: repeat(auto-fit,minmax(25%,1fr)); - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; - margin-bottom: 24px; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - line-height: 36px; - margin-bottom: 0; - margin-top: 8px; - margin-right: 12px; - text-transform: none; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__kicker-url, -.container__link { - text-decoration: none; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__link, -.container__text, -.container_lead-plus-headlines__item .container_lead-plus-headlines__link { - display: inline-block; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_lead-plus-headlines { - margin-bottom: var(--theme-container-margin-bottom-default); -} - -.container_lead-plus-headlines__ads .ad-slot.adSlotLoaded { - padding: 0 0 24px; -} - -.container_lead-plus-headlines__item, -.container_lead-plus-headlines__text { - padding: 0; - margin: 0; -} - -.container_lead-plus-headlines__item:not(:last-child) { - border-bottom: 1px solid #e6e6e6; - margin: 0 0 12px; - padding: 0 0 12px; -} - -.container_lead-plus-headlines__item:nth-child(1) { - padding-bottom: 16px; -} - -.container_lead-plus-headlines__item:nth-child(1) .container_lead-plus-headlines__link:first-child { - display: block; -} - -.container_lead-plus-headlines__item:nth-child(1) .container_lead-plus-headlines__headline { - font-size: 20px; - line-height: 26px; - font-weight: 700; - letter-spacing: 0; -} - -.container_lead-plus-headlines__item:nth-child(1) .image__credit, -.container_lead-plus-headlines__item:nth-child(1) .image_sponsorship__credit { - padding: 4px 0; -} - -.container_lead-plus-headlines .card:first-child .card__timestamp { - line-height: 28px; -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-plus-headlines .container__title--emphatic { - margin-top: 24px; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-plus-headlines__item:nth-child(1) .container_lead-plus-headlines__banner { - font-size: 36px; - line-height: 42px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout--balanced-3 .container_lead-plus-headlines:nth-child(1n + 4) { - margin-top: 48px; - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; - margin-bottom: 24px; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - line-height: 36px; - margin-bottom: 0; - margin-top: 8px; - margin-right: 12px; - text-transform: none; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-url { - text-decoration: none; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - display: inline-block; - text-decoration: none; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - display: inline-block; - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_lead-plus-headlines-with-images { - margin-bottom: var(--theme-container-margin-bottom-default); -} - -.container_lead-plus-headlines-with-images__text { - line-height: 20px; - margin-left: 12px; - margin-top: 0; -} - -.container_lead-plus-headlines-with-images__item-media-wrapper { - align-self: flex-start; - min-width: 130px; -} - -.container_lead-plus-headlines-with-images .image__credit, -.container_lead-plus-headlines-with-images .image_sponsorship__credit { - margin-top: 4px; -} - -.container_lead-plus-headlines-with-images__title { - margin-bottom: 8px; -} - -.container_lead-plus-headlines-with-images__item-media .interactive-video__container { - margin-bottom: 1px; -} - -.container_lead-plus-headlines-with-images__item { - font-size: 16px; - font-weight: 400; - line-height: 20px; - margin-bottom: 12px; - padding: 0; -} - -.container_lead-plus-headlines-with-images__item:not(:first-child) { - display: flex; -} - -.container_lead-plus-headlines-with-images__item:not(:last-child) { - border-bottom: 1px solid #e6e6e6; - padding: 0 0 12px; - margin: 0 0 12px; -} - -.container_lead-plus-headlines-with-images__item .container_lead-plus-headlines-with-images__item-media .interactive-video, -.container_lead-plus-headlines-with-images__item .container_lead-plus-headlines-with-images__item-media img { - width: 100%; -} - -.container_lead-plus-headlines-with-images__item .container_lead-plus-headlines-with-images__link { - display: flex; -} - -.container_lead-plus-headlines-with-images__item .container_lead-plus-headlines-with-images__link:first-of-type { - flex: 1; -} - -.container_lead-plus-headlines-with-images__item .container_lead-plus-headlines-with-images__headline { - margin-top: -4px; -} - -.container_lead-plus-headlines-with-images__item.container__item .image__credit, -.container_lead-plus-headlines-with-images__item.container__item .image_sponsorship__credit { - padding: 0; -} - -.container_lead-plus-headlines-with-images__item:first-child { - padding-bottom: 16px; - align-items: center; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_image-headline-v2__text-label { - display: none; -} - -.container_lead-plus-headlines-with-images__item:first-child .image_sponsorship__credit { - visibility: visible; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__text { - letter-spacing: .5px; - display: block; - margin: 0; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__headline { - font-size: var(--theme-container-lead-title__font-size); - font-family: var(--theme-container-lead-title__font-family); - line-height: var(--theme-container-lead-title__line-height); - font-weight: var(--theme-container-lead-title__font-weight); - padding: 0; - margin: 0; - letter-spacing: 0; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__item-media-wrapper { - width: 100%; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__item-media img, -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__item-media video { - display: block; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__item-media .interactive-video, -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__item-media picture { - width: 100%; -} - -.container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__item-media .interactive-video__container { - margin-bottom: 6px; -} - -.container_lead-plus-headlines-with-images__item:not(:first-child) .card__timestamp { - margin-top: -4px; -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-plus-headlines-with-images__item { - padding-bottom: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-plus-headlines-with-images__item:not(:last-child) { - margin: 0 0 12px; - padding: 0 0 12px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-plus-headlines-with-images__item:first-child .image_sponsorship__label { - visibility: visible; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container_lead-plus-headlines-with-images__item:first-child .container_lead-plus-headlines-with-images__text-label { - display: none; - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; - margin-bottom: 24px; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - line-height: 36px; - margin-bottom: 0; - margin-top: 8px; - margin-right: 12px; - text-transform: none; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-url { - text-decoration: none; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - display: inline-block; - text-decoration: none; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - display: inline-block; - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_list-headlines-with-images { - margin-bottom: var(--theme-container-margin-bottom-default); -} - -.container_list-headlines-with-images__item { - border-top: none; - margin: 16px 0 0; - padding: 0; - max-width: 100%; - display: flex; -} - -.container_list-headlines-with-images__item:not(:last-child) { - border-bottom: 1px solid #e6e6e6; - margin: 0 0 12px; - padding: 0 0 12px; -} - -.container_list-headlines-with-images__item.container__item .interactive-video, -.container_list-headlines-with-images__item.container__item [data-component-name=video-resource] { - margin-top: 0; -} - -.container_list-headlines-with-images__item.container__item .interactive-video { - margin-bottom: 8px; -} - -.container_list-headlines-with-images__item .container_list-headlines-with-images__link { - display: flex; -} - -.container_list-headlines-with-images__item .container_list-headlines-with-images__link:first-of-type { - flex: 1; -} - -.container_list-headlines-with-images__item .container_list-headlines-with-images__headline { - font-size: 16px; - margin-top: -4px; -} - -.container_list-headlines-with-images .image__credit, -.container_list-headlines-with-images .image_sponsorship__credit { - text-align: left; - padding: 0; -} - -.container_list-headlines-with-images__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: flex-start; - align-self: flex-start; - min-width: 100px; -} - -.container_list-headlines-with-images__text { - flex: 1 1 75%; - align-items: flex-start; - margin: 0 0 0 12px; -} - -.container_list-headlines-with-images__item-media { - width: 100%; -} - -.container_list-headlines-with-images__date, -.container_list-headlines-with-images__item-media .image__caption-container, -.container_list-headlines-with-images__item-media .image_sponsorship__caption-container { - display: none; -} - -.bizdev-outbrain[data-visible-viewport=desktop] { - margin-bottom: 0; -} - -.bizdev-outbrain--unfurled { - max-width: 1100px; - margin: 0 auto; - padding: 0 10px; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .bizdev-outbrain[data-visible-viewport=mobile] { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .bizdev-outbrain[data-visible-viewport=desktop] { - margin-bottom: 48px; - } -} - -.container__title--underscored .container_card__title_url-sub-text, -.container__title_url-sub-text { - -webkit-text-decoration-skip-ink: var(--theme-underline-skip-ink); - text-decoration-skip-ink: var(--theme-underline-skip-ink); - -webkit-text-decoration-skip: var(--theme-underline-skip-ink); - text-decoration-skip: var(--theme-underline-skip-ink); -} - -.container { - margin-bottom: var(--theme-container-margin-bottom-default); - width: 100%; -} - -.container:last-child { - margin-bottom: 0; -} - -.container__title { - box-sizing: border-box; - position: relative; - width: 100%; - margin-bottom: var(--theme-container-title__margin-bottom); -} - -.container__title:after, -.container__title:before { - content: ''; - display: block; - left: 0; - position: absolute; - top: 0; -} - -.container__title:not(.container__title--emphatic, .container__title--underscored, .container__title--bulleted-headlines):after { - border-top: 1px solid var(--theme-container-title__border-color); - right: 0; -} - -.container__title:before { - background-color: var(--theme-container-title__border-decorator-color); - height: 4px; - transition: width .3s; - transition-timing-function: ease-in-out; - width: var(--theme-container-title__border-decorator-initial-width); -} - -.container__title-url { - color: inherit; - text-decoration: none; -} - -.container__title-url .right-arrow { - content: ''; - display: inline-block; - fill: var(--theme-container-title__arrow-color--initial); - height: var(--theme-container-title__arrow-size); - margin-left: 8px; - position: relative; - top: var(--theme-container-title__arrow-top-pos); - vertical-align: middle; - width: var(--theme-container-title__arrow-size); -} - -.container__title.hover:hover:before { - width: 100%; -} - -.container__title.hover:hover .right-arrow { - fill: var(--theme-container-title__arrow-color--hover); - transition: .4s; -} - -.container__title-text, -.container__title_url-text { - display: inline-block; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: var(--theme-container-title__text-size); - font-weight: 700; - letter-spacing: .5px; - line-height: 16px; - text-decoration: none; - text-transform: uppercase; - width: 100%; - margin-bottom: 16px; - margin-top: 10px; -} - -.container__title--underscored:before { - display: none; - transition: none; -} - -.container__title--underscored.hover:hover:before { - transition: none; - width: 16px; -} - -.container__title--underscored .container__title-url { - align-items: center; - display: inline-flex; - margin-bottom: 24px; -} - -.container__title--underscored .container__title-text, -.container__title--underscored .container__title_url-text { - font-size: 36px; - font-weight: 700; - line-height: 36px; - margin-bottom: 0; - margin-top: 8px; - margin-right: 12px; - text-transform: none; - padding-bottom: 0; -} - -.container__title--underscored:after { - border-top: none; -} - -.container__title--underscored .container__title_url-text { - width: auto; -} - -.container__title--underscored .container_card__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: inherit; - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} - -.container__title--underscored .container_card__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__kicker-url, -.container__link { - text-decoration: none; -} - -.container__title--bold:after, -.container__title--bold:before { - display: none; -} - -.container__title--bold .container__title-text, -.container__title--bold .container__title_url-text { - text-align: left; - text-transform: initial; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - color: #0c0c0c; - letter-spacing: .6px; - line-height: 26px; -} - -.container__title--bold .container__title_url-text { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: 2px; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--bold .container__title_url-text:hover { - color: #6e6e6e; - -webkit-text-decoration-line: none; - text-decoration-line: none; -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline, -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.container__title--emphatic { - text-align: center; -} - -.container__title--emphatic:before { - content: unset; -} - -.container__title--emphatic .container__title-text, -.container__title--emphatic .container__title_url-text { - text-transform: none; - font-size: var(--theme-subheader-h2__font-size); - font-weight: var(--theme-section-headline__font-weight); - line-height: var(--theme-subheader-h2__line-height); - letter-spacing: 0; - margin-top: 0; -} - -.container__title--emphatic .container__title-text:hover, -.container__title--emphatic .container__title_url-text:hover { - color: var(--theme-link-color-hover); - cursor: pointer; -} - -.container__kicker { - display: none; - text-align: center; -} - -.container__kicker-text { - display: block; - margin: 8px 0 0; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; - font-size: 18px; - line-height: 26px; - color: #0c0c0c; -} - -.container__item .image .mini-selector, -.container__item .image__caption, -.container__item .image_inline-small .mini-selector, -.container__item .image_inline-small__caption, -.container__item .video__caption { - display: none; -} - -.container__kicker .image { - border-bottom: none; - margin: 8px 0 0; - padding: 0; -} - -.container__kicker .image img { - width: auto; - height: auto; - max-width: 250px; - max-height: 25px; -} - -.container__item { - list-style: none; - margin: 0; - padding: 0; - position: relative; -} - -.container__item:first-child { - border-top: none; - padding-top: 0; -} - -.container__item.fill, -.container__item.placeholder { - opacity: .5; -} - -.container__item .component-selector-wrapper { - position: unset; -} - -.container__item .interactive-video, -.container__item .interactive-video_inline-small { - margin-top: 0; - margin-bottom: 0; -} - -.container__item .interactive-video__player, -.container__item .interactive-video_inline-small__player { - object-position: top; -} - -.container__item img, -.container__item video { - height: 100%; - left: 0; - object-fit: cover; - object-position: center; - position: absolute; - right: 0; - top: 0; - width: 100%; -} - -.container__item .image, -.container__item .image_inline-small { - margin: 0; - padding: 0; - border: none; -} - -.container__item .image__credit, -.container__item .image_inline-small__credit { - color: #6e6e6e; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 400; - line-height: 0; - padding: 0 0 8px; - text-align: right; -} - -.container__item .video { - border-bottom: 0; - margin: 0; - padding-bottom: 8px; -} - -.container__item .video__credit { - margin-top: 6px; -} - -.container__item-media-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - position: relative; -} - -.container__item-media .image__credit, -.container__item-media .image_sponsorship__credit, -.container__item-media .interactive-video__credit { - visibility: hidden; -} - -.container__item-media .image__container, -.container__item-media .image_sponsorship__container, -.container__item-media .interactive-video__container { - flex-direction: column; - overflow: hidden; - position: relative; -} - -.container__item-media .image__container:after, -.container__item-media .image_sponsorship__container:after, -.container__item-media .interactive-video__container:after { - content: ''; - display: block; - padding-bottom: 56.25%; -} - -.container__item-media .image--eq-small ~ .image__metadata .image__credit, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .image__credit, -.container__item-media .interactive-video--eq-small ~ .image__metadata .image__credit { - line-height: 12px; - padding: 4px; - visibility: visible; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label { - font-size: 12px; - padding: 8px 16px; - letter-spacing: .5px; -} - -.container__item-media .image--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .image_sponsorship--eq-small ~ .image__metadata .card__label-icon, -.container__item-media .interactive-video--eq-small ~ .image__metadata .card__label-icon { - width: 16px; - height: 16px; -} - -.container__item-media .interactive-video__container::after { - position: relative; -} - -.container.lazy .image__container, -.container.lazy .image_sponsorship__container { - background: #e6e6e6; -} - -.container__headline { - color: #0c0c0c; - font-family: var(--theme-container__font-family); - font-size: 16px; - font-weight: var(--theme-container__font-weight); - letter-spacing: .5px; - line-height: 22px; -} - -.container_headline-carousel__headline { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-style: normal; - font-weight: 400; - font-size: 18px; -} - -.container__banner { - color: #0c0c0c; - font-size: 18px; - font-weight: 400; - letter-spacing: .5px; - line-height: 22px; - width: calc(100% - 30px); -} - -.container__link { - color: unset; - display: inline-block; - width: 100%; -} - -.container__link:hover img, -.container__link:hover video { - opacity: var(--theme-container-image-opacity--hover); - transition: .2s; -} - -.container__link:hover .image__container, -.container__link:hover .image_sponsorship__container { - background: var(--theme-container-image-color--hover); -} - -.container__link:hover .container__banner, -.container__link:hover .container__headline { - color: var(--theme-container-color--hover); - -webkit-text-decoration-color: var(--theme-container-text-decoration-color--hover); - text-decoration-color: var(--theme-container-text-decoration-color--hover); -} - -.container__field-links { - margin: 0; - padding: 0; -} - -.container__text-label { - font-weight: 700; - letter-spacing: .5px; -} - -.container__text-label--type-breaking, -.container__text-label--type-live-video, -.container__text-label--type-updates { - color: #c00; -} - -.container__text { - display: inline-block; - font-family: var(--theme-font-family); - width: 100%; -} - -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - float: left; - height: 20px; - margin-right: 4px; - margin-top: 2px; - padding-bottom: 3px; -} - -.container__headline .icon-sig-photo-default, -.container__headline .icon-sig-video, -.container__text .icon-sig-photo-default, -.container__text .icon-sig-video { - fill: #a4001e; -} - -.container__description { - display: none; -} - -.container__title_url-sub-text { - -webkit-text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-line: var(--theme-paragraph__link-decoration); - text-decoration-thickness: var(--theme-paragraph__link-decoration-thickness); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - color: #0c0c0c; - -webkit-text-decoration-color: #0c0c0c; - text-decoration-color: #0c0c0c; - display: none; - padding-top: 16px; - font-size: 16px; - font-weight: 400; - line-height: 22px; -} - -.container__title_url-sub-text:hover { - -webkit-text-decoration: var(--theme-paragraph__hover-link-decoration); - text-decoration: var(--theme-paragraph__hover-link-decoration); - color: #6e6e6e; -} - -.container__title--bulleted-headlines { - display: flex; -} - -.container__title--bulleted-headlines::before { - display: none; -} - -.container__title--bulleted-headlines::after { - margin: 0 0 0 8px; - display: block; - position: relative; - top: -4px; - border-top: none; - border-bottom: 1px solid #e6e6e6; - align-self: center; - flex-grow: 2; -} - -.container__title--bulleted-headlines .container__title-text, -.container__title--bulleted-headlines .container__title_url-text { - margin: 0 0 16px; - width: auto; - letter-spacing: .5px; -} - -.container.hide { - display: none; -} - -.container .pagination { - align-items: center; - background: #fff; - display: flex; - justify-content: center; - height: 56px; - font-size: 16px; - font-weight: 700; - margin: 32px auto 8px; - transition: opacity 1.5s; -} - -.container .pagination-previous::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-left.svg); -} - -.container .pagination-next::before { - -webkit-mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); - mask: url(/media/sites/cnn/icons/ui-arrow-right.svg); -} - -.container .pagination-next, -.container .pagination-previous { - align-items: center; - border-radius: 50%; - border: 1px solid #0c0c0c; - color: #0c0c0c; - display: flex; - justify-content: center; - padding: 12px 16px; - text-decoration: none; -} - -.container .pagination-next:hover, -.container .pagination-previous:hover { - background: #e6e6e6; -} - -.container .pagination-next.disabled, -.container .pagination-previous.disabled { - border: 1px solid #b1b1b1; - pointer-events: none; - cursor: default; -} - -.container .pagination-next.disabled::before, -.container .pagination-previous.disabled::before { - background-color: #b1b1b1; -} - -.container .pagination-next svg, -.container .pagination-previous svg { - margin: 0; -} - -.container .pagination-next-direction, -.container .pagination-previous-direction { - display: block; - text-indent: -9999px; -} - -.container .pagination-next::before, -.container .pagination-previous::before { - content: ''; - width: 12px; - height: 12px; - background-color: #0c0c0c; - -webkit-mask-size: contain; - mask-size: contain; -} - -.container .pagination-links { - display: flex; - margin: 0; - padding: 0 24px; - list-style: none; -} - -.container .pagination-link { - color: #6e6e6e; - min-width: 25px; - margin: 0 4px; - padding-bottom: 4px; - position: relative; - text-decoration: none; - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; -} - -.container .pagination-link.active, -.container .pagination-link:active, -.container .pagination-link:focus, -.container .pagination-link:hover, -.container_list-headlines { - color: #0c0c0c; -} - -.container .pagination-link:after { - content: ''; - width: 100%; - height: 3px; - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); -} - -.container .pagination-link.active:after { - background: #000; -} - -.container .pagination-link:active:after, -.container .pagination-link:focus:after, -.container .pagination-link:hover:after { - background: #e6e6e6; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--bold .container__title_url-text { - font-size: 24px; - line-height: 30px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l1 .container__title_url-text { - font-size: 36px; - line-height: 38px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l2 .container__title_url-text { - font-size: 46px; - line-height: 52px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic.container__title--emphatic-size-l3 .container__title_url-text { - font-size: 56px; - line-height: 62px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker-text { - font-size: 20px; - line-height: 26px; - margin: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image { - margin: 0 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 400px; - max-height: 40px; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--emphatic .container__title_url-text { - font-size: 32px; - font-weight: 700; - line-height: 38px; - } -} - -@media screen and (min-width:480px) and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__kicker .image img { - max-width: 350px; - max-height: 35px; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title_url-sub-text { - font-size: 14px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a { - flex-wrap: wrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored a p { - padding-top: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - font-size: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .container__title--underscored .container__title_url-text { - margin-bottom: 4px; - } -} - -.container_list-headlines { - font-size: 16px; - font-weight: 400; - line-height: 20px; - margin-bottom: var(--theme-container-margin-bottom-default); - letter-spacing: .5px; -} - -.container_list-headlines:first-child { - border-top: none; -} - -.container_list-headlines .container_list-headlines__item { - border: none; - margin-bottom: 12px; - padding-bottom: 12px; - border-bottom: 1px solid #e6e6e6; -} - -.container_list-headlines .container_list-headlines__item:first-child .card__timestamp { - line-height: 22px; -} - -.container_list-headlines .container_list-headlines__item:last-child { - margin-bottom: 0; - border-bottom: none; -} - -.container_list-headlines__text.container__text { - font-family: inherit; - margin: inherit; -} - -.container_list-headlines__item-media { - display: none; -} - -.container_list-headlines__headline { - text-align: left; -} - -.container_list-headlines__item .container_list-headlines__link { - display: inline-block; -} - -:root { - --radio-button-color: #1976d3; - --radio-button-border-color: #a2a2a2; -} - -.radio-control { - font-family: system-ui,sans-serif; - font-size: 16px; - display: flex; - position: relative; -} - -.radio-control .radio { - -webkit-appearance: none; - appearance: none; - background-color: #fff; - font: inherit; - color: var(--radio-button-border-color); - width: 1.3em; - height: 1.3em; - border: 1px solid var(--radio-button-border-color); - border-radius: 50%; - transform: translateY(-.13em); - display: grid; - place-content: center; - margin: 0 6px 0 0; -} - -.radio-control .radio::before { - content: ''; - width: .8em; - height: .8em; - border-radius: 50%; - transform: scale(0); - transition: 120ms transform ease-in-out; - box-shadow: inset 1em 1em var(--radio-button-color); -} - -.radio-control .radio.checked::before { - transform: scale(1); -} - -.configuration { - display: none; - background-color: #fff; -} - -.configuration .selector { - display: none; -} - -.configuration .image { - padding-bottom: 0; -} - -.configuration .component-selector-wrapper--selected { - box-shadow: none; -} - -.configuration .settings { - cursor: default; -} - -.configuration [data-tabcontent=Settings] { - display: flex; - flex-wrap: wrap; -} - -.configuration .settings-section { - margin: 20px 0 0; - padding: 20px; - border-radius: 4px; - max-width: 500px; -} - -.configuration .settings-section:hover { - border-radius: 4px; - box-shadow: 0 0 0 2px rgb(25 118 210 / 75%); -} - -.configuration .settings-section * { - cursor: pointer; -} - -.configuration .settings-section .tabcontent__headline { - font-size: 18px; - font-weight: 700; -} - -.configuration .settings-section .tabcontent__label { - font-size: 15px; - margin: 0; -} - -.configuration .settings-section .tabcontent__select { - font-size: 15px; - padding: 8px 0; - max-width: none; -} - -.configuration .settings-section .body { - margin: 30px 0 0; -} - -.configuration .settings-section .body .url-option { - margin: 35px 0 0; -} - -.configuration .settings-section .body .url-sub { - padding: 25px 0 0 28px; - font-size: 15px; - color: #6d6d6d; - line-height: 1.8em; -} - -.configuration .settings-section .body .url-sub .input-text { - border-bottom: 1px solid #6d6d6d; - color: #000; -} - -.configuration .settings-section .body .url-sub .sub-text { - color: #4b4b4b; - font-size: 12px; -} - -.configuration .settings-section .body .url-sub .ui-checkbox { - margin: 8px 0 0; -} - -.configuration .settings-section .body .url-sub .checkbox-text { - padding: 0 0 0 8px; - color: #000; - font-size: 16px; -} - -.configuration .settings-section .body .preview-url-section { - margin: 30px 0 0; -} - -.configuration .settings-section .body .preview-url-section .preview-url-heading { - font-size: 15px; - color: #6d6d6d; -} - -.configuration .settings-section .body .preview-url-section .preview-url { - font-size: 15px; - font-weight: 700; - margin: 8px 0 0; -} - -.configuration [data-tabcontent=Settings] .settings-section { - flex: 50%; -} - -.configuration__divider { - background-color: var(--theme-divider); - margin: 24px auto; - height: 1px; - border: none; -} - -.configuration-cep__collapsed .simple-list-items-wrapper { - max-height: 42px; - overflow: hidden; - transition-duration: .3s; -} - -.configuration-cep__expanded .simple-list-items-wrapper { - max-height: 1200px; - overflow: hidden; - transition-duration: .3s; -} - -.configuration-cep__collapsed .ui-icon { - transform: rotate(0); -} - -.configuration-cep__expanded .ui-icon { - transform: rotate(-180deg); -} - -.kiln-overlay-form--configuration .date-time-picker { - margin: 30px 0; -} - -.footer { - background: var(--theme-background); - padding: 48px 0 24px; - border-top: 1px solid var(--theme-divider); -} - -.footer__right { - align-items: center; - display: flex; - position: relative; -} - -.footer__user-account-menu, -.footer__user-account-nav-menu { - display: none; - width: 100%; - text-align: center; -} - -.footer__user-account-icon { - margin: 0 0 0 16px; - padding: 0; -} - -.footer__user-account-nav-mobile { - display: block; - margin: 0; -} - -.footer__user-account-nav-desktop { - display: none; -} - -.footer .footer__inner { - margin: 0 auto; - width: 100%; - max-width: 1440px; - padding: 0 16px; -} - -.footer .footer__subnav { - display: flex; - flex-wrap: wrap; -} - -.footer .footer__divider { - background-color: var(--theme-divider); - height: 1px; - border: none; - margin: 24px auto; - width: 100%; -} - -.footer__divider-mobile { - display: block; -} - -.footer__mobile-only { - display: contents; -} - -.footer__desktop-only { - display: none; -} - -.footer .footer__row { - display: flex; - align-items: center; - flex-direction: column; -} - -.footer .footer__brand-logo { - margin-bottom: 32px; -} - -.footer .footer__links { - display: flex; - margin-top: 24px; - justify-content: center; - flex-flow: row wrap; -} - -.footer .footer__copyright-text, -.footer .footer__disclaimer-text, -.footer .footer__link { - font-size: 12px; - display: block; - text-decoration: none; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - letter-spacing: 0; - text-align: center; - line-height: 20px; -} - -.footer .footer__link { - margin: 0 16px 4px 0; - color: var(--theme-copy-accent); -} - -.footer .footer__copyright-text { - margin: 24px auto 0; - color: var(--theme-copy-accent); -} - -.footer .footer__copyright-text > a { - color: var(--theme-copy-accent); - text-decoration: none; -} - -.footer .footer__disclaimer-text { - color: #6e6e6e; - text-align: center; - margin: 32px auto 0; - font-weight: 700; -} - -.footer .footer__disclaimer-text > a { - color: #262626; - text-decoration: none; -} - -.footer .footer__copyright-text > a:hover, -.footer .footer__link:hover { - text-decoration: underline; - color: var(--theme-copy-accent-hover); -} - -.footer .footer__disclaimer-text > a:hover { - text-decoration: underline; - color: var(--theme-copy-accent); -} - -.footer .uclink, -.footer__vertical-divider { - display: none; -} - -.footer__audio-link, -.footer__live-tv-link { - display: block; - color: var(--theme-copy-accent); - font-size: 15px; - font-weight: 400; - position: relative; - text-decoration: none; - line-height: 20px; -} - -.footer__audio-link:active, -.footer__audio-link:focus, -.footer__audio-link:hover, -.footer__live-tv-link:active, -.footer__live-tv-link:focus, -.footer__live-tv-link:hover { - color: var(--theme-header__item-link-hover-color); -} - -.footer__audio-link-desktop, -.footer__live-tv-link-desktop { - display: none; -} - -.footer__audio-link-mobile, -.footer__live-tv-link-mobile { - letter-spacing: .2px; - line-height: 26px; - font-size: 18px; - text-align: center; -} - -.footer__live-tv-link-mobile { - margin-bottom: 12px; -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer { - padding-top: 48px; - padding-right: 0; - margin-right: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-menu, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-nav-menu { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .user_account-nav--auth .user-account-nav__icon-button--auth { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .user_account-nav--unauth .user-account-nav__icon-button--unauth { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__inner { - padding: 0 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__subnav { - margin-bottom: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-icon { - margin: 0 0 0 16px; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__inner { - padding: 0 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__subnav { - margin-bottom: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__right { - padding: 0 0 0 80px; - align-self: flex-end; - align-items: inherit; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-nav-icon { - margin: 0 0 0 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-nav-desktop { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-menu .footer__divider, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-nav-menu .footer__divider, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__user-account-nav-mobile { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__vertical-divider { - display: block; - height: 24px; - margin: 0 0 0 24px; - border-left: 1px solid var(--theme-divider); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__divider-mobile, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__mobile-only, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__vertical-divider.footer__audio-link-desktop, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__vertical-divider.footer__live-tv-link-desktop { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__desktop-only { - display: contents; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__audio-link-mobile, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__live-tv-link-mobile { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__audio-link { - margin: 0 24px 0 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__brand-logo { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__row { - flex-direction: row; - justify-content: space-between; - margin-top: 32px; - } -} - -@media screen and (min-width:1280px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer { - padding-top: 48px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__audio-link-desktop, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__live-tv-link-desktop { - white-space: nowrap; - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__vertical-divider.footer__audio-link-desktop, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer__vertical-divider.footer__live-tv-link-desktop { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__subnav { - padding: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__divider:first-of-type { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__divider:last-of-type { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__links { - justify-content: flex-start; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__copyright-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__disclaimer-text { - text-align: left; - } -} - -@media screen and (min-width:1280px) and (max-width:1440px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .footer .footer__subnav { - padding: 0; - } -} - -.subnav { - width: 100%; -} - -.subnav__sections, -.subnav__subsections { - display: block; - text-align: center; - width: 100%; - margin: 0; - padding: 0; - list-style: none; -} - -.subnav__subsection, -.subnav__subsection-link { - margin-top: 4px; -} - -.subnav__section { - margin-bottom: 12px; -} - -.subnav__section-link, -.subnav__subsection-link { - text-decoration: none; - transition: color .4s ease; - font-size: 14px; - line-height: 18px; - color: var(--theme-copy-accent); -} - -.subnav__section-link:active, -.subnav__section-link:focus, -.subnav__section-link:hover, -.subnav__subsection-link:active, -.subnav__subsection-link:focus, -.subnav__subsection-link:hover { - color: var(--theme-copy-accent-hover); - text-decoration: underline; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.subnav__subsections { - display: none; - font-size: 12px; -} - -.subnav__specific-content { - display: block; - text-align: center; -} - -.subnav__social-links { - margin-top: 32px; -} - -.subnav .cnn-badge-icon { - width: 50px; - height: 50px; - margin-bottom: 24px; -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__section-link { - line-height: 26px; - font-size: 18px; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__sections, - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__subsections { - display: flex; - flex-wrap: wrap; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__section { - padding: 0 12px 0 0; - margin-bottom: 24px; - width: calc(100% / 5); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__section-link { - margin-bottom: 16px; - font-size: 18px; - line-height: 20px; - font-weight: 700; - color: var(--theme-copy-follow); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__subsections { - display: block; - margin-top: 12px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__specific-content { - display: none; - } -} - -@media screen and (min-width:1280px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .subnav__section { - width: calc(100% / 7); - } -} - -.brand-logo { - height: 40px; - display: flex; -} - -.brand-logo .cnn-badge-icon { - height: 40px; - fill: var(--theme-primary-logo-fill); -} - -.brand-logo__theme { - display: block; - height: 100%; -} - -.brand-logo__theme .business-logo-icon, -.brand-logo__theme .entertainment-logo-icon, -.brand-logo__theme .health-logo-icon, -.brand-logo__theme .politics-logo-icon, -.brand-logo__theme .style-logo-icon, -.brand-logo__theme .tech-logo-icon, -.brand-logo__theme .travel-logo-icon, -.brand-logo__theme .underscored-logo-icon { - position: relative; -} - -.brand-logo__theme .business-logo-icon .logo-title, -.brand-logo__theme .entertainment-logo-icon .logo-title, -.brand-logo__theme .health-logo-icon .logo-title, -.brand-logo__theme .politics-logo-icon .logo-title, -.brand-logo__theme .style-logo-icon .logo-title, -.brand-logo__theme .tech-logo-icon .logo-title, -.brand-logo__theme .travel-logo-icon .logo-title, -.brand-logo__theme .underscored-logo-icon .logo-title { - fill: var(--theme-secondary-logo-fill); -} - -.brand-logo__section-text { - align-items: center; - color: var(--theme-copy-follow); - display: flex; - font-weight: 700; - font-size: 18px; - margin-left: 16px; - height: 100%; -} - -.brand-logo__theme-link { - text-decoration: none; -} - -.search-bar { - width: 100%; -} - -.search-bar__form { - position: relative; - display: block; - width: 100%; - margin-bottom: 24px; -} - -.search-bar__input { - border: 1px solid var(--theme-searchbox-border); - border-radius: 4px; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 16px; - height: 38px; - width: 100%; - padding: 0 64px 0 8px; - box-shadow: none; - color: var(--theme-copy); -} - -.search-bar__input:-ms-input-placeholder { - font-size: 16px; - line-height: 26px; - letter-spacing: 0; -} - -.search-bar__input::placeholder { - font-size: 16px; - line-height: 26px; - letter-spacing: 0; -} - -.search-bar__input:focus { - outline: 0; -} - -.search-bar__input::-ms-clear { - display: none; -} - -.search-bar__submit { - position: absolute; - top: 50%; - transform: translateY(-50%); - right: 0; - border: none; - box-shadow: none; - background: 0 0; - display: flex; - align-items: center; - height: 32px; - letter-spacing: 0; - color: #404040; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-weight: 700; -} - -.search-bar__submit:hover { - cursor: pointer; -} - -.search-bar__button-text { - display: none; - font-size: 14px; - font-weight: 700; - line-height: 32px; - letter-spacing: 0; - margin-right: 16px; -} - -.search-bar__arrow, -.search-bar__search-icon { - position: relative; -} - -.search-bar__arrow { - display: none; - right: 8px; - top: 1px; -} - -.search-bar__arrow svg { - width: 12px; - height: 12px; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .search-bar__input { - padding: 0 calc(64px * 2) 0 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .search-bar__arrow, - body:not(.layout-homepage-mobile.kiln-edit-mode) .search-bar__button-text { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .search-bar__search-icon { - display: none; - } -} - -.social-links { - text-align: center; -} - -.social-links__copy { - color: var(--theme-copy-follow); - font-size: 12px; - font-weight: 700; - text-transform: uppercase; - letter-spacing: 1px; - margin-left: 0; -} - -.social-links--dark .social-links__copy { - color: #404040; -} - -.social-links__items { - display: flex; - align-items: center; - justify-content: center; - padding: 0; - margin: 16px 0 0; -} - -.social-links__item { - height: 24px; - list-style: none; - margin-left: 0; - padding: 0 16px; -} - -.social-links__link { - color: unset; - text-decoration: none; -} - -.social-links__link .facebook-icon, -.social-links__link .instagram-icon, -.social-links__link .tiktok-icon, -.social-links__link .twitter-icon, -.social-links__link .youtube-icon { - fill: var(--theme-icon-color); - transition: fill .4s ease; - height: 24px; - width: 24px; -} - -.social-links__link .facebook-icon:hover, -.social-links__link .instagram-icon:hover, -.social-links__link .tiktok-icon:hover, -.social-links__link .twitter-icon:hover, -.social-links__link .youtube-icon:hover { - fill: var(--theme-icon-color-hover); -} - -.social-links--dark .social-links__link .facebook-icon, -.social-links--dark .social-links__link .facebook-icon:hover, -.social-links--dark .social-links__link .instagram-icon, -.social-links--dark .social-links__link .instagram-icon:hover, -.social-links--dark .social-links__link .tiktok-icon, -.social-links--dark .social-links__link .tiktok-icon:hover, -.social-links--dark .social-links__link .twitter-icon, -.social-links--dark .social-links__link .twitter-icon:hover, -.social-links--dark .social-links__link .youtube-icon, -.social-links--dark .social-links__link .youtube-icon:hover { - fill: #404040; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .social-links { - display: flex; - align-items: center; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .social-links__items { - margin-top: 0; - justify-content: center; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .social-links__copy { - margin-left: 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .social-links__item { - margin-left: 24px; - padding: 0; - } -} - -.user-account-nav { - visibility: hidden; -} - -.user-account-nav__icons { - display: grid; - width: max-content; - margin: auto; -} - -.user-account-nav .user-account-nav__avatar { - width: 42px; - height: 42px; - border-radius: 50%; -} - -.user-account-nav__icon-button { - display: none; - font-size: 10px; - color: var(--theme-copy-accent); - font-weight: 700; - background: 0 0; - border: none; - padding: 0; -} - -.user-account-nav__icon-button:hover { - cursor: pointer; -} - -.user-account-nav__icon-button .userAccountFollowDot { - height: 6px; - width: 6px; - background-color: #c00; - border-radius: 50%; - top: 3px; - position: absolute; - display: none; -} - -.user-account-nav__icon-button .userAccountFollowDot--show { - display: inline-block; -} - -.user-account-nav__icon-button .icon-ui-avatar-default, -.user-account-nav__icon-button .icon-ui-avatar-fill { - height: 30px; - width: 30px; - fill: var(--theme-copy-accent); - transition: transform .25s ease; -} - -.user-account-nav__icon-button:focus { - color: var(--theme-header__login-button); -} - -.user-account-nav__icon-button:focus .user-icon { - fill: var(--theme-header__login-button); -} - -.user-account-nav__menu-options { - display: none; - padding: 0; - text-align: center; - z-index: 200; -} - -.user-account-nav__menu--active > .user-account-nav__menu-options { - display: block; -} - -.user-account-nav__menu-notification-dot { - height: 6px; - width: 6px; - background-color: #c00; - border-radius: 50%; - margin-left: 5px; - display: none; -} - -.user-account-nav__menu-notification-dot--show { - display: inline-block; -} - -.user-account-nav--auth .user-account-nav__icon-button--unauth, -.user-account-nav--auth .user-account-nav__text-button--unauth, -.user-account-nav__menu-link--hide { - display: none; -} - -.user-account-nav__menu-item { - margin: 16px 0; - list-style: none; -} - -.user-account-nav__menu-link { - color: var(--theme-copy-accent); - font-size: 14px; - text-decoration: none; -} - -.user-account-nav__menu-button { - font-size: 18px; - color: var(--theme-copy-accent); - font-weight: 700; - background: 0 0; - border: none; -} - -.user-account-nav__menu-button:hover { - cursor: pointer; -} - -.user-account-nav__menu-button .icon-ui-caret-down { - fill: var(--theme-copy-accent); - height: 14px; - width: 16px; - margin-left: 8px; - transition: transform .25s ease; -} - -.user-account-nav__menu--active > .user-account-nav__menu-button .icon-ui-caret-down { - transform: rotate(180deg); -} - -.user-account-nav__menu-button:active, -.user-account-nav__menu-button:focus, -.user-account-nav__menu-button:hover { - color: var(--theme-header__login-button); -} - -.user-account-nav--auth .user-account-nav__icon-button--auth:focus { - outline: 0; -} - -.user-account-nav--auth .user-account-nav__menu { - display: block; - width: max-content; - margin: auto; -} - -.user-account-nav--auth .hide { - display: none; -} - -.user-account-nav--unauth .user-account-nav__icon-button--unauth { - display: block; - padding: 8px 32px; -} - -.user-account-nav--unauth .user-account-nav__text-button--unauth { - display: block; - font-size: 18px; - font-weight: 700; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - line-height: 26px; - letter-spacing: .2px; - border: none; - background-color: inherit; - color: var(--theme-header__login-button); - cursor: pointer; - padding: 4px 32px 0; -} - -.user-account-nav--unauth .user-account-nav__menu, -.user-account-nav__override-link, -.user-account-nav__user { - display: none; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav { - position: relative; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav--auth .user-account-nav__icon-button--auth { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav--unauth .user-account-nav__text-button--unauth { - border: 1px solid var(--theme-header__login-button); - box-sizing: border-box; - border-radius: 8px; - padding: 4px 8px; - font-size: 14px; - line-height: 20px; - height: 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav--unauth .user-account-nav__text-button--unauth:hover { - background-color: var(--theme-divider); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav--unauth .user-account-nav__icon-button--unauth, - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-button { - display: none; - } -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-options { - padding: 12px 0; - text-align: left; - background: #fff; - position: absolute; - margin-top: 4px; - width: fit-content; - right: calc(4px / 2); - border-radius: 4px; - box-shadow: rgba(0,0,0,.25) 0 2px 6px 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-options:after { - content: ''; - width: 0; - height: 0; - position: absolute; - top: -5px; - right: 5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-bottom: 5px solid #fefefe; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-item { - margin: 0; - width: 100%; - white-space: nowrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-link { - padding: 0 24px; - font-size: 12px; - line-height: 24px; - color: #404040; - display: flex; - flex-direction: row; - align-items: center; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-link:hover { - background-color: #e6e6e6; - color: #262626; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .user-account-nav__menu-link--hide { - display: none; - } -} - -.component-selector-wrapper .user-account-nav .user-account-nav__icons .user-account-nav__icon-button--unauth { - display: block; -} - -.ad-feedback__container { - box-sizing: border-box; - margin: 0 auto; - padding: 30px; - background: #fff; - box-shadow: 0 8px 24px 0 rgba(0,0,0,.25); - border-radius: 8px; - display: block; - flex-direction: row-reverse; - justify-content: space-between; - max-height: 100%; - max-width: 500px; - overflow-y: auto; -} - -.ad-feedback__container .ad-feedback__form { - display: block; - flex-grow: 1; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__heading { - padding-bottom: 20px; - display: flex; - justify-content: space-between; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__heading__text { - margin: 0; - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - height: auto; - font-size: 20px; - font-weight: 700; - letter-spacing: 2px; - line-height: normal; - text-transform: uppercase; - width: 320px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__heading__close { - width: 24px; - height: 24px; - cursor: pointer; - background-image: url(/media/sites/cnn/icons/ui-close.svg); -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__content-container { - display: flex; - flex-flow: column; - margin-bottom: 20px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__content-container:last-of-type { - margin-bottom: 0; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__content-container .ad-feedback__question-container { - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 16px; - font-weight: 700; - letter-spacing: .2px; - line-height: 24px; - margin: 0 0 10px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__content-container .ad-feedback__answers-container { - display: flex; - margin-left: -7px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__content-container .ad-feedback__answers-container .ad-feedback__emoji-container { - display: flex; - flex-flow: column; - align-items: center; - margin-right: 20px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container { - display: flex; - align-items: center; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .switch { - position: relative; - display: inline-block; - width: 60px; - height: 34px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .ad-feedback__technical-issues-slider { - opacity: 0; - width: 60px; - height: 34px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .slider { - position: absolute; - cursor: pointer; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: #e6e6e6; - transition: .4s; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .slider:before { - position: absolute; - content: ''; - height: 26px; - width: 26px; - left: 4px; - bottom: 4px; - background-color: #fff; - transition: .4s; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .slider.round { - border-radius: 34px; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .slider.round:before { - border-radius: 50%; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .ad-feedback__technical-issues-slider:checked ~ .slider:before { - transform: translateX(26px); -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .ad-feedback__technical-issues-slider:checked ~ .slider { - background-color: #006598; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-checkbox-container .ad-feedback__technical-issues-checkbox-label { - margin-left: 10px; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - color: #0c0c0c; -} - -.ad-feedback__container .ad-feedback__form .ad-feedback__technical-issues-container { - margin-bottom: 20px; -} - -.ad-feedback__container .ad-feedback__form .hide { - display: none; -} - -.ad-feedback__container .ad-feedback__emoji-base { - text-align: center; - cursor: pointer; - padding: 8px; -} - -.ad-feedback__container .ad-feedback__emoji-base .ad-feedback__emoji-label-text { - width: 56px; - height: 19px; - color: #0c0c0c; - font-size: 12px; - font-weight: 400; - text-align: center; - letter-spacing: .2px; - line-height: 18px; - margin-top: 5px; - margin-bottom: 0; -} - -.ad-feedback__container .ad-feedback__emoji-base:before { - background-position: center; - background-repeat: no-repeat; - background-size: cover; - display: inline-block; - width: 32px; - height: 32px; - position: relative; - vertical-align: top; - cursor: pointer; - text-align: center; - content: ''; - filter: invert(95%) sepia(3%) saturate(4129%) hue-rotate(189deg) brightness(123%) contrast(39%); -} - -.ad-feedback__container .ad-feedback__emoji-base:hover:before { - filter: none; -} - -.ad-feedback__container .ad-feedback__emoji-base.ad-feedback__emoji-bad:before { - background-image: url(/media/sites/cnn/icons/feedback-emoji-bad.svg); -} - -.ad-feedback__container .ad-feedback__emoji-base.ad-feedback__emoji-not-good:before { - background-image: url(/media/sites/cnn/icons/feedback-emoji-not-good.svg); -} - -.ad-feedback__container .ad-feedback__emoji-base.ad-feedback__emoji-okay:before { - background-image: url(/media/sites/cnn/icons/feedback-emoji-okay.svg); -} - -.ad-feedback__container .ad-feedback__emoji-base.ad-feedback__emoji-good:before { - background-image: url(/media/sites/cnn/icons/feedback-emoji-good.svg); -} - -.ad-feedback__container .ad-feedback__emoji-base.ad-feedback__emoji-great:before { - background-image: url(/media/sites/cnn/icons/feedback-emoji-great.svg); -} - -.ad-feedback__container .ad-feedback__emoji-radio-input { - position: absolute; - opacity: 0; - width: 30px; - height: 30px; -} - -.ad-feedback__container .ad-feedback__emoji-radio-input:checked ~ .ad-feedback__emoji-base { - font-weight: 700; - white-space: nowrap; -} - -.ad-feedback__container .ad-feedback__emoji-radio-input:checked ~ .ad-feedback__emoji-bad:before, -.ad-feedback__container .ad-feedback__emoji-radio-input:checked ~ .ad-feedback__emoji-not-good:before { - filter: invert(37%) sepia(83%) saturate(3309%) hue-rotate(337deg) brightness(100%) contrast(100%); -} - -.ad-feedback__container .ad-feedback__emoji-radio-input:checked ~ .ad-feedback__emoji-okay:before { - filter: invert(75%) sepia(51%) saturate(594%) hue-rotate(343deg) brightness(102%) contrast(101%); -} - -.ad-feedback__container .ad-feedback__emoji-radio-input:checked ~ .ad-feedback__emoji-good:before, -.ad-feedback__container .ad-feedback__emoji-radio-input:checked ~ .ad-feedback__emoji-great:before { - filter: invert(72%) sepia(18%) saturate(860%) hue-rotate(125deg) brightness(89%) contrast(91%); -} - -.ad-feedback__container .ad-feedback__comment { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - color: #0c0c0c; - font-size: 13px; - font-weight: 400; - letter-spacing: .2px; - line-height: 24px; - padding: 10px 16px; - background: #fff; - border-radius: 4px; - border: 1px solid #b1b1b1; - height: 78px; - resize: none; -} - -.ad-feedback__container .ad-feedback__comment:-ms-input-placeholder { - color: #6e6e6e; -} - -.ad-feedback__container .ad-feedback__comment::placeholder { - color: #6e6e6e; -} - -.ad-feedback__container .ad-feedback__comment.ad-feedback__comment_error { - background-color: #ffd5d5; - border: 1px solid #a20000; -} - -.ad-feedback__container .ad-feedback__comment-error-msg { - margin-top: 5px; - font-size: 14px; - color: #a20000; -} - -.ad-feedback__container .ad-feedback__actions { - display: flex; - justify-content: flex-end; - margin-bottom: 10px; -} - -.ad-feedback__container .ad-feedback__actions > .button { - border: none; - font-size: 16px; - font-weight: 700; - border-radius: 4px; - height: 44px; - width: 106px; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - cursor: pointer; -} - -.ad-feedback__container .ad-feedback__actions > .button.ad-feedback__cancel { - color: #0c0c0c; - background-color: transparent; - margin-right: 20px; -} - -.ad-feedback__container .ad-feedback__actions > .button.ad-feedback__cancel:hover, -.ad-feedback__container .ad-feedback__submitted__close:hover { - background-color: #e6e6e6; -} - -.ad-feedback__container .ad-feedback__actions > .button.ad-feedback__submit { - color: #fff; - background-color: #0c0c0c; -} - -.ad-feedback__container .ad-feedback__actions > .button.ad-feedback__submit:hover { - background-color: #6e6e6e; -} - -.ad-feedback__container .ad-feedback__actions > .button.ad-feedback__submit:disabled { - background-color: rgba(12,12,12,.2); - cursor: default; -} - -.ad-feedback__container .ad-feedback__checkbox-container { - display: flex; - align-items: center; - position: relative; - width: fit-content; - width: -moz-max-content; - padding-left: 30px; - margin-bottom: 10px; - cursor: pointer; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 14px; - font-weight: 400; - height: 24px; - letter-spacing: .18px; - line-height: 24px; - white-space: nowrap; -} - -.ad-feedback__container .ad-feedback__checkbox-container .ad-feedback__checkmark { - position: absolute; - left: 0; - background: #fff; - border-radius: 4px; - border: 1px solid #b1b1b1; - height: 20px; - width: 20px; -} - -.ad-feedback__container .ad-feedback__checkbox-container .ad-feedback__checkmark:after { - content: ''; - position: absolute; - display: none; - left: 7px; - top: 4px; - width: 5px; - height: 10px; - border: solid #fff; - border-width: 0 1px 1px 0; - transform: rotate(45deg); -} - -.ad-feedback__container .ad-feedback__checkbox-container .ad-feedback__checkbox__input { - position: absolute; - opacity: 0; - cursor: pointer; - height: 0; - width: 0; -} - -.ad-feedback__container .ad-feedback__checkbox-container .ad-feedback__checkbox__input:checked ~ .ad-feedback__checkmark { - background: #006598; - border: none; -} - -.ad-feedback__container .ad-feedback__checkbox-container .ad-feedback__checkbox__input:checked ~ .ad-feedback__checkmark:after { - display: block; -} - -.ad-feedback__container .ad-feedback__submitted { - color: #0c0c0c; - display: none; - flex-direction: column; - align-items: center; - width: 100%; - position: relative; -} - -.ad-feedback__container .ad-feedback__submitted__checkmark { - background: url(/media/sites/cnn/icons/system-check-default.svg) center no-repeat; - background-size: cover; - height: 64px; - width: 64px; - filter: invert(39%) sepia(39%) saturate(542%) hue-rotate(98deg) brightness(96%) contrast(100%); -} - -.ad-feedback__container .ad-feedback__submitted__title { - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 20px; - font-weight: 700; - height: 26px; - letter-spacing: 2px; - line-height: 26px; - text-transform: uppercase; - margin-top: 24px; -} - -.ad-feedback__container .ad-feedback__submitted__close, -.ad-feedback__container .ad-feedback__submitted__message { - color: #0c0c0c; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 16px; - text-align: center; -} - -.ad-feedback__container .ad-feedback__submitted__message { - font-weight: 400; - letter-spacing: .2px; - line-height: 24px; - width: 295px; - margin-top: 16px; -} - -.ad-feedback__container .ad-feedback__submitted__close { - font-weight: 700; - margin-top: 30px; - cursor: pointer; - border: none; - border-radius: 4px; - height: 44px; - line-height: 44px; - width: 106px; -} - -.ad-feedback__container .ad-feedback__submitted__close-icon { - width: 24px; - height: 24px; - cursor: pointer; - background-image: url(/media/sites/cnn/icons/ui-close.svg); - position: absolute; - top: 0; - right: 0; -} - -.ad-feedback__container.submitted { - width: 422px; -} - -.ad-feedback__container.submitted .ad-feedback__form { - display: none; -} - -.ad-feedback__container.submitted .ad-feedback__submitted { - display: flex; -} - -.modal__overlay { - z-index: 200; - height: 100%; - width: 100%; - position: fixed; - top: 0; - left: 0; - display: flex; - justify-content: center; - align-items: center; - background: rgba(12,12,12,.95); - opacity: 100%; -} - -.modal__overlay .modal__container { - background: #0c0c0c; - color: #fff; -} - -@media screen and (min-width:480px) { - .modal__container { - height: auto; - width: auto; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container { - padding: 8% 6% 6%; - margin: 8px; - overflow-y: auto; - max-height: 100%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__scrollable { - overflow-y: auto; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__heading { - position: relative; - margin-bottom: 30px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__heading__text { - font-size: 16px; - font-weight: 700; - width: fit-content; - width: -moz-max-content; - line-height: 18px; - margin-bottom: 0; - letter-spacing: .5px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__heading__close { - position: absolute; - background-position: 0 -4px; - top: 0; - right: 0; - width: 20px; - cursor: pointer; - background-image: url(/media/sites/cnn/icons/ui-close.svg); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__form .ad-feedback__content-container .ad-feedback__question-container { - font-size: 14px; - line-height: 18px; - margin: 0 0 10px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__form .ad-feedback__content-container .ad-feedback__answers-container { - justify-content: space-between; - margin-left: 7px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__form .ad-feedback__content-container .ad-feedback__answers-container .ad-feedback__emoji-container { - width: 20px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__checkbox-container { - font-size: 14px; - padding-left: 25px; - margin-bottom: 10px; - line-height: 16px; - height: 30px; - white-space: normal; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-feedback__container .ad-feedback__comment { - line-height: 18px; - } -} - -.ad-slot-header { - position: fixed; - top: 0; - left: 0; - width: 100%; -} - -.ad-slot-header .ad-slot-header__container { - background-color: var(--theme-ad-slot-background-color); - transform: translateY(0); - transition: transform 1s ease 0s; - width: 100%; -} - -.userAccountVisible .ad-slot-header .ad-slot-header__container { - transition: none; -} - -.kiln-edit-mode .ad-slot-header .ad-slot-header__container { - background-color: transparent; -} - -.ad-slot-header .resizeListenerIframe { - display: block; - height: 100%; - left: 0; - opacity: 0; - overflow: hidden; - pointer-events: none; - position: absolute; - top: 0; - width: 100%; - z-index: -1; -} - -.ad-slot-header .ad.ad::after { - display: none; -} - -.ad-slot-header .ad-slot { - padding: 0; - position: sticky; - top: 0; - z-index: -1; -} - -.ad-slot-header .ad-slot .celtra-ad-inline-host { - margin: 0; -} - -.ad-slot-header.userAccountVisible { - position: fixed; -} - -.ad-slot-header__wrapper { - -webkit-clip-path: inset(0); - clip-path: inset(0); -} - -@keyframes ad-loading-header { - 0%, - 100% { - background-color: #262626; - } - - 50% { - background-color: #404040; - } -} - -@media screen and (max-width:959px) { - .ad-slot-header__wrapper { - min-height: 50px; - background-color: #0c0c0c; - } - - .ad-slot-header .ad-slot-header__container .adSlotLoaded .ad-slot__ad-label::after { - content: ''; - } - - .ad-slot-header .ad-slot-header__container .ad-slot:before { - content: ''; - display: block; - width: 320px; - height: 50px; - animation: ad-loading-header 2s ease infinite; - margin: 0 auto; - } - - .kiln-edit-mode .ad-slot-header .ad-slot-header__container .ad-slot:before { - display: none; - } - - .ad-slot-header .ad-slot-header__container .ad-slot.adSlotLoaded:before { - content: none; - } -} - -@media screen and (min-width:960px) { - .ad-slot-header, - .ad-slot-header__wrapper { - min-height: 276px; - } - - .ad-slot-header { - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - background-color: #0c0c0c; - } - - .ad-slot-header .ad-slot-header__container { - display: flex; - align-items: center; - justify-content: center; - background-color: #0c0c0c; - } - - .ad-slot-header .ad-slot-header__container .ad-feedback-link-container, - .ad-slot-header .ad-slot-header__container .ad-slot__feedback { - justify-content: space-between; - } - - .ad-slot-header .ad-slot-header__container .ad::before { - content: ''; - display: block; - position: absolute; - width: 728px; - height: 90px; - animation: ad-loading-header 2s ease infinite; - top: 0; - left: 50%; - transform: translate(-50%,-50%); - } - - .kiln-edit-mode .ad-slot-header .ad-slot-header__container .ad::before { - display: none; - } - - .ad-slot-header .ad-slot-header__container .adSlotLoaded .ad:before { - content: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) header.header__wrapper-outer { - height: calc(276px + 40px); - top: -276px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__ad-label { - margin: 2px 0 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback { - padding: 0; - justify-content: space-between; - max-width: 100%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__ad-label, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__ad-label { - color: var(--theme-ad-slot-text-color); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-feedback-link, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__feedback-text, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-feedback-link, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__feedback-text { - color: var(--theme-ad-slot-text-color); - margin: 4px 0 2px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-feedback-link .icon-ui-speech-bubble, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__feedback-text .icon-ui-speech-bubble, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-feedback-link .icon-ui-speech-bubble, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__feedback-text .icon-ui-speech-bubble { - fill: var(--theme-ad-slot-text-color); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-feedback-link__label:before, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__feedback-text__label:before, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-feedback-link__label:before, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__feedback-text__label:before { - background-color: var(--theme-ad-slot-text-color); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-feedback-link:hover, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__feedback-text:hover, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-feedback-link:hover, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__feedback-text:hover { - color: var(--theme-ad-slot-text-hover); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-feedback-link:hover .icon-ui-speech-bubble, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__feedback-text:hover .icon-ui-speech-bubble, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-feedback-link:hover .icon-ui-speech-bubble, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__feedback-text:hover .icon-ui-speech-bubble { - fill: var(--theme-ad-slot-text-hover); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-feedback-link:hover .ad-feedback-link__label:before, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-feedback-link-container .ad-slot__feedback-text:hover .ad-feedback-link__label:before, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-feedback-link:hover .ad-feedback-link__label:before, - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot__feedback .ad-slot__feedback-text:hover .ad-feedback-link__label:before { - background-color: var(--theme-ad-slot-text-hover); - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot { - margin-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot.adSlotLoaded { - padding-bottom: 8px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot-header .ad-slot .ad-feedback-link-container { - display: none; - } -} - -.header__container, -.header__mobile-nav .header__nav-item-link-accordion { - justify-content: space-between; -} - -html { - scroll-padding-top: 40px; -} - -.header { - background-color: var(--theme-background); - border-bottom: 1px solid var(--theme-divider); - height: 40px; - left: 0; - right: 0; - transform: translateY(0); - transition: transform 1s ease 0s; - z-index: 100; - position: sticky; - position: -webkit-sticky; - top: 0; -} - -.userAccountVisible + .header { - transition: none; -} - -.header__nav-item-link, -.header__nav-more-link, -.header__nav-special-text { - font-weight: 500; - transition: color .4s ease; - line-height: var(--theme-header__item-link-line-height); - text-decoration: none; -} - -.kiln-edit-mode .header.component-selector-wrapper { - position: sticky; - top: 3.5rem; -} - -.header__menu-icon { - display: block; -} - -.header__outer { - height: 40px; - position: relative; - z-index: 50; -} - -.header__socials { - display: none; -} - -.header__subnav-mount { - position: relative; -} - -.header__container { - display: flex; - align-items: flex-start; - margin: 0 auto; - overflow: visible; - padding: 0 16px; - max-width: 1440px; -} - -.header__left { - display: flex; - flex: 0 0 auto; - align-items: center; - height: 40px; -} - -.header__nav { - margin-left: 16px; - display: none; - height: auto; - overflow: visible; -} - -.header__nav-more { - display: none; -} - -.header__nav-special { - display: none; - border-bottom: solid 1px var(--theme-header-mobile-nav-border-color); - width: 100%; -} - -.header__nav-special-text { - color: var(--theme-header__item-link-color); - font-size: 14px; - margin: 0 16px; - white-space: normal; -} - -.header__nav-special-text:hover { - color: var(--theme-copy-accent-hover); -} - -.header__nav-item-link, -.header__nav-more-link { - color: var(--theme-copy-accent); - font-size: 15px; - display: block; - white-space: nowrap; -} - -.header__nav-item-dropdown-item, -.header__nav-item-link:hover, -.header__nav-item:hover .header__nav-item-link, -.header__nav-more-dropdown-item, -.header__nav-more-link:hover, -.header__nav-more:hover .header__nav-item-link { - color: var(--theme-header__item-link-hover-color); -} - -.header__editionizer-button, -.header__nav-item--active > .header__nav-item-link, -.header__nav-more--active > .header__nav-item-link, -.header__nav-more-link:hover { - font-weight: 700; -} - -.header__nav-item-link-centered, -.header__nav-more-link-centered { - justify-content: center; - margin: 0; -} - -.header__nav-item-dropdown, -.header__nav-more-dropdown { - background-color: var(--theme-header__mobile-dropdown-background); - display: none; - position: absolute; - opacity: 0; - transition: opacity .3s ease; - width: fit-content; -} - -.header__nav-item-dropdown-item, -.header__nav-more-dropdown-item { - line-height: var(--theme-header__item-link-line-height); - display: block; - padding: 0 16px; - text-decoration: none; - font-size: 15px; - border-bottom: 1px solid var(--theme-header-mobile-nav-border-color); -} - -.header__nav-item-dropdown-item:hover, -.header__nav-more-dropdown-item:hover { - background-color: var(--theme-header__hover-item-hover); -} - -.header__nav-item-dropdown-item:last-of-type, -.header__nav-more-dropdown-item:last-of-type { - border-bottom: 0; -} - -.header__nav-item:hover, -.header__nav-more:hover { - background-color: var(--theme-header__item-link-hover-background-color); -} - -.header__nav-button { - cursor: pointer; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.header__subnav-item { - margin: 0; - padding: 0; -} - -.header__user-account-icon { - margin: 0 0 0 16px; - padding: 0; -} - -.header__search-icon { - margin: 0 0 0 24px; - padding: 0; -} - -.header__user-account-nav-mobile { - display: block; - margin: 0; -} - -.header__user-account-nav-desktop { - display: none; -} - -.header__close-icon, -.header__menu-icon { - margin: 0 16px 0 0; - padding: 0; -} - -.header__menu-icon, -.header__search-icon { - height: 32px; -} - -.header__close-icon, -.header__search-icon { - display: none; -} - -.header__close-icon, -.header__menu-icon, -.header__search-icon { - background: 0 0; - border: none; - box-shadow: none; -} - -.header__close-icon-svg, -.header__menu-icon-svg, -.header__search-icon-svg { - height: 24px; - width: 24px; - fill: var(--theme-icon-color); - transition: fill .4s ease; -} - -.header__close-icon:focus, -.header__menu-icon:focus, -.header__search-icon:focus { - color: #fff; -} - -.header__close-icon:active, -.header__close-icon:focus, -.header__close-icon:hover, -.header__menu-icon:active, -.header__menu-icon:focus, -.header__menu-icon:hover, -.header__search-icon:active, -.header__search-icon:focus, -.header__search-icon:hover { - cursor: pointer; -} - -.header__close-icon:active .header__close-icon-svg, -.header__close-icon:active .header__menu-icon-svg, -.header__close-icon:active .header__search-icon-svg, -.header__close-icon:focus .header__close-icon-svg, -.header__close-icon:focus .header__menu-icon-svg, -.header__close-icon:focus .header__search-icon-svg, -.header__close-icon:hover .header__close-icon-svg, -.header__close-icon:hover .header__menu-icon-svg, -.header__close-icon:hover .header__search-icon-svg, -.header__menu-icon:active .header__close-icon-svg, -.header__menu-icon:active .header__menu-icon-svg, -.header__menu-icon:active .header__search-icon-svg, -.header__menu-icon:focus .header__close-icon-svg, -.header__menu-icon:focus .header__menu-icon-svg, -.header__menu-icon:focus .header__search-icon-svg, -.header__menu-icon:hover .header__close-icon-svg, -.header__menu-icon:hover .header__menu-icon-svg, -.header__menu-icon:hover .header__search-icon-svg, -.header__search-icon:active .header__close-icon-svg, -.header__search-icon:active .header__menu-icon-svg, -.header__search-icon:active .header__search-icon-svg, -.header__search-icon:focus .header__close-icon-svg, -.header__search-icon:focus .header__menu-icon-svg, -.header__search-icon:focus .header__search-icon-svg, -.header__search-icon:hover .header__close-icon-svg, -.header__search-icon:hover .header__menu-icon-svg, -.header__search-icon:hover .header__search-icon-svg { - fill: var(--theme-icon-color-hover); -} - -.header__editionizer { - display: none; - text-align: center; - width: 100%; - z-index: 1; -} - -.header__editionizer-menu { - display: none; - padding: 0; - text-align: center; -} - -.header__editionizer-item { - margin: 16px 0; - list-style: none; -} - -.header__editionizer-item:hover { - text-decoration: underline; - text-underline-offset: var(--theme-paragraph__hover-link-offset); -} - -.header__editionizer-link { - color: var(--theme-copy-accent); - font-size: 14px; - text-decoration: none; -} - -.header__editionizer--active .header__editionizer-menu { - display: block; -} - -.header__editionizer--active .header__editionizer-button .icon-ui-caret-down { - transform: rotate(180deg); -} - -.header__editionizer-button { - background: 0 0; - border: none; - color: var(--theme-copy-accent); - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 18px; - line-height: 1.25; - cursor: pointer; -} - -.header__editionizer .header__editionizer-caret { - display: inline-block; -} - -.header__editionizer .header__editionizer-caret .icon-ui-caret-down { - fill: var(--theme-copy-accent); - transition: transform .25s ease; - height: 14px; - width: 16px; - display: block; - margin: 0 auto 0 8px; -} - -.header__editionizer .header__editionizer-desktop { - display: none; -} - -.header__right { - align-items: center; - display: flex; - position: relative; - height: 40px; -} - -.header__right .header__editionizer-button { - margin: 0 0 0 16px; - padding: 0; - height: 32px; -} - -.header__user-account-menu, -.header__user-account-nav-menu { - display: none; - width: 100%; - text-align: center; -} - -.header__audio-link, -.header__live-tv-link { - display: block; - color: var(--theme-copy-accent); - font-size: 15px; - font-weight: 400; - position: relative; - text-decoration: none; - line-height: 20px; -} - -.header__audio-link:active, -.header__audio-link:focus, -.header__audio-link:hover, -.header__live-tv-link:active, -.header__live-tv-link:focus, -.header__live-tv-link:hover { - color: var(--theme-header__item-link-hover-color); -} - -.header__subnav { - background: var(--theme-background); - border-bottom: 1px solid var(--theme-divider); - box-shadow: rgba(0,0,0,.25) 0 25px 27px -31px; - display: none; - left: 0; - max-height: calc(80vh - 40px); - overflow-y: scroll; - position: absolute; - top: 100%; - width: 100%; - z-index: 5; -} - -.header__subnav .header__container { - padding: 24px 16px; - flex-direction: column; - align-items: center; -} - -.header--active .header__subnav { - display: block; -} - -.header--active .header__menu-icon { - display: none; -} - -.header--active .header__close-icon { - display: inline-block; -} - -.header__divider { - background-color: var(--theme-divider); - margin: 24px auto; - height: 1px; - border: none; - width: 40px; -} - -.header__divider .header__menu-icon { - display: none; -} - -.header__divider .header__close-icon { - display: inline-block; -} - -.header__divider--full-width { - width: 100%; -} - -.header .subnav__specific-content { - display: none; -} - -.header .subnav:before { - content: url(/media/sites/cnn/cnn-logo-bg.svg); - display: block; - margin: auto; - width: 56px; -} - -.header__mobile-nav { - display: block; - width: calc(100% + 32px); -} - -.header__mobile-nav .header__nav { - display: block; - margin: 0 0 16px; -} - -.header__mobile-nav .header__nav-item:first-child { - border-top: solid 1px var(--theme-header-mobile-nav-border-color); -} - -.header__mobile-nav .header__nav-item-accordion--open .header__nav-item-link-accordion::after { - transform: rotate(180deg); -} - -.header__mobile-nav .header__nav-item-link { - display: flex; - padding: 8px 16px; - width: 100%; - line-height: 24px; - white-space: normal; - border-bottom: solid 1px var(--theme-header-mobile-nav-border-color); -} - -.header__mobile-nav .header__nav-item-link-accordion:after { - background-color: #fff; - display: inline-block; - content: ''; - -webkit-mask: url(/media/sites/cnn/icons/ui-caret-down.svg) no-repeat 50% 50%; - mask: url(/media/sites/cnn/icons/ui-caret-down.svg) no-repeat 50% 50%; - -webkit-mask-size: contain; - mask-size: contain; - transition: transform .5s ease; - width: 16px; - min-width: 16px; -} - -.header__mobile-nav .header__nav-item-dropdown { - display: block; - width: 100%; - opacity: 1; - overflow: hidden; - max-height: 0; - position: relative; - transition: max-height .45s ease; -} - -.header__mobile-nav .header__nav-item-dropdown--open { - transition: max-height .8s ease; - max-height: 1200px; -} - -.header__mobile-nav .header__nav-item-dropdown-item { - padding: 8px 16px; - font-size: 14px; - line-height: 24px; -} - -.underscored .header__nav-item-dropdown, -.underscored .header__nav-more-dropdown { - margin-top: -1px; -} - -.header__wrapper-outer { - position: sticky; - z-index: 10000; - height: 40px; - top: 0; - pointer-events: none; -} - -.header__wrapper-inner { - position: sticky; - top: 0; - height: fit-content; - min-height: 40px; - pointer-events: all; -} - -@media screen and (min-width:480px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__container { - max-width: 1440px; - width: 100%; - padding: 0 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__right .header__editionizer-button { - margin: 0 0 0 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__user-account-icon, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__user-account-nav-icon { - margin: 0 0 0 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__user-account-nav-mobile { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header .user-account-nav--auth .user-account-nav__icon-button--auth, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__user-account-nav-desktop { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header .user-account-nav--unauth .user-account-nav__icon-button--unauth, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header .user-account-nav__menu-button, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__audio-link-mobile, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__live-tv-link-mobile, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__mobile-only { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header .user-account-nav--unauth .user-account-nav__text-button--unauth { - border: 1px solid var(--theme-header__login-button); - box-sizing: border-box; - border-radius: 8px; - padding: 4px 8px; - font-size: 14px; - line-height: 20px; - height: 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header .user-account-nav--unauth .user-account-nav__text-button--unauth:hover { - background-color: var(--theme-divider); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__search-icon { - margin: 0 0 0 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__audio-link { - margin: 0 24px 0 0; - } -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .header_nav-item-link { - font-size: 18px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__audio-link-desktop { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__audio-link-mobile, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__live-tv-link-mobile { - letter-spacing: .2px; - line-height: 26px; - font-size: 18px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__live-tv-link-mobile { - margin-bottom: 12px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__mobile-only { - display: block; - } -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__close-icon, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__menu-icon { - margin: 0 24px 0 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav { - position: relative; - display: contents; - flex-wrap: wrap; - overflow: hidden; - visibility: hidden; - height: 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-special { - width: auto; - border: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-more { - height: var(--theme-header__item-link-line-height); - transition: background-color .2s ease; - padding: 0 12px; - text-align: left; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item-dropdown, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-more-dropdown { - background-color: var(--theme-header__dropdown-background); - margin: 0 0 0 -12px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item-dropdown-item, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-more-dropdown-item { - border-width: 0 1px 1px; - border-style: solid; - border-color: var(--theme-header__dropdown-border-color); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item:first-of-type, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-more:first-of-type { - margin-left: 12px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item:last-of-type, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-more:last-of-type { - border-bottom: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item:hover > .header__nav-item-dropdown, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-more:hover > .header__nav-item-dropdown { - display: block; - opacity: 1; - z-index: 300; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-container { - display: contents; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__container { - padding: 0 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__audio-link-desktop, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__live-tv-link-desktop { - white-space: nowrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer { - position: relative; - display: block; - padding-top: 0; - width: 100%; - white-space: nowrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer .header__editionizer-header { - display: block; - padding: 0; - line-height: 20px; - width: calc(100% / 5); - text-align: left; - background: 0 0; - border: none; - color: var(--theme-copy-follow); - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 18px; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer .header__editionizer-desktop { - display: flex; - width: inherit; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer .header__editionizer-mobile { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer-link { - display: inherit; - padding: 0; - line-height: 20px; - width: fit-content; - color: var(--theme-edition-picker-link); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer-link:hover { - text-decoration: underline; - -webkit-text-decoration-color: var(--theme-edition-picker-link); - text-decoration-color: var(--theme-edition-picker-link); - text-underline-offset: var(--theme-paragraph__hover-link-offset); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer-link[data-current-edition] { - color: #c00; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer-link:first-of-type .header__editionizer-list { - color: #c00; - font-weight: 700; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer-item { - margin: 0; - width: calc(100% / 5); - text-align: left; - padding: 0; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__right { - padding: 0 0 0 80px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__right .header__search-icon { - display: inline-block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer .header__divider, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__user-account-menu .header__divider, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__user-account-nav-menu .header__divider { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__subnav { - max-height: calc(100vh - 40px); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__subnav:before { - content: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__subnav .header__editionizer { - display: flex; - align-self: flex-start; - align-items: baseline; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__subnav .header__container { - padding: 24px 16px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__socials { - align-items: flex-end; - display: flex; - flex-flow: column; - width: 100%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__mobile-nav, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__mobile-only { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header .subnav:before { - content: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode).kiln-edit-mode .header__nav { - visibility: visible; - } -} - -@media screen and (max-width:959px) { - body:not(.layout-homepage-mobile.kiln-edit-mode).menu-opened { - position: fixed; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__subnav .header__editionizer { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__left .brand-logo { - z-index: 7; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__left .brand-logo:after { - content: ''; - display: block; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .header .search { - display: none; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .header__subnav { - background: #0c0c0c; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode).underscored .header__subnav * { - color: #fff; - fill: #fff; - } -} - -@media screen and (min-width:960px) and (max-width:1279px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav { - display: contents; - } -} - -@media screen and (min-width:1280px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav { - height: auto; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-special { - white-space: nowrap; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__nav-item { - display: block; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__container { - padding: 0 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__right .header__editionizer-header { - margin: 0 0 0 24px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__subnav .header__container { - padding: 40px 32px; - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer .header__editionizer-header, - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__editionizer-item { - width: calc(100% / 7); - } - - body:not(.layout-homepage-mobile.kiln-edit-mode) .header__divider { - width: 100%; - margin: 24px auto; - } -} - -.kiln-edit-mode .header__wrapper-outer { - height: auto; - position: relative; - top: unset; -} - -.kiln-edit-mode .header__inner { - top: 55px; -} - -.kiln-edit-mode.homepage-mobile--layout .header__inner, -.kiln-edit-mode.homepage-mobile-app--layout .header__inner { - margin: auto; -} - -.kiln-edit-mode.homepage-mobile--layout .header__inner { - width: 320px; -} - -.kiln-edit-mode.homepage-mobile-app--layout .header__inner { - width: 375px; -} - -.alerts, -.alerts__container { - position: relative; - width: 100%; -} - -.alerts { - z-index: 2; -} - -.alerts--visible { - display: block; -} - -.alerts__item { - background-color: #c00; - color: #fff; - display: flex; - justify-content: center; - z-index: 1; -} - -.alerts__container { - margin: 16px; -} - -.alerts__content, -.alerts__title { - font-weight: 700; - font-size: 16px; -} - -.alerts__title { - text-transform: uppercase; - margin-bottom: 8px; -} - -.alerts__close { - position: absolute; - right: 0; - margin-right: 8px; - cursor: pointer; - height: 50px; - width: 50px; -} - -.alerts__close:after, -.alerts__close:before { - position: absolute; - left: 15px; - content: ' '; - height: 22px; - width: 2px; - background-color: #fff; - transform: rotate(45deg); -} - -.alerts__close:after { - transform: rotate(-45deg); -} - -.alerts__content { - line-height: 22px; -} - -.alerts__content ul { - padding-left: 18px; - margin: 0; -} - -.alerts__content a { - text-decoration: none; - color: #fff; -} - -.alerts__content a:hover { - text-decoration: underline; - text-decoration-thickness: 1px; - text-underline-offset: 4px; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .alerts__container { - max-width: calc(1440px - 63px); - width: calc(100% - (2 * 32px)); - } -} - -.custom-placeholder .status-label, -.kiln-edit-mode .container_headline-carousel__headline:hover, -html { - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--product-card .ui-textbox.has-floating-label .ui-textbox__label-text.is-inline, -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--product-offer-card .ui-textbox.has-floating-label .ui-textbox__label-text.is-inline, -.kiln-edit-mode .tabcontent__section * { - pointer-events: none; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline__slides .image img, -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline_slides.kiln-field__disabled, -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline_unfurled__slides-unfurled .image img, -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline_unfurled__slides-unfurled.kiln-field__disabled, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline__slides .image img, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline_slides.kiln-field__disabled, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline_unfurled__slides-unfurled .image img, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline_unfurled__slides-unfurled.kiln-field__disabled, -.kiln-edit-mode .tabcontent__select:disabled { - opacity: 1; -} - -html { - box-sizing: border-box; - min-height: 100%; - min-width: 320px; - overflow-x: hidden; - -webkit-text-size-adjust: 100%; - text-size-adjust: 100%; - width: 100%; -} - -*, -:after, -:before { - box-sizing: inherit; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - text-rendering: optimizelegibility; -} - -::selection { - background-color: #e7e7e7; -} - -.layout, -.layout__content-wrapper { - background-color: #fff; - width: 100%; -} - -.layout { - margin: 0; - padding: 0; -} - -.layout__content-wrapper { - display: inline-block; - position: relative; -} - -.kiln-edit-mode .contributors-list .add-contributor-wrapper .add-contributor-button, -.kiln-edit-mode .kiln-overlay-form.card button[aria-label='Add Card'], -.kiln-edit-mode .kiln-overlay-form.card button[aria-label='Duplicate Card'], -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--voter-tool-detail .complex-list-item-actions-right > .ui-button, -.layout__top:empty { - display: none; -} - -.layout__bottom, -.layout__top, -.layout__wrapper { - margin: 0 auto; - padding: 0 16px; - width: 100%; - max-width: 1440px; - min-width: 300px; -} - -.layout__bottom { - padding: 0; - max-width: 100%; -} - -@media screen and (min-width:960px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout__top, - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout__wrapper { - padding: 0 32px; - } -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--product-card .input-container, -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--product-offer-card .input-container { - padding: 15px 30px 120px; -} - -.kiln-field button:focus, -.kiln-field input:focus, -.kiln-field select:focus, -.kiln-field textarea:focus, -.kiln-wrapper button:focus, -.kiln-wrapper input:focus, -.kiln-wrapper select:focus, -.kiln-wrapper textarea:focus { - outline: 0; -} - -.kiln-edit-mode .kiln-overlay-form.byline button[aria-label='Do Magic'] { - position: absolute; - right: -1px; - margin-top: -11px; - cursor: default; -} - -.kiln-edit-mode .kiln-overlay-form.byline button[aria-label='Do Magic']:hover { - background: 0 0; -} - -.kiln-edit-mode .kiln-overlay-form.card__label { - visibility: visible; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--product-offer-card { - top: 8vh; - left: 50vw; - width: fit-content; - overflow: hidden; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden, -.kiln-edit-mode .gallery-inline_unfurled, -.kiln-edit-mode [data-component-name=correction] { - overflow: visible; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--product-offer-card .ui-textbox__counter { - float: right; - margin-bottom: 8px; - position: relative; - top: 0; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--image { - top: 10%; - min-height: 80vh; - width: initial; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--image .rich-text-input .rich-text__feedback { - color: rgba(0,0,0,.54); - font-size: .875em; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--video-resource { - min-height: 80vh; - left: 50vw; - width: 85vw; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--feed .ui-textbox__textarea { - min-height: 20vh; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--voter-tool-detail .complex-list .complex-list .complex-list .complex-list-item-actions-right > .ui-button, -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--voter-tool-detail .ui-tab:nth-child(3) .complex-list .complex-list .ui-button { - display: inline-block; -} - -.kiln-edit-mode .kiln-overlay-form.kiln-overlay-form--configuration .static-input-text { - height: auto; - min-height: 2rem; -} - -.kiln-edit-mode .kiln-overlay-form button.collapse-component__button { - display: none; -} - -.kiln-edit-mode .ui-tabs.right-drawer .ui-tab { - word-break: break-word; -} - -.kiln-edit-mode .simple-modal--image-search-modal .ui-modal__container { - width: 80vw; - max-width: 1500px; -} - -.kiln-edit-mode .simple-modal--selective-publishing .ui-confirm.selective-publishing { - word-wrap: break-word; -} - -.kiln-edit-mode .image.component-selector-wrapper { - min-height: 40px; -} - -.kiln-edit-mode .image.component-selector-wrapper .image__metadata .image__credit { - visibility: visible; -} - -.kiln-edit-mode .image_inline-full, -.kiln-edit-mode .image_inline-small { - z-index: 1000; -} - -.kiln-edit-mode .container_bulleted-headlines__item, -.kiln-edit-mode .container_list-headlines-with-images__item { - padding: 0 24px 12px; -} - -.kiln-edit-mode .container_list-headlines-with-images .icon-sig-photo-default, -.kiln-edit-mode .container_list-headlines-with-images .icon-sig-video { - margin-right: 4px; -} - -.kiln-edit-mode .container_lead-plus-headlines { - padding: 16px; -} - -.kiln-edit-mode .container_lead-plus-headlines__item:last-child { - margin-bottom: 12px; - padding-bottom: 12px; -} - -.kiln-edit-mode.layout-homepage-mobile { - width: 414px; - margin: auto; - background: repeating-linear-gradient(to bottom,#000,#000 2px,transparent 1px,transparent 880px); - padding: 0; -} - -.kiln-edit-mode.layout-homepage-mobile__bottom, -.kiln-edit-mode.layout-homepage-mobile__top, -.kiln-edit-mode.layout-homepage-mobile__wrapper { - margin: 0 auto; -} - -.kiln-edit-mode.layout-homepage-mobile-app { - background: repeating-linear-gradient(to bottom,#000,#000 2px,transparent 1px,transparent 880px); - padding: 0; -} - -.kiln-edit-mode.layout-homepage-mobile-app__content { - width: 414px; - margin: auto; -} - -.kiln-edit-mode.layout-homepage-mobile-app__bottom, -.kiln-edit-mode.layout-homepage-mobile-app__top, -.kiln-edit-mode.layout-homepage-mobile-app__wrapper { - margin: 0 auto; -} - -.kiln-edit-mode .product-comparison .ql-bubble .ql-tooltip-editor input[type=text] { - left: 0; -} - -.kiln-edit-mode .product-comparison .ql-editor { - text-align: left; -} - -.kiln-edit-mode .ad-slot-header, -.kiln-edit-mode .ad-slot-header__wrapper, -.kiln-edit-mode .header__wrapper-outer { - height: unset; - min-height: unset; - top: unset; -} - -.kiln-edit-mode .ad-slot { - align-items: center; - background-color: #f8f8f8; - display: flex; - justify-content: center; - margin: 0 0 10px; - min-height: 48px; - position: relative; - flex-direction: column; -} - -.kiln-edit-mode .ad-slot .ad-feedback-link-container, -.kiln-edit-mode .ad-slot .ad-slot__feedback { - display: none; -} - -.kiln-edit-mode .ad-slot.component-selector-wrapper { - min-height: 48px; -} - -.kiln-edit-mode .ad-slot[data-desktop-slot-id]::before { - color: #6e6e6e; - content: 'AD SLOT (desktop: ' attr(data-desktop-slot-id) ')'; - display: block; - font-size: 16px; -} - -.kiln-edit-mode .ad-slot[data-mobile-slot-id]::after { - color: #6e6e6e; - content: 'AD SLOT (mobile: ' attr(data-mobile-slot-id) ')'; - display: block; - font-size: 16px; -} - -.kiln-edit-mode [data-uri*='/bizdev-outbrain/'] .kiln-permanent-placeholder { - min-height: 50px; -} - -.kiln-edit-mode [data-uri*='/bizdev-healthgrade/'], -.kiln-edit-mode [data-uri*='/bizdev-outbrain/'], -.kiln-edit-mode [data-uri*='/bizdev-nativo/'] { - width: 100%; - margin-bottom: 10px; -} - -.kiln-edit-mode .layout__bottom [data-placement] { - display: none; -} - -.kiln-edit-mode .openweb-convo { - margin: 8px 0; -} - -html[data-layout-uri*='homepage/instances/homepage-domestic'] .kiln-edit-mode .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='homepage-mobile/instances/homepage-domestic'] .kiln-edit-mode .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='homepage/instances/homepage-international'] .kiln-edit-mode .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='homepage-mobile/instances/homepage-international'] .kiln-edit-mode .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/cnn-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/cnn-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/us-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/us-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/world-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/world-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/politics-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/politics-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/business-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/business-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/opinions-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/opinions-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/health-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/health-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/entertainment-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/entertainment-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/style-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/style-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/travel-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/travel-article-feature-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/sport-article-v'] .ad-slot:not(.adSlotLoaded), -html[data-layout-uri*='layout-with-rail/instances/sport-article-feature-v'] .ad-slot:not(.adSlotLoaded) { - height: auto; - display: flex; - margin-bottom: 16px; - min-height: 0; - animation: none; - padding: 0; -} - -.layout-profile__top .headline, -body[class*=homepage-mobile].kiln-edit-mode [data-desktop-slot-id]:not([data-mobile-slot-id]) { - display: none; -} - -.new-page-nav .filterable-list-item-children { - margin-left: 15px; -} - -.html-embed .kiln-permanent-placeholder { - min-height: 18px; -} - -.kiln-placeholder { - margin-bottom: 12px; -} - -.inline-placeholder .kiln-placeholder { - background: 0 0; - padding: 0; - margin: 0; - min-height: initial; - display: block; -} - -.inline-placeholder .kiln-placeholder .placeholder-icon, -.kiln-internals .clay-kiln-logo.stellar > svg, -.layout-shared-components .kiln-wrapper.view-mode { - display: none; -} - -.inline-placeholder .kiln-placeholder .placeholder-text { - color: #8c8c8c; - font-family: inherit; - font-size: inherit; - font-weight: inherit; - text-align: left; - text-transform: none; - width: 100%; -} - -.publish-location-form .publishSectionTop { - margin-bottom: 20px; -} - -.publish-location-form .publishSectionBottom input[disabled] { - border-bottom-style: dotted; - color: #404040; - cursor: default; -} - -.kiln-internals .clay-kiln-logo.stellar:before { - background-image: url(/media/sites/cnn/stellar-logo.svg); - background-size: 100%; - background-repeat: no-repeat; - content: ' '; - color: transparent; - position: absolute; - left: calc(50vw - 155px); - top: calc(50vh - 55px); - width: 300px; - height: 100px; -} - -.kiln-internals .clay-kiln.stellar .breaking-news .ui-button--size-normal, -.kiln-internals .clay-kiln.stellar .component-search__add-button, -.kiln-internals .clay-kiln.stellar .media-manager .ui-fileupload, -.kiln-internals .clay-kiln.stellar .ui-toolbar--type-colored, -.kiln-internals .clay-kiln.stellar .ui-toolbar__body .ui-button, -.kiln-internals .clay-kiln.stellar .ui-toolbar__body > .ui-button, -.kiln-internals .clay-kiln.stellar .ui-toolbar__right .toolbar-publish-button, -.kiln-internals .clay-kiln.stellar .view-menu-button { - background-color: #1976d2; -} - -.kiln-internals .clay-kiln.stellar .component-search__add-button:hover, -.kiln-internals .clay-kiln.stellar .ui-toolbar__body .ui-button:hover, -.kiln-internals .clay-kiln.stellar .ui-toolbar__right .toolbar-publish-button:hover { - background-color: rgba(0,0,0,.1); -} - -.kiln-internals .clay-kiln.stellar .breaking-news .ui-button--size-normal:hover, -.kiln-internals .clay-kiln.stellar .media-manager .ui-fileupload:hover { - background: #0066ce; -} - -.kiln-wrapper.view-mode .ui-fab { - font-size: 16px; -} - -.kiln-wrapper.view-mode .ui-fab--size-normal, -.kiln-wrapper.view-mode .ui-fab--size-normal .ui-fab__focus-ring { - height: 3.5em; - width: 3.5em; -} - -.kiln-wrapper.view-mode .ui-fab--size-small, -.kiln-wrapper.view-mode .ui-fab--size-small .ui-fab__focus-ring { - width: 2.5em; - height: 2.5em; -} - -.kiln-wrapper.view-mode .ui-fab__icon .ui-icon { - font-size: 1.5em; -} - -.kiln-edit-mode .interactive__edit-info { - background-color: #e3f2fd; - margin: 16px 0; - color: #0a0a0a; - padding: 24px; -} - -.kiln-edit-mode .interactive__title { - display: inline-block; - border-bottom: 2px solid #0a0a0a; -} - -.kiln-edit-mode .interactive__overflow { - width: 100%; - overflow: scroll; -} - -.tooltip { - font-size: 20px; -} - -.tooltip .tooltip-content, -.tooltip .tooltip-content .ui-tooltip { - font-size: .8125em; -} - -.tooltip .tooltip-content { - height: 1.625em; -} - -.custom-placeholder { - position: relative; -} - -.custom-placeholder__right { - position: absolute; - display: flex; - align-items: center; - height: 100%; - top: 0; - right: 0; -} - -.custom-placeholder .placeholder-label { - justify-content: start; -} - -.custom-placeholder .status-label { - font-size: 12px; - line-height: 12px; - color: #fff; - margin: 12px; - padding: 8px; - border-radius: 16px; -} - -.custom-placeholder.ready { - border-top: 2px solid #58e59e; -} - -.custom-placeholder.ready .status-label { - background-color: #58e59e; -} - -.custom-placeholder.new, -.custom-placeholder.updated { - border-top: 2px solid #ff7979; -} - -.custom-placeholder.new .status-label, -.custom-placeholder.updated .status-label { - background-color: #ff7979; -} - -.kiln-edit-mode button.quick-bar-info { - display: none; -} - -.kiln-search-active { - display: flex; - flex-flow: column nowrap; - overflow: auto; -} - -.kiln-edit-mode .kiln-overlay-form--product-card .input-container fieldset[data-name=datetime] + fieldset[data-name=datetime], -.kiln-edit-mode .kiln-overlay-form--product-offer-card .input-container fieldset[data-name=datetime] + fieldset[data-name=datetime], -.layout.tabs { - display: none; -} - -.kiln-search-active .kiln-edit-mode:not(.layout-homepage-mobile) .header { - margin-left: 400px; - width: 100%; -} - -.kiln-search-active .kiln-edit-mode:not(.layout-homepage-mobile) .header__container { - margin-left: 0; -} - -.kiln-search-active .kiln-edit-mode:not(.layout-homepage-mobile) .layout__bottom, -.kiln-search-active .kiln-edit-mode:not(.layout-homepage-mobile) .layout__wrapper { - margin-left: 400px; -} - -.kiln-search-active .kiln-edit-mode:not(.layout-homepage-mobile) .footer__inner { - margin-left: 0; -} - -.kiln-edit-mode .container.container_headline-carousel.component-selector-wrapper .container_headline-carousel__cards-wrapper { - overflow: scroll; -} - -.kiln-edit-mode .container.container_headline-carousel.component-selector-wrapper .container_headline-carousel__cards-wrapper .container_headline-carousel__field-wrapper { - overflow: unset; -} - -.kiln-edit-mode .article-text-banner_underscored-deals { - padding: 0; -} - -.kiln-edit-mode .article-text-banner_underscored-deals__container { - height: unset; - margin-top: 8px; - margin-bottom: 8px; -} - -.kiln-edit-mode .product-card-container_carousel__container-items:has(.sticker) .product-card_carousel__title, -.kiln-edit-mode .product-card-container_grid__container-items:has(.sticker) .product-card_carousel__title, -.kiln-edit-mode .product-offer-card-container_carousel__container-items:has(.sticker) .product-offer-card_carousel__title, -.kiln-edit-mode .product-offer-card-container_grid__container-items:has(.sticker) .product-offer-card_carousel__title { - margin-top: 0; -} - -.kiln-edit-mode .article-text-banner_underscored-deals .kiln-permanent-placeholder { - min-height: unset; -} - -.kiln-edit-mode .article-text-banner_underscored-deals-with-bullets .kiln-permanent-placeholder { - min-height: auto; -} - -.kiln-edit-mode .container_headline-carousel__field-links, -.kiln-edit-mode .container_shelf-carousel__field-links { - padding: 38px 30px 15px; - margin-bottom: 10px; -} - -.kiln-edit-mode .container.container_shelf-carousel.component-selector-wrapper .container_shelf-carousel__cards-wrapper { - overflow: scroll; -} - -.kiln-edit-mode .container.container_shelf-carousel.component-selector-wrapper .container_shelf-carousel__field-wrapper { - overflow: unset; -} - -.kiln-edit-mode .container.container_shelf-carousel.component-selector-wrapper .container_shelf-carousel__item.container__item { - min-width: unset; -} - -.kiln-edit-mode .container_headline-carousel__title { - padding: 0 25px; - margin-bottom: -30px; -} - -.kiln-edit-mode .accordion-item__content { - max-height: 100%; - padding: 0 0 40px; -} - -.kiln-edit-mode .accordion-item__content > * { - padding: 0 16px; -} - -.kiln-edit-mode .product-card-container_carousel__container-items:has(.sticker) .product-card_carousel__sticker-container, -.kiln-edit-mode .product-card-container_grid__container-items:has(.sticker) .product-card_carousel__sticker-container { - margin-bottom: 0; - height: fit-content; -} - -.kiln-edit-mode .product-card-container_carousel__container-items:has(.sticker) .product-card_carousel .product-card_carousel__image, -.kiln-edit-mode .product-card-container_grid__container-items:has(.sticker) .product-card_carousel .product-card_carousel__image { - margin-bottom: 58px; -} - -.kiln-edit-mode .product-card-container_carousel__container-items:has(.sticker) .product-card_carousel:has(.sticker) .product-card_carousel__image, -.kiln-edit-mode .product-card-container_grid__container-items:has(.sticker) .product-card_carousel:has(.sticker) .product-card_carousel__image { - margin-bottom: 0; -} - -.kiln-edit-mode .product-offer-card-container_carousel__container-items:has(.sticker) .product-offer-card_carousel__sticker-container, -.kiln-edit-mode .product-offer-card-container_grid__container-items:has(.sticker) .product-offer-card_carousel__sticker-container { - margin-bottom: 0; - height: fit-content; -} - -.kiln-edit-mode .product-offer-card-container_carousel__container-items:has(.sticker) .product-offer-card_carousel .product-offer-card_carousel__image, -.kiln-edit-mode .product-offer-card-container_grid__container-items:has(.sticker) .product-offer-card_carousel .product-offer-card_carousel__image { - margin-bottom: 58px; -} - -.kiln-edit-mode .product-offer-card-container_carousel__container-items:has(.sticker) .product-offer-card_carousel:has(.sticker) .product-offer-card_carousel__image, -.kiln-edit-mode .product-offer-card-container_grid__container-items:has(.sticker) .product-offer-card_carousel:has(.sticker) .product-offer-card_carousel__image { - margin-bottom: 0; -} - -.kiln-edit-mode .product-card-container_landing-page .product-card_landing .kiln-permanent-placeholder, -.kiln-edit-mode .product-card-container_landing-page .product-offer-card_landing .kiln-permanent-placeholder, -.kiln-edit-mode .product-offer-card-container_landing-page .product-card_landing .kiln-permanent-placeholder, -.kiln-edit-mode .product-offer-card-container_landing-page .product-offer-card_landing .kiln-permanent-placeholder { - min-width: 100%; -} - -.kiln-edit-mode .product-offer-card.component-selector-wrapper__sticker-container [data-sticker-expired-or-unsupported=true], -.kiln-edit-mode .product-offer-card.component-selector-wrapper__sticker-container.hide, -.kiln-edit-mode .product-offer-card_carousel.component-selector-wrapper__sticker-container [data-sticker-expired-or-unsupported=true], -.kiln-edit-mode .product-offer-card_carousel.component-selector-wrapper__sticker-container.hide, -.kiln-edit-mode .product-offer-card_expanded.component-selector-wrapper__sticker-container [data-sticker-expired-or-unsupported=true], -.kiln-edit-mode .product-offer-card_expanded.component-selector-wrapper__sticker-container.hide, -.kiln-edit-mode .product-offer-card_listing-item.component-selector-wrapper__sticker-container [data-sticker-expired-or-unsupported=true], -.kiln-edit-mode .product-offer-card_listing-item.component-selector-wrapper__sticker-container.hide, -.kiln-edit-mode .product-offer-card_listing.component-selector-wrapper__sticker-container [data-sticker-expired-or-unsupported=true], -.kiln-edit-mode .product-offer-card_listing.component-selector-wrapper__sticker-container.hide { - display: block; -} - -.kiln-edit-mode .product-offer-card__sticker-container, -.kiln-edit-mode .product-offer-card_expanded__sticker-container { - margin-top: 68px; -} - -.kiln-edit-mode .product-offer-card__sticker-container .sticker, -.kiln-edit-mode .product-offer-card_expanded__sticker-container .sticker { - width: fit-content; - position: relative; - top: 0; -} - -.kiln-edit-mode .product-offer-card .kiln-permanent-placeholder, -.kiln-edit-mode .product-offer-card_expanded .kiln-permanent-placeholder { - min-height: auto; -} - -.kiln-edit-mode .product-quick-picks--sponsorship .kiln-permanent-placeholder { - min-height: auto; -} - -.kiln-edit-mode .call-to-action__cta-container .image.portrait.image_hide-placeholder, -.kiln-edit-mode .call-to-action__cta-container div, -.kiln-edit-mode .call-to-action__cta-container div.image, -.kiln-edit-mode .call-to-action__cta-container div.portrait { - max-width: initial; -} - -.kiln-edit-mode .call-to-action__cta-container .call-to-action__button-text, -.kiln-edit-mode .call-to-action__cta-container a { - color: #fff; - text-decoration: none; - width: 50%; - left: 25%; -} - -.kiln-edit-mode .sticker { - display: flex; -} - -.kiln-edit-mode .layout.tabs { - display: block; -} - -.kiln-edit-mode .layout-homepage-mobile__content-wrapper .layout.tabs { - width: 90vw; - margin-left: -35vw; -} - -.kiln-edit-mode .tabs { - margin-bottom: 0; -} - -.kiln-edit-mode .tabs:not(.active) { - display: none; -} - -.kiln-edit-mode .tabs.layout { - background: #edf4fb; - border-bottom: solid 1px #1976d2; - margin-bottom: 10px; -} - -.kiln-edit-mode .tabs__wrapper { - line-height: 46px; - max-width: 1440px; - margin: 0 auto; - padding-top: 2px; -} - -.sponsorship .kiln-edit-mode .tabs__wrapper { - max-width: 1100px; -} - -.kiln-edit-mode .tabs__list { - list-style: none; - margin: 0; - padding: 0; - display: flex; - flex-wrap: wrap; -} - -.kiln-edit-mode .tabs__item { - border-bottom: solid 4px transparent; - color: #5c5c5c; - cursor: pointer; - display: inline; - font-size: 14px; - font-weight: 700; - letter-spacing: 1px; - padding: 10px 30px; - text-transform: uppercase; -} - -.kiln-edit-mode .tabs__item.active { - border-bottom-color: #1976d2; - color: #000; -} - -.kiln-edit-mode .tabs__item:hover { - border-bottom-color: #8cbae8; -} - -.kiln-edit-mode .tabcontent { - margin: 32px 0 48px; -} - -.kiln-edit-mode .tabcontent__config, -.kiln-edit-mode .tabcontent__meta, -.kiln-edit-mode .tabcontent__other { - background-color: #fafafa; - border: 1px solid #edf0f2; - padding: 18px; - margin-bottom: 18px; -} - -.kiln-edit-mode .tabcontent:not(.active) { - display: none; -} - -.kiln-edit-mode .tabcontent__settings { - padding-top: 18px; -} - -.kiln-edit-mode .tabcontent__meta, -.kiln-edit-mode .tabcontent__other { - margin-top: 18px; -} - -.kiln-edit-mode .tabcontent__meta .header, -.kiln-edit-mode .tabcontent__other .header { - font-size: 18px; - font-weight: 700; - margin-bottom: 12px; -} - -.kiln-edit-mode .tabcontent__group, -.kiln-edit-mode .tabcontent__subgroup { - position: relative; -} - -.kiln-edit-mode .tabcontent__subgroup { - margin-bottom: 14px; -} - -.kiln-edit-mode .tabcontent__help, -.kiln-edit-mode .tabcontent__label { - color: #8c8c8c; - margin-bottom: 2px; -} - -.kiln-edit-mode .tabcontent__help { - font-size: 13px; -} - -.kiln-edit-mode .tabcontent__underline { - border-bottom: 1px solid #8c8c8c; - margin-bottom: 14px; - margin-right: 32px; -} - -.kiln-edit-mode .tabcontent__underline .kiln-placeholder { - margin: 0; - padding: 0; -} - -.kiln-edit-mode .tabcontent__wand { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='28' viewBox='0 0 26 28'%3E%3Cpath d='M18.594 9.078L23.172 4.5 21.5 2.828l-4.578 4.578zM25.578 4.5q0 .422-.281.703L5.203 25.297q-.281.281-.703.281t-.703-.281L.703 22.203q-.281-.281-.281-.703t.281-.703L20.797.703q.281-.281.703-.281t.703.281l3.094 3.094q.281.281.281.703zM4.469 1.531L6 2l-1.531.469L4 4l-.469-1.531L2 2l1.531-.469L4 0zm5.469 2.531L13.001 5l-3.063.938L9 9.001l-.938-3.063L4.999 5l3.063-.938L9 .999zm14.531 7.469L26 12l-1.531.469L24 14l-.469-1.531L22 12l1.531-.469L24 10zm-10-10L16 2l-1.531.469L14 4l-.469-1.531L12 2l1.531-.469L14 0z'%3E%3C/path%3E%3C/svg%3E"); - background-size: 24px 24px; - background-repeat: no-repeat; - width: 24px; - height: 24px; - display: block; - position: absolute; - right: 0; - bottom: 0; -} - -.kiln-edit-mode .tabcontent__thumbnail { - max-width: 300px; -} - -.kiln-edit-mode .tabcontent__thumbnail .image, -.kiln-edit-mode .tabcontent__thumbnail .kiln-placeholder { - margin-bottom: 0; -} - -.kiln-edit-mode .tabcontent__thumbnail .kiln-placeholder { - min-height: 175px; -} - -.kiln-edit-mode .tabcontent__thumbnail .image__caption { - display: none; -} - -.kiln-edit-mode .tabcontent__section { - margin: 56px 0 0; - padding: 0; - border: 0; - cursor: pointer; -} - -.kiln-edit-mode .tabcontent__section:nth-of-type(1) { - margin-top: 0; -} - -.kiln-edit-mode .tabcontent__header { - margin-bottom: 12px; - margin-top: 0; -} - -.kiln-edit-mode .tabcontent__text { - margin: 0; - font-size: 14px; -} - -.kiln-edit-mode .tabcontent__text--disabled { - color: #6e6e6e; -} - -.kiln-edit-mode .tabcontent__block { - display: block; - margin: 32px 0 0; -} - -.kiln-edit-mode .tabcontent__block:nth-of-type(1) { - margin-top: 0; -} - -.kiln-edit-mode .tabcontent__block--inline { - display: flex; -} - -.kiln-edit-mode .tabcontent__alert, -.kiln-edit-mode .tabcontent__label { - display: block; - margin: 0 0 4px; - font-size: 14px; - line-height: 20px; - color: #6e6e6e; -} - -.kiln-edit-mode .tabcontent__alert { - color: #c00; -} - -.kiln-edit-mode .tabcontent__checkbox, -.kiln-edit-mode .tabcontent__select { - -webkit-appearance: none; - -moz-appearance: none; - border-radius: 0; -} - -.kiln-edit-mode .tabcontent__select { - width: 100%; - max-width: 340px; - padding: 0 0 8px; - border: 0; - border-bottom: 1px solid #6e6e6e; - background: url("data:image/svg+xml,") right center no-repeat; - font-size: 14px; - line-height: 20px; - color: #0c0c0c; - text-transform: capitalize; -} - -.kiln-edit-mode .tabcontent__checkbox { - display: block; - width: 20px; - height: 20px; - margin-right: 8px; - border: 1px solid #e6e6e6; - color: #fff; -} - -.kiln-edit-mode .tabcontent__image .image__caption, -.kiln-edit-mode .tabcontent__image .quick-icon-remove { - display: none; -} - -.kiln-edit-mode .tabcontent__checkbox--checked { - border-color: #3061f2; - background: url("data:image/svg+xml,") center center no-repeat #3061f2; -} - -.kiln-edit-mode .tabcontent__image { - max-width: 340px; - position: relative; -} - -.kiln-edit-mode .tabcontent__image .tabcontent__wand { - right: -34px; - top: 0; -} - -.kiln-edit-mode .tabcontent__image .image, -.kiln-edit-mode .tabcontent__image .kiln-placeholder { - border-bottom: 0; - margin: 0; -} - -.kiln-edit-mode .tabcontent__image .kiln-placeholder { - min-height: 175px; -} - -.kiln-edit-mode .configuration { - display: block; -} - -.kiln-edit-mode .container .card button.quick-bar-dupe, -.kiln-edit-mode .container .container__field-links > .kiln-placeholder .placeholder-add-component { - display: none; -} - -.kiln-edit-mode .layout-homepage-mobile__content-wrapper .configuration { - width: 90vw; - margin-left: -36vw; -} - -.kiln-edit-mode .container .card .container__text-edit .icon-sig-photo-default, -.kiln-edit-mode .container .card .container__text-edit .icon-sig-video { - position: relative; - height: 16px; - width: 16px; - top: 2px; -} - -.kiln-edit-mode .container .container__field-links > .kiln-placeholder { - height: 68px; -} - -.kiln-edit-mode .container .container__field-links > .kiln-placeholder:after, -.kiln-edit-mode .container .container__field-links > .kiln-placeholder:before { - color: #1976d2; -} - -.kiln-edit-mode .container .container__field-links > .kiln-placeholder:after { - content: 'Drag Card Here'; - font-family: Noto Sans,Arial,sans-serif; - font-size: 14px; - font-weight: 400; - letter-spacing: .16px; - line-height: 18px; - text-transform: uppercase; -} - -.kiln-edit-mode .container .container__field-links > .kiln-placeholder:before { - content: 'add'; - font-family: 'Material Icons'; - font-size: 24px; -} - -.kiln-edit-mode .container .container__field-links--reorderable .container__link:hover { - cursor: move; - outline: #617e8b solid 2px; - outline-offset: 2px; -} - -.kiln-edit-mode .container .container__field-links--reorderable .container__link:hover:before { - background-color: transparent; - content: ' '; - cursor: move; - display: inline-block; - height: 30px; - position: absolute; - right: -20px; - top: -4px; - width: 20px; -} - -.kiln-edit-mode .container .container__field-links--reorderable .container__link:hover:after { - background: radial-gradient(ellipse at center,#617e87 0,#617e87 30%,transparent 30%,transparent 100%) 0 center; - background-size: 8px 8px; - content: ' '; - cursor: move; - display: inline-block; - margin: 0; - position: absolute; - right: -20px; - top: 1px; - width: 16px; - height: 20px; -} - -.kiln-edit-mode .container .container__field-links.kiln-field__disabled .container__link:hover { - outline: 0; -} - -.kiln-edit-mode .container .container__field-links.kiln-field__disabled .container__link:hover:after { - display: none; -} - -.kiln-edit-mode .container .factbox { - border-top: 1px solid #e6e6e6; - border-bottom: 1px solid #e6e6e6; - padding: 16px; - z-index: 1; -} - -.kiln-edit-mode .container .zone__placeholder { - margin-bottom: 10px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .kiln-permanent-placeholder, -.kiln-edit-mode .gallery-inline_unfurled .kiln-permanent-placeholder { - min-height: 48px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout] .gallery-inline__container, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout] .gallery-inline__container { - padding: 25px 15px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline__slides, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline__slides, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled { - flex-direction: row; - flex-wrap: wrap; - overflow-x: visible; - justify-content: left; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline__slides .image, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled .image, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline__slides .image, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled .image { - max-width: 295px; - margin: 5px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline__slides .image img, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled .image img, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline__slides .image img, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled .image img { - max-width: 295px; - width: auto; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline__slides .image__metadata, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline__slides .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=grid] .gallery-inline_unfurled__slides-unfurled .image__metadata { - max-width: 295px; - width: 100%; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list] .gallery-inline__slides, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list] .gallery-inline__slides { - flex-wrap: nowrap; - flex-direction: column; - justify-content: left; - overflow-x: scroll; - padding: 0 35px 0 15px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list] .gallery-inline_unfurled__slides-unfurled, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list] .gallery-inline_unfurled__slides-unfurled { - flex-direction: column; - justify-content: center; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list] .gallery-inline_unfurled__slides-unfurled .image .image__container, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list] .gallery-inline_unfurled__slides-unfurled .image .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list] .gallery-inline_unfurled__slides-unfurled .image .image__container, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list] .gallery-inline_unfurled__slides-unfurled .image .image__metadata { - max-width: 100%; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline] .gallery-inline__slides, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline] .gallery-inline__slides { - flex-direction: row; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline] .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline] .image__metadata { - flex-direction: row-reverse; - padding: 5px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline] .image__caption, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline] .image__caption { - margin: 0; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .gallery-inline__slides, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .gallery-inline__slides { - flex-direction: column; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image img, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image img { - max-width: max-content; - max-height: max-content; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__caption, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__credit, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__caption, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__credit, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__metadata { - display: inline; - margin-top: unset; - width: unset; - max-width: unset; - font-size: 14px; - padding-left: 4px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery-inline_unfurled] .image__metadata { - width: 636px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .gallery-inline__slides, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .gallery-inline__slides { - flex-direction: column; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image { - width: unset; - margin-bottom: 2rem; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image__container, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image__container { - height: unset; - display: flex; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image img, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image img { - max-width: unset; - max-height: unset; - height: 100%; - width: 100%; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image__caption, -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image__caption, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image__metadata { - width: unset; - text-align: center; - display: inline; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image__metadata { - width: 636px; - max-width: unset; - margin: auto; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden[data-items-layout=list][data-component-variation=gallery_unfurled] .image__credit, -.kiln-edit-mode .gallery-inline_unfurled[data-items-layout=list][data-component-variation=gallery_unfurled] .image__credit { - display: inline; - padding-left: 4px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__top, -.kiln-edit-mode .gallery-inline_unfurled__top { - min-height: 100px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__top .inline-placeholder .placeholder-text, -.kiln-edit-mode .gallery-inline.gallery--hidden__top .ql-editor, -.kiln-edit-mode .gallery-inline_unfurled__top .inline-placeholder .placeholder-text, -.kiln-edit-mode .gallery-inline_unfurled__top .ql-editor { - text-align: center; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__top--image, -.kiln-edit-mode .gallery-inline_unfurled__top--image { - max-height: attr(data-original-height); -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__slides, -.kiln-edit-mode .gallery-inline.gallery--hidden__slides-unfurled, -.kiln-edit-mode .gallery-inline_unfurled__slides, -.kiln-edit-mode .gallery-inline_unfurled__slides-unfurled { - counter-reset: slide-number; - display: flex; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__slides .image__container, -.kiln-edit-mode .gallery-inline.gallery--hidden__slides-unfurled .image__container, -.kiln-edit-mode .gallery-inline_unfurled__slides .image__container, -.kiln-edit-mode .gallery-inline_unfurled__slides-unfurled .image__container { - height: fit-content; - position: relative; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__slides .image__dam-img, -.kiln-edit-mode .gallery-inline.gallery--hidden__slides-unfurled .image__dam-img, -.kiln-edit-mode .gallery-inline_unfurled__slides .image__dam-img, -.kiln-edit-mode .gallery-inline_unfurled__slides-unfurled .image__dam-img { - max-height: none; - transform: none; - position: static; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden__slides .image__container:before, -.kiln-edit-mode .gallery-inline.gallery--hidden__slides-unfurled .image__container:before, -.kiln-edit-mode .gallery-inline_unfurled__slides .image__container:before, -.kiln-edit-mode .gallery-inline_unfurled__slides-unfurled .image__container:before { - counter-increment: slide-number; - content: counter(slide-number); - position: absolute; - opacity: .75; - padding: 2px 5px; - border-radius: 5px; - background-color: #000; - color: #fff; - bottom: 10px; - left: 5px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .image, -.kiln-edit-mode .gallery-inline_unfurled .image { - margin: 5px auto; - opacity: 1; - pointer-events: auto; - height: auto; - padding-bottom: 20px; - display: flex; - flex-direction: column; - width: fit-content; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline__controls, -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline__counter, -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline__next-overlay, -.kiln-edit-mode .gallery-inline.gallery--hidden .gallery-inline__prev-overlay, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline__controls, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline__counter, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline__next-overlay, -.kiln-edit-mode .gallery-inline_unfurled .gallery-inline__prev-overlay, -.kiln-edit-mode .video-inline .video-playlist__outer-container::after { - display: none; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .image img, -.kiln-edit-mode .gallery-inline_unfurled .image img { - max-width: 720px; - max-height: 405px; - width: auto; - height: auto; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .image__container, -.kiln-edit-mode .gallery-inline_unfurled .image__container { - padding-bottom: 0; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .image__metadata, -.kiln-edit-mode .gallery-inline_unfurled .image__metadata { - visibility: visible; - position: static; - max-width: 720px; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .image__caption, -.kiln-edit-mode .gallery-inline_unfurled .image__caption { - width: 100%; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden .image__title, -.kiln-edit-mode .gallery-inline_unfurled .image__title { - white-space: normal; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden--hidden .gallery-inline__main, -.kiln-edit-mode .gallery-inline_unfurled--hidden .gallery-inline__main { - background-color: transparent; - min-height: auto; - min-width: auto; -} - -.kiln-edit-mode .gallery-inline.gallery--hidden--hidden .gallery-inline__container, -.kiln-edit-mode .gallery-inline_unfurled--hidden .gallery-inline__container { - visibility: visible; -} - -.kiln-edit-mode .gallery_unfurled .configuration { - max-width: 999px; - margin: auto; - padding: 24px; -} - -.kiln-edit-mode .layout-no-rail[data-page-type=gallery] .headline__wrapper { - position: static; - padding: 0; - margin: 32px 0; - transform: initial; -} - -.kiln-edit-mode .layout-no-rail-article-fullwidth__top .headline__wrapper .placeholder-text, -.kiln-edit-mode .layout-no-rail[data-page-type=gallery] .headline__wrapper .placeholder-text { - text-align: center; -} - -.kiln-edit-mode .image-slider__image-container { - display: flex; - height: auto; - padding-top: 0; - overflow: unset; -} - -.kiln-edit-mode .image-slider__image-container img { - position: unset; -} - -.kiln-edit-mode .image-slider__image-container .image-slider__image-after, -.kiln-edit-mode .image-slider__image-container .image-slider__image-before { - width: 100%; -} - -.kiln-edit-mode .product-card__sticker, -.kiln-edit-mode .product-card__sticker-container, -.kiln-edit-mode .product-card_expanded__sticker, -.kiln-edit-mode .product-card_expanded__sticker-container, -.kiln-edit-mode .product-card_listing__sticker, -.kiln-edit-mode .product-card_listing__sticker-container { - width: max-content; -} - -.kiln-edit-mode [class^=container] .complex-list-trash, -.kiln-edit-mode [class^=container] .component-list-trash { - background: #455a64; - border-radius: 50%; - color: #fff; - display: none; - height: 70px; - left: calc(50% - 35px); - width: 70px; -} - -.kiln-edit-mode [class^=container] .complex-list-trash .material-icons, -.kiln-edit-mode [class^=container] .component-list-trash .material-icons { - font-size: 40px; -} - -.kiln-edit-mode [class^=container] .complex-list-trash.dragula-drop-area, -.kiln-edit-mode [class^=container] .component-list-trash.dragula-drop-area { - display: flex; -} - -.kiln-edit-mode .vertical-video .call-to-action, -.kiln-edit-mode .vertical-video .video-resource__image::before { - display: none; -} - -.kiln-edit-mode [class^=container] .complex-list-trash.dragula-drop-area .material-icons:not(:only-child), -.kiln-edit-mode [class^=container] .component-list-trash.dragula-drop-area .material-icons:not(:only-child) { - align-items: center; - background: #607d8b; - border-radius: 50%; - color: #fff; - font-size: 45px; - justify-content: center; - padding: 20px; - transform: scale(1.2,1.2); - transition: transform .3s; -} - -.kiln-edit-mode .vertical-video .image__dam-img { - object-fit: contain; -} - -.kiln-edit-mode .vertical-video .video-inline_vertical-video__video-resource { - height: 300px; -} - -.kiln-edit-mode .vertical-video .video-inline_vertical-video__video-resource .image__dam-img { - max-height: 300px; -} - -.kiln-edit-mode .vertical-video .video-resource__image { - height: 150px; -} - -.kiln-edit-mode .vertical-video .video-playlist__items-container { - height: 400px; -} - -.kiln-edit-mode .vertical-video .video-playlist__items-container .image__dam-img { - max-height: 150px; -} - -.kiln-edit-mode .vertical-video .video-resource { - height: 150px; -} - -.kiln-edit-mode .vertical-video .video-playlist { - margin-top: 5px; -} - -.kiln-edit-mode .video-inline .video-playlist { - overflow-x: hidden; - overflow-y: auto; - height: 520px; -} - -.kiln-edit-mode .video-inline .video-playlist .kiln-permanent-placeholder:first-of-type { - min-height: 56px; - height: 56px; - margin-left: 12px; -} - -.kiln-edit-mode .video-inline .video-playlist__items-container { - margin-right: 4px; - flex-direction: unset; - height: unset; - overflow: unset; -} - -.kiln-edit-mode .video-inline .video-playlist__outer-container { - margin-left: 0; - overflow: unset; -} - -.kiln-edit-mode .video-inline .video-playlist__navigation { - display: none; -} - -.kiln-edit-mode .video-inline .video-playlist__playlist-wrapper { - padding: 0 12px; -} - -.kiln-edit-mode .video-inline .video-playlist__playlist-wrapper::after { - display: none; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist { - overflow-x: visible; - overflow-y: auto; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist .kiln-permanent-placeholder:first-of-type { - min-height: 36px; - height: 36px; - position: sticky; - top: 0; - left: 0; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist .selector { - position: sticky; - top: 0; - left: 0; - z-index: 1; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist__items-container { - flex-direction: unset; - height: unset; - overflow: unset; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist__items-container[data-editable=videos] .video-resource::after { - background: unset; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist__outer-container { - margin-left: 32px; - overflow: unset; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist__navigation { - display: none; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist__playlist-wrapper::after { - display: none; -} - -.kiln-edit-mode .kiln-field :has([field=bylinePicker]) > fieldset legend, -.kiln-edit-mode .video-playlist__navigation, -.kiln-edit-mode .video-playlist__outer-container::after, -.kiln-edit-mode[data-page-type=tve] [data-component-name=video-resource] { - display: none; -} - -.kiln-edit-mode .video-inline_carousel .video-playlist[data-items-layout=grid] .video-playlist__items-container { - overflow: visible; - flex-wrap: wrap; -} - -.kiln-edit-mode .video-playlist .kiln-permanent-placeholder:first-of-type { - min-height: 56px; - height: 56px; - margin-left: 12px; -} - -.kiln-edit-mode .video-playlist__items-container, -.kiln-edit-mode .video-playlist__outer-container { - overflow: visible; -} - -.kiln-edit-mode .video-playlist [data-component-name=video-resource] { - padding-top: 4px; - padding-bottom: 4px; -} - -.kiln-edit-mode .video-playlist [data-component-name=video-resource] .video-resource__image { - margin-right: 8px; -} - -.kiln-edit-mode .kiln-field :has([field=bylinePicker]) > fieldset { - padding: 0; -} - -.kiln-edit-mode .kiln-field :has([field=bylinePicker]) .component.video-resource { - border: none; - padding: 0; - margin-bottom: -.75rem; -} - -.kiln-edit-mode .container_vertical-strip-original-ratio { - display: block; -} - -.kiln-edit-mode .container_vertical-strip-original-ratio__headline { - margin-left: 13px; - line-height: 1em; - padding-right: 50%; -} - -.kiln-edit-mode .container_vertical-strip-original-ratio .container__headline.container_vertical-strip-original-ratio__headline span { - font-weight: 700; - font-size: 1vw; - vertical-align: middle; -} - -.kiln-edit-mode [data-component-name=video-resource] { - height: 100%; - min-width: 268px; -} - -.kiln-edit-mode [data-component-name=video-resource] [data-editable=media] { - width: 100%; -} - -.kiln-edit-mode [data-component-name=video-resource] .kiln-placeholder { - width: 100%; - margin-bottom: 16px; - min-height: 60px; - height: 60px; -} - -.kiln-edit-mode [data-component-name=video-resource] .selector { - position: initial; -} - -.kiln-edit-mode [data-component-name=video-resource]:hover { - text-decoration: none; -} - -.kiln-edit-mode [data-component-name=video-resource] .play-icon { - position: absolute; - top: 42%; - left: 40%; - height: 25%; - width: 20%; - fill: #fff; - margin: 0 auto; - opacity: .9; -} - -.kiln-edit-mode [data-component-name=video-resource] .video-resource__image:before { - content: ''; - background: url(/media/sites/cnn/icons/play-icon.svg) center no-repeat; - background-size: 20%; - position: absolute; - height: 100%; - width: 100%; - z-index: 1; - opacity: .9; -} - -.kiln-edit-mode [data-component-name=video-playlist] .video-resource[data-unselectable=true] { - opacity: .5; -} - -.kiln-edit-mode [data-component-name=video-playlist] [data-component-name=video-resource] .video-resource__image:before { - background: unset; -} - -.kiln-edit-mode .dynamic { - padding: 15px 10px 5px; - background-color: #e3f2fd; -} - -.kiln-edit-mode .dynamic .dynamic--header { - font-family: 'Noto Sans',Arial,sans-serif; - font-size: 14px; - font-stretch: 100%; - font-weight: 600; - margin: 0 0 5px; - padding: 0 0 5px 10px; -} - -.kiln-edit-mode .header__container { - height: 40px; -} - -.kiln-edit-mode[data-page-type=vertical-video] [data-component-name=video-playlist] { - display: block; -} - -.kiln-edit-mode[data-page-type=vertical-video] .vertical-video__closeButton { - display: none; -} - -.kiln-edit-mode[data-page-type=vertical-video] .video-inline_vertical-video__video-resource { - position: static; - width: auto; -} - -.kiln-edit-mode[data-page-type=vertical-video] .video-inline_vertical-video .video-playlist__items-container { - width: auto; - height: auto; - overflow-y: visible; -} - -.kiln-edit-mode [data-component-name=tve-headline-hero] .custom-placeholder .custom-placeholder__right { - margin-top: 16px; -} - -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_3x4-standard__content, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel__content, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_grid-image-title-only__content, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_grid__content { - margin-left: 0; - margin-right: 0; -} - -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_3x4-standard__arrow, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel__arrow, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_grid-image-title-only__arrow, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_grid__arrow { - display: none; -} - -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_3x4-standard__mask, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel__mask, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_grid-image-title-only__mask, -.kiln-edit-mode [data-component-name=tve-carousel] .tve-carousel_grid__mask { - -webkit-mask-image: none; - mask-image: none; -} - -.kiln-edit-mode [data-component-name=tve-carousel] .tve-assets__container { - min-height: 176px; - overflow: visible; - display: grid; - grid-template-columns: 1fr 1fr 1fr 1fr; - column-gap: 15px; - row-gap: 15px; -} - -.kiln-edit-mode [data-component-name=tve-carousel] .tve-assets__container .kiln-permanent-placeholder { - display: none; -} - -.kiln-edit-mode [data-component-name=tve-carousel] [data-component-name=tve-asset] { - margin: 0; - padding: 0; - width: 100%; - max-width: unset; -} - -.kiln-edit-mode [data-component-name=tve-carousel] [data-component-name=tve-asset] .tve-asset__image { - width: 100%; - max-width: unset; -} - -.kiln-edit-mode [data-component-name=tve-carousel] [data-component-name=tve-asset] .tve-asset__image img { - width: 100%; -} - -.kiln-edit-mode [data-component-name=tve-carousel] .kiln-permanent-placeholder { - max-height: 50px; - min-height: 20px; -} - -.kiln-edit-mode [data-component-name=tve-carousel].tve-carousel_3x4-standard .tve-assets__container { - grid-template-columns: 1fr 1fr 1fr 1fr 1fr; -} - -.kiln-edit-mode [data-component-name=tve-carousel].tve-carousel_large-image-only .tve-assets__container { - grid-template-columns: 1fr 1fr; -} - -.kiln-edit-mode[data-page-type=scratchpad] .ui-toolbar__right .toolbar-publish-button { - cursor: default; -} - -.kiln-edit-mode[data-page-type=section] { - counter-reset: zone-number product-zone-number stack-number container-number; -} - -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/zone/']:before, -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/product-zone/']:before, -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/stack/']:before, -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/container/']:before { - background-color: #0c0c0c; - color: #fff; - font-family: cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif; - font-size: 10px; - font-weight: 700; - padding: 4px; - border-radius: 4px; - margin: 16px 8px; - position: absolute; - z-index: 2; - left: 0; -} - -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/zone/'] .kiln-permanent-placeholder, -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/product-zone/'] .kiln-permanent-placeholder, -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/stack/'] .kiln-permanent-placeholder, -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/container/'] .kiln-permanent-placeholder { - padding: 16px 32px; -} - -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/zone/']:before { - counter-increment: zone-number; - content: counter(zone-number); -} - -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/product-zone/']:before { - counter-increment: product-zone-number; - content: counter(product-zone-number); -} - -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/stack/']:before { - counter-increment: stack-number; - content: counter(stack-number); -} - -.kiln-edit-mode[data-page-type=section] [data-uri*='/_components/container/']:before { - counter-increment: container-number; - content: counter(container-number); -} - -.kiln-edit-mode .image__lede .kiln-placeholder + .image__container, -.kiln-edit-mode .image__lede .kiln-placeholder + .mini-selector + .image__container { - padding-bottom: 0; -} - -.kiln-edit-mode .collapse-component__collapsable { - transition: max-height .25s ease-in; - max-height: 900000px; - width: 100%; -} - -.kiln-edit-mode .collapse-component__collapsable.collapsed { - transition: max-height .25s ease-out; - max-height: 50px; - overflow: hidden; - margin-bottom: 12px; -} - -.kiln-edit-mode .collapse-component__collapsable.collapsed.no-transition { - transition: none; -} - -.kiln-edit-mode .collapse-component__collapsable.collapsed:before { - content: attr(data-collapsed-text); - font-family: Noto Sans,Arial,sans-serif; - font-size: 14px; - font-weight: 700; - letter-spacing: .16px; - line-height: 18px; - text-transform: uppercase; - background-color: #e3f2fd; - align-items: center; - border-radius: 4px; - box-sizing: border-box; - cursor: pointer; - display: flex; - height: 100%; - justify-content: center; - padding: 16px 24px; - position: relative; - width: 100%; -} - -.kiln-edit-mode .collapse-component__collapsable.collapsed .custom-placeholder { - border-top: 0; -} - -.kiln-edit-mode.underscored[data-page-type=article] .headline__text .kiln-placeholder .placeholder-label, -.kiln-edit-mode.underscored[data-page-type=article] .headline_underscored__text .kiln-placeholder .placeholder-label { - display: block; -} - -.kiln-edit-mode .headline_section-banner-image { - height: 110px; -} - -.kiln-edit-mode .headline__text { - height: 24px; - margin-top: 20px; -} - -.kiln-edit-mode .headline__text .editor-inline { - margin-left: 0; -} - -.kiln-edit-mode .headline_sponsorship__wrapper { - margin-top: 10px; -} - -.kiln-edit-mode .headline_sponsorship:has(.selector) .add-bottom, -.kiln-edit-mode .headline_sponsorship:has(.selector) .add-top { - text-align: center; - left: 0; - right: 0; -} - -.kiln-edit-mode .product-zone .layout--full-bleed .custom-placeholder__right, -.kiln-edit-mode .product-zone .product-zone__inner:has(.layout--full-bleed) .custom-placeholder__right, -.kiln-edit-mode .product-zone .zone__inner:has(.layout--full-bleed) .custom-placeholder__right, -.kiln-edit-mode .product-zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .quick-bar, -.kiln-edit-mode .zone .layout--full-bleed .custom-placeholder__right, -.kiln-edit-mode .zone .product-zone__inner:has(.layout--full-bleed) .custom-placeholder__right, -.kiln-edit-mode .zone .zone__inner:has(.layout--full-bleed) .custom-placeholder__right, -.kiln-edit-mode .zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .quick-bar { - right: 16px; -} - -.kiln-edit-mode .product-zone:has(.layout--full-bleed), -.kiln-edit-mode .zone:has(.layout--full-bleed) { - left: 50%; - margin-left: -50vw; - position: relative; - width: 100vw; -} - -.kiln-edit-mode .product-zone .layout--full-bleed, -.kiln-edit-mode .product-zone .product-zone__inner:has(.layout--full-bleed), -.kiln-edit-mode .product-zone .zone__inner:has(.layout--full-bleed), -.kiln-edit-mode .zone .layout--full-bleed, -.kiln-edit-mode .zone .product-zone__inner:has(.layout--full-bleed), -.kiln-edit-mode .zone .zone__inner:has(.layout--full-bleed) { - padding: 0 16px; -} - -.kiln-edit-mode .product-zone .layout--full-bleed .kiln-permanent-placeholder, -.kiln-edit-mode .product-zone .product-zone__inner:has(.layout--full-bleed) .kiln-permanent-placeholder, -.kiln-edit-mode .product-zone .zone__inner:has(.layout--full-bleed) .kiln-permanent-placeholder, -.kiln-edit-mode .zone .layout--full-bleed .kiln-permanent-placeholder, -.kiln-edit-mode .zone .product-zone__inner:has(.layout--full-bleed) .kiln-permanent-placeholder, -.kiln-edit-mode .zone .zone__inner:has(.layout--full-bleed) .kiln-permanent-placeholder { - max-width: unset; -} - -.kiln-edit-mode .product-zone .layout--full-bleed .custom-placeholder, -.kiln-edit-mode .product-zone .product-zone__inner:has(.layout--full-bleed) .custom-placeholder, -.kiln-edit-mode .product-zone .zone__inner:has(.layout--full-bleed) .custom-placeholder, -.kiln-edit-mode .zone .layout--full-bleed .custom-placeholder, -.kiln-edit-mode .zone .product-zone__inner:has(.layout--full-bleed) .custom-placeholder, -.kiln-edit-mode .zone .zone__inner:has(.layout--full-bleed) .custom-placeholder { - left: 50%; - margin-left: -50vw; - position: relative; - width: 100vw; - padding: 0 16px; -} - -.kiln-edit-mode .product-zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-bottom, -.kiln-edit-mode .product-zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-top, -.kiln-edit-mode .zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-bottom, -.kiln-edit-mode .zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-top { - left: 50%; - margin-left: -50vw; -} - -.kiln-edit-mode .product-zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-bottom .ui-button, -.kiln-edit-mode .product-zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-top .ui-button, -.kiln-edit-mode .zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-bottom .ui-button, -.kiln-edit-mode .zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .add-top .ui-button { - z-index: 10000; -} - -.kiln-edit-mode .product-zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .selector-label, -.kiln-edit-mode .zone aside:has( ~ .zone__inner .layout--full-bleed, ~ .product-zone__inner .layout--full-bleed) .selector-label { - left: 16px; -} - -.kiln-edit-mode .product-zone .collapse-component__collapsable:has(.layout--full-bleed), -.kiln-edit-mode .zone .collapse-component__collapsable:has(.layout--full-bleed) { - width: unset; -} - -.kiln-edit-mode .product-zone .collapse-component__collapsable:has(.layout--full-bleed).collapsed, -.kiln-edit-mode .zone .collapse-component__collapsable:has(.layout--full-bleed).collapsed { - width: 100%; - padding: 0 16px; -} - -.layout-no-rail[data-page-type=gallery] .layout-no-rail__top.kiln-page-area .headline__wrapper { - position: unset; - transform: unset; - width: unset; - padding-bottom: 20px; -} - -@media screen and (min-width:960px) { - .kiln-edit-mode .headline__text { - height: 100%; - } - - .kiln-edit-mode .layout-no-rail-article-fullwidth__top .headline__text { - padding-top: 32px; - } -} - -.layout-homepage { - background-color: #fff; - width: 100%; - margin: 0; - padding: 0; -} - -.layout-homepage__top:empty + .layout-homepage__wrapper:not(:has(.layout--full-bleed)) { - padding-top: 32px; -} - -@media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout-homepage__top:empty + .layout-homepage__wrapper:not(:has(.layout--full-bleed)) { - padding-top: 24px; - } -} - -@supports not selector(:has(*)) { - .layout-homepage__top:empty + .layout-homepage__wrapper:not(.has-pseudo-class-fix-layout--full-bleed) { - padding-top: 32px; - } - - @media screen and (max-width:479px) { - body:not(.layout-homepage-mobile.kiln-edit-mode) .layout-homepage__top:empty + .layout-homepage__wrapper:not(.has-pseudo-class-fix-layout--full-bleed) { - padding-top: 24px; - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/cnn-20231008.json b/src/__fixtures__/cnn-20231008.json deleted file mode 100644 index 177aeaae..00000000 --- a/src/__fixtures__/cnn-20231008.json +++ /dev/null @@ -1,33761 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 10127, - "linesOfCode": 14690, - "size": 821224, - "complexity": 41021, - "comments": { - "total": 0, - "size": 0 - }, - "embeddedContent": { - "size": { - "total": 366070, - "ratio": 0.44576144876428353 - }, - "types": { - "total": 11, - "totalUnique": 2, - "uniquenessRatio": 0.18181818181818182, - "unique": { - "font/woff2": { - "count": 4, - "size": 362624 - }, - "image/svg+xml": { - "count": 7, - "size": 3446 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 4, - "totalUnique": 4, - "unique": [ - { - "font-family": "cnn_sans_display", - "font-weight": "700", - "src": "url(data:font/woff2;charset=utf-8;base64,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) format(\"woff2\")" - }, - { - "font-family": "cnn_sans_display", - "font-weight": "500", - "src": "url(data:font/woff2;charset=utf-8;base64,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) format(\"woff2\")" - }, - { - "font-family": "cnn_sans_display", - "src": "url(data:font/woff2;charset=utf-8;base64,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) format(\"woff2\")" - }, - { - "font-family": "helveticaneue", - "src": "url(data:font/woff2;charset=utf-8;base64,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) format(\"woff2\")" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 106, - "totalUnique": 16, - "unique": { - "(min-width:480px)": 1, - "(min-width:960px)": 3, - "(min-width:1280px)": 1, - "(max-width:959px)": 1, - "screen and (min-width:480px) and (max-width:959px)": 9, - "screen and (max-width:479px)": 13, - "screen and (min-width:480px)": 10, - "screen and (max-width:959px)": 18, - "screen and (min-width:960px)": 33, - "screen and (min-width:1280px)": 7, - "screen and (min-width:2000px)": 1, - "screen and (max-width:640px)": 2, - "screen and (min-width:960px) and (max-width:1279px)": 3, - "screen and (max-width:1279px)": 2, - "screen and (min-width:1360px)": 1, - "screen and (min-width:1280px) and (max-width:1440px)": 1 - }, - "uniquenessRatio": 0.1509433962264151, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "charset": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "supports": { - "total": 5, - "totalUnique": 1, - "unique": { - "not selector(:has(*))": 5 - }, - "uniquenessRatio": 0.2, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 5, - "totalUnique": 5, - "unique": { - "@keyframes ad-loading": 1, - "@keyframes stickyVideo": 1, - "@keyframes stickyFeedbackLink": 1, - "@keyframes fadein": 1, - "@keyframes ad-loading-header": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 120, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 120 - } - }, - "rules": { - "total": 2220, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 152, - "mean": 4.5031531531531535, - "mode": 2, - "range": 150, - "sum": 9997, - "items": [ - 7, - 6, - 152, - 4, - 12, - 2, - 2, - 3, - 5, - 10, - 3, - 5, - 10, - 5, - 3, - 8, - 7, - 10, - 8, - 3, - 7, - 4, - 7, - 2, - 5, - 7, - 5, - 2, - 6, - 2, - 2, - 2, - 5, - 3, - 3, - 3, - 3, - 2, - 2, - 8, - 4, - 2, - 3, - 3, - 2, - 3, - 2, - 6, - 11, - 5, - 5, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 3, - 3, - 2, - 4, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 13, - 2, - 3, - 3, - 3, - 4, - 3, - 2, - 31, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 13, - 8, - 47, - 29, - 31, - 3, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 3, - 3, - 4, - 10, - 2, - 2, - 8, - 4, - 3, - 3, - 10, - 7, - 4, - 8, - 2, - 2, - 8, - 4, - 3, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 4, - 4, - 3, - 5, - 3, - 3, - 4, - 4, - 7, - 5, - 2, - 13, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 5, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 8, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 4, - 8, - 3, - 5, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 11, - 7, - 10, - 6, - 12, - 5, - 5, - 5, - 4, - 2, - 3, - 6, - 7, - 9, - 5, - 3, - 7, - 4, - 3, - 7, - 8, - 11, - 11, - 6, - 7, - 9, - 6, - 5, - 8, - 6, - 7, - 9, - 69, - 133, - 72, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 2, - 3, - 4, - 5, - 7, - 5, - 3, - 6, - 9, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 6, - 2, - 2, - 4, - 4, - 5, - 2, - 3, - 4, - 4, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 8, - 8, - 2, - 4, - 2, - 4, - 4, - 2, - 2, - 12, - 2, - 3, - 4, - 5, - 7, - 5, - 3, - 6, - 2, - 7, - 3, - 2, - 3, - 3, - 5, - 4, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 4, - 3, - 3, - 4, - 3, - 4, - 2, - 2, - 4, - 4, - 10, - 5, - 8, - 4, - 11, - 10, - 4, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 4, - 2, - 4, - 2, - 4, - 3, - 4, - 4, - 4, - 2, - 2, - 13, - 6, - 11, - 3, - 3, - 2, - 14, - 5, - 7, - 6, - 5, - 3, - 5, - 3, - 2, - 5, - 2, - 7, - 2, - 4, - 2, - 2, - 2, - 5, - 6, - 7, - 5, - 2, - 2, - 4, - 11, - 7, - 10, - 6, - 12, - 5, - 5, - 5, - 4, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 5, - 3, - 2, - 2, - 3, - 3, - 4, - 3, - 2, - 4, - 6, - 6, - 12, - 4, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 16, - 2, - 3, - 3, - 3, - 8, - 4, - 5, - 2, - 2, - 8, - 4, - 4, - 3, - 5, - 10, - 5, - 3, - 5, - 7, - 10, - 8, - 2, - 9, - 4, - 3, - 6, - 3, - 2, - 5, - 3, - 5, - 2, - 5, - 60, - 6, - 2, - 2, - 2, - 2, - 5, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 8, - 9, - 4, - 2, - 3, - 3, - 2, - 3, - 6, - 11, - 5, - 5, - 2, - 2, - 2, - 2, - 5, - 3, - 3, - 2, - 7, - 5, - 8, - 5, - 5, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 3, - 4, - 2, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 13, - 2, - 3, - 3, - 3, - 4, - 3, - 2, - 2, - 31, - 5, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 13, - 29, - 31, - 3, - 3, - 4, - 4, - 2, - 3, - 4, - 2, - 2, - 3, - 2, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 3, - 3, - 4, - 10, - 2, - 2, - 8, - 4, - 3, - 3, - 10, - 7, - 4, - 8, - 2, - 2, - 8, - 4, - 3, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 4, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 3, - 4, - 3, - 5, - 3, - 3, - 4, - 3, - 7, - 5, - 2, - 13, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 5, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 14, - 4, - 3, - 4, - 4, - 3, - 4, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 2, - 5, - 3, - 3, - 9, - 4, - 3, - 8, - 4, - 2, - 5, - 3, - 3, - 3, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 2, - 3, - 5, - 2, - 2, - 8, - 4, - 3, - 3, - 10, - 7, - 7, - 4, - 2, - 2, - 8, - 6, - 3, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 4, - 4, - 3, - 7, - 3, - 3, - 4, - 4, - 7, - 5, - 2, - 11, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 5, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 6, - 3, - 3, - 3, - 5, - 4, - 4, - 3, - 2, - 2, - 7, - 6, - 3, - 2, - 2, - 2, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 3, - 3, - 4, - 10, - 2, - 2, - 8, - 4, - 3, - 3, - 10, - 7, - 4, - 8, - 2, - 2, - 8, - 4, - 3, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 4, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 3, - 4, - 3, - 5, - 3, - 3, - 4, - 3, - 7, - 5, - 2, - 13, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 5, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 5, - 3, - 2, - 2, - 3, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 3, - 3, - 4, - 10, - 2, - 2, - 8, - 4, - 3, - 10, - 7, - 4, - 8, - 2, - 2, - 8, - 4, - 3, - 2, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 5, - 4, - 3, - 5, - 3, - 3, - 4, - 4, - 7, - 5, - 2, - 13, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 5, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 3, - 3, - 2, - 2, - 6, - 2, - 4, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 4, - 8, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 3, - 3, - 4, - 10, - 2, - 2, - 8, - 4, - 3, - 10, - 7, - 4, - 8, - 2, - 2, - 8, - 4, - 3, - 2, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 5, - 4, - 3, - 5, - 3, - 3, - 4, - 4, - 7, - 5, - 2, - 13, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 5, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 6, - 4, - 3, - 2, - 2, - 2, - 3, - 4, - 6, - 4, - 2, - 4, - 2, - 4, - 2, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 6, - 3, - 10, - 2, - 3, - 13, - 3, - 3, - 4, - 10, - 2, - 2, - 8, - 4, - 3, - 3, - 10, - 7, - 4, - 8, - 2, - 2, - 8, - 4, - 3, - 8, - 6, - 4, - 5, - 5, - 3, - 3, - 2, - 4, - 3, - 10, - 5, - 9, - 4, - 2, - 5, - 4, - 6, - 6, - 6, - 6, - 5, - 2, - 3, - 7, - 5, - 7, - 4, - 4, - 3, - 5, - 3, - 3, - 4, - 4, - 7, - 5, - 2, - 13, - 4, - 2, - 2, - 9, - 5, - 2, - 10, - 3, - 3, - 10, - 3, - 5, - 3, - 3, - 4, - 8, - 5, - 11, - 6, - 8, - 2, - 4, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 6, - 2, - 5, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 5, - 14, - 8, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 5, - 3, - 2, - 3, - 3, - 4, - 2, - 2, - 5, - 3, - 3, - 2, - 4, - 2, - 3, - 4, - 2, - 5, - 4, - 4, - 2, - 2, - 2, - 4, - 4, - 5, - 3, - 3, - 2, - 5, - 3, - 6, - 2, - 2, - 2, - 4, - 2, - 5, - 10, - 3, - 3, - 3, - 5, - 3, - 4, - 3, - 3, - 9, - 7, - 3, - 6, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 5, - 5, - 2, - 3, - 2, - 2, - 4, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 8, - 3, - 2, - 7, - 9, - 3, - 3, - 2, - 4, - 3, - 5, - 4, - 6, - 3, - 2, - 2, - 3, - 3, - 3, - 9, - 9, - 8, - 2, - 2, - 5, - 10, - 4, - 4, - 2, - 2, - 15, - 2, - 7, - 3, - 4, - 3, - 2, - 3, - 2, - 2, - 7, - 2, - 6, - 5, - 3, - 9, - 6, - 11, - 3, - 3, - 2, - 3, - 2, - 4, - 4, - 8, - 2, - 8, - 2, - 6, - 2, - 2, - 5, - 2, - 7, - 2, - 4, - 3, - 4, - 6, - 2, - 6, - 2, - 4, - 2, - 4, - 2, - 3, - 12, - 4, - 2, - 2, - 8, - 2, - 3, - 10, - 10, - 4, - 8, - 3, - 2, - 2, - 13, - 3, - 4, - 11, - 5, - 4, - 2, - 8, - 3, - 5, - 3, - 5, - 4, - 9, - 9, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 11, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 3, - 2, - 3, - 13, - 2, - 2, - 3, - 4, - 4, - 9, - 4, - 3, - 3, - 2, - 3, - 20, - 8, - 11, - 6, - 3, - 2, - 7, - 6, - 10, - 6, - 6, - 9, - 8, - 2, - 2, - 2, - 12, - 3, - 3, - 5, - 2, - 3, - 8, - 8, - 4, - 3, - 2, - 7, - 2, - 5, - 5, - 2, - 2, - 11, - 2, - 5, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 7, - 2, - 2, - 3, - 6, - 5, - 3, - 10, - 2, - 2, - 3, - 2, - 5, - 3, - 6, - 5, - 5, - 5, - 5, - 5, - 2, - 2, - 2, - 3, - 2, - 12, - 2, - 7, - 3, - 2, - 4, - 2, - 2, - 7, - 5, - 5, - 2, - 4, - 5, - 2, - 6, - 7, - 5, - 4, - 8, - 8, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 2, - 4, - 3, - 3, - 6, - 7, - 4, - 10, - 28, - 5, - 4, - 3, - 3, - 4, - 2, - 2, - 8, - 2, - 7, - 2, - 5, - 4, - 5, - 9, - 7, - 12, - 4, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 5, - 3, - 3, - 2, - 2, - 7, - 11, - 8, - 3, - 4, - 3, - 6, - 6, - 4, - 2, - 3, - 2, - 3, - 6, - 8, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 3, - 7, - 3, - 6, - 4, - 5, - 3, - 3, - 5, - 2, - 2, - 3, - 6, - 12, - 3, - 2, - 6, - 5, - 2, - 3, - 5, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 6, - 2, - 4, - 3, - 7, - 9, - 2, - 2, - 3, - 3, - 4, - 3, - 4, - 4, - 10, - 8, - 7, - 2, - 4, - 3, - 3, - 6, - 8, - 3, - 3, - 3, - 9, - 5, - 2, - 2, - 5, - 4, - 5, - 4, - 3, - 4, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 5, - 4, - 3, - 3, - 4, - 2, - 2, - 6, - 9, - 3, - 2, - 5, - 5, - 2, - 5, - 2, - 2, - 32, - 3, - 2, - 2, - 2, - 6, - 4, - 8, - 2, - 4, - 11, - 9, - 4, - 3, - 2, - 4, - 4, - 2, - 5, - 3, - 3, - 2, - 3, - 2, - 2, - 7, - 2, - 7, - 2, - 2, - 3, - 3, - 2, - 4, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 5, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 3, - 3, - 4, - 3, - 3, - 5, - 11, - 3, - 5, - 3, - 2, - 5, - 6, - 2, - 2, - 3, - 2, - 2, - 4, - 5, - 2, - 6, - 10, - 3, - 2, - 2, - 7, - 2, - 2, - 3, - 5, - 3, - 2, - 4, - 2, - 4, - 3, - 10, - 2, - 3, - 2, - 2, - 5, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 7, - 2, - 5, - 11, - 7, - 3, - 3, - 3, - 3, - 4, - 2, - 2, - 3, - 3, - 6, - 2, - 3, - 8, - 4, - 4, - 10, - 12, - 2, - 2, - 5, - 2, - 3, - 3, - 8, - 6, - 6, - 6, - 7, - 4, - 5, - 3, - 4, - 3, - 3, - 4, - 12, - 3, - 3, - 4, - 4, - 6, - 7, - 5, - 4, - 3, - 5, - 3, - 6, - 6, - 7, - 14, - 10, - 10, - 6, - 3, - 5, - 3, - 3, - 5, - 3, - 4, - 5, - 3, - 5, - 2, - 3, - 7, - 9, - 3, - 3, - 3, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 5, - 3, - 2, - 2, - 2, - 3, - 6, - 5, - 4, - 2, - 3, - 2, - 2, - 5, - 3, - 4, - 3, - 3, - 2, - 2, - 4, - 2, - 4, - 4, - 3, - 2, - 5, - 2, - 2, - 9, - 9, - 2, - 2, - 3, - 7, - 2, - 2, - 2, - 3, - 4, - 2, - 6, - 5, - 6, - 7, - 2, - 5, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 15, - 5, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 2, - 19, - 2, - 3, - 2, - 3, - 2, - 2, - 5, - 9, - 6, - 7, - 7, - 11, - 6, - 5, - 3, - 3, - 4, - 5, - 2, - 2, - 5, - 2, - 2, - 2, - 2 - ], - "total": 2220, - "totalUnique": 27, - "unique": { - "2": 684, - "3": 500, - "4": 286, - "5": 274, - "6": 119, - "7": 90, - "8": 81, - "9": 39, - "10": 63, - "11": 27, - "12": 13, - "13": 21, - "14": 4, - "15": 2, - "16": 1, - "19": 1, - "20": 1, - "28": 1, - "29": 2, - "31": 4, - "32": 1, - "47": 1, - "60": 1, - "69": 1, - "72": 1, - "133": 1, - "152": 1 - }, - "uniquenessRatio": 0.012162162162162163 - }, - "selectors": { - "min": 1, - "max": 132, - "mean": 1.8234234234234235, - "mode": 1, - "range": 131, - "sum": 4048, - "items": [ - 6, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 1, - 7, - 3, - 1, - 2, - 2, - 1, - 2, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 2, - 2, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 12, - 1, - 2, - 2, - 1, - 3, - 2, - 1, - 30, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 12, - 1, - 46, - 28, - 30, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 8, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 2, - 3, - 6, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 5, - 10, - 5, - 3, - 6, - 3, - 2, - 4, - 2, - 3, - 6, - 3, - 66, - 132, - 66, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 4, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 8, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 59, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 7, - 8, - 1, - 1, - 2, - 2, - 1, - 2, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 12, - 1, - 2, - 2, - 1, - 3, - 2, - 1, - 1, - 30, - 4, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 12, - 28, - 30, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 5, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 9, - 27, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 9, - 1, - 3, - 1, - 2, - 1, - 1, - 5, - 3, - 1, - 2, - 2, - 8, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 26, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 8, - 3, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 10, - 2, - 2, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 4, - 4, - 4, - 4, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 8, - 2, - 6, - 6, - 6, - 4, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 2220, - "totalUnique": 19, - "unique": { - "1": 1488, - "2": 475, - "3": 109, - "4": 86, - "5": 16, - "6": 13, - "7": 2, - "8": 8, - "9": 3, - "10": 3, - "12": 4, - "26": 1, - "27": 1, - "28": 2, - "30": 4, - "46": 1, - "59": 1, - "66": 2, - "132": 1 - }, - "uniquenessRatio": 0.008558558558558558 - }, - "declarations": { - "min": 1, - "max": 151, - "mean": 2.6797297297297296, - "mode": 1, - "range": 150, - "sum": 5949, - "items": [ - 1, - 1, - 151, - 3, - 11, - 1, - 1, - 2, - 4, - 8, - 2, - 4, - 9, - 4, - 2, - 7, - 6, - 8, - 6, - 2, - 6, - 3, - 6, - 1, - 4, - 6, - 4, - 1, - 5, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 2, - 2, - 3, - 8, - 1, - 1, - 7, - 3, - 1, - 1, - 8, - 6, - 3, - 4, - 1, - 1, - 6, - 2, - 2, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 3, - 2, - 1, - 3, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 12, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 7, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 6, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 9, - 3, - 2, - 2, - 8, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 6, - 4, - 1, - 6, - 3, - 1, - 6, - 3, - 1, - 6, - 3, - 1, - 6, - 4, - 1, - 6, - 3, - 1, - 6, - 3, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 3, - 3, - 2, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 7, - 7, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 11, - 1, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 1, - 6, - 1, - 1, - 2, - 2, - 4, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 3, - 3, - 7, - 2, - 7, - 3, - 10, - 9, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 12, - 5, - 10, - 2, - 1, - 1, - 12, - 1, - 6, - 5, - 4, - 2, - 4, - 2, - 1, - 4, - 1, - 6, - 1, - 3, - 1, - 1, - 1, - 4, - 5, - 5, - 4, - 1, - 1, - 3, - 9, - 3, - 2, - 2, - 8, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 5, - 4, - 11, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 15, - 1, - 2, - 2, - 2, - 6, - 3, - 4, - 1, - 1, - 7, - 2, - 3, - 1, - 4, - 9, - 4, - 2, - 4, - 6, - 8, - 6, - 1, - 8, - 3, - 2, - 4, - 2, - 1, - 4, - 2, - 4, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 2, - 2, - 3, - 8, - 1, - 1, - 7, - 3, - 1, - 1, - 8, - 6, - 3, - 4, - 1, - 1, - 6, - 2, - 2, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 1, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 2, - 2, - 1, - 3, - 2, - 2, - 1, - 2, - 5, - 1, - 1, - 12, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 13, - 3, - 2, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 2, - 2, - 8, - 3, - 2, - 7, - 3, - 1, - 4, - 2, - 2, - 2, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 1, - 2, - 3, - 1, - 1, - 7, - 3, - 1, - 1, - 8, - 6, - 2, - 3, - 1, - 1, - 6, - 4, - 2, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 3, - 2, - 1, - 5, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 10, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 2, - 2, - 4, - 3, - 1, - 2, - 1, - 1, - 5, - 4, - 2, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 2, - 2, - 3, - 8, - 1, - 1, - 7, - 3, - 1, - 1, - 8, - 6, - 3, - 4, - 1, - 1, - 6, - 2, - 2, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 1, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 2, - 2, - 1, - 3, - 2, - 2, - 1, - 2, - 5, - 1, - 1, - 12, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 2, - 2, - 3, - 8, - 1, - 1, - 7, - 3, - 1, - 8, - 6, - 3, - 4, - 1, - 1, - 6, - 2, - 2, - 1, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 4, - 2, - 1, - 3, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 12, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 2, - 2, - 3, - 8, - 1, - 1, - 7, - 3, - 1, - 8, - 6, - 3, - 4, - 1, - 1, - 6, - 2, - 2, - 1, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 4, - 2, - 1, - 3, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 12, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 5, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 2, - 1, - 4, - 5, - 2, - 5, - 2, - 9, - 1, - 2, - 11, - 2, - 2, - 3, - 8, - 1, - 1, - 7, - 3, - 1, - 1, - 8, - 6, - 3, - 4, - 1, - 1, - 6, - 2, - 2, - 7, - 1, - 3, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 8, - 3, - 7, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 6, - 4, - 6, - 3, - 2, - 1, - 3, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 12, - 3, - 1, - 1, - 8, - 3, - 1, - 9, - 2, - 2, - 8, - 1, - 3, - 1, - 1, - 2, - 6, - 4, - 10, - 1, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 4, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 4, - 13, - 7, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 2, - 2, - 3, - 1, - 1, - 4, - 2, - 2, - 1, - 3, - 1, - 2, - 3, - 1, - 4, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 2, - 1, - 4, - 2, - 5, - 1, - 1, - 1, - 3, - 1, - 4, - 7, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 7, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 5, - 3, - 2, - 2, - 1, - 3, - 2, - 3, - 3, - 5, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 7, - 1, - 1, - 4, - 9, - 3, - 3, - 1, - 1, - 14, - 1, - 6, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 6, - 1, - 5, - 4, - 2, - 4, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 3, - 7, - 1, - 7, - 1, - 4, - 1, - 1, - 4, - 1, - 6, - 1, - 1, - 2, - 3, - 5, - 1, - 5, - 1, - 1, - 1, - 3, - 1, - 2, - 11, - 1, - 1, - 1, - 7, - 1, - 1, - 9, - 9, - 3, - 7, - 2, - 1, - 1, - 12, - 2, - 3, - 10, - 4, - 3, - 1, - 7, - 2, - 4, - 2, - 4, - 3, - 8, - 8, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 10, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 12, - 1, - 1, - 2, - 3, - 3, - 8, - 3, - 1, - 2, - 1, - 2, - 19, - 7, - 10, - 5, - 2, - 1, - 6, - 5, - 9, - 4, - 5, - 8, - 7, - 1, - 1, - 1, - 11, - 2, - 2, - 4, - 1, - 2, - 7, - 7, - 3, - 2, - 1, - 6, - 1, - 4, - 4, - 1, - 1, - 10, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 6, - 1, - 1, - 1, - 5, - 4, - 1, - 9, - 1, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 4, - 2, - 1, - 3, - 1, - 1, - 6, - 4, - 4, - 1, - 3, - 4, - 1, - 4, - 1, - 1, - 2, - 6, - 6, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 4, - 3, - 2, - 2, - 3, - 1, - 1, - 7, - 1, - 6, - 1, - 4, - 3, - 3, - 7, - 1, - 11, - 3, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 6, - 10, - 7, - 2, - 3, - 1, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 6, - 2, - 4, - 2, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 5, - 11, - 2, - 1, - 5, - 4, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 1, - 2, - 2, - 6, - 7, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 7, - 4, - 1, - 2, - 2, - 2, - 1, - 5, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 4, - 3, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 8, - 1, - 1, - 4, - 4, - 1, - 2, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 5, - 1, - 7, - 1, - 3, - 10, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 6, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 3, - 4, - 1, - 5, - 9, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 3, - 2, - 9, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 5, - 1, - 3, - 10, - 6, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 7, - 3, - 3, - 9, - 11, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 5, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 1, - 1, - 2, - 2, - 4, - 3, - 3, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 10, - 8, - 1, - 4, - 1, - 3, - 1, - 1, - 3, - 1, - 3, - 4, - 1, - 4, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 2, - 1, - 1, - 1, - 2, - 5, - 4, - 3, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 3, - 3, - 2, - 1, - 4, - 1, - 1, - 8, - 8, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 2, - 6, - 1, - 4, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 11, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 4, - 1, - 18, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 4, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 4, - 1, - 1, - 1, - 1 - ], - "total": 2220, - "totalUnique": 18, - "unique": { - "1": 1047, - "2": 382, - "3": 302, - "4": 157, - "5": 61, - "6": 78, - "7": 62, - "8": 49, - "9": 28, - "10": 18, - "11": 18, - "12": 11, - "13": 2, - "14": 1, - "15": 1, - "18": 1, - "19": 1, - "151": 1 - }, - "uniquenessRatio": 0.008108108108108109 - } - }, - "selectors": { - "total": 4036, - "totalUnique": 2618, - "uniquenessRatio": 0.6486620416253717, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 1, - 4, - 1 - ], - "sum": [ - 2, - 12368, - 1936 - ], - "mean": [ - 0.0004955401387512388, - 3.064420218037661, - 0.4796828543111992 - ], - "mode": [ - 0, - 2, - 0 - ], - "items": [ - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ] - ], - "total": 4036, - "totalUnique": 27, - "unique": { - "0,0,1": 17, - "0,1,0": 533, - "0,2,0": 834, - "0,1,1": 112, - "0,2,1": 151, - "0,3,0": 548, - "0,3,1": 284, - "0,4,0": 239, - "0,4,1": 336, - "0,6,1": 113, - "0,5,1": 373, - "0,5,2": 114, - "0,7,1": 9, - "0,4,2": 109, - "0,5,0": 137, - "0,3,2": 19, - "0,3,3": 8, - "0,6,0": 42, - "1,4,1": 1, - "0,7,0": 38, - "0,2,2": 2, - "1,0,0": 1, - "0,1,2": 8, - "0,1,4": 1, - "0,7,2": 4, - "0,0,0": 1, - "0,8,0": 2 - }, - "uniquenessRatio": 0.006689791873141724 - }, - "complexity": { - "min": 1, - "max": 18, - "mean": 5.616947472745292, - "mode": 3, - "range": 17, - "sum": 22670, - "total": 4036, - "totalUnique": 17, - "unique": { - "1": 552, - "2": 208, - "3": 727, - "4": 414, - "5": 346, - "6": 274, - "7": 233, - "8": 207, - "9": 287, - "10": 351, - "11": 288, - "12": 85, - "13": 13, - "14": 31, - "15": 8, - "16": 8, - "18": 4 - }, - "uniquenessRatio": 0.00421209117938553, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 5, - 6, - 6, - 3, - 4, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 7, - 7, - 7, - 1, - 3, - 3, - 3, - 4, - 8, - 8, - 5, - 5, - 5, - 5, - 1, - 3, - 7, - 6, - 6, - 11, - 6, - 12, - 6, - 6, - 6, - 8, - 8, - 8, - 11, - 11, - 10, - 11, - 9, - 11, - 11, - 13, - 6, - 9, - 9, - 11, - 12, - 12, - 12, - 12, - 8, - 11, - 6, - 8, - 10, - 8, - 7, - 6, - 6, - 12, - 10, - 10, - 6, - 10, - 9, - 11, - 11, - 10, - 11, - 10, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 9, - 10, - 11, - 13, - 11, - 11, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 10, - 7, - 9, - 10, - 11, - 11, - 9, - 9, - 10, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 7, - 11, - 11, - 12, - 12, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 7, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 11, - 11, - 10, - 10, - 10, - 10, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 2, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 2, - 6, - 4, - 4, - 3, - 4, - 4, - 9, - 6, - 8, - 4, - 1, - 2, - 5, - 4, - 4, - 3, - 3, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 4, - 6, - 3, - 4, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 6, - 7, - 6, - 7, - 6, - 7, - 6, - 7, - 7, - 7, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 9, - 9, - 9, - 9, - 3, - 4, - 3, - 3, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 10, - 10, - 10, - 9, - 11, - 11, - 10, - 9, - 11, - 11, - 10, - 9, - 9, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 10, - 10, - 10, - 10, - 10, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 10, - 10, - 10, - 9, - 9, - 11, - 11, - 11, - 11, - 10, - 10, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 10, - 10, - 10, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 9, - 10, - 8, - 9, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 6, - 4, - 6, - 3, - 6, - 3, - 3, - 4, - 10, - 6, - 8, - 8, - 8, - 10, - 6, - 8, - 12, - 12, - 12, - 12, - 12, - 13, - 1, - 1, - 5, - 6, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 4, - 4, - 4, - 5, - 7, - 7, - 9, - 6, - 6, - 8, - 13, - 9, - 3, - 3, - 3, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 4, - 3, - 3, - 1, - 3, - 4, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 7, - 7, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 3, - 5, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 1, - 5, - 5, - 7, - 7, - 7, - 7, - 9, - 8, - 9, - 8, - 9, - 8, - 9, - 8, - 9, - 9, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 11, - 11, - 11, - 11, - 5, - 6, - 5, - 5, - 6, - 8, - 6, - 10, - 8, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 6, - 6, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 2, - 1, - 1, - 2, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 5, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 4, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 3, - 3, - 1, - 3, - 10, - 11, - 10, - 11, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 9, - 9, - 5, - 5, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 15, - 15, - 15, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 3, - 4, - 5, - 6, - 8, - 3, - 7, - 6, - 3, - 3, - 3, - 4, - 5, - 6, - 3, - 4, - 5, - 4, - 6, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 7, - 7, - 7, - 1, - 3, - 3, - 3, - 4, - 10, - 8, - 13, - 14, - 14, - 14, - 15, - 14, - 14, - 14, - 15, - 14, - 14, - 14, - 15, - 14, - 14, - 14, - 15, - 14, - 14, - 14, - 15, - 1, - 8, - 8, - 10, - 7, - 6, - 6, - 11, - 6, - 12, - 6, - 6, - 6, - 8, - 8, - 8, - 10, - 11, - 11, - 11, - 7, - 9, - 12, - 12, - 12, - 12, - 6, - 8, - 6, - 8, - 6, - 8, - 6, - 8, - 6, - 8, - 6, - 8, - 10, - 6, - 6, - 7, - 6, - 12, - 10, - 10, - 10, - 9, - 11, - 11, - 10, - 11, - 10, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 9, - 10, - 11, - 13, - 10, - 11, - 11, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 5, - 5, - 5, - 5, - 10, - 10, - 10, - 11, - 11, - 9, - 9, - 9, - 10, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 10, - 11, - 11, - 11, - 11, - 12, - 12, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 11, - 11, - 10, - 10, - 10, - 10, - 1, - 1, - 1, - 5, - 4, - 4, - 3, - 3, - 4, - 5, - 5, - 5, - 8, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 2, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 1, - 1, - 3, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 4, - 1, - 3, - 3, - 3, - 7, - 3, - 3, - 6, - 5, - 5, - 5, - 8, - 10, - 10, - 10, - 1, - 2, - 1, - 1, - 1, - 4, - 4, - 3, - 3, - 5, - 10, - 8, - 4, - 4, - 9, - 1, - 3, - 5, - 1, - 1, - 1, - 3, - 5, - 6, - 3, - 4, - 3, - 5, - 5, - 4, - 4, - 10, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 1, - 3, - 5, - 2, - 4, - 5, - 1, - 4, - 4, - 2, - 4, - 3, - 3, - 3, - 5, - 5, - 3, - 4, - 6, - 6, - 6, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 2, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 1, - 1, - 3, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 4, - 1, - 1, - 3, - 3, - 6, - 5, - 5, - 5, - 6, - 8, - 10, - 10, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 2, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 5, - 5, - 3, - 4, - 3, - 4, - 4, - 2, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 5, - 6, - 8, - 9, - 9, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 2, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 1, - 3, - 4, - 5, - 4, - 3, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 8, - 8, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 6, - 2, - 1, - 3, - 4, - 5, - 1, - 1, - 2, - 4, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 4, - 5, - 5, - 5, - 5, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 6, - 8, - 10, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 8, - 8, - 1, - 2, - 3, - 6, - 4, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 4, - 5, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 9, - 9, - 9, - 9, - 7, - 9, - 9, - 6, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 5, - 6, - 4, - 6, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 6, - 6, - 6, - 10, - 10, - 8, - 8, - 6, - 8, - 8, - 6, - 6, - 6, - 8, - 8, - 6, - 6, - 6, - 6, - 7, - 7, - 6, - 6, - 6, - 6, - 8, - 8, - 6, - 6, - 6, - 7, - 7, - 8, - 9, - 9, - 8, - 8, - 8, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 6, - 6, - 6, - 6, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 6, - 6, - 6, - 6, - 1, - 1, - 3, - 1, - 2, - 3, - 3, - 3, - 3, - 2, - 4, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 3, - 5, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 6, - 8, - 8, - 9, - 8, - 6, - 6, - 7, - 6, - 6, - 7, - 6, - 7, - 1, - 3, - 5, - 5, - 5, - 5, - 6, - 7, - 7, - 9, - 5, - 7, - 7, - 7, - 8, - 8, - 9, - 11, - 10, - 7, - 5, - 5, - 3, - 5, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 6, - 7, - 7, - 7, - 7, - 7, - 3, - 5, - 4, - 4, - 3, - 3, - 5, - 6, - 7, - 4, - 6, - 7, - 7, - 3, - 5, - 6, - 5, - 8, - 9, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 4, - 4, - 1, - 3, - 1, - 6, - 8, - 8, - 8, - 8, - 12, - 12, - 14, - 8, - 8, - 1, - 3, - 5, - 5, - 3, - 5, - 3, - 5, - 2, - 1, - 1, - 8, - 6, - 8, - 7, - 1, - 1, - 1, - 3, - 5, - 5, - 6, - 8, - 8, - 7, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 13, - 13, - 13, - 13, - 14, - 14, - 14, - 14, - 8, - 9, - 10, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 4, - 1, - 2, - 4, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 3, - 5, - 1, - 3, - 5, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 4, - 1, - 3, - 4, - 6, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 6, - 8, - 6, - 6, - 6, - 10, - 6, - 10, - 8, - 6, - 6, - 6, - 10, - 11, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 9, - 9, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 6, - 7, - 7, - 9, - 6, - 6, - 8, - 8, - 8, - 8, - 6, - 7, - 8, - 8, - 6, - 6, - 6, - 9, - 7, - 5, - 8, - 8, - 9, - 9, - 7, - 9, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 6, - 6, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 3, - 3, - 4, - 6, - 3, - 4, - 1, - 10, - 10, - 5, - 10, - 7, - 10, - 7, - 9, - 6, - 9, - 6, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 8, - 8, - 8, - 2, - 1, - 1, - 1, - 1, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 9, - 4, - 4, - 4, - 3, - 4, - 6, - 4, - 8, - 4, - 6, - 14, - 14, - 6, - 6, - 6, - 5, - 6, - 4, - 8, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 5, - 5, - 6, - 4, - 4, - 4, - 5, - 3, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 3, - 8, - 3, - 3, - 1, - 3, - 5, - 6, - 4, - 5, - 3, - 6, - 5, - 8, - 6, - 8, - 6, - 8, - 8, - 8, - 6, - 7, - 9, - 9, - 9, - 9, - 4, - 4, - 6, - 4, - 6, - 6, - 3, - 3, - 3, - 1, - 3, - 5, - 3, - 1, - 1, - 3, - 3, - 2, - 4, - 2, - 2, - 4, - 4, - 4, - 1, - 13, - 13, - 2, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 3, - 3, - 7, - 7, - 7, - 7, - 5, - 5, - 3, - 3, - 7, - 7, - 8, - 3, - 3, - 5, - 7, - 7, - 9, - 9, - 11, - 11, - 7, - 7, - 9, - 9, - 11, - 11, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 5, - 7, - 5, - 7, - 5, - 7, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 6, - 6, - 5, - 5, - 3, - 4, - 6, - 3, - 5, - 4, - 3, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 8, - 9, - 5, - 9, - 9, - 7, - 8, - 8, - 8, - 8, - 8, - 9, - 9, - 9, - 10, - 5, - 5, - 6, - 5, - 7, - 6, - 8, - 8, - 7, - 7, - 10, - 10, - 9, - 9, - 12, - 12, - 11, - 11, - 10, - 10, - 9, - 9, - 8, - 7, - 8, - 7, - 12, - 12, - 11, - 11, - 10, - 9, - 10, - 9, - 10, - 9, - 10, - 9, - 12, - 11, - 10, - 10, - 10, - 9, - 9, - 9, - 10, - 9, - 10, - 9, - 10, - 9, - 10, - 9, - 12, - 11, - 10, - 10, - 9, - 9, - 10, - 9, - 10, - 9, - 4, - 3, - 8, - 6, - 7, - 5, - 4, - 3, - 4, - 4, - 3, - 3, - 6, - 6, - 5, - 5, - 6, - 6, - 5, - 5, - 7, - 7, - 6, - 6, - 6, - 5, - 6, - 6, - 6, - 6, - 5, - 5, - 5, - 5, - 6, - 8, - 7, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 5, - 7, - 7, - 9, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 8, - 8, - 7, - 7, - 5, - 6, - 11, - 11, - 5, - 5, - 7, - 5, - 5, - 7, - 5, - 5, - 5, - 8, - 5, - 5, - 5, - 5, - 6, - 5, - 8, - 7, - 5, - 10, - 5, - 5, - 6, - 11, - 3, - 4, - 6, - 9, - 6, - 3, - 3, - 6, - 8, - 9, - 10, - 3, - 3, - 8, - 4, - 7, - 6, - 6, - 5, - 6, - 7, - 8, - 10, - 3, - 5, - 3, - 6, - 5, - 5, - 7, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 7, - 9, - 11, - 6, - 7, - 7, - 7, - 3, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 8, - 7, - 7, - 7, - 7, - 7, - 9, - 3, - 4, - 5, - 5, - 6, - 10, - 10, - 3, - 3, - 5, - 3, - 7, - 7, - 7, - 9, - 9, - 16, - 7, - 9, - 9, - 16, - 5, - 5, - 5, - 7, - 7, - 5, - 7, - 7, - 7, - 9, - 9, - 7, - 9, - 9, - 7, - 9, - 9, - 7, - 9, - 9, - 16, - 16, - 16, - 16, - 18, - 18, - 18, - 18, - 16, - 16, - 7, - 7, - 8, - 8, - 8, - 3, - 5, - 1, - 8, - 13, - 6, - 11 - ] - }, - "id": { - "total": 2, - "totalUnique": 2, - "unique": { - "body:not(.layout-homepage-mobile.kiln-edit-mode) .ad-slot #ad_ns_atf_01 + .ad-slot__feedback": 1, - "#taui-mvpdpicker": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0004955401387512388 - }, - "pseudoClasses": { - "total": 2476, - "totalUnique": 20, - "unique": { - "root": 6, - "hover": 301, - "after": 113, - "not": 1363, - "last-child": 67, - "has": 76, - "first-child": 178, - "nth-child": 107, - "before": 127, - "active": 34, - "focus": 49, - "empty": 10, - "only-child": 9, - "is": 1, - "first-of-type": 13, - "last-of-type": 6, - "-ms-input-placeholder": 2, - "checked": 10, - "disabled": 2, - "nth-of-type": 2 - }, - "uniquenessRatio": 0.008077544426494346 - }, - "accessibility": { - "total": 4, - "totalUnique": 4, - "unique": { - ".kiln-edit-mode .kiln-overlay-form.card button[aria-label='Add Card']": 1, - ".kiln-edit-mode .kiln-overlay-form.card button[aria-label='Duplicate Card']": 1, - ".kiln-edit-mode .kiln-overlay-form.byline button[aria-label='Do Magic']": 1, - ".kiln-edit-mode .kiln-overlay-form.byline button[aria-label='Do Magic']:hover": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0009910802775024777 - }, - "keyframes": { - "total": 12, - "totalUnique": 5, - "unique": { - "0%": 2, - "100%": 2, - "50%": 2, - "from": 3, - "to": 3 - }, - "uniquenessRatio": 0.4166666666666667 - }, - "prefixed": { - "total": 4, - "totalUnique": 4, - "unique": { - ".container_ribbon__field-links::-webkit-scrollbar": 1, - ".search-bar__input:-ms-input-placeholder": 1, - ".search-bar__input::-ms-clear": 1, - ".ad-feedback__container .ad-feedback__comment:-ms-input-placeholder": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0009910802775024777 - }, - "combinators": { - "total": 5663, - "totalUnique": 4, - "unique": { - " ": 5331, - ">": 201, - "+": 28, - "~": 103 - }, - "uniquenessRatio": 0.0007063393960798164 - } - }, - "declarations": { - "total": 5959, - "totalUnique": 1259, - "uniquenessRatio": 0.21127705990938078, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 5959 - } - }, - "properties": { - "total": 5959, - "totalUnique": 289, - "unique": { - "font-family": 86, - "font-weight": 197, - "--theme-primary": 1, - "--theme-background": 1, - "--theme-divider": 1, - "--theme-copy": 1, - "--theme-copy-accent": 1, - "--theme-copy-accent-hover": 1, - "--theme-icon-color": 1, - "--theme-icon-color-hover": 1, - "--theme-ad-slot-background-color": 1, - "--theme-ad-slot-text-color": 1, - "--theme-ad-slot-text-hover": 1, - "--theme-font-family": 1, - "--theme-searchbox-border": 1, - "--theme-copy-follow": 1, - "--theme-article-spacing-top": 1, - "--theme-link-color-hover": 1, - "--theme-color-link": 1, - "--theme-button-color": 1, - "--theme-button-color-hover": 1, - "--theme-edition-picker-link": 1, - "--theme-underline-skip-ink": 1, - "--theme-paragraph__font-size": 1, - "--theme-paragraph__line-height": 1, - "--theme-paragraph__font-size--from-small": 1, - "--theme-paragraph__line-height--from-small": 1, - "--theme-paragraph__link-color": 1, - "--theme-paragraph__link-decoration": 1, - "--theme-paragraph__link-decoration-color": 1, - "--theme-paragraph__link-decoration-thickness": 1, - "--theme-paragraph__hover-link-decoration": 1, - "--theme-paragraph__hover-link-offset": 1, - "--theme-header__hover-item-hover": 1, - "--theme-header__item-link-color": 1, - "--theme-header__item-link-hover-color": 1, - "--theme-header__item-link-hover-background-color": 1, - "--theme-header__mobile-dropdown-border-color": 1, - "--theme-header__mobile-dropdown-background": 1, - "--theme-header__item-link-line-height": 1, - "--theme-header__dropdown-background": 1, - "--theme-header__dropdown-border-color": 1, - "--theme-header__login-button": 1, - "--theme-headline__font-size": 2, - "--theme-headline__line-height": 2, - "--theme-headline__text-color": 1, - "--theme-headline-sponsorship__lateral-margin": 1, - "--theme-headline__font-weight": 1, - "--theme-headline__margin-bottom": 1, - "--theme-headline__font-family": 1, - "--theme-headline__padding-bottom": 1, - "--theme-headline__padding-bottom-viewport-large": 1, - "--theme-headline__teaser-font-size": 1, - "--theme-headline__teaser-line-height": 1, - "--theme-headline__teaser-margin-top": 1, - "--theme-headline__teaser-margin-botton": 1, - "--theme-section-headline__font-size": 2, - "--theme-section-headline__line-height": 2, - "--theme-section-headline__text-color": 1, - "--theme-section-headline__font-weight": 1, - "--theme-section-headline__font-family": 1, - "--theme-section-headline__margin-bottom": 2, - "--theme-section-headline-text__margin-top": 1, - "--theme-section-headline-text__margin-bottom": 3, - "--theme-section-headline-teaser__font-size": 1, - "--theme-section-headline-teaser__color": 1, - "--theme-subheader-h2__font-size": 2, - "--theme-subheader-h3__font-size": 2, - "--theme-subheader-h4__font-size": 1, - "--theme-subheader-h5__font-size": 1, - "--theme-subheader-h6__font-size": 1, - "--theme-subheader-h2__line-height": 2, - "--theme-subheader-h3__line-height": 2, - "--theme-subheader-h4__line-height": 1, - "--theme-subheader-h5__line-height": 1, - "--theme-subheader-h6__line-height": 1, - "--theme-subheader__font-family": 1, - "--theme-subheader__font-weight": 1, - "--theme-iframe__display": 1, - "--theme-list__link-decoration": 1, - "--theme-container__font-family": 1, - "--theme-container__font-weight": 1, - "--theme-container-color--hover": 1, - "--theme-container-image-color--hover": 1, - "--theme-container-text-decoration--hover": 1, - "--theme-container-text-decoration-color--hover": 1, - "--theme-container-image-opacity--hover": 1, - "--theme-container-margin-bottom-default": 1, - "--theme-container-margin-bottom-600": 2, - "--theme-container-title__border-color": 1, - "--theme-container-title__border-decorator-color": 1, - "--theme-container-title__border-decorator-initial-width": 1, - "--theme-container-title__margin-bottom": 1, - "--theme-container-title__margin-bottom-grid-4": 1, - "--theme-container-title__text-size": 1, - "--theme-container-title__arrow-color--initial": 1, - "--theme-container-title__arrow-color--hover": 1, - "--theme-container-title__arrow-size": 1, - "--theme-container-title__arrow-top-pos": 1, - "--theme-container-link__background-color": 1, - "--theme-container-item__margin-bottom-feature-list": 1, - "--theme-container__margin-bottom-grid-3": 2, - "--theme-container__margin-bottom-feature-grid-3": 3, - "--theme-container-lead-title__font-family": 1, - "--theme-container-lead-title__font-weight": 1, - "--theme-container-lead-title__font-size": 1, - "--theme-container-lead-title__line-height": 1, - "--theme-container-lead-title-mobile__font-size": 1, - "--theme-header-mobile-nav-border-color": 1, - "--theme-text-banner__gradient-1": 1, - "--theme-text-banner__gradient-2": 1, - "--theme-zone__padding-bottom-default": 1, - "--theme-zone__padding-bottom-small": 1, - "--theme-zone__margin-bottom-default": 1, - "--theme-zone__margin-top": 1, - "--theme-zone-title__font-family": 1, - "--theme-zone-title__font-size": 1, - "--theme-zone-title__font-weight": 1, - "--theme-zone-title__line-height": 1, - "--theme-zone-title__link-decoration": 1, - "--theme-zone-title__hover-link-decoration": 1, - "--social-sharing-display": 2, - "--social-sharing-margin-top": 1, - "--social-sharing-open-close-fill": 1, - "--social-sharing-facebook-fill": 1, - "--social-sharing-twitter-fill": 1, - "--social-sharing-email-fill": 1, - "--social-sharing-link-fill": 1, - "--theme-disclaimer-background": 1, - "--theme-disclaimer-color": 1, - "--theme-disclaimer-style": 1, - "--theme-disclaimer-link-color": 1, - "--theme-disclaimer-link-weight": 1, - "--theme-disclaimer-fontsize-sm": 1, - "--theme-disclaimer-fontsize-xl": 1, - "--theme-disclaimer-lineheight-sm": 1, - "--theme-disclaimer-lineheight-xl": 1, - "--theme-newsletter-form-disable-button": 1, - "--theme-paragraph-fontsize-sm": 1, - "--theme-paragraph-fontsize-xl": 1, - "--theme-paragraph-lineheight-sm": 1, - "--theme-paragraph-lineheight-xl": 1, - "--theme-main-wrapper-rail-width": 1, - "--theme-main-wrapper-right-rail-width": 1, - "--theme-main-wrapper-column-gap-medium-width": 1, - "--theme-main-wrapper-column-gap-large-width": 1, - "--theme-primary-logo-fill": 1, - "--theme-secondary-logo-fill": 1, - "--theme-subheader-anchor-display": 1, - "--theme-primary-layout-color": 1, - "--theme-secondary-layout-color": 1, - "--theme-video-playlist-status-label-color": 1, - "--theme-video-playlist-item-hover-color": 1, - "src": 4, - "display": 516, - "justify-content": 67, - "max-width": 70, - "min-width": 20, - "min-height": 48, - "margin-bottom": 193, - "-webkit-text-decoration-line": 43, - "text-decoration-line": 41, - "text-decoration-thickness": 38, - "text-underline-offset": 40, - "-webkit-text-decoration-skip-ink": 13, - "text-decoration-skip-ink": 12, - "-webkit-text-decoration-skip": 12, - "text-decoration-skip": 12, - "padding": 247, - "width": 382, - "font-size": 289, - "line-height": 211, - "letter-spacing": 89, - "color": 290, - "-webkit-text-decoration-color": 39, - "text-decoration-color": 39, - "-webkit-text-decoration": 23, - "text-decoration": 91, - "align-items": 67, - "margin-top": 114, - "border-top": 45, - "border-bottom": 55, - "height": 209, - "margin-left": 56, - "flex": 11, - "content": 93, - "text-align": 75, - "margin": 257, - "margin-right": 37, - "text-transform": 48, - "flex-wrap": 22, - "border": 55, - "border-radius": 39, - "background-color": 97, - "padding-top": 39, - "border-color": 6, - "fill": 56, - "position": 191, - "z-index": 31, - "right": 42, - "left": 56, - "background": 99, - "padding-bottom": 71, - "max-height": 50, - "object-fit": 12, - "box-sizing": 13, - "top": 74, - "transition": 74, - "transition-timing-function": 7, - "vertical-align": 9, - "cursor": 51, - "list-style": 19, - "opacity": 32, - "object-position": 14, - "flex-direction": 39, - "visibility": 33, - "overflow": 36, - "font-style": 7, - "float": 13, - "align-self": 11, - "flex-grow": 8, - "-webkit-mask": 17, - "mask": 17, - "pointer-events": 12, - "text-indent": 7, - "-webkit-mask-size": 8, - "mask-size": 8, - "bottom": 18, - "transform": 27, - "-ms-overflow-style": 1, - "overflow-y": 10, - "scrollbar-width": 1, - "white-space": 16, - "padding-right": 6, - "-webkit-user-select": 4, - "-ms-user-select": 4, - "user-select": 4, - "animation": 14, - "background-repeat": 5, - "background-image": 16, - "order": 2, - "clear": 2, - "background-size": 8, - "-o-transition": 4, - "-webkit-transition": 4, - "text-overflow": 1, - "word-wrap": 2, - "box-shadow": 10, - "gap": 1, - "list-style-type": 1, - "column-gap": 2, - "row-gap": 3, - "grid-template-columns": 4, - "--radio-button-color": 1, - "--radio-button-border-color": 1, - "-webkit-appearance": 2, - "appearance": 1, - "font": 1, - "place-content": 1, - "transition-duration": 2, - "flex-flow": 5, - "border-left": 2, - "outline": 5, - "border-right": 1, - "background-position": 2, - "filter": 6, - "resize": 1, - "padding-left": 5, - "border-width": 2, - "-webkit-clip-path": 1, - "clip-path": 1, - "scroll-padding-top": 1, - "border-style": 1, - "overflow-x": 5, - "-webkit-text-size-adjust": 1, - "text-size-adjust": 1, - "-moz-osx-font-smoothing": 1, - "-webkit-font-smoothing": 1, - "text-rendering": 1, - "word-break": 1, - "border-bottom-style": 1, - "border-bottom-color": 2, - "-moz-appearance": 1, - "outline-offset": 1, - "counter-reset": 2, - "counter-increment": 5, - "font-stretch": 1, - "-webkit-mask-image": 1, - "mask-image": 1 - }, - "uniquenessRatio": 0.04849807014599765, - "prefixed": { - "total": 180, - "totalUnique": 19, - "unique": { - "-webkit-text-decoration-line": 43, - "-webkit-text-decoration-skip-ink": 13, - "-webkit-text-decoration-skip": 12, - "-webkit-text-decoration-color": 39, - "-webkit-text-decoration": 23, - "-webkit-mask": 17, - "-webkit-mask-size": 8, - "-ms-overflow-style": 1, - "-webkit-user-select": 4, - "-ms-user-select": 4, - "-o-transition": 4, - "-webkit-transition": 4, - "-webkit-appearance": 2, - "-webkit-clip-path": 1, - "-webkit-text-size-adjust": 1, - "-moz-osx-font-smoothing": 1, - "-webkit-font-smoothing": 1, - "-moz-appearance": 1, - "-webkit-mask-image": 1 - }, - "uniquenessRatio": 0.10555555555555556, - "ratio": 0.03020641047155563 - }, - "custom": { - "total": 169, - "totalUnique": 153, - "unique": { - "--theme-primary": 1, - "--theme-background": 1, - "--theme-divider": 1, - "--theme-copy": 1, - "--theme-copy-accent": 1, - "--theme-copy-accent-hover": 1, - "--theme-icon-color": 1, - "--theme-icon-color-hover": 1, - "--theme-ad-slot-background-color": 1, - "--theme-ad-slot-text-color": 1, - "--theme-ad-slot-text-hover": 1, - "--theme-font-family": 1, - "--theme-searchbox-border": 1, - "--theme-copy-follow": 1, - "--theme-article-spacing-top": 1, - "--theme-link-color-hover": 1, - "--theme-color-link": 1, - "--theme-button-color": 1, - "--theme-button-color-hover": 1, - "--theme-edition-picker-link": 1, - "--theme-underline-skip-ink": 1, - "--theme-paragraph__font-size": 1, - "--theme-paragraph__line-height": 1, - "--theme-paragraph__font-size--from-small": 1, - "--theme-paragraph__line-height--from-small": 1, - "--theme-paragraph__link-color": 1, - "--theme-paragraph__link-decoration": 1, - "--theme-paragraph__link-decoration-color": 1, - "--theme-paragraph__link-decoration-thickness": 1, - "--theme-paragraph__hover-link-decoration": 1, - "--theme-paragraph__hover-link-offset": 1, - "--theme-header__hover-item-hover": 1, - "--theme-header__item-link-color": 1, - "--theme-header__item-link-hover-color": 1, - "--theme-header__item-link-hover-background-color": 1, - "--theme-header__mobile-dropdown-border-color": 1, - "--theme-header__mobile-dropdown-background": 1, - "--theme-header__item-link-line-height": 1, - "--theme-header__dropdown-background": 1, - "--theme-header__dropdown-border-color": 1, - "--theme-header__login-button": 1, - "--theme-headline__font-size": 2, - "--theme-headline__line-height": 2, - "--theme-headline__text-color": 1, - "--theme-headline-sponsorship__lateral-margin": 1, - "--theme-headline__font-weight": 1, - "--theme-headline__margin-bottom": 1, - "--theme-headline__font-family": 1, - "--theme-headline__padding-bottom": 1, - "--theme-headline__padding-bottom-viewport-large": 1, - "--theme-headline__teaser-font-size": 1, - "--theme-headline__teaser-line-height": 1, - "--theme-headline__teaser-margin-top": 1, - "--theme-headline__teaser-margin-botton": 1, - "--theme-section-headline__font-size": 2, - "--theme-section-headline__line-height": 2, - "--theme-section-headline__text-color": 1, - "--theme-section-headline__font-weight": 1, - "--theme-section-headline__font-family": 1, - "--theme-section-headline__margin-bottom": 2, - "--theme-section-headline-text__margin-top": 1, - "--theme-section-headline-text__margin-bottom": 3, - "--theme-section-headline-teaser__font-size": 1, - "--theme-section-headline-teaser__color": 1, - "--theme-subheader-h2__font-size": 2, - "--theme-subheader-h3__font-size": 2, - "--theme-subheader-h4__font-size": 1, - "--theme-subheader-h5__font-size": 1, - "--theme-subheader-h6__font-size": 1, - "--theme-subheader-h2__line-height": 2, - "--theme-subheader-h3__line-height": 2, - "--theme-subheader-h4__line-height": 1, - "--theme-subheader-h5__line-height": 1, - "--theme-subheader-h6__line-height": 1, - "--theme-subheader__font-family": 1, - "--theme-subheader__font-weight": 1, - "--theme-iframe__display": 1, - "--theme-list__link-decoration": 1, - "--theme-container__font-family": 1, - "--theme-container__font-weight": 1, - "--theme-container-color--hover": 1, - "--theme-container-image-color--hover": 1, - "--theme-container-text-decoration--hover": 1, - "--theme-container-text-decoration-color--hover": 1, - "--theme-container-image-opacity--hover": 1, - "--theme-container-margin-bottom-default": 1, - "--theme-container-margin-bottom-600": 2, - "--theme-container-title__border-color": 1, - "--theme-container-title__border-decorator-color": 1, - "--theme-container-title__border-decorator-initial-width": 1, - "--theme-container-title__margin-bottom": 1, - "--theme-container-title__margin-bottom-grid-4": 1, - "--theme-container-title__text-size": 1, - "--theme-container-title__arrow-color--initial": 1, - "--theme-container-title__arrow-color--hover": 1, - "--theme-container-title__arrow-size": 1, - "--theme-container-title__arrow-top-pos": 1, - "--theme-container-link__background-color": 1, - "--theme-container-item__margin-bottom-feature-list": 1, - "--theme-container__margin-bottom-grid-3": 2, - "--theme-container__margin-bottom-feature-grid-3": 3, - "--theme-container-lead-title__font-family": 1, - "--theme-container-lead-title__font-weight": 1, - "--theme-container-lead-title__font-size": 1, - "--theme-container-lead-title__line-height": 1, - "--theme-container-lead-title-mobile__font-size": 1, - "--theme-header-mobile-nav-border-color": 1, - "--theme-text-banner__gradient-1": 1, - "--theme-text-banner__gradient-2": 1, - "--theme-zone__padding-bottom-default": 1, - "--theme-zone__padding-bottom-small": 1, - "--theme-zone__margin-bottom-default": 1, - "--theme-zone__margin-top": 1, - "--theme-zone-title__font-family": 1, - "--theme-zone-title__font-size": 1, - "--theme-zone-title__font-weight": 1, - "--theme-zone-title__line-height": 1, - "--theme-zone-title__link-decoration": 1, - "--theme-zone-title__hover-link-decoration": 1, - "--social-sharing-display": 2, - "--social-sharing-margin-top": 1, - "--social-sharing-open-close-fill": 1, - "--social-sharing-facebook-fill": 1, - "--social-sharing-twitter-fill": 1, - "--social-sharing-email-fill": 1, - "--social-sharing-link-fill": 1, - "--theme-disclaimer-background": 1, - "--theme-disclaimer-color": 1, - "--theme-disclaimer-style": 1, - "--theme-disclaimer-link-color": 1, - "--theme-disclaimer-link-weight": 1, - "--theme-disclaimer-fontsize-sm": 1, - "--theme-disclaimer-fontsize-xl": 1, - "--theme-disclaimer-lineheight-sm": 1, - "--theme-disclaimer-lineheight-xl": 1, - "--theme-newsletter-form-disable-button": 1, - "--theme-paragraph-fontsize-sm": 1, - "--theme-paragraph-fontsize-xl": 1, - "--theme-paragraph-lineheight-sm": 1, - "--theme-paragraph-lineheight-xl": 1, - "--theme-main-wrapper-rail-width": 1, - "--theme-main-wrapper-right-rail-width": 1, - "--theme-main-wrapper-column-gap-medium-width": 1, - "--theme-main-wrapper-column-gap-large-width": 1, - "--theme-primary-logo-fill": 1, - "--theme-secondary-logo-fill": 1, - "--theme-subheader-anchor-display": 1, - "--theme-primary-layout-color": 1, - "--theme-secondary-layout-color": 1, - "--theme-video-playlist-status-label-color": 1, - "--theme-video-playlist-item-hover-color": 1, - "--radio-button-color": 1, - "--radio-button-border-color": 1 - }, - "uniquenessRatio": 0.9053254437869822, - "ratio": 0.028360463164960565, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0585668736365161, - "mode": 1, - "range": 1, - "sum": 6308 - } - }, - "values": { - "colors": { - "total": 581, - "totalUnique": 69, - "unique": { - "#cc0000": 4, - "#0c0c0c": 161, - "#404040": 10, - "#e6e6e6": 54, - "#ffffff": 7, - "#b1b1b1": 21, - "#6e6e6e": 66, - "transparent": 18, - "rgba(12, 12, 12, 0.4)": 1, - "#cdb6f1": 1, - "#e5dbf8": 1, - "#4d4d4d": 2, - "#6a29d5": 1, - "#c0c0c0": 1, - "white": 1, - "#fafafa": 2, - "#fff": 80, - "rgba(12, 12, 12, 0.7)": 1, - "#ddd": 2, - "#f8f8f8": 8, - "#c00": 28, - "#fff4d1": 2, - "#ffe0e0": 2, - "#e2f8ff": 2, - "#120038": 4, - "#e6dbff": 4, - "#ffe5fa": 4, - "#e7e0fc": 4, - "#e5fbff": 4, - "#f7fff2": 4, - "#a4001e": 7, - "#000": 15, - "rgba(12,12,12,.5)": 2, - "rgba(0,0,0,.5)": 1, - "rgba(12,12,12,.9)": 1, - "#f13a3a": 1, - "#333": 1, - "#e3f2fd": 4, - "#1976d3": 1, - "#a2a2a2": 1, - "rgb(25 118 210 / 75%)": 1, - "#6d6d6d": 3, - "#4b4b4b": 1, - "#262626": 3, - "rgba(0,0,0,.25)": 3, - "#fefefe": 1, - "#006598": 2, - "#ffd5d5": 1, - "#a20000": 2, - "rgba(12,12,12,.2)": 1, - "rgba(12,12,12,.95)": 1, - "#e7e7e7": 1, - "rgba(0,0,0,.54)": 1, - "#8c8c8c": 3, - "#1976d2": 4, - "rgba(0,0,0,.1)": 1, - "#0066ce": 1, - "#0a0a0a": 2, - "#58e59e": 2, - "#ff7979": 2, - "#edf4fb": 1, - "#5c5c5c": 1, - "#8cbae8": 1, - "#edf0f2": 1, - "#3061f2": 2, - "#617e8b": 1, - "#617e87": 2, - "#455a64": 1, - "#607d8b": 1 - }, - "uniquenessRatio": 0.11876075731497418, - "itemsPerContext": { - "--theme-primary": { - "total": 1, - "totalUnique": 1, - "unique": { - "#cc0000": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-background": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-divider": { - "total": 1, - "totalUnique": 1, - "unique": { - "#404040": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-copy": { - "total": 1, - "totalUnique": 1, - "unique": { - "#404040": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-copy-accent": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e6e6e6": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-copy-accent-hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-icon-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e6e6e6": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-icon-color-hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-ad-slot-background-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-ad-slot-text-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#b1b1b1": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-ad-slot-text-hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-searchbox-border": { - "total": 1, - "totalUnique": 1, - "unique": { - "#b1b1b1": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-copy-follow": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-link-color-hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6e6e6e": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-color-link": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-button-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6e6e6e": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-button-color-hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "#cc0000": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-edition-picker-link": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e6e6e6": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__link-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__item-link-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e6e6e6": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__item-link-hover-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__item-link-hover-background-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__mobile-dropdown-background": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__dropdown-background": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__login-button": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-headline__text-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-section-headline__text-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-color--hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-image-color--hover": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(12, 12, 12, 0.4)": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-title__border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e6e6e6": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-title__border-decorator-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#cc0000": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-title__arrow-color--initial": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header-mobile-nav-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-text-banner__gradient-1": { - "total": 1, - "totalUnique": 1, - "unique": { - "#cdb6f1": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-text-banner__gradient-2": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e5dbf8": 1 - }, - "uniquenessRatio": 1 - }, - "--social-sharing-open-close-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "#4d4d4d": 1 - }, - "uniquenessRatio": 1 - }, - "--social-sharing-facebook-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--social-sharing-twitter-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--social-sharing-email-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--social-sharing-link-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-background": { - "total": 1, - "totalUnique": 1, - "unique": { - "#e6e6e6": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#4d4d4d": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-link-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#6a29d5": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-newsletter-form-disable-button": { - "total": 1, - "totalUnique": 1, - "unique": { - "#c0c0c0": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-primary-logo-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "#cc0000": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-secondary-logo-fill": { - "total": 1, - "totalUnique": 1, - "unique": { - "white": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-primary-layout-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fafafa": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-secondary-layout-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-video-playlist-status-label-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(12, 12, 12, 0.7)": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-video-playlist-item-hover-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0c0c0c": 1 - }, - "uniquenessRatio": 1 - }, - "color": { - "total": 206, - "totalUnique": 17, - "unique": { - "#0c0c0c": 79, - "#6e6e6e": 53, - "#fff": 33, - "#b1b1b1": 3, - "#c00": 18, - "#6d6d6d": 2, - "#000": 3, - "#4b4b4b": 1, - "#262626": 2, - "#404040": 4, - "#a20000": 1, - "rgba(0,0,0,.54)": 1, - "#8c8c8c": 2, - "transparent": 1, - "#0a0a0a": 1, - "#5c5c5c": 1, - "#1976d2": 1 - }, - "uniquenessRatio": 0.0825242718446602 - }, - "border-top": { - "total": 8, - "totalUnique": 4, - "unique": { - "#e6e6e6": 4, - "#c00": 2, - "#58e59e": 1, - "#ff7979": 1 - }, - "uniquenessRatio": 0.5 - }, - "border-bottom": { - "total": 28, - "totalUnique": 10, - "unique": { - "#e6e6e6": 16, - "#0c0c0c": 3, - "#c00": 2, - "#6d6d6d": 1, - "#fefefe": 1, - "#0a0a0a": 1, - "#1976d2": 1, - "transparent": 1, - "#8c8c8c": 1, - "#6e6e6e": 1 - }, - "uniquenessRatio": 0.35714285714285715 - }, - "-webkit-text-decoration-color": { - "total": 18, - "totalUnique": 3, - "unique": { - "#0c0c0c": 16, - "#6e6e6e": 1, - "#fff": 1 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "text-decoration-color": { - "total": 18, - "totalUnique": 3, - "unique": { - "#0c0c0c": 16, - "#6e6e6e": 1, - "#fff": 1 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "border": { - "total": 22, - "totalUnique": 7, - "unique": { - "#ddd": 2, - "#0c0c0c": 7, - "#b1b1b1": 9, - "#a20000": 1, - "#fff": 1, - "#edf0f2": 1, - "#e6e6e6": 1 - }, - "uniquenessRatio": 0.3181818181818182 - }, - "background-color": { - "total": 75, - "totalUnique": 23, - "unique": { - "#f8f8f8": 4, - "transparent": 6, - "#fff": 11, - "#0c0c0c": 17, - "#b1b1b1": 7, - "#e6e6e6": 5, - "#6e6e6e": 3, - "rgba(0,0,0,.5)": 1, - "#333": 1, - "#e3f2fd": 4, - "#c00": 4, - "#006598": 1, - "#ffd5d5": 1, - "rgba(12,12,12,.2)": 1, - "#262626": 1, - "#404040": 1, - "#e7e7e7": 1, - "#1976d2": 1, - "rgba(0,0,0,.1)": 1, - "#58e59e": 1, - "#ff7979": 1, - "#fafafa": 1, - "#000": 1 - }, - "uniquenessRatio": 0.30666666666666664 - }, - "border-color": { - "total": 5, - "totalUnique": 3, - "unique": { - "#404040": 2, - "#6e6e6e": 2, - "#3061f2": 1 - }, - "uniquenessRatio": 0.6 - }, - "fill": { - "total": 25, - "totalUnique": 6, - "unique": { - "#fff": 5, - "#f8f8f8": 4, - "#0c0c0c": 5, - "#a4001e": 7, - "#6e6e6e": 3, - "#404040": 1 - }, - "uniquenessRatio": 0.24 - }, - "background": { - "total": 115, - "totalUnique": 26, - "unique": { - "#fff4d1": 2, - "#ffe0e0": 2, - "#e2f8ff": 2, - "#fff": 27, - "#120038": 4, - "#e6dbff": 4, - "#ffe5fa": 4, - "#e7e0fc": 4, - "#e5fbff": 4, - "#f7fff2": 4, - "#e6e6e6": 22, - "#000": 11, - "#c00": 2, - "#0c0c0c": 4, - "rgba(12,12,12,.5)": 2, - "rgba(12,12,12,.9)": 1, - "#f13a3a": 1, - "#006598": 1, - "rgba(12,12,12,.95)": 1, - "transparent": 6, - "#0066ce": 1, - "#edf4fb": 1, - "#3061f2": 1, - "#617e87": 2, - "#455a64": 1, - "#607d8b": 1 - }, - "uniquenessRatio": 0.22608695652173913 - }, - "--radio-button-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#1976d3": 1 - }, - "uniquenessRatio": 1 - }, - "--radio-button-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#a2a2a2": 1 - }, - "uniquenessRatio": 1 - }, - "box-shadow": { - "total": 4, - "totalUnique": 2, - "unique": { - "rgb(25 118 210 / 75%)": 1, - "rgba(0,0,0,.25)": 3 - }, - "uniquenessRatio": 0.5 - }, - "border-left": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "border-right": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#1976d2": 1, - "#8cbae8": 1 - }, - "uniquenessRatio": 1 - }, - "outline": { - "total": 1, - "totalUnique": 1, - "unique": { - "#617e8b": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 581, - "totalUnique": 6, - "unique": { - "hex6": 422, - "transparent": 18, - "rgba": 13, - "named": 1, - "hex3": 126, - "rgb": 1 - }, - "uniquenessRatio": 0.010327022375215147 - } - }, - "gradients": { - "total": 13, - "totalUnique": 7, - "unique": { - "linear-gradient(to bottom,#fff4d1,#ffe0e0 28%,#e2f8ff 65%,#fff 89%)": 2, - "linear-gradient(to bottom,#120038,#e6dbff 32%,#ffe5fa 65%,#fff 89%)": 2, - "linear-gradient(to bottom,#e7e0fc,#e5fbff 32%,#f7fff2 65%,#fff 89%)": 2, - "linear-gradient(to bottom,#120038,#e6dbff 22%,#ffe5fa 26%,#fff 39%)": 2, - "linear-gradient(to bottom,#e7e0fc,#e5fbff 22%,#f7fff2 26%,#fff 39%)": 2, - "repeating-linear-gradient(to bottom,#000,#000 2px,transparent 1px,transparent 880px)": 2, - "radial-gradient(ellipse at center,#617e87 0,#617e87 30%,transparent 30%,transparent 100%)": 1 - }, - "uniquenessRatio": 0.5384615384615384 - }, - "fontFamilies": { - "total": 84, - "totalUnique": 12, - "unique": { - "cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif": 51, - "cnn_sans_display": 3, - "helveticaneue": 1, - "var(--theme-zone-title__font-family)": 2, - "cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif,cnn_sans_display,helveticaneue,Helvetica,Arial,Utkal,sans-serif": 7, - "var(--theme-container__font-family)": 7, - "var(--theme-font-family)": 7, - "var(--theme-container-lead-title__font-family)": 1, - "system-ui,sans-serif": 1, - "Noto Sans,Arial,sans-serif": 2, - "'Material Icons'": 1, - "'Noto Sans',Arial,sans-serif": 1 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "fontSizes": { - "total": 288, - "totalUnique": 36, - "unique": { - "30px": 12, - "48px": 2, - "18px": 36, - "16px": 48, - "36px": 19, - "24px": 10, - "var(--theme-container-title__text-size)": 7, - "20px": 19, - "var(--theme-subheader-h2__font-size)": 7, - "10px": 15, - "12px": 26, - "46px": 7, - "56px": 7, - "32px": 7, - "14px": 33, - "26px": 2, - "var(--theme-container-lead-title__font-size)": 2, - "var(--theme-headline__font-size)": 1, - "var(--theme-paragraph__font-size)": 1, - "var(--theme-zone-title__font-size)": 1, - "8px": 2, - "11px": 1, - "42px": 1, - "64px": 1, - "74px": 1, - "84px": 1, - "94px": 1, - "104px": 1, - "15px": 9, - "13px": 2, - ".875em": 1, - "1.5em": 1, - ".8125em": 1, - "40px": 1, - "45px": 1, - "1vw": 1 - }, - "uniquenessRatio": 0.125 - }, - "lineHeights": { - "total": 211, - "totalUnique": 37, - "unique": { - "0": 7, - "1": 2, - "30px": 12, - "56px": 2, - "18px": 13, - "20px": 17, - "16px": 9, - "36px": 9, - "26px": 33, - "var(--theme-subheader-h2__line-height)": 7, - "12px": 9, - "22px": 26, - "38px": 14, - "52px": 7, - "62px": 7, - ".4": 2, - "var(--theme-container-lead-title__line-height)": 2, - "var(--theme-headline__line-height)": 1, - "var(--theme-paragraph__line-height)": 1, - "24px": 12, - "var(--theme-zone-title__line-height)": 1, - "48px": 1, - "86px": 1, - "96px": 1, - "106px": 1, - "116px": 1, - "126px": 1, - "42px": 2, - "28px": 1, - "1.8em": 1, - "32px": 1, - "normal": 1, - "44px": 1, - "var(--theme-header__item-link-line-height)": 2, - "1.25": 1, - "46px": 1, - "1em": 1 - }, - "uniquenessRatio": 0.17535545023696683 - }, - "zindexes": { - "total": 31, - "totalUnique": 13, - "unique": { - "1": 10, - "2": 6, - "3": 1, - "5": 2, - "7": 1, - "50": 1, - "100": 1, - "200": 2, - "300": 1, - "1000": 1, - "10000": 2, - "10001": 1, - "-1": 2 - }, - "uniquenessRatio": 0.41935483870967744 - }, - "textShadows": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "boxShadows": { - "total": 6, - "totalUnique": 6, - "unique": { - "0 1px 0 var(--theme-primary)": 1, - "inset 1em 1em var(--radio-button-color)": 1, - "0 0 0 2px rgb(25 118 210 / 75%)": 1, - "rgba(0,0,0,.25) 0 2px 6px 0": 1, - "0 8px 24px 0 rgba(0,0,0,.25)": 1, - "rgba(0,0,0,.25) 0 25px 27px -31px": 1 - }, - "uniquenessRatio": 1 - }, - "borderRadiuses": { - "total": 39, - "totalUnique": 9, - "unique": { - "0": 1, - "5px": 3, - "50%": 15, - "4px": 13, - "100%": 1, - "50px": 1, - "8px": 3, - "34px": 1, - "16px": 1 - }, - "uniquenessRatio": 0.23076923076923078, - "itemsPerContext": { - "border-radius": { - "total": 39, - "totalUnique": 9, - "unique": { - "0": 1, - "5px": 3, - "50%": 15, - "4px": 13, - "100%": 1, - "50px": 1, - "8px": 3, - "34px": 1, - "16px": 1 - }, - "uniquenessRatio": 0.23076923076923078 - } - } - }, - "animations": { - "durations": { - "total": 86, - "totalUnique": 11, - "unique": { - ".3s": 13, - ".4s": 14, - ".2s": 9, - "1.5s": 7, - "2s": 10, - ".5s": 23, - "120ms": 1, - ".25s": 5, - "1s": 2, - ".45s": 1, - ".8s": 1 - }, - "uniquenessRatio": 0.12790697674418605 - }, - "timingFunctions": { - "total": 51, - "totalUnique": 4, - "unique": { - "ease-in-out": 8, - "ease": 36, - "ease-in": 2, - "ease-out": 5 - }, - "uniquenessRatio": 0.0784313725490196 - } - }, - "prefixes": { - "total": 5, - "totalUnique": 2, - "unique": { - "-moz-max-content": 4, - "-webkit-sticky": 1 - }, - "uniquenessRatio": 0.4 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 2081, - "totalUnique": 9, - "unique": { - "px": 1915, - "vw": 25, - "s": 87, - "vh": 8, - "fr": 12, - "em": 17, - "ms": 1, - "deg": 12, - "rem": 4 - }, - "uniquenessRatio": 0.004324843825084094, - "itemsPerContext": { - "--theme-article-spacing-top": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__font-size--from-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__line-height--from-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__link-decoration-thickness": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph__hover-link-offset": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-header__item-link-line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-headline__font-size": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-headline__line-height": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-headline__margin-bottom": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-headline__padding-bottom": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-headline__padding-bottom-viewport-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-headline__teaser-font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-section-headline__font-size": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-section-headline__line-height": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-section-headline-text__margin-top": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-section-headline-text__margin-bottom": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--theme-subheader-h2__font-size": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-subheader-h3__font-size": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-subheader-h4__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-subheader-h5__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-subheader-h6__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-subheader-h2__line-height": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-subheader-h3__line-height": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-subheader-h4__line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-subheader-h5__line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-subheader-h6__line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-margin-bottom-default": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-margin-bottom-600": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-title__border-decorator-initial-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-title__text-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-title__arrow-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-item__margin-bottom-feature-list": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container__margin-bottom-grid-3": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "--theme-container__margin-bottom-feature-grid-3": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-lead-title__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-lead-title__line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-container-lead-title-mobile__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-zone__padding-bottom-default": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-zone__padding-bottom-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-zone__margin-bottom-default": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-zone__margin-top": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-zone-title__font-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-zone-title__line-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--social-sharing-margin-top": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-fontsize-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-fontsize-xl": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-lineheight-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-disclaimer-lineheight-xl": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph-fontsize-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph-fontsize-xl": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph-lineheight-sm": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-paragraph-lineheight-xl": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-main-wrapper-rail-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-main-wrapper-right-rail-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-main-wrapper-column-gap-medium-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-main-wrapper-column-gap-large-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--theme-section-headline__margin-bottom": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "max-width": { - "total": 55, - "totalUnique": 1, - "unique": { - "px": 55 - }, - "uniquenessRatio": 0.01818181818181818 - }, - "min-width": { - "total": 17, - "totalUnique": 1, - "unique": { - "px": 17 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "min-height": { - "total": 39, - "totalUnique": 3, - "unique": { - "px": 35, - "vh": 3, - "rem": 1 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "margin-bottom": { - "total": 106, - "totalUnique": 2, - "unique": { - "px": 104, - "rem": 2 - }, - "uniquenessRatio": 0.018867924528301886 - }, - "font-size": { - "total": 269, - "totalUnique": 3, - "unique": { - "px": 265, - "em": 3, - "vw": 1 - }, - "uniquenessRatio": 0.011152416356877323 - }, - "line-height": { - "total": 184, - "totalUnique": 2, - "unique": { - "px": 182, - "em": 2 - }, - "uniquenessRatio": 0.010869565217391304 - }, - "border-top": { - "total": 17, - "totalUnique": 1, - "unique": { - "px": 17 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "border-bottom": { - "total": 33, - "totalUnique": 1, - "unique": { - "px": 33 - }, - "uniquenessRatio": 0.030303030303030304 - }, - "height": { - "total": 143, - "totalUnique": 2, - "unique": { - "px": 138, - "em": 5 - }, - "uniquenessRatio": 0.013986013986013986 - }, - "margin-left": { - "total": 40, - "totalUnique": 2, - "unique": { - "px": 31, - "vw": 9 - }, - "uniquenessRatio": 0.05 - }, - "letter-spacing": { - "total": 69, - "totalUnique": 1, - "unique": { - "px": 69 - }, - "uniquenessRatio": 0.014492753623188406 - }, - "margin": { - "total": 141, - "totalUnique": 1, - "unique": { - "px": 141 - }, - "uniquenessRatio": 0.0070921985815602835 - }, - "margin-right": { - "total": 33, - "totalUnique": 2, - "unique": { - "px": 31, - "vw": 2 - }, - "uniquenessRatio": 0.06060606060606061 - }, - "padding": { - "total": 218, - "totalUnique": 1, - "unique": { - "px": 218 - }, - "uniquenessRatio": 0.0045871559633027525 - }, - "border": { - "total": 25, - "totalUnique": 1, - "unique": { - "px": 25 - }, - "uniquenessRatio": 0.04 - }, - "border-radius": { - "total": 22, - "totalUnique": 1, - "unique": { - "px": 22 - }, - "uniquenessRatio": 0.045454545454545456 - }, - "margin-top": { - "total": 83, - "totalUnique": 1, - "unique": { - "px": 83 - }, - "uniquenessRatio": 0.012048192771084338 - }, - "padding-top": { - "total": 23, - "totalUnique": 1, - "unique": { - "px": 23 - }, - "uniquenessRatio": 0.043478260869565216 - }, - "width": { - "total": 171, - "totalUnique": 3, - "unique": { - "vw": 10, - "px": 157, - "em": 4 - }, - "uniquenessRatio": 0.017543859649122806 - }, - "max-height": { - "total": 42, - "totalUnique": 2, - "unique": { - "px": 39, - "vh": 3 - }, - "uniquenessRatio": 0.047619047619047616 - }, - "transition": { - "total": 61, - "totalUnique": 2, - "unique": { - "s": 60, - "ms": 1 - }, - "uniquenessRatio": 0.03278688524590164 - }, - "text-decoration-thickness": { - "total": 11, - "totalUnique": 1, - "unique": { - "px": 11 - }, - "uniquenessRatio": 0.09090909090909091 - }, - "padding-bottom": { - "total": 36, - "totalUnique": 1, - "unique": { - "px": 36 - }, - "uniquenessRatio": 0.027777777777777776 - }, - "top": { - "total": 31, - "totalUnique": 3, - "unique": { - "px": 28, - "rem": 1, - "vh": 2 - }, - "uniquenessRatio": 0.0967741935483871 - }, - "text-indent": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "padding-right": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "right": { - "total": 16, - "totalUnique": 1, - "unique": { - "px": 16 - }, - "uniquenessRatio": 0.0625 - }, - "animation": { - "total": 13, - "totalUnique": 1, - "unique": { - "s": 13 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "-o-transition": { - "total": 6, - "totalUnique": 1, - "unique": { - "s": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "-webkit-transition": { - "total": 6, - "totalUnique": 1, - "unique": { - "s": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "box-shadow": { - "total": 11, - "totalUnique": 2, - "unique": { - "px": 9, - "em": 2 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "bottom": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "left": { - "total": 11, - "totalUnique": 2, - "unique": { - "px": 8, - "vw": 3 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "text-underline-offset": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "column-gap": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "row-gap": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "grid-template-columns": { - "total": 12, - "totalUnique": 1, - "unique": { - "fr": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "transform": { - "total": 9, - "totalUnique": 3, - "unique": { - "em": 1, - "deg": 7, - "px": 1 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "transition-duration": { - "total": 2, - "totalUnique": 1, - "unique": { - "s": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-left": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-right": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "filter": { - "total": 5, - "totalUnique": 1, - "unique": { - "deg": 5 - }, - "uniquenessRatio": 0.2 - }, - "padding-left": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "background-position": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "scroll-padding-top": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "background": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "background-size": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "outline": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "outline-offset": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0008390669575433, - "mode": 1, - "range": 1, - "sum": 5964 - }, - "keywords": { - "total": 663, - "totalUnique": 5, - "unique": { - "auto": 116, - "none": 429, - "inherit": 43, - "initial": 13, - "unset": 62 - }, - "uniquenessRatio": 0.007541478129713424 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/css-tricks-20231008.css b/src/__fixtures__/css-tricks-20231008.css deleted file mode 100644 index 81cfb70e..00000000 --- a/src/__fixtures__/css-tricks-20231008.css +++ /dev/null @@ -1,6354 +0,0 @@ -@charset "UTF-8"; - -/*! - Theme Name: CSS-Tricks v19 - Theme URI: http://css-tricks.com/ - Description: The Theme for CSS-Tricks - Author: Chris Coyier - Version: 1 -*/ - -@media screen and (prefers-reduced-motion:reduce) { - * { - transition: .01s; - } -} - -*, -:after, -:before { - box-sizing: border-box; -} - -a { - text-decoration: none; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} - -audio, -canvas, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -[hidden] { - display: none; -} - -html { - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - padding: 0; -} - -body, -dd, -dl, -html, -menu, -ol, -ul { - margin: 0; -} - -menu, -ol, -ul { - padding: 0; -} - -nav ol, -nav ul { - list-style: none; - list-style-image: none; -} - -img { - border: 0; - -ms-interpolation-mode: bicubic; -} - -form { - margin: 0; -} - -legend { - border: 0; - padding: 0; - white-space: normal; - *margin-left: -7px; -} - -button, -input, -select, -textarea { - font-size: 100%; - margin: 0; - vertical-align: baseline; - *vertical-align: middle; -} - -button, -input { - line-height: normal; -} - -button, -html input[type=button], -input[type=reset], -input[type=submit] { - -webkit-appearance: button; - cursor: pointer; -} - -button[disabled], -input[disabled] { - cursor: default; -} - -input[type=checkbox], -input[type=radio] { - padding: 0; -} - -input[type=search] { - -webkit-appearance: textfield; -} - -input[type=search]::-webkit-search-cancel-button, -input[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -textarea { - overflow: auto; - vertical-align: top; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) { - font-size: .88rem; - border-spacing: 0; - width: 100%; - margin: 0 0 1.5rem; - overflow: hidden; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) td, -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) th { - padding: 1rem; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) th { - text-align: left; - background: #5e5e5e; - color: #fff; - border-right: 1px solid #fff; - border-bottom: 1px solid #fff; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) td { - border-bottom: 1px solid #fff; - border-right: 1px solid #fff; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr { - background: #eaeaea; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr:nth-child(2n) { - background: #d4d4d4; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr:first-child th { - border-top: 0; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr:last-child td { - border-bottom: 0; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr td:first-child, -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr th:first-child { - border-left: 0; -} - -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr td:last-child, -body:not(.page-template-page-search-results) table:not(.woocommerce-checkout-review-order-table):not(.variations) tr th:last-child { - border-right: 0; -} - -body:not(.page-template-page-search-results).overflow-table body:not(.page-template-page-search-results).overflow-table td { - white-space: nowrap; -} - -body:not(.page-template-page-search-results) .overflow-table-wrap, -body:not(.page-template-page-search-results) .wp-block-table { - overflow-x: auto; - scrollbar-color: #666 #201c29; - -webkit-overflow-scrolling: touch; - min-width: 0; -} - -body:not(.page-template-page-search-results) .overflow-table-wrap::-webkit-scrollbar, -body:not(.page-template-page-search-results) .wp-block-table::-webkit-scrollbar { - width: 8px; - height: 8px; -} - -body:not(.page-template-page-search-results) .overflow-table-wrap::-webkit-scrollbar-thumb, -body:not(.page-template-page-search-results) .wp-block-table::-webkit-scrollbar-thumb { - background: #5e5e5e; - border-radius: 8px; - box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); -} - -body:not(.page-template-page-search-results) .overflow-table-wrap::-webkit-scrollbar-track, -body:not(.page-template-page-search-results) .wp-block-table::-webkit-scrollbar-track { - background: linear-gradient(90deg, #434343, #434343 1px, transparent 0, transparent); -} - -body:not(.page-template-page-search-results) .overflow-table-wrap>table:not(.gsc-table-result):not(.gcsc-branding):not(.gsc-resultsHeader), -body:not(.page-template-page-search-results) .wp-block-table>table:not(.gsc-table-result):not(.gcsc-branding):not(.gsc-resultsHeader) { - width: auto; - min-width: 100%; - table-layout: auto; - margin: 0; -} - -body:not(.page-template-page-search-results) .overflow-table-wrap>table:not(.gsc-table-result):not(.gcsc-branding):not(.gsc-resultsHeader) table, -body:not(.page-template-page-search-results) .wp-block-table>table:not(.gsc-table-result):not(.gcsc-branding):not(.gsc-resultsHeader) table { - table-layout: auto; - width: 100%; - margin: 0; -} - -table.leave-alone { - table-layout: auto; -} - -table.leave-alone tr { - background: transparent; -} - -.resize-animation-stopper * { - transition: none; - animation: none; -} - -@media (prefers-reduced-motion:reduce) { - * { - animation-duration: .01ms; - animation-iteration-count: 1; - transition-duration: .01ms; - scroll-behavior: auto; - } -} - -@font-face { - font-family: MD Primer Bold; - src: url(fonts/MDPrimer-Bold.woff2) format("woff2"); - font-display: swap; - font-weight: 700; -} - -@font-face { - font-family: Blanco; - src: url(fonts/BlancoSubset-Regular.woff2) format("woff2"); - font-display: swap; - font-weight: 400; -} - -@font-face { - font-family: Blanco; - src: url(fonts/BlancoSubset-Bold.woff2) format("woff2"); - font-display: swap; - font-weight: 700; -} - -@font-face { - font-family: Blanco; - src: url(fonts/BlancoSubset-Italic.woff2) format("woff2"); - font-display: swap; - font-style: italic; -} - -@font-face { - font-family: Blanco; - src: url(fonts/BlancoSubset-BoldItalic.woff2) format("woff2"); - font-display: swap; - font-weight: 700; - font-style: italic; -} - -html { - font-family: Blanco, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: clamp(12px, .8rem + .25vw, 20px); - font-weight: 400; - line-height: 1.7; -} - -a { - color: #0089c7; -} - -a:focus, -a:hover { - opacity: .66; -} - -.page-title { - font-size: clamp(1.2rem, 1rem + 3.5vw, 4rem); - text-transform: uppercase; - text-shadow: 0 3px 3px rgba(0, 0, 0, .5); -} - -.article-title, -.breadcrumbs .breadcrumb_last { - font-size: clamp(1.2rem, 1rem + 3.5vw, 4rem); - text-shadow: 0 2px 2px rgba(0, 0, 0, .5); -} - -.breadcrumbs .breadcrumb_last, -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: 800; - margin: 0 0 1.5rem; - line-height: 1.1; -} - -.breadcrumbs .breadcrumb_last a, -h1 a, -h2 a, -h3 a, -h4 a, -h5 a, -h6 a { - color: inherit; -} - -.breadcrumbs .breadcrumb_last a:focus, -.breadcrumbs .breadcrumb_last a:hover, -h1 a:focus, -h1 a:hover, -h2 a:focus, -h2 a:hover, -h3 a:focus, -h3 a:hover, -h4 a:focus, -h4 a:hover, -h5 a:focus, -h5 a:hover, -h6 a:focus, -h6 a:hover { - opacity: .66; -} - -.breadcrumbs .breadcrumb_last code, -h1 code, -h2 code, -h3 code, -h4 code, -h5 code, -h6 code { - font-weight: 700; - letter-spacing: -.05rem; - font-size: 92%; - opacity: .5; -} - -.breadcrumbs .breadcrumb_last, -.h1, -h1 { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-size: clamp(2rem, 2rem + 1.2vw, 3rem); - font-weight: 700; -} - -.article-card-large .breadcrumbs .breadcrumb_last, -.article-card-large .h1, -.article-card-large h1, -.breadcrumbs .article-card-large .breadcrumb_last { - font-size: 3rem; -} - -.h2, -h2 { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-size: clamp(1.8rem, 1.8rem + .2vw, 3rem); - font-weight: 800; -} - -.article-card-large .h2, -.article-card-large h2 { - font-size: 2.5rem; -} - -.h3, -h3 { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-size: 2rem; - letter-spacing: .03rem; - font-weight: 800; -} - -body:not(.page-id-21059):not(.parent-pageid-3222):not(.postid-181375):not(.postid-199370):not(.woocommerce-checkout) .article-content .h3, -body:not(.page-id-21059):not(.parent-pageid-3222):not(.postid-181375):not(.postid-199370):not(.woocommerce-checkout) .article-content h3 { - margin-top: 100px; - scroll-margin-top: 100px; -} - -body:not(.page-id-21059):not(.parent-pageid-3222):not(.postid-181375):not(.postid-199370):not(.woocommerce-checkout) .article-content .h3 a, -body:not(.page-id-21059):not(.parent-pageid-3222):not(.postid-181375):not(.postid-199370):not(.woocommerce-checkout) .article-content h3 a { - color: #0089c7; -} - -summary .h3, -summary h3 { - display: inline-block; - cursor: pointer; -} - -summary .h3 .aal_anchor, -summary h3 .aal_anchor { - display: inline-block; - transform: translateX(-2rem); -} - -@media (max-width:800px) { - - summary .h3 .aal_anchor, - summary h3 .aal_anchor { - transform: translateX(-1.4rem); - } -} - -.aal_anchor { - margin-left: -21px; - margin-right: 5px; - position: relative; - scroll-margin-top: 100px; - opacity: .33; -} - -.aal_anchor:before { - content: ""; - position: absolute; - width: 100px; - height: 100px; - border-radius: 50%; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - pointer-events: none; -} - -.aal_anchor svg { - position: relative; -} - -:is(h2, h3, h4, h5):target .aal_anchor { - opacity: 1; -} - -:is(h2, h3, h4, h5):target .aal_anchor:before { - animation: yellowflash-bg 2s; -} - -.aal_anchor:focus, -.aal_anchor:hover { - opacity: 1; -} - -.h4, -h4 { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-size: 1.5rem; - margin: 0 0 .8rem; -} - -.h5, -h5 { - font-weight: 800; - margin: 0 0 .5rem; -} - -.h5, -h5, -h6 { - font-size: 1rem; -} - -h6 { - font-weight: 400; -} - -.h4, -.h5, -.h6, -h4, -h5, -h6 { - line-height: 1.05; -} - -.subhead { - font-size: 75%; - margin: 0 0 .25rem; - color: #909090; -} - -.pre-tag { - font-size: 1rem; - color: #ffdfc7; -} - -.header-tag { - text-transform: uppercase; - white-space: nowrap; -} - -.article-content dd, -.article-content li, -.article-content p, -.bbp-reply-content dd, -.bbp-reply-content li, -.bbp-reply-content p, -.comment-content dd, -.comment-content li, -.comment-content p, -.text dd, -.text li, -.text p { - max-width: 700px; -} - -.article-content ol, -.article-content ul, -.bbp-reply-content ol, -.bbp-reply-content ul, -.comment-content ol, -.comment-content ul, -.text ol, -.text ul { - margin: 0 0 1.5rem 1.5rem; -} - -aside .article-content ol, -aside .article-content ul, -aside .bbp-reply-content ol, -aside .bbp-reply-content ul, -aside .comment-content ol, -aside .comment-content ul, -aside .text ol, -aside .text ul { - margin-left: 1rem; -} - -.article-content ol li, -.article-content ul li, -.bbp-reply-content ol li, -.bbp-reply-content ul li, -.comment-content ol li, -.comment-content ul li, -.text ol li, -.text ul li { - line-height: 1.6; -} - -.article-content ol li>*, -.article-content ul li>*, -.bbp-reply-content ol li>*, -.bbp-reply-content ul li>*, -.comment-content ol li>*, -.comment-content ul li>*, -.text ol li>*, -.text ul li>* { - text-indent: 0; -} - -.article-content ol li pre, -.article-content ul li pre, -.bbp-reply-content ol li pre, -.bbp-reply-content ul li pre, -.comment-content ol li pre, -.comment-content ul li pre, -.text ol li pre, -.text ul li pre { - margin: .5rem 0; -} - -.article-content ol ul li::marker, -.article-content ul li::marker, -.article-content ul ul li::marker, -.bbp-reply-content ol ul li::marker, -.bbp-reply-content ul li::marker, -.bbp-reply-content ul ul li::marker, -.comment-content ol ul li::marker, -.comment-content ul li::marker, -.comment-content ul ul li::marker, -.text ol ul li::marker, -.text ul li::marker, -.text ul ul li::marker { - margin: 0 .5rem 0 0; - color: #ff7a18; -} - -.article-content ol>li::marker, -.article-content ol ol>li::marker, -.article-content ul ol>li::marker, -.bbp-reply-content ol>li::marker, -.bbp-reply-content ol ol>li::marker, -.bbp-reply-content ul ol>li::marker, -.comment-content ol>li::marker, -.comment-content ol ol>li::marker, -.comment-content ul ol>li::marker, -.text ol>li::marker, -.text ol ol>li::marker, -.text ul ol>li::marker { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - color: #ff7a18; - font-weight: 700; -} - -.article-content ol ol, -.article-content ol ul, -.article-content ul ol, -.article-content ul ul, -.bbp-reply-content ol ol, -.bbp-reply-content ol ul, -.bbp-reply-content ul ol, -.bbp-reply-content ul ul, -.comment-content ol ol, -.comment-content ol ul, -.comment-content ul ol, -.comment-content ul ul, -.text ol ol, -.text ol ul, -.text ul ol, -.text ul ul { - margin: 5px 0 0 1rem; -} - -.article-content li, -.bbp-reply-content li, -.comment-content li, -.text li { - margin: 0 0 5px; -} - -.article-content li p, -.bbp-reply-content li p, -.comment-content li p, -.text li p { - margin: 5px 0; -} - -.article-content hr, -.bbp-reply-content hr, -.comment-content hr, -.text hr { - background: #ff7a18; - border: 0; - display: block; - width: 100%; - height: 4px; - border-radius: 4px; - margin: 2rem 0; -} - -.is-style-super-link-list { - font-size: 1.2rem; -} - -.is-style-super-link-list>li { - margin: 0 0 1.25rem; -} - -.is-style-super-link-list>li>a:first-child, -.is-style-super-link-list>li>strong:first-child { - font-weight: 700; - display: block; - font-size: 1.3rem; -} - -.is-style-super-link-list>li::marker { - content: "✶ "; - color: #ff7a18; -} - -.is-style-almanac-list { - background: #ffe7d6; - padding: 1rem 2.5rem; - border-radius: 8px; - margin-left: 0; -} - -.is-style-almanac-list>li::marker { - color: #ff7a18; -} - -.site-section-title { - text-align: center; - padding: 50px 0 5px; -} - -abbr[title] { - border-bottom: 1px dotted; - text-decoration: none; -} - -b, -strong { - font-weight: 700; -} - -blockquote { - font-size: 1.3rem; - letter-spacing: -.02rem; - margin: 1.5rem 0; - padding: 0 0 0 3rem; - position: relative; - font-style: italic; -} - -.article-content blockquote>* { - hanging-punctuation: first; -} - -.article-content blockquote> :first-child:before { - content: '"'; - width: 100px; - opacity: .15; - font-size: 100px; - line-height: .85; - position: absolute; - left: -1rem; -} - -@media (max-width:800px) { - .article-content blockquote> :first-child:before { - font-size: 90px; - left: -1.2rem; - } -} - -blockquote p { - margin: 0 0 .25rem; -} - -blockquote p:last-child { - margin: 0; -} - -blockquote cite { - display: block; - text-indent: 2rem; -} - -blockquote cite em { - font-style: normal; - font-variant: small-caps; - text-transform: uppercase; - font-size: 75%; - letter-spacing: .1rem; -} - -blockquote cite em:before { - content: "— "; -} - -blockquote, -blockquote p { - max-width: 900px; -} - -body.single article p:first-of-type.explanation { - display: block; - font-style: normal; -} - -body.single article p:first-of-type.explanation:before { - content: ""; - margin: 0 0 4px; -} - -body.single article p:first-of-type.explanation:after { - content: ""; - margin: 6px 0 0; -} - -body.single article p:first-of-type.explanation:after, -body.single article p:first-of-type.explanation:before { - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; - display: block; - text-transform: uppercase; - color: #ccc; - font-size: .6rem; - letter-spacing: .05rem; -} - -.article-content div.explanation, -.article-content p.is-style-explanation, -.article-content p:not(:first-of-type).explanation { - font-size: .8rem; - position: relative; - margin: 0 0 1.5rem; - background-size: 100% 1px; - background-repeat: no-repeat; - background-position: 0 0; - background: var(--light-orange); - border-radius: 8px; - overflow: hidden; - padding: 1rem 1rem 1rem 5rem; -} - -.article-content div.explanation:before, -.article-content p.is-style-explanation:before, -.article-content p:not(:first-of-type).explanation:before { - content: "Hey!"; - font-style: italic; - font-weight: 700; - background: #ff7a18; - color: #fff; - padding: .88rem 1rem; - margin-right: 1rem; - position: absolute; - left: 0; - top: 0; - height: 100%; - display: grid; - place-items: center; -} - -.article-content div.explanation :last-child, -.article-content p.is-style-explanation :last-child, -.article-content p:not(:first-of-type).explanation :last-child { - margin-bottom: 0; -} - -article div.explanation { - margin: 0 0 1rem; -} - -body.home .explanation { - font-style: normal; -} - -dfn { - font-style: italic; -} - -mark { - background: #ff0; - color: #000; -} - -.wp-block-buttons, -details, -figure, -p, -pre { - margin: 0 0 1.5rem; -} - -details { - padding: 1rem; - border-radius: 4px; -} - -details[open] { - border: 1px solid rgba(0, 0, 0, .07); -} - -details[open] summary { - margin-bottom: 1rem; -} - -pre { - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; - clear: both; - color: #fff; - background: #1b1b1b; - padding: 0; - -moz-tab-size: 2; - -o-tab-size: 2; - tab-size: 2; - -ms-word-break: normal; - word-break: normal; - -webkit-hyphens: none; - -ms-hyphens: none; - hyphens: none; - position: relative; - line-height: 28px; - border-radius: 8px; - overflow: hidden; -} - -pre[rel]:not([rel=""]):before { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-size: .5rem; - content: attr(rel); - color: #fff; - position: absolute; - top: -.2rem; - right: .4rem; - padding: 0; - color: #ff7a18; -} - -pre code { - scrollbar-color: #666 #201c29; - background: none; - white-space: pre; - -webkit-overflow-scrolling: touch; - overflow-x: scroll; - display: block; - max-width: 100%; - min-width: 100px; - font-size: 16px; - padding: 15px 20px 12px 22px; - line-height: 1.75; -} - -pre code::-webkit-scrollbar { - width: .5em; - height: .5em; -} - -pre code::-webkit-scrollbar-thumb { - background: #666; - border-radius: .5em; - box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); -} - -pre code::-webkit-scrollbar-track { - background: linear-gradient(90deg, #434343, #434343 1px, none 0, none); -} - -@media (max-width:800px) { - pre code { - font-size: 11px; - padding: 15px 20px 10px 14px; - } -} - -code { - font-size: inherit; - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; -} - -.line-highlight { - position: absolute; - left: 0; - right: 0; - line-height: inherit; - padding: inherit 0; - background: linear-gradient(90deg, rgba(255, 235, 59, .25) 50%, rgba(255, 235, 59, 0)); - pointer-events: none; - white-space: pre; - mix-blend-mode: color-dodge; - margin-top: 16px; -} - -@media (max-width:800px) { - .line-highlight { - display: none; - } -} - -dd>code, -dd>tt, -li:not(.comment):not([data-category])>code, -li:not(.comment):not([data-category])>tt, -p>code, -p>tt, -td>code, -td>tt { - font-size: 88%; -} - -small, -sub, -sup { - font-size: 75%; -} - -sub, -sup { - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -.5em; -} - -sub { - bottom: -.25em; -} - -hr.thick { - border: 0; - height: 5px; - margin: 4rem 0; - border-radius: 5px; - background: #ff7a18; -} - -.footnotes { - font-size: .8rem; - color: #5e5e5e; -} - -.footnotes:before { - content: "Footnotes"; - text-transform: uppercase; - color: #909090; - font-size: .7rem; - letter-spacing: .1rem; - display: block; - margin: 2rem 0 .5rem; -} - -.footnotes :target { - animation: yellowflash-bg 2s; -} - -.reversefootnote { - border: 0; - text-decoration: none; -} - -@keyframes yellowflash-bg { - 0% { - background: #ff0; - } - - to { - background: transparent; - } -} - -.screen-reader, -.screen-reader-text { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); - width: 1px; - height: 1px; - overflow: hidden; -} - -p:empty { - display: none; -} - -#wpadminbar .ab-label { - margin: 0; -} - -.hide { - display: none; -} - -.center, -.has-text-align-center { - text-align: center; -} - -.rotate-90 { - transform: rotate(90deg); -} - -.rotate-270 { - transform: rotate(270deg); -} - -.token.cdata, -.token.comment, -.token.doctype, -.token.prolog { - color: #5e7671; - font-style: italic; -} - -.token.property, -.token.punctuation, -.token.tag { - color: #72e0d1; -} - -.token.attr-name { - color: #83ba52; -} - -.token.boolean, -.token.number { - color: #fc9463; -} - -.token.attr-value, -.token.selector { - color: #f5d67b; -} - -.token.entity, -.token.operator, -.token.url, -.token.variable { - color: #aa7ee1; -} - -.token.atrule, -.token.keyword, -.token.string { - color: #83ba52; -} - -.token.important, -.token.regex { - color: #e90; -} - -.language-css, -.language-javascript, -.language-scss { - color: #f5d67b; -} - -.wp-block-buttons { - display: flex; - flex-wrap: wrap; - gap: 1rem; -} - -.add_to_cart_button, -.button, -.jetpack-instant-search__scroll-button, -.woocommerce-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, -.woocommerce.woocommerce button.button, -.wp-block-button__link, -input.submit { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - background-color: #5e5e5e; - color: #fff; - border: 0; - border-bottom: 1px solid #262626; - border-right: 1px solid #262626; - box-shadow: inset 1px 1px 0 #777, 0 2px 3px rgba(0, 0, 0, .4); - display: inline-block; - font-weight: 700; - line-height: 1.4; - text-transform: uppercase; - text-decoration: none; - border-radius: 4px; - white-space: nowrap; - padding: 1rem 1.5rem; - text-align: center; - transition: .07s; - position: relative; -} - -.add_to_cart_button.active, -.add_to_cart_button:not(.disabled):focus, -.add_to_cart_button:not(.disabled):hover, -.button.active, -.button:not(.disabled):focus, -.button:not(.disabled):hover, -.jetpack-instant-search__scroll-button.active, -.jetpack-instant-search__scroll-button:not(.disabled):focus, -.jetpack-instant-search__scroll-button:not(.disabled):hover, -.woocommerce-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.active, -.woocommerce-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:not(.disabled):focus, -.woocommerce-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:not(.disabled):hover, -.woocommerce.woocommerce button.button.active, -.woocommerce.woocommerce button.button:not(.disabled):focus, -.woocommerce.woocommerce button.button:not(.disabled):hover, -.wp-block-button__link.active, -.wp-block-button__link:not(.disabled):focus, -.wp-block-button__link:not(.disabled):hover, -input.submit.active, -input.submit:not(.disabled):focus, -input.submit:not(.disabled):hover { - opacity: .66; - text-decoration: none; -} - -.button-small { - padding: .4rem 1.5rem; -} - -.button-full-width { - display: block; - width: 100%; - text-align: center; -} - -.show-all-comments-button { - display: block; - margin: 5rem auto; - width: 100%; -} - -.button-outline { - background: none; - color: #a7a7a7; - border: 3px solid #5e5e5e; -} - -.button-outline:not(.disabled):focus, -.button-outline:not(.disabled):hover { - background: none; - color: #fff; - border-color: #fff; -} - -.button-solid-dark { - background: #434343; -} - -.button-invisible { - border: 0; - background: 0; - padding: 0; -} - -.preview-buttons { - padding-left: .5rem; -} - -.commentPreviewButton { - display: inline-block; - color: #fff; - padding: .35rem 1rem; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} - -.commentPreviewButton.active { - background: #fff; - color: #000; -} - -#writeCommentButton { - margin-right: .5rem; -} - -fieldset, -input[type=email], -input[type=number], -input[type=password], -input[type=search], -input[type=tel], -input[type=text], -input[type=url], -textarea { - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; - background: #eaeaea; - border: 1px solid #d4d4d4; - padding: .5rem; - border-radius: 4px; - border: 0; - width: 100%; -} - -fieldset:focus, -input[type=email]:focus, -input[type=number]:focus, -input[type=password]:focus, -input[type=search]:focus, -input[type=tel]:focus, -input[type=text]:focus, -input[type=url]:focus, -textarea:focus { - background: #fff; -} - -button { - font-family: inherit; -} - -textarea { - padding: 1rem; - display: block; -} - -.fullwidth, -fieldset { - width: 100%; - margin-bottom: 10px; -} - -.edit-account input[type=email], -.edit-account input[type=number], -.edit-account input[type=password], -.edit-account input[type=search], -.edit-account input[type=text], -.edit-account input[type=url], -.edit-account label, -.edit-account textarea, -.full-width-form input[type=email], -.full-width-form input[type=number], -.full-width-form input[type=password], -.full-width-form input[type=search], -.full-width-form input[type=text], -.full-width-form input[type=url], -.full-width-form label, -.full-width-form textarea, -.lost_reset_password input[type=email], -.lost_reset_password input[type=number], -.lost_reset_password input[type=password], -.lost_reset_password input[type=search], -.lost_reset_password input[type=text], -.lost_reset_password input[type=url], -.lost_reset_password label, -.lost_reset_password textarea, -.woocommerce-form input[type=email], -.woocommerce-form input[type=number], -.woocommerce-form input[type=password], -.woocommerce-form input[type=search], -.woocommerce-form input[type=text], -.woocommerce-form input[type=url], -.woocommerce-form label, -.woocommerce-form textarea { - display: block; - width: 100%; -} - -.custom-select { - display: block; - font-size: 16px; - font-family: sans-serif; - font-weight: 700; - color: #fff; - line-height: 1.3; - padding: .6em 1.4em .5em .8em; - width: 100%; - max-width: 100%; - margin: 0; - border: 0; - border-radius: 8px; - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - background-color: #000; - background-image: url(images/arrow-down.svg); - background-repeat: no-repeat, repeat; - background-position: right .7em top 50%, 0 0; - background-size: .65em auto, 100%; -} - -.custom-select::-ms-expand { - display: none; -} - -.custom-select:focus, -.custom-select:hover { - border-color: #777; - box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7); - box-shadow: 0 0 0 3px -moz-mac-focusring; - outline: none; -} - -html { - --maxWidth: 1600px; - --gap: 3rem; - scrollbar-color: #666 #201c29; - color: #fff; - overflow-x: hidden; - --featured-img: linear-gradient(180deg, #fff, #262626); - --bg-blend-mode: overlay; - background-color: #262626; - background-position: top 58px center; - background-repeat: no-repeat; - background-image: radial-gradient(50% 50% at top center, rgba(0, 0, 0, .66), #262626), var(--featured-img); - background-size: 120% 2000px, 100% 2000px; -} - -html::-webkit-scrollbar { - width: 16px; - height: 16px; -} - -html::-webkit-scrollbar-thumb { - background: #434343; - border-radius: 16px; - box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); -} - -html::-webkit-scrollbar-track { - background: linear-gradient(90deg, #434343, #434343 1px, #111 0, #111); -} - -@media (max-width:1200px) { - html { - --gap: 2rem; - } -} - -@media (max-width:800px) { - html { - --gap: 1rem; - } -} - -#top-of-site-pixel-anchor { - position: absolute; - width: 1px; - height: 1px; - top: 500px; - left: 0; -} - -@media (max-width:800px) { - #top-of-site-pixel-anchor { - top: 46px; - } -} - -.footer-inside, -.mega-header, -.page-wrap { - max-width: var(--maxWidth); - margin: 0 auto; - padding: 0 var(--gap); -} - -main { - position: relative; - z-index: 1; -} - -.articles-and-sidebar { - display: grid; - grid-template-columns: minmax(0, 1fr) 300px; - gap: var(--gap); - margin: 0 auto; -} - -.articles-and-sidebar> :not(.sidebar) { - align-self: start; -} - -@media (max-width:800px) { - .articles-and-sidebar { - display: block; - padding-top: 0; - } -} - -.articles-and-sidebar.single-mini { - display: block; -} - -.articles-and-sidebar.single-mini .sidebar { - display: none; -} - -.articles-and-sidebar.single-mini .article-content { - font-size: 1.5rem; -} - -.articles-and-sidebar.single-mini .article-content blockquote { - font-size: 1.75rem; -} - -@media (max-width:800px) { - - .articles-and-sidebar.single-mini .article-content, - .articles-and-sidebar.single-mini .article-content blockquote { - font-size: 1.2rem; - } -} - -.article-grid { - display: grid; - grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); - gap: var(--gap); - margin: 0 0 var(--gap) 0; -} - -@media (max-width:800px) { - .sidebar { - display: none; - } -} - -img { - max-width: 100%; -} - -.site-note { - background: #fff; - color: #000; - padding: 1.66rem; - margin: 0 0 2rem; - display: flex; - align-items: center; - gap: 2rem; - border-radius: 8px; -} - -.site-note>a { - display: block; -} - -.site-note img { - flex: 0.66; - display: block; -} - -.site-note p { - margin: 0; -} - -@media (max-width:1000px) { - .site-note { - display: block; - } - - .site-note img { - width: 400px; - max-width: 100%; - display: block; - margin: 0 0 .5rem; - } -} - -.ais-hits--item, -.module { - clear: both; - margin: 0 0 1rem; - position: relative; -} - -aside .ais-hits--item, -aside .module { - font-size: .66rem; -} - -.ais-hits--item> :last-child, -.ais-hits--item> :last-child> :last-child, -.module> :last-child, -.module> :last-child> :last-child { - margin-bottom: 0; -} - -.ais-hits--item .attachment-post-thumbnail, -.module .attachment-post-thumbnail { - width: 100%; - display: block; -} - -.ais-hits--item .module-content, -.module .module-content { - padding: 2rem; - font-size: .9rem; -} - -.ais-hits--item .module-content .byline, -.module .module-content .byline { - clear: both; - text-transform: uppercase; - background: rgba(0, 0, 0, .05); - font-size: .7rem; - color: #999; - letter-spacing: 1px; - margin: 1rem -2rem; - display: block; - padding: .5rem 2rem; -} - -.ais-hits--item .module-content .byline a, -.module .module-content .byline a { - font-weight: 700; - white-space: nowrap; -} - -.site-header { - position: relative; - z-index: 2; - display: flex; - padding: 0 var(--gap); - margin: 0 0 var(--gap) 0; - --fleck-seed: 35458; - --fleck-count: 500; - --fleck-size-base: 1px; - --fleck-color-1: #262626; - background-color: #111; - background-image: paint(fleck); - border-bottom: 1px solid #676767; -} - -.site-header .logo { - transition: 0s; - flex: 0; - position: relative; - align-self: stretch; - display: flex; - align-items: center; -} - -.site-header .logo>a { - display: flex; - align-items: center; -} - -.site-header .logo>a:focus, -.site-header .logo>a:hover { - opacity: 1; -} - -.site-header .icon-logo-star { - pointer-events: none; - fill: #fff; - width: 25px; - height: 25px; - margin: 0 .5rem 0 0; -} - -.site-header .icon-logo-star[data-spin-me=true] { - animation: spinMe 1s forwards; -} - -@keyframes spinMe { - to { - transform: rotate(2turn); - } -} - -.site-header .icon-logo-text { - fill: #fff; - height: 32px; - width: 322px; - margin-right: 1rem; -} - -.site-header .header-middle-area { - flex: 1; - width: 100%; -} - -.site-header .main-nav>ul { - display: flex; - height: 100%; -} - -.site-header .main-nav>ul>li>a { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - text-transform: uppercase; - font-weight: 500; - font-size: .8rem; - height: 100%; - color: #fff; - padding: 21px 1rem 12px; - position: relative; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - text-align: center; - overflow: hidden; -} - -.site-header .main-nav>ul>li>a:focus, -.site-header .main-nav>ul>li>a:hover { - color: #ff7a18; - background: hsla(0, 0%, 100%, .1); - opacity: 1; -} - -@media (max-width:1241px) { - .site-header { - padding: 20px 20px 0; - flex-wrap: wrap; - } - - .site-header .header-middle-area { - flex: 0 0 100%; - } - - .site-header .main-nav { - padding-top: 10px; - -webkit-margin-start: -10px; - margin-inline-start: -10px; - } - - .site-header .main-nav>ul>li>a { - padding: .6rem .8rem; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - } - - .site-header .icon-logo-star { - width: 18px; - height: 18px; - } - - .site-header .icon-logo-text { - height: 28px; - width: 274px; - } -} - -@media (max-width:620px) { - .site-header { - padding-top: 15px; - } - - .site-header .main-nav { - width: calc(100% + var(--gap)*2); - overflow: auto; - } -} - -.search-and-account { - position: fixed; - z-index: 15; - top: .9rem; - right: var(--gap); -} - -.search-and-account svg { - width: 32px; - height: 32px; -} - -@media (max-width:620px) { - .search-and-account { - top: .95rem; - } - - .search-and-account svg { - width: 28px; - height: 28px; - } -} - -.admin-bar .search-and-account { - top: 3rem; -} - -.search-and-account a { - margin-left: .5rem; -} - -.search-and-account a:focus, -.search-and-account a:hover { - opacity: .66; -} - -.search-and-account a svg { - -webkit-filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .3)); - filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .3)); -} - -.top-of-site-link { - visibility: hidden; - opacity: 0; - transition: .2s; - position: fixed; - bottom: 1.8rem; - right: 1.5rem; - z-index: 15; -} - -.top-of-site-link[data-visible=true] { - opacity: 1; - visibility: visible; -} - -.top-of-site-link svg { - -webkit-filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .3)); - filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .3)); -} - -.site-footer { - margin: calc(var(--gap)*5) 0 0 0; - padding: 0 0 var(--gap) 0; - position: relative; - --fleck-seed: 35458; - --fleck-count: 500; - --fleck-size-base: 3px; - --fleck-color-1: #434343; - --fleck-color-2: #262626; - --fleck-color-3: #434343; - --fleck-color-4: #262626; - background-color: #111; - background-image: paint(fleck); -} - -.site-footer h4, -.site-footer h5 { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - letter-spacing: .1rem; - text-transform: uppercase; - color: #ff7a18; - margin: 2rem 0 .25rem; -} - -.site-footer h4 { - -webkit-margin-before: 0; - margin-block-start: 0; -} - -.site-footer .icon-logo-star { - position: absolute; - fill: url(#orange-to-pink); - width: 120px; - height: 120px; - z-index: -1; - top: -90px; - left: var(--gap); -} - -@media (max-width:830px) { - .site-footer .icon-logo-star { - top: -130px; - left: auto; - right: 40px; - } -} - -@media (max-width:800px) { - .site-footer { - margin-top: 20rem; - } -} - -.colophon { - font-size: 1.8rem; - line-height: 1.3; - margin: 2rem 0 0; -} - -.footer-message-and-form { - display: grid; - grid-template-columns: 1fr 1.4fr; - gap: var(--gap); - align-items: end; -} - -@media (max-width:830px) { - .footer-message-and-form { - grid-template-columns: 1fr; - } - - .footer-message-and-form .footer-form-wrap { - order: -1; - } - - .footer-message-and-form .footer-form-wrap .footer-form { - flex-wrap: wrap; - } -} - -.footer-form-wrap { - background: #434343; - padding: 1.5rem; - margin: -3rem 0 0; - position: relative; - border-bottom-left-radius: 8px; - border-bottom-right-radius: 8px; -} - -.footer-form-wrap h5 { - margin-top: 0; -} - -.footer-form-wrap:after { - content: ""; - position: absolute; - z-index: -1; - top: 0; - right: 100%; - width: 20px; - height: 48px; - background: #909090; - -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%); - clip-path: polygon(100% 0, 100% 100%, 0 100%); -} - -.sidebar .footer-form-wrap { - border-radius: 8px; - margin: 0 0 var(--gap) 0; - background: #fff; - color: #000; -} - -.sidebar .footer-form-wrap:after { - display: none; -} - -.sidebar .footer-form-wrap h4 { - font-size: 1.8rem; -} - -.sidebar .footer-form-wrap h4:after { - content: "!"; -} - -.sidebar .footer-form-wrap p:first-letter { - text-transform: capitalize; -} - -.sidebar .footer-form-wrap p:after { - content: ":"; -} - -.sidebar .footer-form-wrap .footer-form { - flex-wrap: wrap; -} - -.sidebar .footer-form-wrap .footer-form input[type=email] { - flex: 0 0 100%; - margin: 0 0 .5rem; -} - -.mega-header .footer-form-wrap { - margin-top: 0; - padding: 0; - background: none; -} - -.mega-header .footer-form-wrap h4, -.mega-header .footer-form-wrap p { - display: none; -} - -.footer-form { - display: flex; -} - -.footer-form input[type=email] { - flex: 1; - min-width: 60px; - margin-right: .5rem; - border-radius: 4px; - border: 0; -} - -.link-grid { - padding-top: 1.5rem; - display: grid; - grid-template-columns: repeat(4, 1fr); - gap: 1rem; - line-height: 1.5; -} - -@media (max-width:950px) { - .link-grid { - grid-template-columns: repeat(2, 1fr); - } -} - -@media (max-width:374px) { - .link-grid { - grid-template-columns: 1fr; - } -} - -.link-grid li { - display: flex; -} - -.link-grid a { - color: #a9a39f; - position: relative; - display: inline-block; - overflow: hidden; - margin-right: .2rem; - font-size: 1.2rem; -} - -.link-grid a:focus, -.link-grid a:hover { - color: #fff; - opacity: 1; -} - -.link-grid span { - opacity: .3; -} - -.mktoForm { - width: 100%; - display: flex; - gap: 1rem; -} - -.mktoForm>div:nth-of-type(2) { - display: none; -} - -.mktoFormRow { - flex: 1; - display: flex; -} - -.mktoFormRow .mktoFormCol { - display: flex; - flex: 1; - margin: 0; -} - -.mktoFormRow .mktoFormCol .mktoFieldWrap { - display: flex; - flex: 1; -} - -.mktoGutter, -.mktoOffset { - width: 0; -} - -.mktoLabel { - width: auto; -} - -#LblEmail { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); - width: 1px; - height: 1px; - overflow: hidden; -} - -.mktoEmailField { - flex: 1; - box-shadow: none; - background: #eaeaea; - padding: .8rem; - border-radius: 4px; - border: 0; - width: 100%; - height: auto; -} - -.mktoEmailField:focus { - background: #fff; -} - -.mktoButtonWrap { - margin: 0; -} - -.mktoButton { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - background-color: #5e5e5e; - color: #fff; - border: 0; - font-style: normal; - border-bottom: 1px solid #262626; - border-right: 1px solid #262626; - box-shadow: inset 1px 1px 0 #777, 0 2px 3px rgba(0, 0, 0, .4); - display: inline-block; - font-weight: 700; - line-height: 1.4; - text-transform: uppercase; - text-decoration: none; - border-radius: 4px; - white-space: nowrap; - padding: .5rem 1rem; - text-align: center; - transition: .07s; - position: relative; -} - -.mktoButton.active, -.mktoButton:not(.disabled):focus, -.mktoButton:not(.disabled):hover { - opacity: .66; - text-decoration: none; -} - -.article-content { - font-size: 1.2rem; - background: #fff; - color: #000; - overflow-wrap: break-word; - border-radius: 8px; - padding: 4rem; - position: relative; -} - -@media (max-width:800px) { - .article-content { - padding: 1.66rem; - } -} - -.article-content a { - text-decoration: underline; - text-decoration-color: #a2dffb; -} - -.article-content img, -.article-content video { - max-width: 100%; - height: auto; -} - -.single-newsletter .article-content { - padding: 0; -} - -.article-sponsor { - padding: 1rem 1.5rem calc(1rem + 10px); - margin-bottom: -10px; - border-radius: 8px; - background: rgba(0, 0, 0, .2); -} - -.article-sponsor p { - margin: 0; -} - -.article-sponsor a { - color: #fff; - font-weight: 700; - position: relative; - display: inline-block; - line-height: 1.2; -} - -.article-sponsor a:before { - content: ""; - position: absolute; - top: 100%; - width: 100%; - left: 0; - height: 3px; - border-radius: 2px; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); -} - -.article-sponsor a:focus:before, -.article-sponsor a:hover:before { - background: #fff; -} - -figure { - border: 3px solid #c8c8c8; - border-radius: 8px; - overflow: hidden; -} - -figure:not(.wp-block-video):not(.wp-block-embed.is-type-video):not(.wp-block-embed.is-type-rich):not(.wp-block-jetpack-image-compare) { - width: -moz-fit-content; - width: fit-content; - max-width: 100%; - min-width: -moz-min-content; - min-width: min-content; -} - -figure:not(.wp-block-video):not(.wp-block-embed.is-type-video):not(.wp-block-embed.is-type-rich):not(.wp-block-jetpack-image-compare).aligncenter { - margin-left: auto; - margin-right: auto; -} - -figure.wp-block-embed-twitter { - width: -moz-fit-content; - width: fit-content; - max-width: 100%; - min-width: -moz-min-content; - min-width: min-content; - border-radius: 15px; -} - -figure>figcaption { - font-size: .88rem; - background: #f0f0f0; - display: block; - text-align: center; - padding: 1rem; - border-top: 1px solid #c8c8c8; -} - -figure>a>img, -figure>img { - display: block; -} - -.fluid-width-video-wrapper { - margin: 0 0 1.5rem; -} - -iframe { - max-width: 100%; - display: block; -} - -.wp-block-image figure.alignright { - float: right; - margin: 0 0 1.5rem 1.5rem; -} - -@media (max-width:800px) { - .wp-block-image figure.alignright { - float: none; - margin: 1.5rem 0; - } -} - -.wp-block-cover { - display: grid; - place-items: center; - margin: 0 0 1.5rem; -} - -.wp-block-cover>* { - grid-area: 1/-1; -} - -.wp-block-cover .wp-block-cover__inner-container { - padding: 1rem; - font-size: 1.8rem; -} - -.wp-block-cover .wp-block-cover__inner-container p:last-child { - margin-bottom: 0; -} - -.article-series { - background: #fef6ec; - margin: 0 0 1rem; - padding: 2rem; - counter-reset: article-series-counter; - border-radius: 8px; -} - -.article-series h4 { - padding: 0; -} - -.article-series ol { - margin: 0; - list-style: none; - padding-left: 1.5rem; -} - -.article-series ol li { - counter-increment: article-series-counter; -} - -.article-series ol li:before { - color: #000; - content: "Part " counter(article-series-counter) ": "; -} - -.cp_embed_wrapper { - position: relative; - margin: 0 0 1rem; - clear: both; - border-radius: 4px; - overflow: hidden; - z-index: 1; -} - -.cp_embed_wrapper.dragging:before { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 4000; -} - -.cp_embed_wrapper .cp_embed_iframe { - display: block; -} - -.win-size-grip { - position: absolute; - width: 24px; - height: 24px; - bottom: 0; - right: 0; - z-index: 5000; - cursor: nwse-resize; - -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%); - clip-path: polygon(100% 0, 100% 100%, 0 100%); - background: repeating-linear-gradient(135deg, hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5) 2px, #000 0, #000 4px); -} - -twitter-widget { - margin: 0 auto 1.5rem; - border: 20px solid #fef6ec; - border-radius: 8px; -} - -.twitter-tweet-rendered { - margin: 0; -} - -.wp-block-jetpack-slideshow li { - text-indent: 0; - max-width: auto; -} - -.wp-block-jetpack-slideshow li:before { - display: none; -} - -.wp-block-columns { - display: flex; - gap: 2rem; -} - -.wp-block-columns .wp-block-column { - flex: 1000px; - min-width: 0; -} - -.wp-block-columns .wp-block-column.is-vertically-aligned-bottom { - align-self: flex-end; -} - -.wp-block-columns .wp-block-column.is-vertically-aligned-center { - align-self: center; -} - -@media (max-width:800px) { - .wp-block-columns { - display: block; - } - - .wp-block-columns .wp-block-column { - margin: 1.5rem 0; - } -} - -.simpletoc { - background: #ffe7d6; - padding: 1rem 2.5rem; - border-radius: 8px; - margin-left: 0; -} - -.simpletoc>li::marker { - color: #ff7a18; -} - -.mega-header { - position: relative; - z-index: 1; - overflow: hidden; - padding: 0 0 2rem; -} - -.mega-header .tags a { - color: #ffdfc7; -} - -.mega-header .tags a:focus, -.mega-header .tags a:hover { - color: #fff; - text-decoration: underline; -} - -.mega-header .author-name, -.mega-header .author-row { - color: #fff; -} - -.mega-header .author-name:focus, -.mega-header .author-name:hover { - color: #fff; - text-decoration: underline; -} - -.mega-header p { - max-width: 700px; -} - -.mega-header-author { - display: grid; - grid-template-columns: 1fr 4fr; - gap: 1.5rem; -} - -.mega-header-author .author-avatar { - width: 100%; -} - -.mega-header-author .author-avatar img { - width: 100%; - height: auto; - border: 1vw solid #262626; -} - -.author-bio { - font-size: 1.4rem; -} - -.author-links a { - color: #fff; -} - -.author-links a:focus, -.author-links a:hover { - text-decoration: underline; -} - -.breadcrumbs .breadcrumb_last { - color: #fff; - display: block; - text-transform: none; - white-space: normal; -} - -.header-sponsor-grid { - display: grid; - grid-template-columns: 1fr 400px; - grid-gap: 2rem; -} - -@media (max-width:1200px) { - .header-sponsor-grid { - grid-template-columns: 1fr; - } -} - -.guide-sponsor { - background: #111; - border: 1px solid hsla(0, 0%, 100%, .16862745098039217); - padding: 2rem; - position: relative; - z-index: 3; - border-radius: 1rem; - max-width: 600px; - display: grid; - grid-template-columns: 1fr 110px; - grid-gap: 1rem; - align-items: center; -} - -.guide-sponsor h5 { - color: #fff; -} - -.guide-sponsor p { - margin: 0; -} - -.guide-sponsor a { - color: #fff; - text-decoration: underline; -} - -.guide-sponsor .monthly-sponsor-text { - font-size: .9rem; -} - -@media (max-width:1200px) { - .guide-sponsor { - display: none; - } -} - -.header-intro { - font-size: 1.4rem; - margin: 1rem 0; - max-width: 800px; -} - -.header-intro a { - color: inherit; - text-decoration: underline; -} - -.related-posts { - padding: 2rem 0 0; -} - -@media (max-width:800px) { - .related-posts { - padding: 2rem 0 0; - } -} - -body.category-sponsored .jp-relatedposts { - display: none; -} - -.jp-relatedposts { - margin-bottom: 1rem; -} - -.jp-relatedposts-headline { - display: none; -} - -.jp-relatedposts-items { - display: flex; -} - -@media (max-width:800px) { - .jp-relatedposts-items { - display: block; - } - - .jp-relatedposts-items .jp-relatedposts-post { - width: 100%; - margin: 0 0 .5rem; - } -} - -.jp-relatedposts-post { - font-size: .75rem; - background: #434343; - border-radius: 8px; - padding: 2rem; - margin: 0 1rem 0 0; - overflow: hidden; - position: relative; - flex: 1; - width: 33.33%; - display: flex; - flex-direction: column; -} - -.jp-relatedposts-post:last-child { - margin-right: 0; -} - -.jp-relatedposts-post-aoverlay { - pointer-events: none; -} - -.jp-relatedposts-post-img { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover; - opacity: .15; - mix-blend-mode: overlay; -} - -.jp-relatedposts-post-title { - font-family: Gotham Narrow SSm A, Gotham Narrow SSm B, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-size: 1.4rem; - line-height: 1.2; - margin: 0 0 .5rem; - position: relative; -} - -.jp-relatedposts-post-date { - color: #d4d4d4; - display: block; - margin: 0 0 .25rem; - order: -1; - position: relative; - z-index: 8; - opacity: 1; -} - -.jp-relatedposts-post-context { - display: none; -} - -.jp-relatedposts-post-excerpt { - position: relative; - display: -webkit-box; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - text-overflow: ellipsis; - overflow: hidden; - margin: 0; -} - -.jetpack-sponsored-posts-message { - background: #434343; - border-radius: 8px; - padding: 1rem; - display: flex; - justify-content: center; - align-items: center; -} - -.jetpack-sponsored-posts-message img { - width: 50px; - height: 50px; - margin-right: 1rem; -} - -.jetpack-sponsored-posts-message p { - max-width: 700px; - margin: 0; -} - -.article-card { - background: #fff; - color: #474747; - border-radius: 8px; - position: relative; - z-index: 1; - overflow: hidden; - -webkit-filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .24)); - filter: drop-shadow(0 5px 15px rgba(0, 0, 0, .24)); - display: flex; - flex-direction: column; -} - -.article-card .breadcrumbs .breadcrumb_last, -.article-card h1, -.article-card h2, -.breadcrumbs .article-card .breadcrumb_last { - color: #111; -} - -.article-card.article-card-large { - display: grid; - grid-template-columns: 50% 50%; -} - -@media (max-width:800px) { - .article-card.article-card-large { - grid-template-columns: 1fr; - } -} - -.article-thumbnail-wrap { - position: relative; -} - -.article-card-large .article-thumbnail-wrap { - height: 100%; -} - -.article-card-large .article-thumbnail-wrap:after { - pointer-events: none; - content: ""; - position: absolute; - z-index: 3; - left: 75%; - height: 100%; - top: 0; - width: 50%; - background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .013) 8.1%, hsla(0, 0%, 100%, .049) 15.5%, hsla(0, 0%, 100%, .104) 22.5%, hsla(0, 0%, 100%, .175) 29%, hsla(0, 0%, 100%, .259) 35.3%, hsla(0, 0%, 100%, .352) 41.2%, hsla(0, 0%, 100%, .45) 47.1%, hsla(0, 0%, 100%, .55) 52.9%, hsla(0, 0%, 100%, .648) 58.8%, hsla(0, 0%, 100%, .741) 64.7%, hsla(0, 0%, 100%, .825) 71%, hsla(0, 0%, 100%, .896) 77.5%, hsla(0, 0%, 100%, .951) 84.5%, hsla(0, 0%, 100%, .987) 91.9%, #fff); -} - -.article-card-large .article-thumbnail-wrap:before { - pointer-events: none; - content: ""; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); - position: absolute; - mix-blend-mode: screen; - opacity: .75; - width: 120%; - min-height: 500px; - height: 100%; - z-index: 2; -} - -@media (max-width:800px) { - .article-card-large .article-thumbnail-wrap:after { - display: none; - } -} - -.article-thumbnail-wrap a:focus, -.article-thumbnail-wrap a:hover { - opacity: 1; -} - -.article-thumbnail-wrap:after { - pointer-events: none; - content: ""; - height: 250px; - -o-object-fit: cover; - object-fit: cover; - width: 100%; - display: block; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); - mix-blend-mode: screen; - position: absolute; - top: 0; - left: 0; -} - -img.article-thumbnail { - height: 250px; - -o-object-fit: cover; - object-fit: cover; - width: 100%; - display: block; -} - -@media (max-height:700px) { - img.article-thumbnail { - height: 150px; - } -} - -.article-card-large img.article-thumbnail { - position: absolute; - max-width: none; - width: 120%; - height: 100%; -} - -@media (max-width:800px) { - .article-card-large img.article-thumbnail { - position: relative; - width: 100%; - height: auto; - min-height: 200px; - max-height: 200px; - } -} - -.article-article { - flex: 1; - position: relative; - z-index: 5; - padding: 1.5rem; - display: flex; - flex-direction: column; -} - -.article-card-large .article-article { - padding: 3rem; -} - -@media (max-width:800px) { - .article-card-large .article-article { - padding: 1.5rem; - } -} - -.article-card-large .card-content { - font-size: 1.2rem; -} - -.card-content ol, -.card-content ul { - margin: 0 0 1.5rem 1.25rem; -} - -.card-content blockquote { - padding-left: 1.5rem; -} - -.author-row { - -webkit-margin-before: auto; - margin-block-start: auto; - display: grid; - grid-template-columns: 40px 1fr; - gap: .5rem; - align-items: center; - color: #565656; - line-height: 1.3; - padding-top: .5rem; -} - -.author-row>div>* { - white-space: nowrap; -} - -.newsletter-card-grid .author-row { - display: block; -} - -.avatar { - width: 40px; - height: 40px; - border-radius: 50%; - margin-right: .5rem; -} - -.author-name { - font-weight: 700; - color: #000; -} - -.sponsored-post-byline { - grid-column: 1/-1; -} - -.popular-articles { - box-sizing: content-box; - display: flex; - margin: 0 0 var(--gap) 0; - position: relative; -} - -@media (min-width:1200px) { - .popular-articles:after { - content: ""; - position: absolute; - right: 0; - top: 3rem; - bottom: 3.6rem; - width: 5px; - border-radius: 5px; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); - box-shadow: -10px 0 20px 3px #000; - } -} - -@media (max-width:1200px) { - .popular-articles { - scrollbar-color: #666 #201c29; - padding-bottom: var(--gap); - padding-left: 5px; - overflow-x: scroll; - -webkit-overflow-scrolling: touch; - -ms-scroll-snap-points-x: repeat(250px); - scroll-snap-points-x: repeat(250px); - -ms-scroll-snap-type: mandatory; - scroll-snap-type: mandatory; - -ms-scroll-snap-type: x mandatory; - scroll-snap-type: x mandatory; - -webkit-scroll-snap-type: x mandatory; - } - - .popular-articles::-webkit-scrollbar { - width: 10px; - height: 10px; - } - - .popular-articles::-webkit-scrollbar-thumb { - background: #434343; - border-radius: 10px; - box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); - } - - .popular-articles::-webkit-scrollbar-track { - background: linear-gradient(90deg, #434343, #434343 1px, #262626 0, #262626); - } - - .popular-articles .mini-card { - scroll-snap-align: start; - } -} - -.popular-header { - margin-top: 4rem; - flex: 0 0 250px; - margin-right: 1rem; - position: relative; - display: flex; - flex-direction: column; - justify-content: flex-end; - padding: 1.5rem; - transform: translateY(-10px); -} - -@media (max-width:1200px) { - .popular-header { - scroll-snap-align: start; - scroll-margin-inline-start: 5px; - } -} - -.popular-header .edit-popular { - position: absolute; - top: 5px; - right: 5px; -} - -.popular-header p { - margin: 0; -} - -.popular-header:before { - content: ""; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); - position: absolute; - top: -5px; - left: -5px; - width: calc(100% + 10px); - height: calc(100% + 10px); - z-index: 1; - border-radius: 12px; -} - -.popular-header:after { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: #000; - z-index: 2; - border-radius: 8px; -} - -.popular-header>* { - position: relative; - z-index: 3; -} - -@media (max-width:800px) { - .popular-header { - flex: 0 0 175px; - } -} - -.mini-card-grid { - display: grid; - gap: 1rem; - grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); - margin: 0 0 1.5rem; - position: relative; -} - -body.home .mini-card-grid { - scrollbar-color: #666 #201c29; - scrollbar-gutter: always; - padding: 3rem 0 3rem 2rem; - margin: 0; - display: flex; - overflow-x: scroll; - -webkit-overflow-scrolling: touch; -} - -body.home .mini-card-grid::-webkit-scrollbar { - width: 10px; - height: 10px; -} - -body.home .mini-card-grid::-webkit-scrollbar-thumb { - background: #434343; - border-radius: 10px; - box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); -} - -body.home .mini-card-grid::-webkit-scrollbar-track { - background: linear-gradient(90deg, #434343, #434343 1px, #262626 0, #262626); -} - -@media (max-width:1200px) { - body.home .mini-card-grid { - overflow-x: visible; - } -} - -.mini-card { - padding: 1.5rem; - border-radius: 16px; - background: linear-gradient(85deg, #434343, #262626); - color: #fff; - display: flex; - flex-direction: column; - transition: .2s; - margin: 0; -} - -.mini-card a { - text-decoration: none; -} - -.mini-card h3 a { - color: #fff; -} - -.mini-card h3 .aal_anchor { - display: none; -} - -.mini-card .tags { - margin: 0 0 .5rem; -} - -.mini-card .author-name { - color: #fff; -} - -.mini-card time { - display: block; - margin: 0 0 .25rem; - color: #777; -} - -.mini-card time strong { - color: #d4d4d4; -} - -body.home .mini-card { - min-width: 300px; - min-height: 350px; - box-shadow: -2rem 0 3rem -2rem #000; -} - -body.home .mini-card:focus-within, -body.home .mini-card:hover { - transform: translateY(-1rem) rotate(3deg); -} - -body.home .mini-card:focus-within~.mini-card, -body.home .mini-card:hover~.mini-card { - transform: translateX(130px); -} - -body.home .mini-card:first-child:focus-within, -body.home .mini-card:first-child:hover { - transform: translate(-.5rem, -1rem) rotate(3deg); -} - -body.home .mini-card:not(:first-child) { - margin-left: -130px; - box-shadow: -3rem 0 3rem -2rem #000; -} - -@media (max-width:1200px) { - body.home .mini-card { - min-width: 220px; - } - - body.home .mini-card:not(:first-child) { - margin-left: -30px; - } - - body.home .mini-card:hover { - transform: translateY(-1rem); - } - - body.home .mini-card:hover~.mini-card { - transform: translateX(30px); - } -} - -@media (max-width:800px) { - body.home .mini-card { - min-width: 190px; - } - - body.home .mini-card:not(:first-child) { - margin-left: -10px; - } - - body.home .mini-card:hover { - transform: translateY(-1rem); - } - - body.home .mini-card:hover~.mini-card { - transform: translateX(10px); - } -} - -.mini-card-title { - font-size: 1.3rem; - margin: 0 0 1rem; -} - -.in-article-cards { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 1rem; -} - -.in-article-card { - border-radius: 8px; - border: 1px solid #eaeaea; - box-shadow: 0 .5rem 1.2rem rgba(0, 0, 0, .2); - padding: .75rem 1.25rem; -} - -.in-article-card h3 { - margin: 0 0 .5rem; - font-size: 1.2rem; -} - -.in-article-card h3 .aal_anchor { - display: none; -} - -.in-article-card time { - font-size: .9rem; -} - -.in-article-card a { - text-decoration: none; -} - -.in-article-card .almanac-example { - display: block; - font-size: .8rem; - background: #262626; - text-decoration: none; - padding: 1rem; - border-radius: 4px; -} - -.in-article-card .author-row { - margin-top: 2.5rem; - grid-template-columns: 25px 1fr; -} - -.in-article-card .avatar { - width: 25px; - height: 25px; - display: block; -} - -.in-article-card .author-name { - font-size: 1rem; -} - -.link-read-more { - display: inline-flex; - align-items: center; -} - -.link-read-more img { - -webkit-margin-start: 1rem; - margin-inline-start: 1rem; -} - -.tags { - line-height: 1; - margin: 0 0 .5rem; -} - -.tags a { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - text-transform: uppercase; - color: #ff7a18; - font-size: .66rem; - -webkit-margin-end: .66rem; - margin-inline-end: .66rem; -} - -.comments-title { - text-align: center; - padding-top: 6rem; -} - -.comments-title span { - position: relative; -} - -.comments-title span:before { - content: ""; - position: absolute; - top: 100%; - width: 100%; - left: 0; - height: 3px; - border-radius: 2px; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); -} - -.CommentForm li.comment, -.commentlist li.comment, -.comment ul li.comment { - list-style: none; - position: relative; - margin: 0 0 1rem; -} - -.CommentForm li.comment.featured .comment-content, -.commentlist li.comment.featured .comment-content, -.comment ul li.comment.featured .comment-content { - background-image: url(images/featured-comment.svg); - background-repeat: no-repeat; - background-position: top; -} - -.CommentForm li.comment.bypostauthor .comment-content, -.commentlist li.comment.bypostauthor .comment-content, -.comment ul li.comment.bypostauthor .comment-content { - background-image: linear-gradient(-15deg, rgba(255, 122, 24, .25), #fff); -} - -.CommentForm li.comment.bypostauthor .comment-author:before, -.commentlist li.comment.bypostauthor .comment-author:before, -.comment ul li.comment.bypostauthor .comment-author:before { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-weight: 400; - text-transform: uppercase; - content: "Post Author"; - color: #ff7a18; - display: block; - font-size: .75rem; -} - -.CommentForm li.comment.buried, -.commentlist li.comment.buried, -.comment ul li.comment.buried { - display: none; -} - -.CommentForm li.comment.featured>.comment-wrap .comment-author:before, -.commentlist li.comment.featured>.comment-wrap .comment-author:before, -.comment ul li.comment.featured>.comment-wrap .comment-author:before { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-weight: 400; - text-transform: uppercase; - content: "Featured!"; - color: #f44336; - display: block; - font-size: .75rem; -} - -.CommentForm .comment-content, -.commentlist .comment-content, -.comment ul .comment-content { - overflow: hidden; - background: #eaeaea; - color: #434343; - padding: 1rem; - border-radius: 8px; - z-index: 1; - position: relative; -} - -.CommentForm .comment-wrap, -.commentlist .comment-wrap, -.comment ul .comment-wrap { - position: relative; - display: grid; - margin: 0 0 2px; - grid-template-columns: 30% 1fr 100px; -} - -.CommentForm .comment-wrap .author-avatar, -.commentlist .comment-wrap .author-avatar, -.comment ul .comment-wrap .author-avatar { - margin: 0; - align-self: start; - grid-area: auto; -} - -.CommentForm .comment-wrap .author-avatar .half-circle, -.commentlist .comment-wrap .author-avatar .half-circle, -.comment ul .comment-wrap .author-avatar .half-circle { - stroke: #777; -} - -@media (max-width:800px) { - - .CommentForm .comment-wrap .author-avatar, - .commentlist .comment-wrap .author-avatar, - .comment ul .comment-wrap .author-avatar { - height: 49px; - } -} - -.CommentForm .comment-wrap:before, -.commentlist .comment-wrap:before, -.comment ul .comment-wrap:before { - content: ""; - position: absolute; - top: 0; - left: 0; - height: 1px; - display: block; - width: 50%; - background: #5e5e5e; -} - -.CommentForm .comment-wrap:target .comment-author:before, -.commentlist .comment-wrap:target .comment-author:before, -.comment ul .comment-wrap:target .comment-author:before { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-weight: 400; - text-transform: uppercase; - content: "Current Target"; - color: #bdaa00; - display: block; - font-size: .75rem; -} - -@media (max-width:800px) { - - .CommentForm .comment-wrap, - .commentlist .comment-wrap, - .comment ul .comment-wrap { - display: block; - padding: 1rem; - } -} - -.CommentForm .comment-actions:after, -.commentlist .comment-actions:after, -.comment ul .comment-actions:after { - content: ""; - clear: both; - display: block; -} - -.CommentForm .comment-reply-link, -.commentlist .comment-reply-link, -.comment ul .comment-reply-link { - display: block; - text-align: right; -} - -@media (max-width:800px) { - - .CommentForm .comment-reply-link, - .commentlist .comment-reply-link, - .comment ul .comment-reply-link { - float: right; - } -} - -.CommentForm .edit-link, -.commentlist .edit-link, -.comment ul .edit-link { - position: absolute; - right: 0; - top: 0; - width: 30px; - margin-left: 5px; - font-size: 10px; -} - -.CommentForm .comment .respond .comments-title, -.CommentForm .feature-burry-comments, -.commentlist .comment .respond .comments-title, -.commentlist .feature-burry-comments, -.comment ul .comment .respond .comments-title, -.comment ul .feature-burry-comments { - display: none; -} - -.CommentForm ul.children, -.commentlist ul.children, -.comment ul ul.children { - margin-bottom: 2rem; - margin-left: 8rem; - position: relative; -} - -.respond-area { - margin-top: 1rem; -} - -.comment-respond, -.respond { - padding: 2rem; - background: #111; - border-radius: 8px; -} - -.comment-form, -.comment-form-form-area { - max-width: 600px; - margin: 0 auto; -} - -.comment-reply-title { - font-weight: 400; - font-size: 1.4rem; -} - -.comment-author { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-weight: 400; - font-size: 1.4rem; -} - -.comment-time { - margin: 0 0 1rem; -} - -.comment-time a { - color: inherit; -} - -.view-comments-button { - display: none; -} - -@media (max-width:800px) { - .view-comments-button { - display: block; - margin: 40px 0 60px; - } -} - -.textarea-usage { - color: #999; - float: right; - width: 50%; - text-align: right; - font-size: .8rem; -} - -#comment, -.markdown-comment-preview { - height: 180px; -} - -.markdown-comment-preview { - display: none; - background: #434343; - border: 2px dashed #777; - box-shadow: 0 0 1rem #111; - padding: 1rem; - border-radius: 8px; - overflow: auto; -} - -.comments-closed { - background: #111; - padding: 2rem; - border-radius: 8px; - text-align: center; - position: relative; -} - -.comments-closed:before { - content: ""; - background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%); - position: absolute; - top: -5px; - left: -5px; - width: calc(100% + 10px); - height: calc(100% + 10px); - z-index: -1; - border-radius: 12px; -} - -.comment-awaiting-moderation { - background: #ff7a18; - color: #fff; - padding: 2rem; -} - -#commentform label { - display: block; -} - -#commentform .comment-notes, -#commentform .required { - display: none; -} - -#commentform label[for=comment]:after { - content: " (Markdown supported)"; - color: #bebebe; - font-size: .85rem; -} - -#commentform p { - margin-bottom: .5rem; -} - -.comment-form-comment { - grid-column: 1/-1; - padding: 2px; - border-radius: 8px; -} - -.comment-form-url { - grid-column: 1/-1; -} - -.comment-form-cookies-consent { - margin-top: 1rem; -} - -.comment-form-cookies-consent, -.comment-subscription-form, -.mc4wp-checkbox { - color: #777; - grid-column: 1/-1; - display: flex; - align-items: center; - line-height: 1.3; - font-size: .8rem; -} - -.comment-form-cookies-consent input[type=checkbox], -.comment-subscription-form input[type=checkbox], -.mc4wp-checkbox input[type=checkbox] { - margin-right: .5rem; - position: relative; - top: -2px; -} - -.form-submit { - grid-column: 1/-1; - text-align: right; -} - -.mc4wp-checkbox label { - display: flex; - align-items: center; -} - -.comment-reminders { - font-size: 16px; - color: #777; -} - -details.open-all-comments { - background: #434343; - padding: 1rem; - border-radius: 8px; -} - -details.open-all-comments[open] summary { - margin-bottom: 2rem; -} - -.breadcrumbs { - position: relative; - white-space: nowrap; - text-transform: uppercase; - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-weight: 400; -} - -.breadcrumbs, -.breadcrumbs a { - color: #ffdfc7; -} - -.breadcrumbs .current-item { - display: block; - font-size: 3rem; - color: #fff; - text-transform: none; - white-space: normal; - line-height: 1.1; -} - -.breadcrumb-separator { - opacity: .5; -} - -.wp_page_numbers { - padding-right: 1rem; - width: 100%; -} - -.wp_page_numbers ul { - display: flex; - align-items: center; - justify-content: center; - margin: 0; -} - -@media (max-width:800px) { - .wp_page_numbers ul { - line-height: 2.6; - } -} - -.wp_page_numbers li a { - display: block; - padding: 0 .5rem; - margin-right: .25rem; - color: #bebebe; -} - -.wp_page_numbers li.active_page a { - font-weight: 700; - color: #fff; -} - -.wp_page_numbers li.space { - margin-left: 5px; -} - -li.breadcrumbs-next-page, -li.breadcrumbs-prev-page { - display: flex; - align-items: center; -} - -li.breadcrumbs-next-page a, -li.breadcrumbs-prev-page a { - color: #fff; - font-weight: 700; - display: flex; - align-items: center; -} - -li.breadcrumbs-next-page .pagination-arrow, -li.breadcrumbs-prev-page .pagination-arrow { - margin-right: 1rem; - width: 18px; -} - -li.breadcrumbs-next-page { - justify-content: flex-end; -} - -li.breadcrumbs-next-page .pagination-arrow { - margin-left: 1rem; -} - -.almanac-example { - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; - display: block; - padding-top: 3rem; - padding-bottom: 3rem; -} - -.mixup-card-sponsor { - grid-column: 1/3; -} - -.mixup-card-sponsor a { - font-weight: 700; - color: #ff7a18; -} - -.mixup-card-sponsor .monthly-sponsor-image { - max-width: 125px; - display: block; - margin: 0 auto; -} - -.single-module { - width: 300px; - opacity: 0; - margin: 0 0 var(--gap) 0; - position: relative; - padding: .5rem; - border-radius: 8px; - background: #fff; -} - -.single-module .module { - margin: 0; -} - -.single-module .module img { - width: 100%; - height: auto; - display: block; - border-radius: 4px; - box-shadow: 0 0 1.5rem rgba(17, 17, 17, .7); - transition: .15s; -} - -.single-module .module a:focus img, -.single-module .module a:hover img { - box-shadow: 0 0 50px rgba(17, 17, 17, .5); - transform: rotate(-2deg) translateY(-5px) scale(1.025); -} - -.single-module.single-module-backfill .module { - padding: 4rem 0; - border-radius: 8px; -} - -.single-module.single-module-backfill .module img { - width: 175px; - box-shadow: none; - border-radius: 0; - margin: 0 auto; -} - -.single-module>* { - position: relative; -} - -@media (max-width:800px) { - .single-module { - display: none; - } -} - -.module-7 { - animation: ad_come_in .2s .6s forwards; -} - -.module-6 { - animation: ad_come_in .2s .8s forwards; -} - -.module-5 { - animation: ad_come_in .2s 1s forwards; -} - -.module-4 { - animation: ad_come_in .2s 1.2s forwards; -} - -.module-3 { - animation: ad_come_in .2s 1.4s forwards; -} - -.module-2 { - animation: ad_come_in .2s 1.6s forwards; -} - -.module-1 { - animation: ad_come_in .2s 1.8s forwards; -} - -.module-0 { - animation: ad_come_in 0s 0s forwards; -} - -@keyframes ad_come_in { - to { - opacity: 1; - } -} - -.interlude { - font-family: Blanco, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; - font-size: .75rem; - font-weight: 400; - padding: 1rem; - white-space: normal; - text-align: left; -} - -.interlude a { - color: #434343; - display: block; -} - -span.spon-title { - color: #0089c7; - text-transform: uppercase; - font-size: .5rem; - letter-spacing: .05rem; -} - -.bsa_it_p { - display: none; -} - -.bsa_it_ad { - padding: 1.5rem; - position: relative; - display: inline-block; - width: 100%; -} - -.bsa_it_t { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-weight: 400; - line-height: 1.1; - font-size: 1.3rem; - display: block; - margin: 0 0 .5rem; - color: #111; -} - -.bsa_it_i { - display: block; - float: none; - max-width: 90px; - margin: 0 0 .75rem; -} - -.bsa_it_i img { - width: 100%; - height: auto; - border-radius: 4px; - display: block; -} - -.bsa_it_d { - color: #777; - display: block; - font-size: .9rem; -} - -.bsap_1241308 a { - width: auto; - float: none; -} - -img[src*="adsafeprotected.com"], -img[src*="doubleclick.net"] { - position: absolute; - width: 1px; - height: 1px; - left: -9999px; -} - -#all-modules { - height: 100%; -} - -#scroll-ad-position { - width: 1px; - height: 1px; -} - -#sticky-sidebar-stuff { - position: sticky; - top: 2.5rem; - opacity: 0; - visibility: hidden; - transition: .3s; -} - -@media (max-width:620px) { - #sticky-sidebar-stuff { - top: 89px; - } -} - -#sticky-sidebar-stuff.showing { - opacity: 1; - visibility: visible; -} - -#carbonads { - background: #eaeaea; - padding: 0 1.5rem; - font-size: .6rem; - border-radius: 8px; - -webkit-margin-before: var(--gap); - margin-block-start: var(--gap); - overflow: hidden; - transition: .2s; - max-height: 0; -} - -#carbonads .carbon-wrap { - display: flex; - align-items: flex-start; -} - -#carbonads img { - margin-right: 1rem; - width: 130px; - height: auto; - border-radius: 4px; - display: block; -} - -#carbonads a { - color: #444; -} - -#carbonads .carbon-poweredby { - position: absolute; - bottom: 5px; - right: 12px; -} - -#carbonads .carbon-poweredby:before { - content: "("; -} - -#carbonads .carbon-poweredby:after { - content: ")"; -} - -#carbonads.showing { - max-height: 200px; - padding: 1.5rem; -} - -.all-modules { - scrollbar-color: #666 #201c29; - padding: 1rem; - margin: 4rem 0; - overflow-x: auto; - width: 100%; - text-align: center; - white-space: nowrap; -} - -.all-modules::-webkit-scrollbar { - width: 4px; - height: 4px; -} - -.all-modules::-webkit-scrollbar-thumb { - background: linear-gradient(90deg, #e52e71, #ff7a18); - border-radius: 4px; - box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25); -} - -.all-modules::-webkit-scrollbar-track { - background: linear-gradient(90deg, #434343, #434343 1px, #262626 0, #262626); -} - -.all-modules>* { - display: inline-block; - vertical-align: top; - margin-right: 3rem; -} - -.all-modules #carbonads, -.all-modules #scroll-ad-position { - display: none; -} - -.after-article-note { - border-bottom-left-radius: 8px; - border-bottom-right-radius: 8px; - padding: calc(1rem + 8px) 1rem 1rem; - margin-top: -8px; -} - -body.page-template-default .author-row { - display: none; -} - -.page-header { - margin: 0 0 var(--gap) 0; -} - -.page-header-top-nav { - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; - background: rgba(0, 0, 0, .33); - border-radius: 8px; - position: relative; - display: flex; - align-items: center; - padding: 1rem; -} - -.page-header-top-nav a { - color: #fff; - font-weight: 700; - white-space: nowrap; - padding: 0 .65rem; -} - -@media (max-width:800px) { - .page-header-top-nav a { - padding: 0 1rem; - } -} - -.page-header-top-nav-scrollable { - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.article-categories { - margin-right: 2rem; -} - -.article-categories a { - color: #0089c7; - display: inline-block; - margin: 0 .25rem; -} - -#jetpack-instant-search__box-input-1 { - border: 0; -} - -.jetpack-instant-search__search-result-title-link:active, -.jetpack-instant-search__search-result-title-link:hover { - color: #0089c7; - opacity: 1; - text-decoration: none; -} - -.video-card { - background: #fff; - color: #000; - border-radius: 8px; - overflow: auto; - display: flex; - flex-direction: column; -} - -.video-card h2 { - margin: 0 0 .25rem; -} - -.video-card .button { - -webkit-margin-before: auto; - margin-block-start: auto; -} - -.video-thumb { - margin: 0 0 1rem; - display: block; -} - -.video-thumb img.video-thumbnail { - width: 100%; - height: auto; - display: block; -} - -.video-info { - display: flex; - flex-direction: column; - flex: 1; - padding: 1.5rem; -} - -.lodge-video-nav { - overflow: hidden; - border-bottom: 1px solid #ccc; - padding: .5rem; - margin: 0 0 20px; -} - -.lodge-video-prev { - float: left; -} - -.lodge-video-next { - float: right; -} - -.single-video-wrapper { - border-radius: 8px; - overflow: hidden; -} - -.download-video { - background: rgba(255, 122, 24, .1); - border-bottom-left-radius: 8px; - border-bottom-right-radius: 8px; - padding: 1rem; - text-align: center; - max-width: 100%; - margin-inline: 1rem; -} - -.download-video-non-member>a { - opacity: .5; - pointer-events: none; -} - -.almanac-headers { - display: grid; - grid-template-columns: 1fr 1fr; - gap: var(--gap); - color: #000; -} - -.almanac-headers p { - margin: 0; -} - -.almanac-headers>* { - background: #fff; - border-top-right-radius: 8px; - border-top-left-radius: 8px; - padding: 2rem; -} - -@media (max-width:800px) { - .almanac-headers>* { - padding: 1rem; - } -} - -.almanac-header-selectors { - border-bottom: 5px solid #f44336; -} - -.almanac-header-properties { - border-bottom: 5px solid #b822ff; -} - -.almanac-letter-row { - display: grid; - grid-template-columns: 5rem 1fr 5rem 1fr; -} - -@media (max-width:800px) { - .almanac-letter-row { - grid-template-columns: 30px 1fr calc(30px + 1rem) 1fr; - } -} - -.selector-letter>a { - color: #f44336; -} - -.property-letter { - padding-left: 2rem; -} - -.property-letter>a { - color: #b822ff; -} - -@media (max-width:800px) { - .property-letter { - padding-left: 1rem; - } -} - -.property-list, -.selector-list { - padding: calc(var(--gap)*2) 0 2rem 0; -} - -.property-list>ol>li>a, -.selector-list>ol>li>a { - display: block; - padding: .5rem 0; - border-bottom: 1px solid #434343; - color: #d4d4d4; -} - -.property-list>ol>li>a:focus, -.property-list>ol>li>a:hover, -.selector-list>ol>li>a:focus, -.selector-list>ol>li>a:hover { - opacity: 1; - color: #0089c7; - border-bottom-color: #fff; -} - -.selector-list { - padding-right: 2rem; -} - -@media (max-width:800px) { - .selector-list { - padding-right: 1rem; - } -} - -.property-letter, -.selector-letter { - padding-top: calc(var(--gap)*2); - font-weight: 700; - font-size: 2rem; -} - -@media (max-width:800px) { - - .property-letter, - .selector-letter { - font-size: 1.5rem; - } -} - -.caniuse { - font-size: .8rem; - border: 3px solid #c8c8c8; - padding: 1.5rem; - margin: 0 0 1rem; - border-radius: 8px; -} - -.caniuse .caniuse-section:last-child { - margin-top: 1rem; -} - -.caniuse h4 { - font-size: 1.1rem; - padding-top: 0; - margin: 2rem 0 0; -} - -.browser-support-table, -.wp-block-table.browser-support-table>table { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - border-collapse: separate; - border-spacing: .25rem; -} - -.browser-support-table tr, -.wp-block-table.browser-support-table>table tr { - background: none; -} - -.browser-support-table th, -.wp-block-table.browser-support-table>table th { - background: none; - color: #434343; - border: 0; - position: relative; - line-height: 1.1; - vertical-align: top; -} - -.browser-support-table th:before, -.wp-block-table.browser-support-table>table th:before { - content: ""; - display: block; - margin: 0 auto .5rem; - width: 32px; - height: 32px; - background-size: contain; -} - -.browser-support-table th.chrome:before, -.wp-block-table.browser-support-table>table th.chrome:before { - background-image: url(images/browser-logos/chrome_64x64.png); -} - -.browser-support-table th.opera:before, -.wp-block-table.browser-support-table>table th.opera:before { - background-image: url(images/browser-logos/opera_15-32_64x64.png); -} - -.browser-support-table th.firefox:before, -.wp-block-table.browser-support-table>table th.firefox:before { - background-image: url(images/browser-logos/firefox_64x64.png); -} - -.browser-support-table th.ie:before, -.wp-block-table.browser-support-table>table th.ie:before { - background-image: url(images/browser-logos/internet-explorer_9-11_64x64.png); -} - -.browser-support-table th.edge:before, -.wp-block-table.browser-support-table>table th.edge:before { - background-image: url(images/browser-logos/edge_64x64.png); -} - -.browser-support-table th.safari:before, -.wp-block-table.browser-support-table>table th.safari:before { - background-image: url(images/browser-logos/safari_64x64.png); -} - -.browser-support-table th.ios:before, -.browser-support-table th.iOS:before, -.browser-support-table th.ios_saf:before, -.wp-block-table.browser-support-table>table th.ios:before, -.wp-block-table.browser-support-table>table th.iOS:before, -.wp-block-table.browser-support-table>table th.ios_saf:before { - background-image: url(images/browser-logos/safari-ios_64x64.png); -} - -.browser-support-table th.op_mini:before, -.browser-support-table th.op_mob:before, -.wp-block-table.browser-support-table>table th.op_mini:before, -.wp-block-table.browser-support-table>table th.op_mob:before { - background-image: url(images/browser-logos/opera_15-32_64x64.png); -} - -.browser-support-table th.android:before, -.wp-block-table.browser-support-table>table th.android:before { - background-image: url(images/browser-logos/android-webview-beta_64x64.png); -} - -.browser-support-table th.and_chr:before, -.wp-block-table.browser-support-table>table th.and_chr:before { - background-image: url(images/browser-logos/chrome_64x64.png); -} - -.browser-support-table th.and_ff:before, -.wp-block-table.browser-support-table>table th.and_ff:before { - background-image: url(images/browser-logos/firefox_64x64.png); -} - -.browser-support-table td, -.browser-support-table th, -.wp-block-table.browser-support-table>table td, -.wp-block-table.browser-support-table>table th { - text-align: center; - padding: .5rem; - border-top: 0; - font-weight: 700; - border-radius: 4px; -} - -.browser-support-table .yep, -.wp-block-table.browser-support-table>table .yep { - background: #47ca4c; - color: #fff; -} - -.browser-support-table .nope, -.wp-block-table.browser-support-table>table .nope { - background: #ff0024; - color: #fff; -} - -.browser-support-table .yep-nope, -.wp-block-table.browser-support-table>table .yep-nope { - background: #ffa100; - color: #fff; -} - -@media (max-width:1200px) { - - .browser-support-table, - .browser-support-table tbody, - .browser-support-table th, - .browser-support-table tr, - .wp-block-table.browser-support-table>table, - .wp-block-table.browser-support-table>table tbody, - .wp-block-table.browser-support-table>table th, - .wp-block-table.browser-support-table>table tr { - display: block; - } - - .browser-support-table thead, - .wp-block-table.browser-support-table>table thead { - display: none; - } - - .browser-support-table tr, - .wp-block-table.browser-support-table>table tr { - display: flex; - flex-wrap: wrap; - } - - .browser-support-table td, - .wp-block-table.browser-support-table>table td { - border-radius: 4px; - border: 0; - margin: 0 5px 5px 0; - } - - .browser-support-table td:before, - .wp-block-table.browser-support-table>table td:before { - color: #222; - content: attr(data-browser-name) ": "; - } -} - -.almanac-nav { - margin: 0; -} - -.almanac-nav>li { - font-size: 3em; - margin: 0 0 20px; -} - -.almanac-nav>li li { - font-size: .4em; -} - -.almanac-nav>li small { - border: 1px solid #ccc; - color: #ccc; - display: inline-block; - font-size: 25%; - margin-left: 15px; - padding: 1px 5px; - position: relative; - bottom: 15px; -} - -.single-almanac-content { - display: grid; - grid-template-columns: 150px minmax(0, 1fr) 285px; - gap: 1rem; -} - -.single-almanac-content .almanac-sidebar { - grid-area: 1/1/2/2; - background: #111; - border-radius: 8px; - padding: 1rem; -} - -.single-almanac-content .article-content-wrap { - grid-area: 1/2/2/3; -} - -.single-almanac-content .sidebar { - grid-area: 1/3/2/4; -} - -@media (max-width:1000px) { - .single-almanac-content { - grid-template-columns: 125px minmax(0, 1fr); - } - - .single-almanac-content .sidebar { - display: none; - } -} - -@media (max-width:650px) { - .single-almanac-content { - grid-template-columns: 1fr; - gap: 1.5rem; - } - - .single-almanac-content .article-content-wrap { - grid-area: 1/1/2/2; - min-width: 0; - } - - .single-almanac-content .almanac-sidebar { - grid-area: 2/1/3/2; - } -} - -.almanac-sidebar-list { - font-size: .85rem; - list-style: none; -} - -.almanac-sidebar-list>li { - margin-bottom: 2rem; -} - -.almanac-sidebar-list>li.page-item-13710>a { - color: #f44336; -} - -.almanac-sidebar-list>li.page-item-13708>a { - color: #b822ff; -} - -.almanac-sidebar-list>li>a { - text-transform: uppercase; - display: block; -} - -.almanac-sidebar-list>li>ul { - list-style: none; -} - -.almanac-sidebar-list>li>ul>li>a { - display: block; - color: #fff; -} - -.almanac-sidebar-list>li>ul>li>a:before { - content: ">"; - font-size: 12px; - vertical-align: middle; - color: grey; - margin-right: .2rem; - display: inline-block; - width: 10px; - height: 26px; - position: relative; - transform-origin: center center; - transition: .3s; -} - -.almanac-sidebar-list>li>ul>li>a.almanac-sidebar-link-open:before { - transform: rotate(90deg); -} - -.almanac-sidebar-list>li>ul>li>ul { - display: none; - font-size: 10px; -} - -@media (max-width:650px) { - .almanac-sidebar-list { - display: grid; - grid-template-columns: 1fr 1fr; - padding: 1rem; - grid-gap: .5rem; - } - - .almanac-sidebar-list .children li { - margin: 0 0 .25rem; - } - - .almanac-sidebar-list .children a { - background: #5e5e5e; - display: block; - padding: 0 .25rem; - border-radius: 4px; - } - - .almanac-sidebar-list .children li ul { - margin: 0 0 1rem; - } - - .almanac-sidebar-list .children li li a { - padding: .35rem 1rem; - } - - .almanac-sidebar-list .children .children a { - background: none; - } -} - -.top-nav-archives { - white-space: nowrap; - position: relative; - overflow: visible; - width: 100%; -} - -.top-nav-archives .select-navigator { - width: 384px; - margin-right: auto; -} - -.number-of-articles { - -webkit-margin-end: 1rem; - margin-inline-end: 1rem; - -webkit-margin-start: auto; - margin-inline-start: auto; - font-size: 16px; -} - -@media (max-width:800px) { - .number-of-articles { - display: none; - } -} - -.sorting-button { - color: #fff; - border-left: 1px solid #a7a7a7; - padding-left: 1rem; -} - -@media (max-width:800px) { - .sorting-button { - margin-left: 1rem; - } -} - -.down-arrow { - display: inline-block; - transform: rotate(90deg); -} - -.down-arrow svg { - width: 20px; - height: 20px; -} - -.sorting-controls { - font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace; - font-weight: 400; - position: absolute; - z-index: 5; - right: 0; - top: 80%; - box-shadow: 0 4px 80px #000; - max-width: 395px; - white-space: normal; - text-align: left; - padding: 0 1rem; - border-radius: 4px; - background: #434343; - max-height: 0; - overflow: hidden; - transition: .2s; - margin: 1rem 0 0; -} - -.sorting-controls.open { - max-height: 400px; - padding-top: 1rem; - padding-bottom: 1rem; -} - -.sorting-controls .custom-select { - display: inline-block; - width: 100px; - border: 2px solid #5e5e5e; - margin-bottom: 10px; -} - -@media (max-width:800px) { - .sorting-controls { - font-size: .66rem; - } -} - -.guide-card { - background: #fff; - color: #111; - border-radius: 8px; - overflow: hidden; - display: flex; - flex-direction: column; -} - -.guide-card h2 { - margin: 0 0 .25rem; -} - -.guide-card>a { - display: block; -} - -.guide-card-content { - padding: 1.5rem; - display: flex; - flex-direction: column; - flex: 1; -} - -.guide-card-content .button { - -webkit-margin-before: auto; - margin-block-start: auto; -} - -.guide-card-img { - width: 100%; - background: #a7a7a7; - display: block; -} - -.guide-excerpt, -.guide-time { - margin: 0 0 1.5rem; -} - -.snippet-top-level-nav { - display: flex; -} - -.snippet-top-level-nav li.active { - border-bottom: 3px solid #e52e71; -} - -.list-of-snippets { - background: #fff; - padding: var(--gap); - border-radius: 8px; -} - -.list-of-snippets>li { - display: grid; - grid-template-columns: 50% 1fr 1fr 1fr; - border-bottom: 1px solid #5e5e5e; - align-items: center; -} - -@media (max-width:800px) { - .list-of-snippets>li { - padding: 1rem 0; - grid-template-columns: 1fr 1fr 1fr; - } - - .list-of-snippets>li .snippet-title { - grid-column: 1/4; - margin: 0 0 .5rem; - } -} - -.list-of-snippets.limit-shown>li:nth-child(1n + 50) { - display: none; -} - -.snippet-title { - font-family: MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif; - font-style: normal; - font-weight: 700; - font-size: 20px; - padding-right: 20px; -} - -.snippet-author, -.snippet-category, -.snippet-updated { - color: #777; - font-size: 16px; -} - -:root { - --light-orange: #fff2df; -} - -.newsletters-nav { - margin-bottom: 1rem; - display: flex; - white-space: nowrap; -} - -.newsletters-nav .custom-select { - margin: 0 .5rem; -} - -.newsletters-nav label { - align-self: center; -} - -.link-to-issue { - background-color: rgba(0, 0, 0, .2); - color: #fff; - padding: .5rem; - border-radius: 8px; -} - -.newsletter-iframe { - height: 800px; - width: 100%; - border: 0; -} - -.sponsor-subtitle { - color: #ff7a18; - text-transform: uppercase; - font-size: .9rem; - margin: 0; -} - -#view-online-link { - display: none; -} - -.people-table { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); - gap: var(--gap); - margin: var(--gap) 0; -} - -.css-tricks-person { - background: #fff; - border-radius: 8px; - color: #000; - padding: 2rem; -} - -.css-tricks-person .author-avatar .avatar { - width: 130px; - height: 130px; -} - -.css-tricks-person .links { - margin: 0 0 1rem; -} - -.css-tricks-person .links a+a:before { - content: " / "; -} - -.css-tricks-person .total-articles { - font-weight: 700; -} - -.person-bio { - display: -webkit-box; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - overflow: hidden; -} - -body.bbpress #bbpress-forums div.bbp-reply-content a, -body.bbpress #bbpress-forums div.bbp-topic-content a { - background: inherit; -} - -#bbpress-forums, -#bbpress-forums ul.bbp-forums, -#bbpress-forums ul.bbp-lead-topic, -#bbpress-forums ul.bbp-replies, -#bbpress-forums ul.bbp-search-results, -#bbpress-forums ul.bbp-topics { - font-size: 16px; - line-height: 1.4; -} - -#bbpress-forums div.bbp-reply-content code, -#bbpress-forums div.bbp-reply-content pre, -#bbpress-forums div.bbp-topic-content code, -#bbpress-forums div.bbp-topic-content pre { - background: #434343; - color: #fff; - border: 0; -} - -body.bbpress #bbpress-forums div.bbp-reply-content a, -body.bbpress #bbpress-forums div.bbp-topic-content a { - background: none; - -webkit-text-fill-color: #0089c7; -} - -body.bbpress .bbp-search-form { - margin: 0 0 14px; -} - -body.bbpress .bbp-search-form input[type=email], -body.bbpress .bbp-search-form input[type=password], -body.bbpress .bbp-search-form input[type=search], -body.bbpress .bbp-search-form input[type=text], -body.bbpress .bbp-search-form input[type=url], -body.bbpress .bbp-search-form textarea, -body.bbpress .forums-login-form input[type=email], -body.bbpress .forums-login-form input[type=password], -body.bbpress .forums-login-form input[type=search], -body.bbpress .forums-login-form input[type=text], -body.bbpress .forums-login-form input[type=url], -body.bbpress .forums-login-form textarea { - font-family: inherit; - outline: 0; - border: 1px solid #a7a7a7; - padding: 5px 1rem; - border-radius: 8px; - display: block; - width: 100%; - margin: 0 0 8px; -} - -body.bbpress .button { - padding-top: 5px; - padding-bottom: 5px; -} - -#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content { - border: 1px solid #909090; -} - -@media screen and (max-width:400px) { - @-ms-viewport { - width: 320px; - } -} - -@media print { - - #respond, - .article-sponsor, - .button, - .comment-reply-link, - .cp_embed_wrapper>iframe, - .mega-header:before, - .related-ads-comments-wrap, - .related-posts, - .sharedaddy, - .sidebar, - .site-header, - .tags, - .view-comments-button, - .win-size-grip, - [class*=bsa], - body:after, - body:before, - footer, - header.top, - nav { - display: none; - } - - .cp_embed_wrapper { - height: auto; - } - - .cp_embed_wrapper:before { - content: "Embedded Pen Here"; - border: 1px solid #ccc; - margin: 2rem 0; - display: block; - padding: 2rem; - text-align: center; - } - - #respond { - page-break-before: always; - } - - body { - background: none; - padding-block: 1rem; - } - - .header-breadcrumbs, - a, - code, - code span, - html, - pre, - pre:before, - time { - background: none; - color: #000; - } - - pre { - border-top: 1px solid #000; - border-bottom: 1px solid #000; - } - - .article-content { - padding: 0; - } - - .article-content a:after { - content: " (" attr(href) ") "; - } - - .article-title, - .breadcrumbs .breadcrumb_last { - text-shadow: none; - } -} - -.mejs-offscreen { - border: 0; - clip: rect(1px, 1px, 1px, 1px); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; - word-wrap: normal; -} - -.mejs-container { - background: #000; - font-family: Helvetica, Arial, serif; - position: relative; - text-align: left; - text-indent: 0; - vertical-align: top; -} - -.mejs-container, -.mejs-container * { - box-sizing: border-box; -} - -.mejs-container video::-webkit-media-controls, -.mejs-container video::-webkit-media-controls-panel, -.mejs-container video::-webkit-media-controls-panel-container, -.mejs-container video::-webkit-media-controls-start-playback-button { - -webkit-appearance: none; - display: none; -} - -.mejs-fill-container, -.mejs-fill-container .mejs-container { - height: 100%; - width: 100%; -} - -.mejs-fill-container { - background: transparent; - margin: 0 auto; - overflow: hidden; - position: relative; -} - -.mejs-container:focus { - outline: none; -} - -.mejs-iframe-overlay { - height: 100%; - position: absolute; - width: 100%; -} - -.mejs-embed, -.mejs-embed body { - background: #000; - height: 100%; - margin: 0; - overflow: hidden; - padding: 0; - width: 100%; -} - -.mejs-fullscreen { - overflow: hidden; -} - -.mejs-container-fullscreen { - bottom: 0; - left: 0; - overflow: hidden; - position: fixed; - right: 0; - top: 0; - z-index: 1000; -} - -.mejs-container-fullscreen .mejs-mediaelement, -.mejs-container-fullscreen video { - height: 100%; - width: 100%; -} - -.mejs-background, -.mejs-mediaelement { - left: 0; - position: absolute; - top: 0; -} - -.mejs-mediaelement { - height: 100%; - width: 100%; - z-index: 0; -} - -.mejs-poster { - background-position: 50% 50%; - background-repeat: no-repeat; - background-size: cover; - left: 0; - position: absolute; - top: 0; - z-index: 1; -} - -:root .mejs-poster-img { - display: none; -} - -.mejs-poster-img { - border: 0; - padding: 0; -} - -.mejs-overlay { - -webkit-box-align: center; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - left: 0; - position: absolute; - top: 0; -} - -.mejs-layer { - z-index: 1; -} - -.mejs-overlay-play { - cursor: pointer; -} - -.mejs-overlay-button { - background: url(mejs-controls.svg) no-repeat; - background-position: 0 -39px; - height: 80px; - width: 80px; -} - -.mejs-overlay:hover>.mejs-overlay-button { - background-position: -80px -39px; -} - -.mejs-overlay-loading { - height: 80px; - width: 80px; -} - -.mejs-overlay-loading-bg-img { - -webkit-animation: a 1s linear infinite; - animation: a 1s linear infinite; - background: transparent url(mejs-controls.svg) -160px -40px no-repeat; - display: block; - height: 80px; - width: 80px; - z-index: 1; -} - -@-webkit-keyframes a { - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } -} - -@keyframes a { - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } -} - -.mejs-controls { - bottom: 0; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 40px; - left: 0; - list-style-type: none; - margin: 0; - padding: 0 10px; - position: absolute; - width: 100%; - z-index: 3; -} - -.mejs-controls:not([style*="display: none"]) { - background: rgba(255, 0, 0, .7); - background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .35)); - background: linear-gradient(transparent, rgba(0, 0, 0, .35)); -} - -.mejs-button, -.mejs-time, -.mejs-time-rail { - font-size: 10px; - height: 40px; - line-height: 10px; - margin: 0; - width: 32px; -} - -.mejs-button>button { - background: transparent url(mejs-controls.svg); - border: 0; - cursor: pointer; - display: block; - font-size: 0; - height: 20px; - line-height: 0; - margin: 10px 6px; - overflow: hidden; - padding: 0; - position: absolute; - text-decoration: none; - width: 20px; -} - -.mejs-button>button:focus { - outline: 1px dotted #999; -} - -.mejs-container-keyboard-inactive [role=slider], -.mejs-container-keyboard-inactive [role=slider]:focus, -.mejs-container-keyboard-inactive a, -.mejs-container-keyboard-inactive a:focus, -.mejs-container-keyboard-inactive button, -.mejs-container-keyboard-inactive button:focus { - outline: 0; -} - -.mejs-time { - box-sizing: content-box; - color: #fff; - font-size: 11px; - font-weight: 700; - height: 24px; - overflow: hidden; - padding: 16px 6px 0; - text-align: center; - width: auto; -} - -.mejs-play>button { - background-position: 0 0; -} - -.mejs-pause>button { - background-position: -20px 0; -} - -.mejs-replay>button { - background-position: -160px 0; -} - -.mejs-time-rail { - direction: ltr; - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; - height: 40px; - margin: 0 10px; - padding-top: 10px; - position: relative; -} - -.mejs-time-buffering, -.mejs-time-current, -.mejs-time-float, -.mejs-time-float-corner, -.mejs-time-float-current, -.mejs-time-hovered, -.mejs-time-loaded, -.mejs-time-marker, -.mejs-time-total { - border-radius: 2px; - cursor: pointer; - display: block; - height: 10px; - position: absolute; -} - -.mejs-time-total { - background: hsla(0, 0%, 100%, .3); - margin: 5px 0 0; - width: 100%; -} - -.mejs-time-buffering { - -webkit-animation: b 2s linear infinite; - animation: b 2s linear infinite; - background: -webkit-linear-gradient(135deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent); - background: linear-gradient(-45deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent); - background-size: 15px 15px; - width: 100%; -} - -@-webkit-keyframes b { - 0% { - background-position: 0 0; - } - - to { - background-position: 30px 0; - } -} - -@keyframes b { - 0% { - background-position: 0 0; - } - - to { - background-position: 30px 0; - } -} - -.mejs-time-loaded { - background: hsla(0, 0%, 100%, .3); -} - -.mejs-time-current, -.mejs-time-handle-content { - background: hsla(0, 0%, 100%, .9); -} - -.mejs-time-hovered { - background: hsla(0, 0%, 100%, .5); - z-index: 10; -} - -.mejs-time-hovered.negative { - background: rgba(0, 0, 0, .2); -} - -.mejs-time-buffering, -.mejs-time-current, -.mejs-time-hovered, -.mejs-time-loaded { - left: 0; - -webkit-transform: scaleX(0); - -ms-transform: scaleX(0); - transform: scaleX(0); - -webkit-transform-origin: 0 0; - -ms-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transition: all .15s ease-in; - transition: all .15s ease-in; - width: 100%; -} - -.mejs-time-buffering { - -webkit-transform: scaleX(1); - -ms-transform: scaleX(1); - transform: scaleX(1); -} - -.mejs-time-hovered { - -webkit-transition: height .1s cubic-bezier(.44, 0, 1, 1); - transition: height .1s cubic-bezier(.44, 0, 1, 1); -} - -.mejs-time-hovered.no-hover { - -webkit-transform: scaleX(0); - -ms-transform: scaleX(0); - transform: scaleX(0); -} - -.mejs-time-handle, -.mejs-time-handle-content { - border: 4px solid transparent; - cursor: pointer; - left: 0; - position: absolute; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - z-index: 11; -} - -.mejs-time-handle-content { - border: 4px solid hsla(0, 0%, 100%, .9); - border-radius: 50%; - height: 10px; - left: -7px; - top: -4px; - -webkit-transform: scale(0); - -ms-transform: scale(0); - transform: scale(0); - width: 10px; -} - -.mejs-time-rail .mejs-time-handle-content:active, -.mejs-time-rail .mejs-time-handle-content:focus, -.mejs-time-rail:hover .mejs-time-handle-content { - -webkit-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); -} - -.mejs-time-float { - background: #eee; - border: 1px solid #333; - bottom: 100%; - color: #111; - display: none; - height: 17px; - margin-bottom: 9px; - position: absolute; - text-align: center; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - width: 36px; -} - -.mejs-time-float-current { - display: block; - left: 0; - margin: 2px; - text-align: center; - width: 30px; -} - -.mejs-time-float-corner { - border: 5px solid #eee; - border-color: #eee transparent transparent; - border-radius: 0; - display: block; - height: 0; - left: 50%; - line-height: 0; - position: absolute; - top: 100%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - width: 0; -} - -.mejs-long-video .mejs-time-float { - margin-left: -23px; - width: 64px; -} - -.mejs-long-video .mejs-time-float-current { - width: 60px; -} - -.mejs-broadcast { - color: #fff; - height: 10px; - position: absolute; - top: 15px; - width: 100%; -} - -.mejs-fullscreen-button>button { - background-position: -80px 0; -} - -.mejs-unfullscreen>button { - background-position: -100px 0; -} - -.mejs-mute>button { - background-position: -60px 0; -} - -.mejs-unmute>button { - background-position: -40px 0; -} - -.mejs-volume-button { - position: relative; -} - -.mejs-volume-button>.mejs-volume-slider { - -webkit-backface-visibility: hidden; - background: rgba(50, 50, 50, .7); - border-radius: 0; - bottom: 100%; - display: none; - height: 115px; - left: 50%; - margin: 0; - position: absolute; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - width: 25px; - z-index: 1; -} - -.mejs-volume-button:hover { - border-radius: 0 0 4px 4px; -} - -.mejs-volume-total { - background: hsla(0, 0%, 100%, .5); - height: 100px; - left: 50%; - margin: 0; - position: absolute; - top: 8px; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - width: 2px; -} - -.mejs-volume-current { - left: 0; - margin: 0; - width: 100%; -} - -.mejs-volume-current, -.mejs-volume-handle { - background: hsla(0, 0%, 100%, .9); - position: absolute; -} - -.mejs-volume-handle { - border-radius: 1px; - cursor: ns-resize; - height: 6px; - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - width: 16px; -} - -.mejs-horizontal-volume-slider { - display: block; - height: 36px; - position: relative; - vertical-align: middle; - width: 56px; -} - -.mejs-horizontal-volume-total { - background: rgba(50, 50, 50, .8); - height: 8px; - top: 16px; - width: 50px; -} - -.mejs-horizontal-volume-current, -.mejs-horizontal-volume-total { - border-radius: 2px; - font-size: 1px; - left: 0; - margin: 0; - padding: 0; - position: absolute; -} - -.mejs-horizontal-volume-current { - background: hsla(0, 0%, 100%, .8); - height: 100%; - top: 0; - width: 100%; -} - -.mejs-horizontal-volume-handle { - display: none; -} - -.mejs-captions-button, -.mejs-chapters-button { - position: relative; -} - -.mejs-captions-button>button { - background-position: -140px 0; -} - -.mejs-chapters-button>button { - background-position: -180px 0; -} - -.mejs-captions-button>.mejs-captions-selector, -.mejs-chapters-button>.mejs-chapters-selector { - background: rgba(50, 50, 50, .7); - border: 1px solid transparent; - border-radius: 0; - bottom: 100%; - margin-right: -43px; - overflow: hidden; - padding: 0; - position: absolute; - right: 50%; - visibility: visible; - width: 86px; -} - -.mejs-chapters-button>.mejs-chapters-selector { - margin-right: -55px; - width: 110px; -} - -.mejs-captions-selector-list, -.mejs-chapters-selector-list { - list-style-type: none; - margin: 0; - overflow: hidden; - padding: 0; -} - -.mejs-captions-selector-list-item, -.mejs-chapters-selector-list-item { - color: #fff; - cursor: pointer; - display: block; - list-style-type: none; - margin: 0 0 6px; - overflow: hidden; - padding: 0; -} - -.mejs-captions-selector-list-item:hover, -.mejs-chapters-selector-list-item:hover { - background-color: #c8c8c8; - background-color: hsla(0, 0%, 100%, .4); -} - -.mejs-captions-selector-input, -.mejs-chapters-selector-input { - clear: both; - float: left; - left: -1000px; - margin: 3px 3px 0 5px; - position: absolute; -} - -.mejs-captions-selector-label, -.mejs-chapters-selector-label { - cursor: pointer; - float: left; - font-size: 10px; - line-height: 15px; - padding: 4px 10px 0; - width: 100%; -} - -.mejs-captions-selected, -.mejs-chapters-selected { - color: #21f8f8; -} - -.mejs-captions-translations { - font-size: 10px; - margin: 0 0 5px; -} - -.mejs-captions-layer { - bottom: 0; - color: #fff; - font-size: 16px; - left: 0; - line-height: 20px; - position: absolute; - text-align: center; -} - -.mejs-captions-layer a { - color: #fff; - text-decoration: underline; -} - -.mejs-captions-layer[lang=ar] { - font-size: 20px; - font-weight: 400; -} - -.mejs-captions-position { - bottom: 15px; - left: 0; - position: absolute; - width: 100%; -} - -.mejs-captions-position-hover { - bottom: 35px; -} - -.mejs-captions-text, -.mejs-captions-text * { - background: hsla(0, 0%, 8%, .5); - box-shadow: 5px 0 0 hsla(0, 0%, 8%, .5), -5px 0 0 hsla(0, 0%, 8%, .5); - padding: 0; - white-space: pre-wrap; -} - -.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container { - display: none; -} - -.mejs-overlay-error { - position: relative; -} - -.mejs-overlay-error>img { - left: 0; - max-width: 100%; - position: absolute; - top: 0; - z-index: -1; -} - -.mejs-cannotplay, -.mejs-cannotplay a { - color: #fff; - font-size: .8em; -} - -.mejs-cannotplay { - position: relative; -} - -.mejs-cannotplay a, -.mejs-cannotplay p { - display: inline-block; - padding: 0 15px; - width: 100%; -} - -.mejs-container { - clear: both; - max-width: 100%; -} - -.mejs-container * { - font-family: Helvetica, Arial; -} - -.mejs-container, -.mejs-container .mejs-controls, -.mejs-embed, -.mejs-embed body { - background: #222; -} - -.mejs-time { - font-weight: 400; - word-wrap: normal; -} - -.mejs-controls a.mejs-horizontal-volume-slider { - display: table; -} - -.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, -.mejs-controls .mejs-time-rail .mejs-time-loaded { - background: #fff; -} - -.mejs-controls .mejs-time-rail .mejs-time-current { - background: #0073aa; -} - -.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, -.mejs-controls .mejs-time-rail .mejs-time-total { - background: rgba(255, 255, 255, .33); -} - -.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current, -.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total, -.mejs-controls .mejs-time-rail span { - border-radius: 0; -} - -.mejs-overlay-loading { - background: 0 0; -} - -.mejs-controls button:hover { - border: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.me-cannotplay { - width: auto; -} - -.media-embed-details .wp-audio-shortcode { - display: inline-block; - max-width: 400px; -} - -.audio-details .embed-media-settings { - overflow: visible; -} - -.media-embed-details .embed-media-settings .setting span:not(.button-group) { - max-width: 400px; - width: auto; -} - -.media-embed-details .embed-media-settings .checkbox-setting span { - display: inline-block; -} - -.media-embed-details .embed-media-settings { - padding-top: 0; - top: 28px; -} - -.media-embed-details .instructions { - padding: 16px 0; - max-width: 600px; -} - -.media-embed-details .setting .remove-setting, -.media-embed-details .setting p { - color: #a00; - font-size: 10px; - text-transform: uppercase; -} - -.media-embed-details .setting .remove-setting { - padding: 5px 0; -} - -.media-embed-details .setting a:hover { - color: #dc3232; -} - -.media-embed-details .embed-media-settings .checkbox-setting { - float: none; - margin: 0 0 10px; -} - -.wp-video { - max-width: 100%; - height: auto; -} - -.wp_attachment_holder .wp-audio-shortcode, -.wp_attachment_holder .wp-video { - margin-top: 18px; -} - -.wp-video-shortcode video, -video.wp-video-shortcode { - max-width: 100%; - display: inline-block; -} - -.video-details .wp-video-holder { - width: 100%; - max-width: 640px; -} - -.wp-playlist { - border: 1px solid #ccc; - padding: 10px; - margin: 12px 0 18px; - font-size: 14px; - line-height: 1.5; -} - -.wp-admin .wp-playlist { - margin: 0 0 18px; -} - -.wp-playlist video { - display: inline-block; - max-width: 100%; -} - -.wp-playlist audio { - display: none; - max-width: 100%; - width: 400px; -} - -.wp-playlist .mejs-container { - margin: 0; - max-width: 100%; -} - -.wp-playlist .mejs-controls .mejs-button button { - outline: 0; -} - -.wp-playlist-light { - background: #fff; - color: #000; -} - -.wp-playlist-dark { - color: #fff; - background: #000; -} - -.wp-playlist-caption { - display: block; - max-width: 88%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-size: 14px; - line-height: 1.5; -} - -.wp-playlist-item .wp-playlist-caption { - text-decoration: none; - color: #000; - max-width: -webkit-calc(100% - 40px); - max-width: calc(100% - 40px); -} - -.wp-playlist-item-meta { - display: block; - font-size: 14px; - line-height: 1.5; -} - -.wp-playlist-item-title { - font-size: 14px; - line-height: 1.5; -} - -.wp-playlist-item-album { - font-style: italic; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.wp-playlist-item-artist { - font-size: 12px; - text-transform: uppercase; -} - -.wp-playlist-item-length { - position: absolute; - right: 3px; - top: 0; - font-size: 14px; - line-height: 1.5; -} - -.rtl .wp-playlist-item-length { - left: 3px; - right: auto; -} - -.wp-playlist-tracks { - margin-top: 10px; -} - -.wp-playlist-item { - position: relative; - cursor: pointer; - padding: 0 3px; - border-bottom: 1px solid #ccc; -} - -.wp-playlist-item:last-child { - border-bottom: 0; -} - -.wp-playlist-light .wp-playlist-caption { - color: #333; -} - -.wp-playlist-dark .wp-playlist-caption { - color: #ddd; -} - -.wp-playlist-playing { - font-weight: 700; - background: #f7f7f7; -} - -.wp-playlist-light .wp-playlist-playing { - background: #fff; - color: #000; -} - -.wp-playlist-dark .wp-playlist-playing { - background: #000; - color: #fff; -} - -.wp-playlist-current-item { - overflow: hidden; - margin-bottom: 10px; - height: 60px; -} - -.wp-playlist .wp-playlist-current-item img { - float: left; - max-width: 60px; - height: auto; - margin-right: 10px; - padding: 0; - border: 0; -} - -.rtl .wp-playlist .wp-playlist-current-item img { - float: right; - margin-left: 10px; - margin-right: 0; -} - -.wp-playlist-current-item .wp-playlist-item-artist, -.wp-playlist-current-item .wp-playlist-item-title { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.wp-audio-playlist .me-cannotplay span { - padding: 5px 15px; -} - -/*! This file is auto-generated */ - -.wp-block-button__link { - color: #fff; - background-color: #32373c; - border-radius: 9999px; - box-shadow: none; - text-decoration: none; - padding: calc(.667em + 2px) calc(1.333em + 2px); - font-size: 1.125em; -} - -.wp-block-file__button { - background: #32373c; - color: #fff; - text-decoration: none; -} - -body { - --wp--preset--color--black: #000000; - --wp--preset--color--cyan-bluish-gray: #abb8c3; - --wp--preset--color--white: #ffffff; - --wp--preset--color--pale-pink: #f78da7; - --wp--preset--color--vivid-red: #cf2e2e; - --wp--preset--color--luminous-vivid-orange: #ff6900; - --wp--preset--color--luminous-vivid-amber: #fcb900; - --wp--preset--color--light-green-cyan: #7bdcb5; - --wp--preset--color--vivid-green-cyan: #00d084; - --wp--preset--color--pale-cyan-blue: #8ed1fc; - --wp--preset--color--vivid-cyan-blue: #0693e3; - --wp--preset--color--vivid-purple: #9b51e0; - --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%); - --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%); - --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%); - --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%); - --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%); - --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%); - --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%); - --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%); - --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%); - --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%); - --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%); - --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%); - --wp--preset--font-size--small: 13px; - --wp--preset--font-size--medium: 20px; - --wp--preset--font-size--large: 36px; - --wp--preset--font-size--x-large: 42px; - --wp--preset--spacing--20: 0.44rem; - --wp--preset--spacing--30: 0.67rem; - --wp--preset--spacing--40: 1rem; - --wp--preset--spacing--50: 1.5rem; - --wp--preset--spacing--60: 2.25rem; - --wp--preset--spacing--70: 3.38rem; - --wp--preset--spacing--80: 5.06rem; - --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4); - --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2); - --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1); - --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1); -} - -:where(.is-layout-flex) { - gap: 0.5em; -} - -:where(.is-layout-grid) { - gap: 0.5em; -} - -body .is-layout-flow>.alignleft { - float: left; - margin-inline-start: 0; - margin-inline-end: 2em; -} - -body .is-layout-flow>.alignright { - float: right; - margin-inline-start: 2em; - margin-inline-end: 0; -} - -body .is-layout-flow>.aligncenter { - margin-left: auto; - margin-right: auto; -} - -body .is-layout-constrained>.alignleft { - float: left; - margin-inline-start: 0; - margin-inline-end: 2em; -} - -body .is-layout-constrained>.alignright { - float: right; - margin-inline-start: 2em; - margin-inline-end: 0; -} - -body .is-layout-constrained>.aligncenter { - margin-left: auto; - margin-right: auto; -} - -body .is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) { - max-width: var(--wp--style--global--content-size); - margin-left: auto; - margin-right: auto; -} - -body .is-layout-constrained>.alignwide { - max-width: var(--wp--style--global--wide-size); -} - -body .is-layout-flex { - display: flex; -} - -body .is-layout-flex { - flex-wrap: wrap; - align-items: center; -} - -body .is-layout-flex>* { - margin: 0; -} - -body .is-layout-grid { - display: grid; -} - -body .is-layout-grid>* { - margin: 0; -} - -:where(.wp-block-columns.is-layout-flex) { - gap: 2em; -} - -:where(.wp-block-columns.is-layout-grid) { - gap: 2em; -} - -:where(.wp-block-post-template.is-layout-flex) { - gap: 1.25em; -} - -:where(.wp-block-post-template.is-layout-grid) { - gap: 1.25em; -} - -.has-black-color { - color: var(--wp--preset--color--black); -} - -.has-cyan-bluish-gray-color { - color: var(--wp--preset--color--cyan-bluish-gray); -} - -.has-white-color { - color: var(--wp--preset--color--white); -} - -.has-pale-pink-color { - color: var(--wp--preset--color--pale-pink); -} - -.has-vivid-red-color { - color: var(--wp--preset--color--vivid-red); -} - -.has-luminous-vivid-orange-color { - color: var(--wp--preset--color--luminous-vivid-orange); -} - -.has-luminous-vivid-amber-color { - color: var(--wp--preset--color--luminous-vivid-amber); -} - -.has-light-green-cyan-color { - color: var(--wp--preset--color--light-green-cyan); -} - -.has-vivid-green-cyan-color { - color: var(--wp--preset--color--vivid-green-cyan); -} - -.has-pale-cyan-blue-color { - color: var(--wp--preset--color--pale-cyan-blue); -} - -.has-vivid-cyan-blue-color { - color: var(--wp--preset--color--vivid-cyan-blue); -} - -.has-vivid-purple-color { - color: var(--wp--preset--color--vivid-purple); -} - -.has-black-background-color { - background-color: var(--wp--preset--color--black); -} - -.has-cyan-bluish-gray-background-color { - background-color: var(--wp--preset--color--cyan-bluish-gray); -} - -.has-white-background-color { - background-color: var(--wp--preset--color--white); -} - -.has-pale-pink-background-color { - background-color: var(--wp--preset--color--pale-pink); -} - -.has-vivid-red-background-color { - background-color: var(--wp--preset--color--vivid-red); -} - -.has-luminous-vivid-orange-background-color { - background-color: var(--wp--preset--color--luminous-vivid-orange); -} - -.has-luminous-vivid-amber-background-color { - background-color: var(--wp--preset--color--luminous-vivid-amber); -} - -.has-light-green-cyan-background-color { - background-color: var(--wp--preset--color--light-green-cyan); -} - -.has-vivid-green-cyan-background-color { - background-color: var(--wp--preset--color--vivid-green-cyan); -} - -.has-pale-cyan-blue-background-color { - background-color: var(--wp--preset--color--pale-cyan-blue); -} - -.has-vivid-cyan-blue-background-color { - background-color: var(--wp--preset--color--vivid-cyan-blue); -} - -.has-vivid-purple-background-color { - background-color: var(--wp--preset--color--vivid-purple); -} - -.has-black-border-color { - border-color: var(--wp--preset--color--black); -} - -.has-cyan-bluish-gray-border-color { - border-color: var(--wp--preset--color--cyan-bluish-gray); -} - -.has-white-border-color { - border-color: var(--wp--preset--color--white); -} - -.has-pale-pink-border-color { - border-color: var(--wp--preset--color--pale-pink); -} - -.has-vivid-red-border-color { - border-color: var(--wp--preset--color--vivid-red); -} - -.has-luminous-vivid-orange-border-color { - border-color: var(--wp--preset--color--luminous-vivid-orange); -} - -.has-luminous-vivid-amber-border-color { - border-color: var(--wp--preset--color--luminous-vivid-amber); -} - -.has-light-green-cyan-border-color { - border-color: var(--wp--preset--color--light-green-cyan); -} - -.has-vivid-green-cyan-border-color { - border-color: var(--wp--preset--color--vivid-green-cyan); -} - -.has-pale-cyan-blue-border-color { - border-color: var(--wp--preset--color--pale-cyan-blue); -} - -.has-vivid-cyan-blue-border-color { - border-color: var(--wp--preset--color--vivid-cyan-blue); -} - -.has-vivid-purple-border-color { - border-color: var(--wp--preset--color--vivid-purple); -} - -.has-vivid-cyan-blue-to-vivid-purple-gradient-background { - background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple); -} - -.has-light-green-cyan-to-vivid-green-cyan-gradient-background { - background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan); -} - -.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background { - background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange); -} - -.has-luminous-vivid-orange-to-vivid-red-gradient-background { - background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red); -} - -.has-very-light-gray-to-cyan-bluish-gray-gradient-background { - background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray); -} - -.has-cool-to-warm-spectrum-gradient-background { - background: var(--wp--preset--gradient--cool-to-warm-spectrum); -} - -.has-blush-light-purple-gradient-background { - background: var(--wp--preset--gradient--blush-light-purple); -} - -.has-blush-bordeaux-gradient-background { - background: var(--wp--preset--gradient--blush-bordeaux); -} - -.has-luminous-dusk-gradient-background { - background: var(--wp--preset--gradient--luminous-dusk); -} - -.has-pale-ocean-gradient-background { - background: var(--wp--preset--gradient--pale-ocean); -} - -.has-electric-grass-gradient-background { - background: var(--wp--preset--gradient--electric-grass); -} - -.has-midnight-gradient-background { - background: var(--wp--preset--gradient--midnight); -} - -.has-small-font-size { - font-size: var(--wp--preset--font-size--small); -} - -.has-medium-font-size { - font-size: var(--wp--preset--font-size--medium); -} - -.has-large-font-size { - font-size: var(--wp--preset--font-size--large); -} - -.has-x-large-font-size { - font-size: var(--wp--preset--font-size--x-large); -} - -.wp-block-navigation a:where(:not(.wp-element-button)) { - color: inherit; -} - -:where(.wp-block-post-template.is-layout-flex) { - gap: 1.25em; -} - -:where(.wp-block-post-template.is-layout-grid) { - gap: 1.25em; -} - -:where(.wp-block-columns.is-layout-flex) { - gap: 2em; -} - -:where(.wp-block-columns.is-layout-grid) { - gap: 2em; -} - -.wp-block-pullquote { - font-size: 1.5em; - line-height: 1.6; -} - -img#wpstats { - display: none; -} - -\ \ No newline at end of file diff --git a/src/__fixtures__/css-tricks-20231008.json b/src/__fixtures__/css-tricks-20231008.json deleted file mode 100644 index 6dfd8b0d..00000000 --- a/src/__fixtures__/css-tricks-20231008.json +++ /dev/null @@ -1,14977 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 4292, - "linesOfCode": 6354, - "size": 115415, - "complexity": 13339, - "comments": { - "total": 2, - "size": 173 - }, - "embeddedContent": { - "size": { - "total": 0, - "ratio": 0 - }, - "types": { - "total": 0, - "totalUnique": 0, - "uniquenessRatio": 0, - "unique": {} - } - } - }, - "atrules": { - "fontface": { - "total": 5, - "totalUnique": 5, - "unique": [ - { - "font-family": "MD Primer Bold", - "src": "url(fonts/MDPrimer-Bold.woff2) format(\"woff2\")", - "font-display": "swap", - "font-weight": "700" - }, - { - "font-family": "Blanco", - "src": "url(fonts/BlancoSubset-Regular.woff2) format(\"woff2\")", - "font-display": "swap", - "font-weight": "400" - }, - { - "font-family": "Blanco", - "src": "url(fonts/BlancoSubset-Bold.woff2) format(\"woff2\")", - "font-display": "swap", - "font-weight": "700" - }, - { - "font-family": "Blanco", - "src": "url(fonts/BlancoSubset-Italic.woff2) format(\"woff2\")", - "font-display": "swap", - "font-style": "italic" - }, - { - "font-family": "Blanco", - "src": "url(fonts/BlancoSubset-BoldItalic.woff2) format(\"woff2\")", - "font-display": "swap", - "font-weight": "700", - "font-style": "italic" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 63, - "totalUnique": 15, - "unique": { - "screen and (prefers-reduced-motion:reduce)": 1, - "(prefers-reduced-motion:reduce)": 1, - "(max-width:800px)": 37, - "(max-width:1200px)": 8, - "(max-width:1000px)": 2, - "(max-width:1241px)": 1, - "(max-width:620px)": 3, - "(max-width:830px)": 2, - "(max-width:950px)": 1, - "(max-width:374px)": 1, - "(max-height:700px)": 1, - "(min-width:1200px)": 1, - "(max-width:650px)": 2, - "screen and (max-width:400px)": 1, - "print": 1 - }, - "uniquenessRatio": 0.23809523809523808, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "charset": { - "total": 1, - "totalUnique": 1, - "unique": { - "\"UTF-8\"": 1 - }, - "uniquenessRatio": 1 - }, - "supports": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 7, - "totalUnique": 7, - "unique": { - "@keyframes yellowflash-bg": 1, - "@keyframes spinMe": 1, - "@keyframes ad_come_in": 1, - "@-webkit-keyframes a": 1, - "@keyframes a": 1, - "@-webkit-keyframes b": 1, - "@keyframes b": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 2, - "totalUnique": 2, - "unique": { - "@-webkit-keyframes a": 1, - "@-webkit-keyframes b": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.2857142857142857 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 77, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.025974025974026, - "mode": 1, - "range": 1, - "sum": 79 - } - }, - "rules": { - "total": 980, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 41, - "mean": 4.2785714285714285, - "mode": 2, - "range": 39, - "sum": 4193, - "items": [ - 2, - 4, - 2, - 11, - 4, - 3, - 2, - 4, - 8, - 4, - 4, - 3, - 2, - 5, - 8, - 3, - 6, - 3, - 3, - 2, - 3, - 4, - 3, - 6, - 3, - 6, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 6, - 4, - 5, - 3, - 6, - 5, - 2, - 2, - 3, - 5, - 5, - 2, - 3, - 4, - 4, - 10, - 8, - 15, - 11, - 7, - 5, - 7, - 3, - 8, - 4, - 3, - 4, - 4, - 3, - 6, - 10, - 2, - 2, - 2, - 3, - 7, - 4, - 4, - 2, - 7, - 4, - 3, - 3, - 13, - 9, - 9, - 9, - 9, - 9, - 14, - 16, - 17, - 5, - 5, - 11, - 2, - 2, - 5, - 3, - 5, - 2, - 3, - 3, - 3, - 7, - 2, - 8, - 3, - 2, - 2, - 3, - 6, - 2, - 3, - 3, - 3, - 3, - 8, - 13, - 16, - 4, - 2, - 2, - 2, - 3, - 6, - 3, - 2, - 2, - 18, - 12, - 12, - 3, - 4, - 2, - 3, - 3, - 11, - 2, - 9, - 4, - 5, - 2, - 2, - 6, - 3, - 8, - 2, - 3, - 2, - 2, - 7, - 2, - 2, - 2, - 3, - 2, - 2, - 6, - 4, - 2, - 3, - 3, - 5, - 4, - 3, - 4, - 4, - 26, - 23, - 2, - 4, - 4, - 4, - 5, - 2, - 4, - 2, - 6, - 3, - 2, - 16, - 10, - 2, - 3, - 4, - 34, - 21, - 2, - 6, - 13, - 3, - 4, - 2, - 2, - 2, - 6, - 2, - 6, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 9, - 2, - 3, - 2, - 2, - 5, - 5, - 3, - 5, - 4, - 4, - 11, - 4, - 13, - 7, - 3, - 3, - 6, - 2, - 2, - 5, - 3, - 3, - 17, - 5, - 3, - 2, - 4, - 4, - 3, - 3, - 2, - 3, - 5, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 8, - 3, - 3, - 13, - 9, - 3, - 8, - 4, - 2, - 4, - 5, - 2, - 2, - 2, - 7, - 2, - 11, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 3, - 2, - 6, - 6, - 2, - 2, - 2, - 7, - 4, - 2, - 4, - 2, - 3, - 4, - 3, - 3, - 2, - 6, - 9, - 2, - 2, - 20, - 5, - 8, - 2, - 3, - 4, - 2, - 5, - 2, - 6, - 9, - 3, - 4, - 6, - 3, - 7, - 7, - 3, - 2, - 3, - 3, - 3, - 4, - 2, - 3, - 2, - 6, - 2, - 4, - 2, - 3, - 7, - 8, - 2, - 11, - 4, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 5, - 2, - 4, - 3, - 4, - 2, - 4, - 2, - 4, - 2, - 2, - 3, - 5, - 4, - 2, - 12, - 2, - 2, - 3, - 2, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 12, - 2, - 2, - 10, - 6, - 8, - 2, - 8, - 7, - 4, - 3, - 11, - 5, - 3, - 2, - 2, - 2, - 10, - 11, - 2, - 3, - 13, - 6, - 2, - 5, - 6, - 7, - 2, - 2, - 2, - 3, - 2, - 10, - 2, - 2, - 5, - 3, - 2, - 5, - 10, - 13, - 3, - 4, - 2, - 2, - 10, - 3, - 4, - 2, - 10, - 10, - 3, - 2, - 6, - 8, - 3, - 4, - 2, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 5, - 3, - 2, - 2, - 2, - 7, - 3, - 4, - 2, - 3, - 3, - 3, - 9, - 3, - 2, - 9, - 6, - 6, - 4, - 12, - 4, - 12, - 10, - 7, - 6, - 4, - 4, - 11, - 12, - 5, - 6, - 5, - 4, - 9, - 7, - 6, - 2, - 5, - 4, - 3, - 6, - 2, - 2, - 2, - 3, - 6, - 3, - 8, - 6, - 10, - 4, - 2, - 3, - 4, - 2, - 4, - 2, - 2, - 9, - 6, - 3, - 3, - 3, - 4, - 2, - 8, - 3, - 7, - 2, - 3, - 5, - 2, - 5, - 3, - 2, - 4, - 6, - 4, - 2, - 2, - 5, - 2, - 3, - 4, - 8, - 2, - 7, - 4, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 5, - 2, - 5, - 10, - 5, - 5, - 4, - 3, - 6, - 2, - 3, - 6, - 2, - 3, - 10, - 3, - 6, - 2, - 4, - 2, - 2, - 3, - 8, - 3, - 4, - 2, - 4, - 3, - 5, - 2, - 2, - 8, - 5, - 2, - 3, - 2, - 4, - 2, - 5, - 7, - 2, - 3, - 3, - 4, - 5, - 5, - 2, - 2, - 3, - 8, - 3, - 5, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 7, - 2, - 2, - 5, - 3, - 6, - 2, - 4, - 7, - 3, - 8, - 8, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 5, - 3, - 3, - 3, - 9, - 4, - 4, - 4, - 9, - 3, - 4, - 5, - 4, - 2, - 3, - 2, - 9, - 4, - 5, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 12, - 2, - 3, - 5, - 2, - 5, - 2, - 2, - 2, - 5, - 3, - 6, - 2, - 4, - 2, - 3, - 3, - 18, - 4, - 5, - 2, - 7, - 2, - 2, - 5, - 3, - 4, - 3, - 2, - 2, - 4, - 5, - 3, - 3, - 2, - 6, - 5, - 2, - 4, - 2, - 2, - 5, - 4, - 5, - 2, - 5, - 5, - 3, - 2, - 2, - 2, - 5, - 3, - 8, - 7, - 4, - 2, - 20, - 3, - 2, - 21, - 2, - 7, - 2, - 3, - 10, - 3, - 2, - 2, - 3, - 12, - 7, - 3, - 6, - 4, - 5, - 2, - 4, - 8, - 2, - 8, - 4, - 5, - 4, - 8, - 2, - 3, - 16, - 2, - 2, - 5, - 2, - 3, - 8, - 3, - 3, - 14, - 4, - 8, - 14, - 2, - 7, - 10, - 2, - 2, - 2, - 10, - 14, - 4, - 7, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 14, - 4, - 3, - 4, - 10, - 10, - 6, - 14, - 6, - 14, - 3, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 15, - 2, - 11, - 4, - 4, - 9, - 6, - 5, - 8, - 5, - 2, - 3, - 2, - 2, - 13, - 3, - 6, - 9, - 4, - 7, - 8, - 3, - 3, - 8, - 3, - 3, - 5, - 2, - 6, - 2, - 2, - 6, - 4, - 2, - 5, - 3, - 2, - 5, - 3, - 2, - 3, - 2, - 3, - 4, - 2, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 5, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 6, - 2, - 3, - 4, - 3, - 2, - 3, - 3, - 8, - 5, - 4, - 3, - 5, - 3, - 6, - 3, - 2, - 5, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 7, - 4, - 5, - 2, - 8, - 4, - 41, - 2, - 2, - 4, - 4, - 3, - 4, - 4, - 3, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2 - ], - "total": 980, - "totalUnique": 23, - "unique": { - "2": 368, - "3": 206, - "4": 117, - "5": 80, - "6": 52, - "7": 32, - "8": 33, - "9": 20, - "10": 19, - "11": 11, - "12": 9, - "13": 8, - "14": 7, - "15": 2, - "16": 4, - "17": 2, - "18": 2, - "20": 2, - "21": 2, - "23": 1, - "26": 1, - "34": 1, - "41": 1 - }, - "uniquenessRatio": 0.02346938775510204 - }, - "selectors": { - "min": 1, - "max": 32, - "mean": 1.563265306122449, - "mode": 1, - "range": 31, - "sum": 1532, - "items": [ - 1, - 3, - 1, - 10, - 3, - 1, - 1, - 1, - 7, - 3, - 2, - 1, - 1, - 1, - 4, - 2, - 4, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 7, - 7, - 14, - 7, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 6, - 1, - 1, - 1, - 12, - 8, - 8, - 8, - 8, - 8, - 12, - 12, - 16, - 4, - 4, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 3, - 1, - 2, - 2, - 4, - 3, - 2, - 3, - 1, - 7, - 21, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 9, - 1, - 1, - 2, - 32, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 8, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 4, - 2, - 1, - 12, - 1, - 1, - 20, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 980, - "totalUnique": 16, - "unique": { - "1": 759, - "2": 133, - "3": 39, - "4": 17, - "5": 1, - "6": 5, - "7": 5, - "8": 8, - "9": 3, - "10": 1, - "12": 4, - "14": 1, - "16": 1, - "20": 1, - "21": 1, - "32": 1 - }, - "uniquenessRatio": 0.0163265306122449 - }, - "declarations": { - "min": 1, - "max": 40, - "mean": 2.7153061224489794, - "mode": 1, - "range": 39, - "sum": 2661, - "items": [ - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 4, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 5, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 3, - 1, - 4, - 3, - 1, - 1, - 2, - 4, - 4, - 1, - 1, - 3, - 2, - 3, - 1, - 1, - 4, - 4, - 1, - 5, - 1, - 6, - 2, - 1, - 2, - 2, - 1, - 5, - 9, - 1, - 1, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 7, - 1, - 1, - 3, - 2, - 4, - 1, - 2, - 2, - 1, - 6, - 1, - 7, - 2, - 1, - 1, - 2, - 5, - 1, - 1, - 2, - 2, - 2, - 6, - 10, - 13, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 17, - 11, - 11, - 2, - 3, - 1, - 2, - 2, - 10, - 1, - 1, - 1, - 3, - 1, - 1, - 5, - 2, - 7, - 1, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 19, - 2, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 5, - 2, - 1, - 7, - 1, - 1, - 2, - 2, - 2, - 20, - 1, - 4, - 12, - 2, - 3, - 1, - 1, - 1, - 5, - 1, - 3, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 8, - 1, - 2, - 1, - 1, - 4, - 3, - 1, - 1, - 2, - 2, - 9, - 2, - 12, - 6, - 2, - 1, - 5, - 1, - 1, - 4, - 2, - 2, - 16, - 3, - 2, - 1, - 3, - 3, - 2, - 2, - 1, - 2, - 4, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 7, - 2, - 2, - 12, - 7, - 2, - 7, - 3, - 1, - 3, - 4, - 1, - 1, - 1, - 6, - 1, - 10, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 5, - 5, - 1, - 1, - 1, - 6, - 2, - 1, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 5, - 8, - 1, - 1, - 19, - 2, - 7, - 1, - 2, - 2, - 1, - 4, - 1, - 5, - 8, - 1, - 3, - 5, - 2, - 6, - 6, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 2, - 1, - 5, - 1, - 3, - 1, - 2, - 6, - 7, - 1, - 10, - 3, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 4, - 3, - 1, - 11, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 11, - 1, - 1, - 9, - 5, - 7, - 1, - 7, - 6, - 3, - 2, - 10, - 1, - 2, - 1, - 1, - 1, - 9, - 10, - 1, - 1, - 12, - 5, - 1, - 4, - 5, - 6, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 4, - 2, - 1, - 4, - 9, - 12, - 2, - 3, - 1, - 1, - 9, - 2, - 3, - 1, - 9, - 9, - 2, - 1, - 5, - 7, - 2, - 3, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 4, - 2, - 1, - 1, - 1, - 6, - 2, - 3, - 1, - 2, - 2, - 2, - 8, - 2, - 1, - 8, - 3, - 3, - 1, - 9, - 1, - 9, - 7, - 4, - 3, - 1, - 1, - 8, - 9, - 2, - 3, - 2, - 1, - 6, - 1, - 3, - 1, - 3, - 2, - 2, - 5, - 1, - 1, - 1, - 2, - 5, - 1, - 7, - 5, - 9, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 6, - 3, - 2, - 2, - 2, - 3, - 1, - 7, - 1, - 6, - 1, - 2, - 4, - 1, - 4, - 2, - 1, - 2, - 4, - 2, - 1, - 1, - 4, - 1, - 2, - 3, - 7, - 1, - 6, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 2, - 4, - 1, - 4, - 9, - 4, - 4, - 3, - 2, - 4, - 1, - 2, - 5, - 1, - 2, - 9, - 2, - 5, - 1, - 3, - 1, - 1, - 2, - 7, - 2, - 3, - 1, - 3, - 1, - 4, - 1, - 1, - 7, - 4, - 1, - 2, - 1, - 3, - 1, - 3, - 6, - 1, - 2, - 2, - 3, - 4, - 4, - 1, - 1, - 2, - 7, - 2, - 4, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 3, - 1, - 5, - 1, - 3, - 5, - 1, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 2, - 2, - 1, - 1, - 2, - 3, - 2, - 1, - 2, - 1, - 8, - 3, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 11, - 1, - 2, - 4, - 1, - 4, - 1, - 1, - 1, - 4, - 2, - 5, - 1, - 3, - 1, - 2, - 2, - 17, - 3, - 4, - 1, - 6, - 1, - 1, - 4, - 2, - 3, - 1, - 1, - 1, - 3, - 4, - 2, - 2, - 1, - 5, - 2, - 1, - 3, - 1, - 1, - 4, - 3, - 4, - 1, - 4, - 4, - 2, - 1, - 1, - 1, - 4, - 1, - 2, - 3, - 2, - 1, - 8, - 2, - 1, - 1, - 1, - 6, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 11, - 6, - 1, - 2, - 2, - 4, - 1, - 3, - 6, - 1, - 7, - 2, - 3, - 3, - 7, - 1, - 2, - 15, - 1, - 1, - 4, - 1, - 2, - 7, - 2, - 2, - 13, - 3, - 5, - 13, - 1, - 1, - 9, - 1, - 1, - 1, - 9, - 5, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 10, - 3, - 2, - 3, - 8, - 9, - 3, - 13, - 5, - 13, - 2, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 14, - 1, - 10, - 3, - 2, - 8, - 5, - 4, - 6, - 4, - 1, - 1, - 1, - 1, - 11, - 2, - 4, - 7, - 2, - 5, - 6, - 1, - 2, - 7, - 2, - 2, - 4, - 1, - 4, - 1, - 1, - 5, - 2, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 5, - 1, - 2, - 3, - 2, - 1, - 2, - 2, - 7, - 4, - 3, - 2, - 4, - 2, - 5, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 6, - 3, - 3, - 1, - 7, - 3, - 40, - 1, - 1, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1 - ], - "total": 980, - "totalUnique": 20, - "unique": { - "1": 472, - "2": 189, - "3": 96, - "4": 66, - "5": 40, - "6": 28, - "7": 26, - "8": 11, - "9": 18, - "10": 8, - "11": 7, - "12": 5, - "13": 5, - "14": 1, - "15": 1, - "16": 1, - "17": 2, - "19": 2, - "20": 1, - "40": 1 - }, - "uniquenessRatio": 0.02040816326530612 - } - }, - "selectors": { - "total": 1522, - "totalUnique": 1295, - "uniquenessRatio": 0.8508541392904073, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 1, - 2, - 3 - ], - "sum": [ - 46, - 2169, - 1276 - ], - "mean": [ - 0.030223390275952694, - 1.4250985545335086, - 0.8383705650459922 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 2, - 3 - ], - [ - 1, - 2, - 3 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 2, - 3 - ], - [ - 1, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 2, - 2 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 1 - ] - ], - "total": 1522, - "totalUnique": 41, - "unique": { - "0,0,0": 13, - "0,0,1": 100, - "0,1,1": 211, - "0,1,0": 435, - "0,0,2": 37, - "0,1,2": 89, - "0,3,2": 15, - "0,3,3": 22, - "0,4,3": 3, - "0,4,4": 6, - "0,2,1": 125, - "0,2,2": 60, - "0,5,2": 4, - "0,5,3": 3, - "0,2,0": 164, - "0,3,1": 38, - "0,3,0": 53, - "0,7,1": 2, - "0,6,2": 1, - "0,7,2": 1, - "0,6,3": 1, - "0,1,3": 19, - "0,1,4": 18, - "0,0,3": 5, - "0,0,4": 1, - "0,3,4": 4, - "0,4,1": 19, - "1,1,0": 9, - "0,5,1": 3, - "0,6,1": 3, - "1,0,0": 15, - "0,2,3": 10, - "0,4,2": 5, - "0,4,0": 4, - "1,0,1": 5, - "1,1,2": 5, - "1,1,1": 7, - "0,1,5": 1, - "0,2,5": 1, - "1,2,3": 4, - "1,2,2": 1 - }, - "uniquenessRatio": 0.026938239159001315 - }, - "complexity": { - "min": 1, - "max": 17, - "mean": 3.314717477003942, - "mode": 1, - "range": 16, - "sum": 5045, - "total": 1522, - "totalUnique": 16, - "unique": { - "1": 542, - "2": 87, - "3": 353, - "4": 118, - "5": 185, - "6": 70, - "7": 56, - "8": 55, - "9": 22, - "10": 8, - "11": 8, - "12": 2, - "13": 3, - "14": 7, - "15": 4, - "17": 2 - }, - "uniquenessRatio": 0.010512483574244415, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 2, - 2, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 1, - 9, - 11, - 11, - 11, - 11, - 11, - 13, - 14, - 14, - 14, - 14, - 14, - 14, - 11, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 13, - 13, - 15, - 15, - 2, - 4, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 5, - 3, - 3, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 15, - 15, - 17, - 17, - 3, - 3, - 5, - 5, - 5, - 5, - 1, - 2, - 3, - 8, - 9, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 6, - 8, - 8, - 6, - 8, - 8, - 6, - 8, - 8, - 6, - 8, - 6, - 8, - 8, - 6, - 8, - 8, - 6, - 8, - 8, - 6, - 8, - 8, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 1, - 3, - 6, - 6, - 4, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 5, - 6, - 6, - 3, - 4, - 3, - 5, - 6, - 1, - 3, - 8, - 9, - 9, - 9, - 9, - 4, - 4, - 6, - 5, - 5, - 7, - 6, - 6, - 8, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 6, - 3, - 5, - 5, - 5, - 3, - 1, - 1, - 1, - 3, - 3, - 7, - 7, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 5, - 1, - 2, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 4, - 4, - 8, - 10, - 10, - 6, - 8, - 8, - 2, - 4, - 4, - 3, - 5, - 5, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 1, - 3, - 2, - 2, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 4, - 4, - 6, - 4, - 6, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 5, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 1, - 3, - 5, - 6, - 6, - 3, - 5, - 3, - 3, - 5, - 9, - 10, - 10, - 1, - 3, - 3, - 9, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 4, - 4, - 5, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 2, - 3, - 4, - 5, - 6, - 6, - 6, - 5, - 9, - 3, - 5, - 5, - 1, - 5, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 3, - 1, - 5, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 4, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 5, - 5, - 1, - 11, - 12, - 2, - 3, - 5, - 3, - 1, - 1, - 4, - 4, - 1, - 3, - 3, - 6, - 1, - 3, - 3, - 5, - 6, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 4, - 1, - 3, - 4, - 4, - 1, - 3, - 1, - 4, - 1, - 5, - 6, - 6, - 3, - 3, - 4, - 4, - 3, - 1, - 3, - 5, - 1, - 3, - 4, - 4, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 5, - 3, - 3, - 5, - 2, - 2, - 1, - 3, - 4, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 4, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 2, - 2, - 3, - 1, - 1, - 4, - 6, - 6, - 6, - 4, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 5, - 4, - 5, - 5, - 7, - 7, - 6, - 6, - 6, - 4, - 6, - 5, - 7, - 4, - 6, - 5, - 7, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 4, - 4, - 4, - 6, - 7, - 7, - 9, - 7, - 7, - 9, - 8, - 8, - 10, - 5, - 5, - 7, - 10, - 10, - 12, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 7, - 7, - 7, - 9, - 5, - 5, - 7, - 4, - 4, - 6, - 7, - 7, - 9, - 3, - 3, - 5, - 4, - 4, - 6, - 3, - 3, - 5, - 3, - 3, - 5, - 3, - 3, - 5, - 7, - 3, - 7, - 3, - 9, - 5, - 4, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 6, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 5, - 1, - 3, - 1, - 2, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 5, - 6, - 4, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 4, - 1, - 1, - 3, - 3, - 1, - 3, - 5, - 8, - 8, - 4, - 6, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 2, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 4, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 7, - 7, - 8, - 8, - 8, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 4, - 3, - 6, - 3, - 6, - 4, - 7, - 5, - 8, - 5, - 8, - 5, - 8, - 5, - 8, - 5, - 8, - 5, - 8, - 5, - 5, - 5, - 8, - 8, - 8, - 5, - 5, - 8, - 8, - 5, - 8, - 5, - 8, - 5, - 8, - 3, - 3, - 6, - 6, - 3, - 6, - 3, - 6, - 3, - 6, - 1, - 3, - 3, - 3, - 4, - 6, - 6, - 6, - 3, - 6, - 3, - 6, - 3, - 6, - 4, - 7, - 1, - 3, - 5, - 5, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 6, - 6, - 5, - 5, - 9, - 10, - 11, - 9, - 1, - 5, - 5, - 7, - 9, - 7, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 5, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 8, - 3, - 1, - 9, - 9, - 1, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 9, - 9, - 4, - 8, - 8, - 8, - 8, - 8, - 6, - 8, - 8, - 8, - 8, - 8, - 6, - 4, - 7, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 5, - 5, - 5, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 3, - 4, - 4, - 5, - 3, - 4, - 3, - 4, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 6, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 4, - 1, - 3, - 3, - 9, - 7, - 3, - 3, - 5, - 5, - 5, - 6, - 5, - 1, - 3, - 3, - 3, - 2, - 3, - 1, - 3, - 3, - 3, - 3, - 7, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 3, - 3, - 1, - 3, - 3, - 1, - 5, - 7, - 3, - 3, - 5, - 1, - 1, - 1, - 2, - 2, - 5, - 5, - 5, - 5, - 5, - 5, - 14, - 5, - 3, - 3, - 5, - 3, - 5, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 3, - 3, - 3, - 3, - 1, - 2 - ] - }, - "id": { - "total": 46, - "totalUnique": 41, - "unique": { - "#wpadminbar .ab-label": 1, - "#writeCommentButton": 1, - "#top-of-site-pixel-anchor": 2, - "#LblEmail": 1, - "#comment": 1, - "#commentform label": 1, - "#commentform .comment-notes": 1, - "#commentform .required": 1, - "#commentform label[for=comment]:after": 1, - "#commentform p": 1, - "#all-modules": 1, - "#scroll-ad-position": 1, - "#sticky-sidebar-stuff": 2, - "#sticky-sidebar-stuff.showing": 1, - "#carbonads": 1, - "#carbonads .carbon-wrap": 1, - "#carbonads img": 1, - "#carbonads a": 1, - "#carbonads .carbon-poweredby": 1, - "#carbonads .carbon-poweredby:before": 1, - "#carbonads .carbon-poweredby:after": 1, - "#carbonads.showing": 1, - ".all-modules #carbonads": 1, - ".all-modules #scroll-ad-position": 1, - "#jetpack-instant-search__box-input-1": 1, - "#view-online-link": 1, - "body.bbpress #bbpress-forums div.bbp-reply-content a": 2, - "body.bbpress #bbpress-forums div.bbp-topic-content a": 2, - "#bbpress-forums": 1, - "#bbpress-forums ul.bbp-forums": 1, - "#bbpress-forums ul.bbp-lead-topic": 1, - "#bbpress-forums ul.bbp-replies": 1, - "#bbpress-forums ul.bbp-search-results": 1, - "#bbpress-forums ul.bbp-topics": 1, - "#bbpress-forums div.bbp-reply-content code": 1, - "#bbpress-forums div.bbp-reply-content pre": 1, - "#bbpress-forums div.bbp-topic-content code": 1, - "#bbpress-forums div.bbp-topic-content pre": 1, - "#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content": 1, - "#respond": 2, - "img#wpstats": 1 - }, - "uniquenessRatio": 0.8913043478260869, - "ratio": 0.030223390275952694 - }, - "pseudoClasses": { - "total": 386, - "totalUnique": 18, - "unique": { - "after": 19, - "before": 75, - "not": 130, - "nth-child": 2, - "first-child": 12, - "last-child": 17, - "focus": 47, - "hover": 46, - "is": 2, - "target": 6, - "first-of-type": 8, - "empty": 1, - "first-letter": 1, - "nth-of-type": 1, - "focus-within": 3, - "active": 2, - "root": 2, - "where": 12 - }, - "uniquenessRatio": 0.046632124352331605 - }, - "accessibility": { - "total": 2, - "totalUnique": 2, - "unique": { - ".mejs-container-keyboard-inactive [role=slider]": 1, - ".mejs-container-keyboard-inactive [role=slider]:focus": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.001314060446780552 - }, - "keyframes": { - "total": 10, - "totalUnique": 2, - "unique": { - "0%": 3, - "to": 7 - }, - "uniquenessRatio": 0.2 - }, - "prefixed": { - "total": 31, - "totalUnique": 31, - "unique": { - "input[type=search]::-webkit-search-cancel-button": 1, - "input[type=search]::-webkit-search-decoration": 1, - "button::-moz-focus-inner": 1, - "input::-moz-focus-inner": 1, - "body:not(.page-template-page-search-results) .overflow-table-wrap::-webkit-scrollbar": 1, - "body:not(.page-template-page-search-results) .wp-block-table::-webkit-scrollbar": 1, - "body:not(.page-template-page-search-results) .overflow-table-wrap::-webkit-scrollbar-thumb": 1, - "body:not(.page-template-page-search-results) .wp-block-table::-webkit-scrollbar-thumb": 1, - "body:not(.page-template-page-search-results) .overflow-table-wrap::-webkit-scrollbar-track": 1, - "body:not(.page-template-page-search-results) .wp-block-table::-webkit-scrollbar-track": 1, - "pre code::-webkit-scrollbar": 1, - "pre code::-webkit-scrollbar-thumb": 1, - "pre code::-webkit-scrollbar-track": 1, - ".custom-select::-ms-expand": 1, - "html::-webkit-scrollbar": 1, - "html::-webkit-scrollbar-thumb": 1, - "html::-webkit-scrollbar-track": 1, - ".popular-articles::-webkit-scrollbar": 1, - ".popular-articles::-webkit-scrollbar-thumb": 1, - ".popular-articles::-webkit-scrollbar-track": 1, - "body.home .mini-card-grid::-webkit-scrollbar": 1, - "body.home .mini-card-grid::-webkit-scrollbar-thumb": 1, - "body.home .mini-card-grid::-webkit-scrollbar-track": 1, - ".all-modules::-webkit-scrollbar": 1, - ".all-modules::-webkit-scrollbar-thumb": 1, - ".all-modules::-webkit-scrollbar-track": 1, - ".mejs-container video::-webkit-media-controls": 1, - ".mejs-container video::-webkit-media-controls-panel": 1, - ".mejs-container video::-webkit-media-controls-panel-container": 1, - ".mejs-container video::-webkit-media-controls-start-playback-button": 1, - ".mejs-container.mejs-hide-cues video::-webkit-media-text-track-container": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.020367936925098553 - }, - "combinators": { - "total": 1247, - "totalUnique": 4, - "unique": { - " ": 1046, - ">": 196, - "~": 4, - "+": 1 - }, - "uniquenessRatio": 0.0032076984763432237 - } - }, - "declarations": { - "total": 2683, - "totalUnique": 1101, - "uniquenessRatio": 0.4103615355944838, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 2683 - } - }, - "properties": { - "total": 2683, - "totalUnique": 224, - "unique": { - "transition": 14, - "box-sizing": 4, - "text-decoration": 22, - "display": 210, - "height": 90, - "-webkit-text-size-adjust": 1, - "-ms-text-size-adjust": 1, - "padding": 123, - "margin": 141, - "list-style": 5, - "list-style-image": 1, - "border": 44, - "-ms-interpolation-mode": 1, - "white-space": 22, - "*margin-left": 1, - "font-size": 111, - "vertical-align": 8, - "*vertical-align": 1, - "line-height": 36, - "-webkit-appearance": 5, - "cursor": 12, - "overflow": 41, - "border-spacing": 2, - "width": 129, - "text-align": 24, - "background": 143, - "color": 147, - "border-right": 5, - "border-bottom": 16, - "border-top": 4, - "border-left": 2, - "overflow-x": 7, - "scrollbar-color": 6, - "-webkit-overflow-scrolling": 5, - "min-width": 13, - "border-radius": 80, - "box-shadow": 23, - "table-layout": 3, - "animation": 14, - "animation-duration": 1, - "animation-iteration-count": 1, - "transition-duration": 1, - "scroll-behavior": 1, - "font-family": 39, - "src": 5, - "font-display": 5, - "font-weight": 58, - "font-style": 29, - "opacity": 28, - "text-transform": 23, - "text-shadow": 3, - "letter-spacing": 9, - "margin-top": 13, - "scroll-margin-top": 2, - "transform": 30, - "margin-left": 20, - "margin-right": 26, - "position": 113, - "content": 37, - "left": 39, - "top": 42, - "pointer-events": 8, - "max-width": 39, - "text-indent": 4, - "hanging-punctuation": 1, - "font-variant": 1, - "background-size": 6, - "background-repeat": 5, - "background-position": 20, - "place-items": 2, - "margin-bottom": 15, - "clear": 7, - "-moz-tab-size": 1, - "-o-tab-size": 1, - "tab-size": 1, - "-ms-word-break": 1, - "word-break": 1, - "-webkit-hyphens": 1, - "-ms-hyphens": 1, - "hyphens": 1, - "right": 16, - "mix-blend-mode": 4, - "bottom": 14, - "clip": 3, - "flex-wrap": 6, - "gap": 26, - "background-color": 22, - "border-color": 15, - "padding-left": 7, - "border-bottom-right-radius": 4, - "border-bottom-left-radius": 4, - "-moz-appearance": 1, - "appearance": 1, - "background-image": 17, - "outline": 6, - "--maxWidth": 1, - "--gap": 3, - "--featured-img": 1, - "--bg-blend-mode": 1, - "z-index": 32, - "grid-template-columns": 28, - "align-self": 6, - "padding-top": 13, - "align-items": 19, - "flex": 17, - "--fleck-seed": 2, - "--fleck-count": 2, - "--fleck-size-base": 2, - "--fleck-color-1": 2, - "fill": 3, - "flex-direction": 10, - "justify-content": 6, - "-webkit-margin-start": 3, - "margin-inline-start": 7, - "border-top-right-radius": 2, - "border-top-left-radius": 2, - "-webkit-filter": 3, - "filter": 3, - "visibility": 5, - "--fleck-color-2": 1, - "--fleck-color-3": 1, - "--fleck-color-4": 1, - "-webkit-margin-before": 5, - "margin-block-start": 5, - "order": 2, - "-webkit-clip-path": 3, - "clip-path": 3, - "overflow-wrap": 1, - "text-decoration-color": 1, - "float": 17, - "grid-area": 7, - "counter-reset": 1, - "counter-increment": 1, - "grid-gap": 3, - "-o-object-fit": 3, - "object-fit": 3, - "-webkit-line-clamp": 2, - "-webkit-box-orient": 2, - "text-overflow": 4, - "min-height": 3, - "max-height": 5, - "grid-column": 7, - "padding-bottom": 4, - "-ms-scroll-snap-points-x": 1, - "scroll-snap-points-x": 1, - "-ms-scroll-snap-type": 2, - "scroll-snap-type": 2, - "-webkit-scroll-snap-type": 1, - "scroll-snap-align": 2, - "scroll-margin-inline-start": 1, - "scrollbar-gutter": 1, - "-webkit-margin-end": 2, - "margin-inline-end": 6, - "stroke": 1, - "padding-right": 4, - "margin-inline": 1, - "border-bottom-color": 1, - "border-collapse": 1, - "transform-origin": 2, - "--light-orange": 1, - "-webkit-text-fill-color": 1, - "page-break-before": 1, - "padding-block": 1, - "word-wrap": 2, - "-webkit-box-align": 1, - "-webkit-align-items": 1, - "-ms-flex-align": 1, - "-webkit-box-pack": 1, - "-webkit-justify-content": 1, - "-ms-flex-pack": 1, - "-webkit-animation": 2, - "-webkit-transform": 13, - "list-style-type": 3, - "direction": 1, - "-webkit-box-flex": 1, - "-webkit-flex-grow": 1, - "-ms-flex-positive": 1, - "flex-grow": 1, - "-ms-transform": 11, - "-webkit-transform-origin": 1, - "-ms-transform-origin": 1, - "-webkit-transition": 2, - "-webkit-backface-visibility": 1, - "-webkit-box-shadow": 1, - "--wp--preset--color--black": 1, - "--wp--preset--color--cyan-bluish-gray": 1, - "--wp--preset--color--white": 1, - "--wp--preset--color--pale-pink": 1, - "--wp--preset--color--vivid-red": 1, - "--wp--preset--color--luminous-vivid-orange": 1, - "--wp--preset--color--luminous-vivid-amber": 1, - "--wp--preset--color--light-green-cyan": 1, - "--wp--preset--color--vivid-green-cyan": 1, - "--wp--preset--color--pale-cyan-blue": 1, - "--wp--preset--color--vivid-cyan-blue": 1, - "--wp--preset--color--vivid-purple": 1, - "--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple": 1, - "--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan": 1, - "--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange": 1, - "--wp--preset--gradient--luminous-vivid-orange-to-vivid-red": 1, - "--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray": 1, - "--wp--preset--gradient--cool-to-warm-spectrum": 1, - "--wp--preset--gradient--blush-light-purple": 1, - "--wp--preset--gradient--blush-bordeaux": 1, - "--wp--preset--gradient--luminous-dusk": 1, - "--wp--preset--gradient--pale-ocean": 1, - "--wp--preset--gradient--electric-grass": 1, - "--wp--preset--gradient--midnight": 1, - "--wp--preset--font-size--small": 1, - "--wp--preset--font-size--medium": 1, - "--wp--preset--font-size--large": 1, - "--wp--preset--font-size--x-large": 1, - "--wp--preset--spacing--20": 1, - "--wp--preset--spacing--30": 1, - "--wp--preset--spacing--40": 1, - "--wp--preset--spacing--50": 1, - "--wp--preset--spacing--60": 1, - "--wp--preset--spacing--70": 1, - "--wp--preset--spacing--80": 1, - "--wp--preset--shadow--natural": 1, - "--wp--preset--shadow--deep": 1, - "--wp--preset--shadow--sharp": 1, - "--wp--preset--shadow--outlined": 1, - "--wp--preset--shadow--crisp": 1 - }, - "uniquenessRatio": 0.08348863212821468, - "prefixed": { - "total": 88, - "totalUnique": 40, - "unique": { - "-webkit-text-size-adjust": 1, - "-ms-text-size-adjust": 1, - "-ms-interpolation-mode": 1, - "-webkit-appearance": 5, - "-webkit-overflow-scrolling": 5, - "-moz-tab-size": 1, - "-o-tab-size": 1, - "-ms-word-break": 1, - "-webkit-hyphens": 1, - "-ms-hyphens": 1, - "-moz-appearance": 1, - "-webkit-margin-start": 3, - "-webkit-filter": 3, - "-webkit-margin-before": 5, - "-webkit-clip-path": 3, - "-o-object-fit": 3, - "-webkit-line-clamp": 2, - "-webkit-box-orient": 2, - "-ms-scroll-snap-points-x": 1, - "-ms-scroll-snap-type": 2, - "-webkit-scroll-snap-type": 1, - "-webkit-margin-end": 2, - "-webkit-text-fill-color": 1, - "-webkit-box-align": 1, - "-webkit-align-items": 1, - "-ms-flex-align": 1, - "-webkit-box-pack": 1, - "-webkit-justify-content": 1, - "-ms-flex-pack": 1, - "-webkit-animation": 2, - "-webkit-transform": 13, - "-webkit-box-flex": 1, - "-webkit-flex-grow": 1, - "-ms-flex-positive": 1, - "-ms-transform": 11, - "-webkit-transform-origin": 1, - "-ms-transform-origin": 1, - "-webkit-transition": 2, - "-webkit-backface-visibility": 1, - "-webkit-box-shadow": 1 - }, - "uniquenessRatio": 0.45454545454545453, - "ratio": 0.032799105478941486 - }, - "custom": { - "total": 58, - "totalUnique": 52, - "unique": { - "--maxWidth": 1, - "--gap": 3, - "--featured-img": 1, - "--bg-blend-mode": 1, - "--fleck-seed": 2, - "--fleck-count": 2, - "--fleck-size-base": 2, - "--fleck-color-1": 2, - "--fleck-color-2": 1, - "--fleck-color-3": 1, - "--fleck-color-4": 1, - "--light-orange": 1, - "--wp--preset--color--black": 1, - "--wp--preset--color--cyan-bluish-gray": 1, - "--wp--preset--color--white": 1, - "--wp--preset--color--pale-pink": 1, - "--wp--preset--color--vivid-red": 1, - "--wp--preset--color--luminous-vivid-orange": 1, - "--wp--preset--color--luminous-vivid-amber": 1, - "--wp--preset--color--light-green-cyan": 1, - "--wp--preset--color--vivid-green-cyan": 1, - "--wp--preset--color--pale-cyan-blue": 1, - "--wp--preset--color--vivid-cyan-blue": 1, - "--wp--preset--color--vivid-purple": 1, - "--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple": 1, - "--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan": 1, - "--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange": 1, - "--wp--preset--gradient--luminous-vivid-orange-to-vivid-red": 1, - "--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray": 1, - "--wp--preset--gradient--cool-to-warm-spectrum": 1, - "--wp--preset--gradient--blush-light-purple": 1, - "--wp--preset--gradient--blush-bordeaux": 1, - "--wp--preset--gradient--luminous-dusk": 1, - "--wp--preset--gradient--pale-ocean": 1, - "--wp--preset--gradient--electric-grass": 1, - "--wp--preset--gradient--midnight": 1, - "--wp--preset--font-size--small": 1, - "--wp--preset--font-size--medium": 1, - "--wp--preset--font-size--large": 1, - "--wp--preset--font-size--x-large": 1, - "--wp--preset--spacing--20": 1, - "--wp--preset--spacing--30": 1, - "--wp--preset--spacing--40": 1, - "--wp--preset--spacing--50": 1, - "--wp--preset--spacing--60": 1, - "--wp--preset--spacing--70": 1, - "--wp--preset--spacing--80": 1, - "--wp--preset--shadow--natural": 1, - "--wp--preset--shadow--deep": 1, - "--wp--preset--shadow--sharp": 1, - "--wp--preset--shadow--outlined": 1, - "--wp--preset--shadow--crisp": 1 - }, - "uniquenessRatio": 0.896551724137931, - "ratio": 0.02161759224748416, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 2, - "totalUnique": 2, - "unique": { - "*margin-left": 1, - "*vertical-align": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0007454342154304882 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.055162131941856, - "mode": 1, - "range": 1, - "sum": 2831 - } - }, - "values": { - "colors": { - "total": 483, - "totalUnique": 152, - "unique": { - "#5e5e5e": 10, - "#fff": 73, - "#eaeaea": 6, - "#d4d4d4": 5, - "#666": 7, - "#201c29": 6, - "hsla(0, 0%, 100%, .25)": 6, - "rgba(0, 0, 0, .25)": 6, - "#434343": 30, - "transparent": 21, - "#0089c7": 7, - "rgba(0, 0, 0, .5)": 2, - "#909090": 4, - "#ffdfc7": 3, - "#ff7a18": 24, - "#ffe7d6": 2, - "#ccc": 7, - "#ff0": 2, - "#000": 28, - "rgba(0, 0, 0, .07)": 1, - "#1b1b1b": 1, - "rgba(255, 235, 59, .25)": 1, - "rgba(255, 235, 59, 0)": 1, - "#5e7671": 1, - "#72e0d1": 1, - "#83ba52": 2, - "#fc9463": 1, - "#f5d67b": 2, - "#aa7ee1": 1, - "#e90": 1, - "#262626": 19, - "#777": 10, - "rgba(0, 0, 0, .4)": 2, - "#a7a7a7": 4, - "rgba(59, 153, 252, .7)": 1, - "rgba(0, 0, 0, .66)": 1, - "#111": 13, - "rgba(0, 0, 0, .05)": 1, - "#999": 3, - "#676767": 1, - "hsla(0, 0%, 100%, .1)": 1, - "rgba(0, 0, 0, .3)": 4, - "#a9a39f": 1, - "#a2dffb": 1, - "rgba(0, 0, 0, .2)": 4, - "#af002d": 7, - "#319197": 7, - "#c8c8c8": 4, - "#f0f0f0": 1, - "#fef6ec": 2, - "hsla(0, 0%, 100%, .5)": 4, - "hsla(0, 0%, 100%, .16862745098039217)": 1, - "#474747": 1, - "rgba(0, 0, 0, .24)": 2, - "hsla(0, 0%, 100%, 0)": 1, - "hsla(0, 0%, 100%, .013)": 1, - "hsla(0, 0%, 100%, .049)": 1, - "hsla(0, 0%, 100%, .104)": 1, - "hsla(0, 0%, 100%, .175)": 1, - "hsla(0, 0%, 100%, .259)": 1, - "hsla(0, 0%, 100%, .352)": 1, - "hsla(0, 0%, 100%, .45)": 1, - "hsla(0, 0%, 100%, .55)": 1, - "hsla(0, 0%, 100%, .648)": 1, - "hsla(0, 0%, 100%, .741)": 1, - "hsla(0, 0%, 100%, .825)": 1, - "hsla(0, 0%, 100%, .896)": 1, - "hsla(0, 0%, 100%, .951)": 1, - "hsla(0, 0%, 100%, .987)": 1, - "#565656": 1, - "rgba(255, 122, 24, .25)": 1, - "#f44336": 4, - "#bdaa00": 1, - "#bebebe": 2, - "rgba(17, 17, 17, .7)": 1, - "rgba(17, 17, 17, .5)": 1, - "#444": 1, - "#e52e71": 2, - "rgba(0, 0, 0, .33)": 1, - "rgba(255, 122, 24, .1)": 1, - "#b822ff": 3, - "#47ca4c": 1, - "#ff0024": 1, - "#ffa100": 1, - "#222": 2, - "grey": 1, - "#fff2df": 1, - "rgba(255, 0, 0, .7)": 1, - "rgba(0, 0, 0, .35)": 2, - "hsla(0, 0%, 100%, .3)": 2, - "hsla(0, 0%, 100%, .4)": 7, - "hsla(0, 0%, 100%, .9)": 3, - "#eee": 3, - "#333": 2, - "rgba(50, 50, 50, .7)": 2, - "rgba(50, 50, 50, .8)": 1, - "hsla(0, 0%, 100%, .8)": 1, - "#21f8f8": 1, - "hsla(0, 0%, 8%, .5)": 3, - "#0073aa": 1, - "rgba(255, 255, 255, .33)": 1, - "#a00": 1, - "#dc3232": 1, - "#ddd": 1, - "#f7f7f7": 1, - "#32373c": 2, - "#000000": 1, - "#abb8c3": 1, - "#ffffff": 1, - "#f78da7": 1, - "#cf2e2e": 1, - "#ff6900": 1, - "#fcb900": 1, - "#7bdcb5": 1, - "#00d084": 1, - "#8ed1fc": 1, - "#0693e3": 1, - "#9b51e0": 1, - "rgba(6, 147, 227, 1)": 1, - "rgb(155, 81, 224)": 1, - "rgb(122, 220, 180)": 1, - "rgb(0, 208, 130)": 1, - "rgba(252, 185, 0, 1)": 1, - "rgba(255, 105, 0, 1)": 2, - "rgb(207, 46, 46)": 1, - "rgb(238, 238, 238)": 1, - "rgb(169, 184, 195)": 1, - "rgb(74, 234, 220)": 1, - "rgb(151, 120, 209)": 1, - "rgb(207, 42, 186)": 1, - "rgb(238, 44, 130)": 1, - "rgb(251, 105, 98)": 1, - "rgb(254, 248, 76)": 1, - "rgb(255, 206, 236)": 1, - "rgb(152, 150, 240)": 1, - "rgb(254, 205, 165)": 1, - "rgb(254, 45, 45)": 1, - "rgb(107, 0, 62)": 1, - "rgb(255, 203, 112)": 1, - "rgb(199, 81, 192)": 1, - "rgb(65, 88, 208)": 1, - "rgb(255, 245, 203)": 1, - "rgb(182, 227, 212)": 1, - "rgb(51, 167, 181)": 1, - "rgb(202, 248, 128)": 1, - "rgb(113, 206, 126)": 1, - "rgb(2, 3, 129)": 1, - "rgb(40, 116, 252)": 1, - "rgba(0, 0, 0, 0.2)": 2, - "rgba(0, 0, 0, 0.4)": 1, - "rgba(255, 255, 255, 1)": 1, - "rgba(0, 0, 0, 1)": 2 - }, - "uniquenessRatio": 0.3146997929606625, - "itemsPerContext": { - "background": { - "total": 181, - "totalUnique": 62, - "unique": { - "#5e5e5e": 4, - "#eaeaea": 5, - "#d4d4d4": 1, - "#434343": 24, - "transparent": 17, - "#ff7a18": 12, - "#ffe7d6": 2, - "#ff0": 2, - "#1b1b1b": 1, - "#666": 1, - "rgba(255, 235, 59, .25)": 1, - "rgba(255, 235, 59, 0)": 1, - "#fff": 18, - "#111": 6, - "rgba(0, 0, 0, .05)": 1, - "hsla(0, 0%, 100%, .1)": 1, - "#909090": 1, - "rgba(0, 0, 0, .2)": 2, - "#af002d": 7, - "#319197": 7, - "#f0f0f0": 1, - "#fef6ec": 1, - "hsla(0, 0%, 100%, .5)": 4, - "#000": 7, - "hsla(0, 0%, 100%, 0)": 1, - "hsla(0, 0%, 100%, .013)": 1, - "hsla(0, 0%, 100%, .049)": 1, - "hsla(0, 0%, 100%, .104)": 1, - "hsla(0, 0%, 100%, .175)": 1, - "hsla(0, 0%, 100%, .259)": 1, - "hsla(0, 0%, 100%, .352)": 1, - "hsla(0, 0%, 100%, .45)": 1, - "hsla(0, 0%, 100%, .55)": 1, - "hsla(0, 0%, 100%, .648)": 1, - "hsla(0, 0%, 100%, .741)": 1, - "hsla(0, 0%, 100%, .825)": 1, - "hsla(0, 0%, 100%, .896)": 1, - "hsla(0, 0%, 100%, .951)": 1, - "hsla(0, 0%, 100%, .987)": 1, - "#262626": 8, - "#e52e71": 1, - "rgba(0, 0, 0, .33)": 1, - "rgba(255, 122, 24, .1)": 1, - "#47ca4c": 1, - "#ff0024": 1, - "#ffa100": 1, - "#a7a7a7": 1, - "rgba(255, 0, 0, .7)": 1, - "rgba(0, 0, 0, .35)": 2, - "hsla(0, 0%, 100%, .3)": 2, - "hsla(0, 0%, 100%, .4)": 6, - "hsla(0, 0%, 100%, .9)": 2, - "#eee": 1, - "rgba(50, 50, 50, .7)": 2, - "rgba(50, 50, 50, .8)": 1, - "hsla(0, 0%, 100%, .8)": 1, - "hsla(0, 0%, 8%, .5)": 1, - "#222": 1, - "#0073aa": 1, - "rgba(255, 255, 255, .33)": 1, - "#f7f7f7": 1, - "#32373c": 1 - }, - "uniquenessRatio": 0.3425414364640884 - }, - "color": { - "total": 131, - "totalUnique": 36, - "unique": { - "#fff": 45, - "#0089c7": 6, - "#909090": 2, - "#ffdfc7": 3, - "#ff7a18": 12, - "#ccc": 2, - "#000": 14, - "#5e5e5e": 1, - "#5e7671": 1, - "#72e0d1": 1, - "#83ba52": 2, - "#fc9463": 1, - "#f5d67b": 2, - "#aa7ee1": 1, - "#e90": 1, - "#a7a7a7": 1, - "#999": 2, - "#a9a39f": 1, - "#d4d4d4": 3, - "#474747": 1, - "#111": 4, - "#565656": 1, - "#777": 5, - "#f44336": 3, - "#434343": 3, - "#bdaa00": 1, - "#bebebe": 2, - "#444": 1, - "#b822ff": 2, - "#222": 1, - "grey": 1, - "#21f8f8": 1, - "#a00": 1, - "#dc3232": 1, - "#333": 1, - "#ddd": 1 - }, - "uniquenessRatio": 0.2748091603053435 - }, - "border-right": { - "total": 4, - "totalUnique": 2, - "unique": { - "#fff": 2, - "#262626": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-bottom": { - "total": 13, - "totalUnique": 10, - "unique": { - "#fff": 2, - "#262626": 2, - "#676767": 1, - "#ccc": 2, - "#f44336": 1, - "#b822ff": 1, - "#434343": 1, - "#e52e71": 1, - "#5e5e5e": 1, - "#000": 1 - }, - "uniquenessRatio": 0.7692307692307693 - }, - "scrollbar-color": { - "total": 12, - "totalUnique": 2, - "unique": { - "#666": 6, - "#201c29": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "box-shadow": { - "total": 27, - "totalUnique": 11, - "unique": { - "hsla(0, 0%, 100%, .25)": 6, - "rgba(0, 0, 0, .25)": 6, - "#777": 2, - "rgba(0, 0, 0, .4)": 2, - "rgba(59, 153, 252, .7)": 1, - "#000": 4, - "rgba(0, 0, 0, .2)": 1, - "#111": 1, - "rgba(17, 17, 17, .7)": 1, - "rgba(17, 17, 17, .5)": 1, - "hsla(0, 0%, 8%, .5)": 2 - }, - "uniquenessRatio": 0.4074074074074074 - }, - "text-shadow": { - "total": 2, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, .5)": 2 - }, - "uniquenessRatio": 0.5 - }, - "border": { - "total": 21, - "totalUnique": 16, - "unique": { - "rgba(0, 0, 0, .07)": 1, - "#5e5e5e": 2, - "#d4d4d4": 1, - "#c8c8c8": 2, - "#fef6ec": 1, - "#262626": 1, - "hsla(0, 0%, 100%, .16862745098039217)": 1, - "#eaeaea": 1, - "#777": 1, - "#ccc": 3, - "#a7a7a7": 1, - "#909090": 1, - "transparent": 2, - "hsla(0, 0%, 100%, .9)": 1, - "#333": 1, - "#eee": 1 - }, - "uniquenessRatio": 0.7619047619047619 - }, - "background-color": { - "total": 10, - "totalUnique": 8, - "unique": { - "#5e5e5e": 2, - "#000": 1, - "#262626": 1, - "#111": 2, - "rgba(0, 0, 0, .2)": 1, - "#c8c8c8": 1, - "hsla(0, 0%, 100%, .4)": 1, - "#32373c": 1 - }, - "uniquenessRatio": 0.8 - }, - "border-color": { - "total": 5, - "totalUnique": 4, - "unique": { - "#fff": 1, - "#777": 1, - "#eee": 1, - "transparent": 2 - }, - "uniquenessRatio": 0.8 - }, - "--featured-img": { - "total": 2, - "totalUnique": 2, - "unique": { - "#fff": 1, - "#262626": 1 - }, - "uniquenessRatio": 1 - }, - "background-image": { - "total": 4, - "totalUnique": 4, - "unique": { - "rgba(0, 0, 0, .66)": 1, - "#262626": 1, - "rgba(255, 122, 24, .25)": 1, - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--fleck-color-1": { - "total": 2, - "totalUnique": 2, - "unique": { - "#262626": 1, - "#434343": 1 - }, - "uniquenessRatio": 1 - }, - "fill": { - "total": 2, - "totalUnique": 1, - "unique": { - "#fff": 2 - }, - "uniquenessRatio": 0.5 - }, - "-webkit-filter": { - "total": 3, - "totalUnique": 2, - "unique": { - "rgba(0, 0, 0, .3)": 2, - "rgba(0, 0, 0, .24)": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "filter": { - "total": 3, - "totalUnique": 2, - "unique": { - "rgba(0, 0, 0, .3)": 2, - "rgba(0, 0, 0, .24)": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "--fleck-color-2": { - "total": 1, - "totalUnique": 1, - "unique": { - "#262626": 1 - }, - "uniquenessRatio": 1 - }, - "--fleck-color-3": { - "total": 1, - "totalUnique": 1, - "unique": { - "#434343": 1 - }, - "uniquenessRatio": 1 - }, - "--fleck-color-4": { - "total": 1, - "totalUnique": 1, - "unique": { - "#262626": 1 - }, - "uniquenessRatio": 1 - }, - "text-decoration-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#a2dffb": 1 - }, - "uniquenessRatio": 1 - }, - "border-top": { - "total": 2, - "totalUnique": 2, - "unique": { - "#c8c8c8": 1, - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "stroke": { - "total": 1, - "totalUnique": 1, - "unique": { - "#777": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "border-left": { - "total": 1, - "totalUnique": 1, - "unique": { - "#a7a7a7": 1 - }, - "uniquenessRatio": 1 - }, - "--light-orange": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff2df": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-text-fill-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0089c7": 1 - }, - "uniquenessRatio": 1 - }, - "outline": { - "total": 1, - "totalUnique": 1, - "unique": { - "#999": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--black": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000000": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--cyan-bluish-gray": { - "total": 1, - "totalUnique": 1, - "unique": { - "#abb8c3": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--white": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffffff": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--pale-pink": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f78da7": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--vivid-red": { - "total": 1, - "totalUnique": 1, - "unique": { - "#cf2e2e": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--luminous-vivid-orange": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ff6900": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--luminous-vivid-amber": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fcb900": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--light-green-cyan": { - "total": 1, - "totalUnique": 1, - "unique": { - "#7bdcb5": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--vivid-green-cyan": { - "total": 1, - "totalUnique": 1, - "unique": { - "#00d084": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--pale-cyan-blue": { - "total": 1, - "totalUnique": 1, - "unique": { - "#8ed1fc": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--vivid-cyan-blue": { - "total": 1, - "totalUnique": 1, - "unique": { - "#0693e3": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--color--vivid-purple": { - "total": 1, - "totalUnique": 1, - "unique": { - "#9b51e0": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(6, 147, 227, 1)": 1, - "rgb(155, 81, 224)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgb(122, 220, 180)": 1, - "rgb(0, 208, 130)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(252, 185, 0, 1)": 1, - "rgba(255, 105, 0, 1)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--luminous-vivid-orange-to-vivid-red": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(255, 105, 0, 1)": 1, - "rgb(207, 46, 46)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgb(238, 238, 238)": 1, - "rgb(169, 184, 195)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--cool-to-warm-spectrum": { - "total": 6, - "totalUnique": 6, - "unique": { - "rgb(74, 234, 220)": 1, - "rgb(151, 120, 209)": 1, - "rgb(207, 42, 186)": 1, - "rgb(238, 44, 130)": 1, - "rgb(251, 105, 98)": 1, - "rgb(254, 248, 76)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--blush-light-purple": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgb(255, 206, 236)": 1, - "rgb(152, 150, 240)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--blush-bordeaux": { - "total": 3, - "totalUnique": 3, - "unique": { - "rgb(254, 205, 165)": 1, - "rgb(254, 45, 45)": 1, - "rgb(107, 0, 62)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--luminous-dusk": { - "total": 3, - "totalUnique": 3, - "unique": { - "rgb(255, 203, 112)": 1, - "rgb(199, 81, 192)": 1, - "rgb(65, 88, 208)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--pale-ocean": { - "total": 3, - "totalUnique": 3, - "unique": { - "rgb(255, 245, 203)": 1, - "rgb(182, 227, 212)": 1, - "rgb(51, 167, 181)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--electric-grass": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgb(202, 248, 128)": 1, - "rgb(113, 206, 126)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--midnight": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgb(2, 3, 129)": 1, - "rgb(40, 116, 252)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--shadow--natural": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.2)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--shadow--deep": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.4)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--shadow--sharp": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 0.2)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--shadow--outlined": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 1)": 1, - "rgba(0, 0, 0, 1)": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--shadow--crisp": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, 1)": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 483, - "totalUnique": 7, - "unique": { - "hex6": 189, - "hex3": 154, - "hsla": 43, - "rgba": 48, - "transparent": 21, - "named": 1, - "rgb": 27 - }, - "uniquenessRatio": 0.014492753623188406 - } - }, - "gradients": { - "total": 37, - "totalUnique": 29, - "unique": { - "linear-gradient(90deg, #434343, #434343 1px, transparent 0, transparent)": 1, - "linear-gradient(90deg, #434343, #434343 1px, none 0, none)": 1, - "linear-gradient(90deg, rgba(255, 235, 59, .25) 50%, rgba(255, 235, 59, 0))": 1, - "linear-gradient(180deg, #fff, #262626)": 1, - "radial-gradient(50% 50% at top center, rgba(0, 0, 0, .66), #262626)": 1, - "linear-gradient(90deg, #434343, #434343 1px, #111 0, #111)": 1, - "linear-gradient(130deg, #ff7a18, #af002d 41.07%, #319197 76.05%)": 7, - "repeating-linear-gradient(135deg, hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5) 2px, #000 0, #000 4px)": 1, - "linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .013) 8.1%, hsla(0, 0%, 100%, .049) 15.5%, hsla(0, 0%, 100%, .104) 22.5%, hsla(0, 0%, 100%, .175) 29%, hsla(0, 0%, 100%, .259) 35.3%, hsla(0, 0%, 100%, .352) 41.2%, hsla(0, 0%, 100%, .45) 47.1%, hsla(0, 0%, 100%, .55) 52.9%, hsla(0, 0%, 100%, .648) 58.8%, hsla(0, 0%, 100%, .741) 64.7%, hsla(0, 0%, 100%, .825) 71%, hsla(0, 0%, 100%, .896) 77.5%, hsla(0, 0%, 100%, .951) 84.5%, hsla(0, 0%, 100%, .987) 91.9%, #fff)": 1, - "linear-gradient(90deg, #434343, #434343 1px, #262626 0, #262626)": 3, - "linear-gradient(85deg, #434343, #262626)": 1, - "linear-gradient(-15deg, rgba(255, 122, 24, .25), #fff)": 1, - "linear-gradient(90deg, #e52e71, #ff7a18)": 1, - "-webkit-linear-gradient(transparent, rgba(0, 0, 0, .35))": 1, - "linear-gradient(transparent, rgba(0, 0, 0, .35))": 1, - "-webkit-linear-gradient(135deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent)": 1, - "linear-gradient(-45deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent)": 1, - "linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%)": 1, - "linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%)": 1, - "linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%)": 1, - "linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%)": 1, - "linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%)": 1, - "linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%)": 1, - "linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%)": 1, - "linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%)": 1, - "linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%)": 1, - "linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%)": 1, - "linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%)": 1, - "linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%)": 1 - }, - "uniquenessRatio": 0.7837837837837838 - }, - "fontFamilies": { - "total": 37, - "totalUnique": 9, - "unique": { - "MD Primer Bold": 1, - "Blanco": 4, - "Blanco, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol": 2, - "MD Primer Bold, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif": 19, - "SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace": 7, - "sans-serif": 1, - "Gotham Narrow SSm A, Gotham Narrow SSm B, Rubik, Lato, Lucida Grande, Lucida Sans Unicode, Tahoma, Sans-Serif": 1, - "Helvetica, Arial, serif": 1, - "Helvetica, Arial": 1 - }, - "uniquenessRatio": 0.24324324324324326 - }, - "fontSizes": { - "total": 110, - "totalUnique": 48, - "unique": { - "0": 1, - "100%": 1, - ".88rem": 2, - "clamp(12px, .8rem + .25vw, 20px)": 1, - "clamp(1.2rem, 1rem + 3.5vw, 4rem)": 2, - "92%": 1, - "clamp(2rem, 2rem + 1.2vw, 3rem)": 1, - "3rem": 2, - "clamp(1.8rem, 1.8rem + .2vw, 3rem)": 1, - "2.5rem": 1, - "2rem": 2, - "1.5rem": 3, - "1rem": 3, - "75%": 3, - "1.2rem": 6, - "1.3rem": 4, - "100px": 1, - "90px": 1, - ".6rem": 2, - ".8rem": 7, - ".5rem": 2, - "16px": 7, - "11px": 2, - "88%": 1, - ".7rem": 2, - "1.75rem": 1, - ".66rem": 3, - ".9rem": 5, - "1.8rem": 3, - "1.4rem": 5, - ".75rem": 5, - "10px": 6, - ".85rem": 2, - "1.1rem": 1, - "3em": 1, - ".4em": 1, - "25%": 1, - "12px": 2, - "20px": 2, - "1px": 1, - ".8em": 1, - "14px": 5, - "1.125em": 1, - "var(--wp--preset--font-size--small)": 1, - "var(--wp--preset--font-size--medium)": 1, - "var(--wp--preset--font-size--large)": 1, - "var(--wp--preset--font-size--x-large)": 1, - "1.5em": 1 - }, - "uniquenessRatio": 0.43636363636363634 - }, - "lineHeights": { - "total": 35, - "totalUnique": 18, - "unique": { - "0": 3, - "1": 1, - "normal": 1, - "1.7": 1, - "1.1": 4, - "1.05": 1, - "1.6": 2, - ".85": 1, - "28px": 1, - "1.75": 1, - "1.4": 3, - "1.3": 4, - "1.5": 6, - "1.2": 2, - "2.6": 1, - "10px": 1, - "15px": 1, - "20px": 1 - }, - "uniquenessRatio": 0.5142857142857142 - }, - "zindexes": { - "total": 32, - "totalUnique": 13, - "unique": { - "0": 1, - "1": 10, - "2": 3, - "3": 4, - "5": 2, - "8": 1, - "10": 1, - "11": 1, - "15": 2, - "1000": 1, - "4000": 1, - "5000": 1, - "-1": 4 - }, - "uniquenessRatio": 0.40625 - }, - "textShadows": { - "total": 2, - "totalUnique": 2, - "unique": { - "0 3px 3px rgba(0, 0, 0, .5)": 1, - "0 2px 2px rgba(0, 0, 0, .5)": 1 - }, - "uniquenessRatio": 1 - }, - "boxShadows": { - "total": 19, - "totalUnique": 13, - "unique": { - "inset 2px 2px 2px hsla(0, 0%, 100%, .25), inset -2px -2px 2px rgba(0, 0, 0, .25)": 6, - "inset 1px 1px 0 #777, 0 2px 3px rgba(0, 0, 0, .4)": 2, - "0 0 1px 3px rgba(59, 153, 252, .7)": 1, - "0 0 0 3px -moz-mac-focusring": 1, - "-10px 0 20px 3px #000": 1, - "-2rem 0 3rem -2rem #000": 1, - "-3rem 0 3rem -2rem #000": 1, - "0 .5rem 1.2rem rgba(0, 0, 0, .2)": 1, - "0 0 1rem #111": 1, - "0 0 1.5rem rgba(17, 17, 17, .7)": 1, - "0 0 50px rgba(17, 17, 17, .5)": 1, - "0 4px 80px #000": 1, - "5px 0 0 hsla(0, 0%, 8%, .5), -5px 0 0 hsla(0, 0%, 8%, .5)": 1 - }, - "uniquenessRatio": 0.6842105263157895 - }, - "borderRadiuses": { - "total": 92, - "totalUnique": 15, - "unique": { - "0": 5, - "8px": 45, - "50%": 3, - "4px": 21, - ".5em": 1, - "5px": 2, - "16px": 2, - "2px": 4, - "15px": 1, - "1rem": 1, - "10px": 2, - "12px": 2, - "0 0 4px 4px": 1, - "1px": 1, - "9999px": 1 - }, - "uniquenessRatio": 0.16304347826086957, - "itemsPerContext": { - "border-radius": { - "total": 80, - "totalUnique": 15, - "unique": { - "0": 5, - "8px": 37, - "50%": 3, - "4px": 17, - ".5em": 1, - "5px": 2, - "16px": 2, - "2px": 4, - "15px": 1, - "1rem": 1, - "10px": 2, - "12px": 2, - "0 0 4px 4px": 1, - "1px": 1, - "9999px": 1 - }, - "uniquenessRatio": 0.1875 - }, - "border-bottom-right-radius": { - "total": 4, - "totalUnique": 2, - "unique": { - "4px": 1, - "8px": 3 - }, - "uniquenessRatio": 0.5 - }, - "border-bottom-left-radius": { - "total": 4, - "totalUnique": 2, - "unique": { - "4px": 1, - "8px": 3 - }, - "uniquenessRatio": 0.5 - }, - "border-top-right-radius": { - "total": 2, - "totalUnique": 2, - "unique": { - "4px": 1, - "8px": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-left-radius": { - "total": 2, - "totalUnique": 2, - "unique": { - "4px": 1, - "8px": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "animations": { - "durations": { - "total": 32, - "totalUnique": 10, - "unique": { - ".01s": 1, - ".01ms": 2, - "2s": 4, - ".07s": 2, - "0s": 2, - "1s": 3, - ".2s": 11, - ".15s": 3, - ".3s": 2, - ".1s": 2 - }, - "uniquenessRatio": 0.3125 - }, - "timingFunctions": { - "total": 8, - "totalUnique": 3, - "unique": { - "linear": 4, - "ease-in": 2, - "cubic-bezier(.44, 0, 1, 1)": 2 - }, - "uniquenessRatio": 0.375 - } - }, - "prefixes": { - "total": 18, - "totalUnique": 10, - "unique": { - "Blanco, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol": 2, - "0 0 0 3px -moz-mac-focusring": 1, - "-moz-fit-content": 2, - "-moz-min-content": 2, - "-webkit-box": 4, - "-webkit-flex": 2, - "-ms-flexbox": 2, - "-webkit-linear-gradient(transparent, rgba(0, 0, 0, .35))": 1, - "-webkit-linear-gradient(135deg, hsla(0, 0%, 100%, .4) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .4) 0, hsla(0, 0%, 100%, .4) 75%, transparent 0, transparent)": 1, - "-webkit-calc(100% - 40px)": 1 - }, - "uniquenessRatio": 0.5555555555555556 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 1126, - "totalUnique": 9, - "unique": { - "s": 38, - "px": 593, - "rem": 371, - "deg": 41, - "ms": 2, - "vw": 6, - "em": 32, - "fr": 38, - "turn": 5 - }, - "uniquenessRatio": 0.007992895204262877, - "itemsPerContext": { - "transition": { - "total": 13, - "totalUnique": 1, - "unique": { - "s": 13 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "*margin-left": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "font-size": { - "total": 113, - "totalUnique": 4, - "unique": { - "rem": 74, - "px": 29, - "vw": 5, - "em": 5 - }, - "uniquenessRatio": 0.035398230088495575 - }, - "margin": { - "total": 103, - "totalUnique": 2, - "unique": { - "rem": 74, - "px": 29 - }, - "uniquenessRatio": 0.019417475728155338 - }, - "padding": { - "total": 139, - "totalUnique": 3, - "unique": { - "rem": 99, - "px": 34, - "em": 6 - }, - "uniquenessRatio": 0.02158273381294964 - }, - "border-right": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "border-bottom": { - "total": 14, - "totalUnique": 1, - "unique": { - "px": 14 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "width": { - "total": 60, - "totalUnique": 2, - "unique": { - "px": 59, - "em": 1 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "height": { - "total": 60, - "totalUnique": 2, - "unique": { - "px": 59, - "em": 1 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "border-radius": { - "total": 73, - "totalUnique": 3, - "unique": { - "px": 71, - "em": 1, - "rem": 1 - }, - "uniquenessRatio": 0.0410958904109589 - }, - "box-shadow": { - "total": 65, - "totalUnique": 2, - "unique": { - "px": 55, - "rem": 10 - }, - "uniquenessRatio": 0.03076923076923077 - }, - "background": { - "total": 30, - "totalUnique": 2, - "unique": { - "deg": 20, - "px": 10 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "animation-duration": { - "total": 1, - "totalUnique": 1, - "unique": { - "ms": 1 - }, - "uniquenessRatio": 1 - }, - "transition-duration": { - "total": 1, - "totalUnique": 1, - "unique": { - "ms": 1 - }, - "uniquenessRatio": 1 - }, - "text-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "letter-spacing": { - "total": 9, - "totalUnique": 2, - "unique": { - "rem": 8, - "px": 1 - }, - "uniquenessRatio": 0.2222222222222222 - }, - "margin-top": { - "total": 11, - "totalUnique": 2, - "unique": { - "px": 5, - "rem": 6 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "scroll-margin-top": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "transform": { - "total": 22, - "totalUnique": 4, - "unique": { - "rem": 7, - "deg": 7, - "turn": 3, - "px": 5 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "margin-left": { - "total": 14, - "totalUnique": 2, - "unique": { - "px": 9, - "rem": 5 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "margin-right": { - "total": 19, - "totalUnique": 2, - "unique": { - "px": 4, - "rem": 15 - }, - "uniquenessRatio": 0.10526315789473684 - }, - "animation": { - "total": 21, - "totalUnique": 1, - "unique": { - "s": 21 - }, - "uniquenessRatio": 0.047619047619047616 - }, - "max-width": { - "total": 17, - "totalUnique": 1, - "unique": { - "px": 17 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "left": { - "total": 8, - "totalUnique": 2, - "unique": { - "rem": 2, - "px": 6 - }, - "uniquenessRatio": 0.25 - }, - "text-indent": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "background-size": { - "total": 6, - "totalUnique": 2, - "unique": { - "px": 5, - "em": 1 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border": { - "total": 21, - "totalUnique": 2, - "unique": { - "px": 20, - "vw": 1 - }, - "uniquenessRatio": 0.09523809523809523 - }, - "margin-bottom": { - "total": 12, - "totalUnique": 2, - "unique": { - "rem": 7, - "px": 5 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "line-height": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "top": { - "total": 21, - "totalUnique": 3, - "unique": { - "rem": 6, - "em": 1, - "px": 14 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "right": { - "total": 6, - "totalUnique": 2, - "unique": { - "rem": 2, - "px": 4 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "min-width": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "bottom": { - "total": 7, - "totalUnique": 3, - "unique": { - "em": 1, - "rem": 2, - "px": 4 - }, - "uniquenessRatio": 0.42857142857142855 - }, - "clip": { - "total": 12, - "totalUnique": 1, - "unique": { - "px": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "gap": { - "total": 21, - "totalUnique": 2, - "unique": { - "rem": 11, - "em": 10 - }, - "uniquenessRatio": 0.09523809523809523 - }, - "padding-left": { - "total": 7, - "totalUnique": 2, - "unique": { - "rem": 6, - "px": 1 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "border-bottom-right-radius": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "border-bottom-left-radius": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "background-position": { - "total": 15, - "totalUnique": 2, - "unique": { - "em": 1, - "px": 14 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "--maxWidth": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--gap": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--featured-img": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "grid-template-columns": { - "total": 55, - "totalUnique": 3, - "unique": { - "fr": 38, - "px": 14, - "rem": 3 - }, - "uniquenessRatio": 0.05454545454545454 - }, - "--fleck-size-base": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "padding-top": { - "total": 9, - "totalUnique": 2, - "unique": { - "px": 4, - "rem": 5 - }, - "uniquenessRatio": 0.2222222222222222 - }, - "-webkit-margin-start": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "margin-inline-start": { - "total": 4, - "totalUnique": 3, - "unique": { - "px": 1, - "rem": 1, - "em": 2 - }, - "uniquenessRatio": 0.75 - }, - "border-top-right-radius": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-top-left-radius": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "-webkit-filter": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "filter": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "border-top": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "flex": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "grid-gap": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "min-height": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "max-height": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "-ms-scroll-snap-points-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "scroll-snap-points-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "scroll-margin-inline-start": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-margin-end": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "margin-inline-end": { - "total": 4, - "totalUnique": 2, - "unique": { - "rem": 2, - "em": 2 - }, - "uniquenessRatio": 0.5 - }, - "background-image": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "padding-right": { - "total": 4, - "totalUnique": 2, - "unique": { - "rem": 3, - "px": 1 - }, - "uniquenessRatio": 0.5 - }, - "padding-bottom": { - "total": 3, - "totalUnique": 2, - "unique": { - "rem": 2, - "px": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "margin-inline": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-spacing": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-left": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "padding-block": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-animation": { - "total": 2, - "totalUnique": 1, - "unique": { - "s": 2 - }, - "uniquenessRatio": 0.5 - }, - "-webkit-transform": { - "total": 2, - "totalUnique": 1, - "unique": { - "turn": 2 - }, - "uniquenessRatio": 0.5 - }, - "outline": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-transition": { - "total": 2, - "totalUnique": 1, - "unique": { - "s": 2 - }, - "uniquenessRatio": 0.5 - }, - "--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--luminous-vivid-orange-to-vivid-red": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--cool-to-warm-spectrum": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--blush-light-purple": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--blush-bordeaux": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--luminous-dusk": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--pale-ocean": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--electric-grass": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--gradient--midnight": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--font-size--small": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--font-size--medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--font-size--large": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--font-size--x-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--20": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--30": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--40": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--50": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--60": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--70": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--spacing--80": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--wp--preset--shadow--natural": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--wp--preset--shadow--deep": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--wp--preset--shadow--sharp": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--wp--preset--shadow--outlined": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "--wp--preset--shadow--crisp": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0067089079388745, - "mode": 1, - "range": 1, - "sum": 2701 - }, - "keywords": { - "total": 182, - "totalUnique": 3, - "unique": { - "none": 113, - "auto": 59, - "inherit": 10 - }, - "uniquenessRatio": 0.016483516483516484 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/gazelle-20231008.css b/src/__fixtures__/gazelle-20231008.css deleted file mode 100644 index b2b599c7..00000000 --- a/src/__fixtures__/gazelle-20231008.css +++ /dev/null @@ -1,45124 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 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; - -webkit-text-size-adjust: 100%; - -ms-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: 1px dotted; -} - -b, -strong { - font-weight: 700; -} - -dfn { - font-style: italic; -} - -h1 { - margin: .67em 0; - font-size: 2em; -} - -mark { - color: #000; - background: #ff0; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sup { - top: -.5em; -} - -sub { - bottom: -.25em; -} - -img { - border: 0; -} - -svg:not(:root) { - overflow: hidden; -} - -figure { - margin: 1em 40px; -} - -hr { - height: 0; - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; -} - -pre { - overflow: auto; -} - -code, -kbd, -pre, -samp { - font-family: monospace,monospace; - font-size: 1em; -} - -button, -input, -optgroup, -select, -textarea { - margin: 0; - font: inherit; - color: inherit; -} - -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 { - padding: 0; - border: 0; -} - -input { - line-height: normal; -} - -input[type=checkbox], -input[type=radio] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - 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-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - -webkit-appearance: textfield; -} - -input[type=search]::-webkit-search-cancel-button, -input[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -fieldset { - padding: .35em .625em .75em; - margin: 0 2px; - border: 1px solid silver; -} - -legend { - padding: 0; - border: 0; -} - -textarea { - overflow: auto; -} - -optgroup { - font-weight: 700; -} - -table { - border-spacing: 0; - border-collapse: collapse; -} - -td, -th { - padding: 0; -} - -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ - -@media print { - *, - :after, - :before { - color: #000; - text-shadow: none; - background: 0 0; - -webkit-box-shadow: none; - box-shadow: none; - } - - a, - a:visited { - text-decoration: underline; - } - - a[href]:after { - content: " (" attr(href) ")"; - } - - abbr[title]:after { - content: " (" attr(title) ")"; - } - - a[href^="javascript:"]:after, - a[href^="#"]:after { - content: ""; - } - - blockquote, - pre { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - img, - tr { - page-break-inside: avoid; - } - - img { - max-width: 100%; - } - - h2, - h3, - p { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - .navbar { - display: none; - } - - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000; - } - - .label { - border: 1px solid #000; - } - - .table { - border-collapse: collapse; - } - - .table td, - .table th { - background-color: #fff; - } - - .table-bordered td, - .table-bordered th { - border: 1px solid #ddd; - } -} - -@font-face { - font-family: 'Glyphicons Halflings'; - src: url(../fonts/glyphicons-halflings-regular.eot); - src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/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-eur:before, -.glyphicon-euro: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; -} - -:after, -:before { - -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.42857143; - color: #333; - background-color: #fff; -} - -button, -input, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -a { - color: #337ab7; - text-decoration: none; -} - -a:focus, -a:hover { - color: #23527c; - text-decoration: underline; -} - -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -figure { - margin: 0; -} - -img { - vertical-align: middle; -} - -.carousel-inner > .item > a > img, -.carousel-inner > .item > img, -.img-responsive, -.thumbnail a > img, -.thumbnail > img { - display: block; - max-width: 100%; - height: auto; -} - -.img-rounded { - border-radius: 6px; -} - -.img-thumbnail { - display: inline-block; - max-width: 100%; - height: auto; - padding: 4px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; -} - -.img-circle { - border-radius: 50%; -} - -hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eee; -} - -.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: #777; -} - -.h1, -.h2, -.h3, -h1, -h2, -h3 { - margin-top: 20px; - margin-bottom: 10px; -} - -.h1 .small, -.h1 small, -.h2 .small, -.h2 small, -.h3 .small, -.h3 small, -h1 .small, -h1 small, -h2 .small, -h2 small, -h3 .small, -h3 small { - font-size: 65%; -} - -.h4, -.h5, -.h6, -h4, -h5, -h6 { - margin-top: 10px; - margin-bottom: 10px; -} - -.h4 .small, -.h4 small, -.h5 .small, -.h5 small, -.h6 .small, -.h6 small, -h4 .small, -h4 small, -h5 .small, -h5 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 { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-muted { - color: #777; -} - -.text-primary { - color: #337ab7; -} - -a.text-primary:focus, -a.text-primary:hover { - color: #286090; -} - -.text-success { - color: #3c763d; -} - -a.text-success:focus, -a.text-success:hover { - color: #2b542c; -} - -.text-info { - color: #31708f; -} - -a.text-info:focus, -a.text-info:hover { - color: #245269; -} - -.text-warning { - color: #8a6d3b; -} - -a.text-warning:focus, -a.text-warning:hover { - color: #66512c; -} - -.text-danger { - color: #a94442; -} - -a.text-danger:focus, -a.text-danger:hover { - color: #843534; -} - -.bg-primary { - color: #fff; - background-color: #337ab7; -} - -a.bg-primary:focus, -a.bg-primary:hover { - background-color: #286090; -} - -.bg-success { - background-color: #dff0d8; -} - -a.bg-success:focus, -a.bg-success:hover { - background-color: #c1e2b3; -} - -.bg-info { - background-color: #d9edf7; -} - -a.bg-info:focus, -a.bg-info:hover { - background-color: #afd9ee; -} - -.bg-warning { - background-color: #fcf8e3; -} - -a.bg-warning:focus, -a.bg-warning:hover { - background-color: #f7ecb5; -} - -.bg-danger { - background-color: #f2dede; -} - -a.bg-danger:focus, -a.bg-danger:hover { - background-color: #e4b9b9; -} - -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eee; -} - -ol, -ul { - margin-top: 0; - margin-bottom: 10px; -} - -ol ol, -ol ul, -ul ol, -ul ul { - margin-bottom: 0; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - margin-left: -5px; - list-style: none; -} - -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} - -dl { - margin-top: 0; - margin-bottom: 20px; -} - -dd, -dt { - line-height: 1.42857143; -} - -dt { - font-weight: 700; -} - -dd { - margin-left: 0; -} - -@media (min-width:768px) { - .dl-horizontal dt { - float: left; - width: 160px; - overflow: hidden; - clear: left; - text-align: right; - text-overflow: ellipsis; - white-space: nowrap; - } - - .dl-horizontal dd { - margin-left: 180px; - } -} - -abbr[data-original-title], -abbr[title] { - cursor: help; - border-bottom: 1px dotted #777; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eee; -} - -blockquote ol:last-child, -blockquote p:last-child, -blockquote ul:last-child { - margin-bottom: 0; -} - -blockquote .small, -blockquote footer, -blockquote small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777; -} - -blockquote .small:before, -blockquote footer: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 #eee; - border-left: 0; -} - -.blockquote-reverse .small:before, -.blockquote-reverse footer:before, -.blockquote-reverse small:before, -blockquote.pull-right .small:before, -blockquote.pull-right footer:before, -blockquote.pull-right small:before { - content: ''; -} - -.blockquote-reverse .small:after, -.blockquote-reverse footer:after, -.blockquote-reverse small:after, -blockquote.pull-right .small:after, -blockquote.pull-right footer:after, -blockquote.pull-right small:after { - content: '\00A0 \2014'; -} - -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} - -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; - -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); - box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); -} - -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; - -webkit-box-shadow: none; - box-shadow: none; -} - -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - color: #333; - 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; -} - -@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; -} - -.row { - margin-right: -15px; - margin-left: -15px; -} - -.col-lg-1, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.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-md-1, -.col-md-10, -.col-md-11, -.col-md-12, -.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-sm-1, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.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-xs-1, -.col-xs-10, -.col-xs-11, -.col-xs-12, -.col-xs-2, -.col-xs-3, -.col-xs-4, -.col-xs-5, -.col-xs-6, -.col-xs-7, -.col-xs-8, -.col-xs-9 { - position: relative; - min-height: 1px; - padding-right: 15px; - padding-left: 15px; -} - -.col-xs-1, -.col-xs-10, -.col-xs-11, -.col-xs-12, -.col-xs-2, -.col-xs-3, -.col-xs-4, -.col-xs-5, -.col-xs-6, -.col-xs-7, -.col-xs-8, -.col-xs-9 { - float: left; -} - -.col-xs-12 { - width: 100%; -} - -.col-xs-11 { - width: 91.66666667%; -} - -.col-xs-10 { - width: 83.33333333%; -} - -.col-xs-9 { - width: 75%; -} - -.col-xs-8 { - width: 66.66666667%; -} - -.col-xs-7 { - width: 58.33333333%; -} - -.col-xs-6 { - width: 50%; -} - -.col-xs-5 { - width: 41.66666667%; -} - -.col-xs-4 { - width: 33.33333333%; -} - -.col-xs-3 { - width: 25%; -} - -.col-xs-2 { - width: 16.66666667%; -} - -.col-xs-1 { - width: 8.33333333%; -} - -.col-xs-pull-12 { - right: 100%; -} - -.col-xs-pull-11 { - right: 91.66666667%; -} - -.col-xs-pull-10 { - right: 83.33333333%; -} - -.col-xs-pull-9 { - right: 75%; -} - -.col-xs-pull-8 { - right: 66.66666667%; -} - -.col-xs-pull-7 { - right: 58.33333333%; -} - -.col-xs-pull-6 { - right: 50%; -} - -.col-xs-pull-5 { - right: 41.66666667%; -} - -.col-xs-pull-4 { - right: 33.33333333%; -} - -.col-xs-pull-3 { - right: 25%; -} - -.col-xs-pull-2 { - right: 16.66666667%; -} - -.col-xs-pull-1 { - right: 8.33333333%; -} - -.col-xs-pull-0 { - right: auto; -} - -.col-xs-push-12 { - left: 100%; -} - -.col-xs-push-11 { - left: 91.66666667%; -} - -.col-xs-push-10 { - left: 83.33333333%; -} - -.col-xs-push-9 { - left: 75%; -} - -.col-xs-push-8 { - left: 66.66666667%; -} - -.col-xs-push-7 { - left: 58.33333333%; -} - -.col-xs-push-6 { - left: 50%; -} - -.col-xs-push-5 { - left: 41.66666667%; -} - -.col-xs-push-4 { - left: 33.33333333%; -} - -.col-xs-push-3 { - left: 25%; -} - -.col-xs-push-2 { - left: 16.66666667%; -} - -.col-xs-push-1 { - left: 8.33333333%; -} - -.col-xs-push-0 { - left: auto; -} - -.col-xs-offset-12 { - margin-left: 100%; -} - -.col-xs-offset-11 { - margin-left: 91.66666667%; -} - -.col-xs-offset-10 { - margin-left: 83.33333333%; -} - -.col-xs-offset-9 { - margin-left: 75%; -} - -.col-xs-offset-8 { - margin-left: 66.66666667%; -} - -.col-xs-offset-7 { - margin-left: 58.33333333%; -} - -.col-xs-offset-6 { - margin-left: 50%; -} - -.col-xs-offset-5 { - margin-left: 41.66666667%; -} - -.col-xs-offset-4 { - margin-left: 33.33333333%; -} - -.col-xs-offset-3 { - margin-left: 25%; -} - -.col-xs-offset-2 { - margin-left: 16.66666667%; -} - -.col-xs-offset-1 { - margin-left: 8.33333333%; -} - -.col-xs-offset-0 { - margin-left: 0; -} - -@media (min-width:768px) { - .col-sm-1, - .col-sm-10, - .col-sm-11, - .col-sm-12, - .col-sm-2, - .col-sm-3, - .col-sm-4, - .col-sm-5, - .col-sm-6, - .col-sm-7, - .col-sm-8, - .col-sm-9 { - float: left; - } - - .col-sm-12 { - width: 100%; - } - - .col-sm-11 { - width: 91.66666667%; - } - - .col-sm-10 { - width: 83.33333333%; - } - - .col-sm-9 { - width: 75%; - } - - .col-sm-8 { - width: 66.66666667%; - } - - .col-sm-7 { - width: 58.33333333%; - } - - .col-sm-6 { - width: 50%; - } - - .col-sm-5 { - width: 41.66666667%; - } - - .col-sm-4 { - width: 33.33333333%; - } - - .col-sm-3 { - width: 25%; - } - - .col-sm-2 { - width: 16.66666667%; - } - - .col-sm-1 { - width: 8.33333333%; - } - - .col-sm-pull-12 { - right: 100%; - } - - .col-sm-pull-11 { - right: 91.66666667%; - } - - .col-sm-pull-10 { - right: 83.33333333%; - } - - .col-sm-pull-9 { - right: 75%; - } - - .col-sm-pull-8 { - right: 66.66666667%; - } - - .col-sm-pull-7 { - right: 58.33333333%; - } - - .col-sm-pull-6 { - right: 50%; - } - - .col-sm-pull-5 { - right: 41.66666667%; - } - - .col-sm-pull-4 { - right: 33.33333333%; - } - - .col-sm-pull-3 { - right: 25%; - } - - .col-sm-pull-2 { - right: 16.66666667%; - } - - .col-sm-pull-1 { - right: 8.33333333%; - } - - .col-sm-pull-0 { - right: auto; - } - - .col-sm-push-12 { - left: 100%; - } - - .col-sm-push-11 { - left: 91.66666667%; - } - - .col-sm-push-10 { - left: 83.33333333%; - } - - .col-sm-push-9 { - left: 75%; - } - - .col-sm-push-8 { - left: 66.66666667%; - } - - .col-sm-push-7 { - left: 58.33333333%; - } - - .col-sm-push-6 { - left: 50%; - } - - .col-sm-push-5 { - left: 41.66666667%; - } - - .col-sm-push-4 { - left: 33.33333333%; - } - - .col-sm-push-3 { - left: 25%; - } - - .col-sm-push-2 { - left: 16.66666667%; - } - - .col-sm-push-1 { - left: 8.33333333%; - } - - .col-sm-push-0 { - left: auto; - } - - .col-sm-offset-12 { - margin-left: 100%; - } - - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - - .col-sm-offset-9 { - margin-left: 75%; - } - - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - - .col-sm-offset-6 { - margin-left: 50%; - } - - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - - .col-sm-offset-3 { - margin-left: 25%; - } - - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - - .col-sm-offset-0 { - margin-left: 0; - } -} - -@media (min-width:992px) { - .col-md-1, - .col-md-10, - .col-md-11, - .col-md-12, - .col-md-2, - .col-md-3, - .col-md-4, - .col-md-5, - .col-md-6, - .col-md-7, - .col-md-8, - .col-md-9 { - float: left; - } - - .col-md-12 { - width: 100%; - } - - .col-md-11 { - width: 91.66666667%; - } - - .col-md-10 { - width: 83.33333333%; - } - - .col-md-9 { - width: 75%; - } - - .col-md-8 { - width: 66.66666667%; - } - - .col-md-7 { - width: 58.33333333%; - } - - .col-md-6 { - width: 50%; - } - - .col-md-5 { - width: 41.66666667%; - } - - .col-md-4 { - width: 33.33333333%; - } - - .col-md-3 { - width: 25%; - } - - .col-md-2 { - width: 16.66666667%; - } - - .col-md-1 { - width: 8.33333333%; - } - - .col-md-pull-12 { - right: 100%; - } - - .col-md-pull-11 { - right: 91.66666667%; - } - - .col-md-pull-10 { - right: 83.33333333%; - } - - .col-md-pull-9 { - right: 75%; - } - - .col-md-pull-8 { - right: 66.66666667%; - } - - .col-md-pull-7 { - right: 58.33333333%; - } - - .col-md-pull-6 { - right: 50%; - } - - .col-md-pull-5 { - right: 41.66666667%; - } - - .col-md-pull-4 { - right: 33.33333333%; - } - - .col-md-pull-3 { - right: 25%; - } - - .col-md-pull-2 { - right: 16.66666667%; - } - - .col-md-pull-1 { - right: 8.33333333%; - } - - .col-md-pull-0 { - right: auto; - } - - .col-md-push-12 { - left: 100%; - } - - .col-md-push-11 { - left: 91.66666667%; - } - - .col-md-push-10 { - left: 83.33333333%; - } - - .col-md-push-9 { - left: 75%; - } - - .col-md-push-8 { - left: 66.66666667%; - } - - .col-md-push-7 { - left: 58.33333333%; - } - - .col-md-push-6 { - left: 50%; - } - - .col-md-push-5 { - left: 41.66666667%; - } - - .col-md-push-4 { - left: 33.33333333%; - } - - .col-md-push-3 { - left: 25%; - } - - .col-md-push-2 { - left: 16.66666667%; - } - - .col-md-push-1 { - left: 8.33333333%; - } - - .col-md-push-0 { - left: auto; - } - - .col-md-offset-12 { - margin-left: 100%; - } - - .col-md-offset-11 { - margin-left: 91.66666667%; - } - - .col-md-offset-10 { - margin-left: 83.33333333%; - } - - .col-md-offset-9 { - margin-left: 75%; - } - - .col-md-offset-8 { - margin-left: 66.66666667%; - } - - .col-md-offset-7 { - margin-left: 58.33333333%; - } - - .col-md-offset-6 { - margin-left: 50%; - } - - .col-md-offset-5 { - margin-left: 41.66666667%; - } - - .col-md-offset-4 { - margin-left: 33.33333333%; - } - - .col-md-offset-3 { - margin-left: 25%; - } - - .col-md-offset-2 { - margin-left: 16.66666667%; - } - - .col-md-offset-1 { - margin-left: 8.33333333%; - } - - .col-md-offset-0 { - margin-left: 0; - } -} - -@media (min-width:1200px) { - .col-lg-1, - .col-lg-10, - .col-lg-11, - .col-lg-12, - .col-lg-2, - .col-lg-3, - .col-lg-4, - .col-lg-5, - .col-lg-6, - .col-lg-7, - .col-lg-8, - .col-lg-9 { - float: left; - } - - .col-lg-12 { - width: 100%; - } - - .col-lg-11 { - width: 91.66666667%; - } - - .col-lg-10 { - width: 83.33333333%; - } - - .col-lg-9 { - width: 75%; - } - - .col-lg-8 { - width: 66.66666667%; - } - - .col-lg-7 { - width: 58.33333333%; - } - - .col-lg-6 { - width: 50%; - } - - .col-lg-5 { - width: 41.66666667%; - } - - .col-lg-4 { - width: 33.33333333%; - } - - .col-lg-3 { - width: 25%; - } - - .col-lg-2 { - width: 16.66666667%; - } - - .col-lg-1 { - width: 8.33333333%; - } - - .col-lg-pull-12 { - right: 100%; - } - - .col-lg-pull-11 { - right: 91.66666667%; - } - - .col-lg-pull-10 { - right: 83.33333333%; - } - - .col-lg-pull-9 { - right: 75%; - } - - .col-lg-pull-8 { - right: 66.66666667%; - } - - .col-lg-pull-7 { - right: 58.33333333%; - } - - .col-lg-pull-6 { - right: 50%; - } - - .col-lg-pull-5 { - right: 41.66666667%; - } - - .col-lg-pull-4 { - right: 33.33333333%; - } - - .col-lg-pull-3 { - right: 25%; - } - - .col-lg-pull-2 { - right: 16.66666667%; - } - - .col-lg-pull-1 { - right: 8.33333333%; - } - - .col-lg-pull-0 { - right: auto; - } - - .col-lg-push-12 { - left: 100%; - } - - .col-lg-push-11 { - left: 91.66666667%; - } - - .col-lg-push-10 { - left: 83.33333333%; - } - - .col-lg-push-9 { - left: 75%; - } - - .col-lg-push-8 { - left: 66.66666667%; - } - - .col-lg-push-7 { - left: 58.33333333%; - } - - .col-lg-push-6 { - left: 50%; - } - - .col-lg-push-5 { - left: 41.66666667%; - } - - .col-lg-push-4 { - left: 33.33333333%; - } - - .col-lg-push-3 { - left: 25%; - } - - .col-lg-push-2 { - left: 16.66666667%; - } - - .col-lg-push-1 { - left: 8.33333333%; - } - - .col-lg-push-0 { - left: auto; - } - - .col-lg-offset-12 { - margin-left: 100%; - } - - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - - .col-lg-offset-9 { - margin-left: 75%; - } - - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - - .col-lg-offset-6 { - margin-left: 50%; - } - - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - - .col-lg-offset-3 { - margin-left: 25%; - } - - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - - .col-lg-offset-0 { - margin-left: 0; - } -} - -table { - background-color: transparent; -} - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777; - text-align: left; -} - -th { - text-align: left; -} - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} - -.table > tbody > tr > td, -.table > tbody > tr > th, -.table > tfoot > tr > td, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > thead > tr > th { - padding: 8px; - line-height: 1.42857143; - 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 > td, -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > td, -.table > thead:first-child > tr:first-child > th { - border-top: 0; -} - -.table > tbody + tbody { - border-top: 2px solid #ddd; -} - -.table .table { - background-color: #fff; -} - -.table-condensed > tbody > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > thead > tr > th { - padding: 5px; -} - -.table-bordered { - border: 1px solid #ddd; -} - -.table-bordered > tbody > tr > td, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > td, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > thead > tr > th { - border: 1px solid #ddd; -} - -.table-bordered > thead > tr > td, -.table-bordered > thead > tr > th { - border-bottom-width: 2px; -} - -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} - -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} - -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; -} - -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tfoot > tr.active > td, -.table > tfoot > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > thead > tr.active > th, -.table > thead > tr > td.active, -.table > thead > tr > th.active { - background-color: #f5f5f5; -} - -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr.active:hover > th, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover { - background-color: #e8e8e8; -} - -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tfoot > tr.success > td, -.table > tfoot > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > thead > tr.success > th, -.table > thead > tr > td.success, -.table > thead > tr > th.success { - background-color: #dff0d8; -} - -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr.success:hover > th, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover { - background-color: #d0e9c6; -} - -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > thead > tr.info > th, -.table > thead > tr > td.info, -.table > thead > tr > th.info { - background-color: #d9edf7; -} - -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr.info:hover > th, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover { - background-color: #c4e3f3; -} - -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > thead > tr.warning > th, -.table > thead > tr > td.warning, -.table > thead > tr > th.warning { - background-color: #fcf8e3; -} - -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr.warning:hover > th, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover { - background-color: #faf2cc; -} - -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > thead > tr.danger > th, -.table > thead > tr > td.danger, -.table > thead > tr > th.danger { - background-color: #f2dede; -} - -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr.danger:hover > th, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover { - 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 > tbody > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > td, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > thead > tr > th { - white-space: nowrap; - } - - .table-responsive > .table-bordered { - border: 0; - } - - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > thead > tr > th:first-child { - border-left: 0; - } - - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > thead > tr > th:last-child { - border-right: 0; - } - - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th { - 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: #333; - 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; -} - -input[type=checkbox], -input[type=radio] { - margin: 4px 0 0; - margin-top: 1px\9; - line-height: normal; -} - -input[type=file] { - display: block; -} - -input[type=range] { - display: block; - width: 100%; -} - -select[multiple], -select[size] { - height: auto; -} - -input[type=file]:focus, -input[type=checkbox]:focus, -input[type=radio]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555; -} - -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075); - -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; -} - -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.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: #eee; - opacity: 1; -} - -.form-control[disabled], -fieldset[disabled] .form-control { - cursor: not-allowed; -} - -textarea.form-control { - height: auto; -} - -input[type=search] { - -webkit-appearance: none; -} - -@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-group-sm input[type=date], - .input-group-sm input[type=time], - .input-group-sm input[type=datetime-local], - .input-group-sm input[type=month], - input[type=date].input-sm, - input[type=time].input-sm, - input[type=datetime-local].input-sm, - input[type=month].input-sm { - line-height: 30px; - } - - .input-group-lg input[type=date], - .input-group-lg input[type=time], - .input-group-lg input[type=datetime-local], - .input-group-lg input[type=month], - input[type=date].input-lg, - input[type=time].input-lg, - input[type=datetime-local].input-lg, - input[type=month].input-lg { - line-height: 46px; - } -} - -.form-group { - margin-bottom: 15px; -} - -.checkbox, -.radio { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} - -.checkbox label, -.radio label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - cursor: pointer; -} - -.checkbox input[type=checkbox], -.checkbox-inline input[type=checkbox], -.radio input[type=radio], -.radio-inline input[type=radio] { - position: absolute; - margin-top: 4px\9; - margin-left: -20px; -} - -.checkbox + .checkbox, -.radio + .radio { - margin-top: -5px; -} - -.checkbox-inline, -.radio-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: 400; - vertical-align: middle; - cursor: pointer; -} - -.checkbox-inline + .checkbox-inline, -.radio-inline + .radio-inline { - margin-top: 0; - margin-left: 10px; -} - -fieldset[disabled] input[type=checkbox], -fieldset[disabled] input[type=radio], -input[type=checkbox].disabled, -input[type=checkbox][disabled], -input[type=radio].disabled, -input[type=radio][disabled] { - cursor: not-allowed; -} - -.checkbox-inline.disabled, -.radio-inline.disabled, -fieldset[disabled] .checkbox-inline, -fieldset[disabled] .radio-inline { - cursor: not-allowed; -} - -.checkbox.disabled label, -.radio.disabled label, -fieldset[disabled] .checkbox label, -fieldset[disabled] .radio label { - cursor: not-allowed; -} - -.form-control-static { - min-height: 34px; - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} - -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-right: 0; - padding-left: 0; -} - -.input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -select.input-sm { - height: 30px; - line-height: 30px; -} - -select[multiple].input-sm, -textarea.input-sm { - 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 select[multiple].form-control, -.form-group-sm textarea.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 { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} - -select.input-lg { - height: 46px; - line-height: 46px; -} - -select[multiple].input-lg, -textarea.input-lg { - 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 select[multiple].form-control, -.form-group-lg textarea.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; -} - -.form-group-lg .form-control + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.input-lg + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} - -.form-group-sm .form-control + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.input-sm + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} - -.has-success .checkbox, -.has-success .checkbox-inline, -.has-success .control-label, -.has-success .help-block, -.has-success .radio, -.has-success .radio-inline, -.has-success.checkbox label, -.has-success.checkbox-inline label, -.has-success.radio label, -.has-success.radio-inline label { - color: #3c763d; -} - -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -} - -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(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 .checkbox, -.has-warning .checkbox-inline, -.has-warning .control-label, -.has-warning .help-block, -.has-warning .radio, -.has-warning .radio-inline, -.has-warning.checkbox label, -.has-warning.checkbox-inline label, -.has-warning.radio label, -.has-warning.radio-inline label { - color: #8a6d3b; -} - -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -} - -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(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 .checkbox, -.has-error .checkbox-inline, -.has-error .control-label, -.has-error .help-block, -.has-error .radio, -.has-error .radio-inline, -.has-error.checkbox label, -.has-error.checkbox-inline label, -.has-error.radio label, -.has-error.radio-inline label { - color: #a94442; -} - -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -} - -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(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 .form-control, - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn { - width: auto; - } - - .form-inline .input-group > .form-control { - width: 100%; - } - - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - - .form-inline .checkbox, - .form-inline .radio { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - - .form-inline .checkbox label, - .form-inline .radio label { - padding-left: 0; - } - - .form-inline .checkbox input[type=checkbox], - .form-inline .radio input[type=radio] { - position: relative; - margin-left: 0; - } - - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} - -.form-horizontal .checkbox, -.form-horizontal .checkbox-inline, -.form-horizontal .radio, -.form-horizontal .radio-inline { - padding-top: 7px; - margin-top: 0; - margin-bottom: 0; -} - -.form-horizontal .checkbox, -.form-horizontal .radio { - min-height: 27px; -} - -.form-horizontal .form-group { - margin-right: -15px; - margin-left: -15px; -} - -@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; - padding: 6px 12px; - margin-bottom: 0; - font-size: 14px; - font-weight: 400; - line-height: 1.42857143; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-image: none; - border: 1px solid transparent; - border-radius: 4px; -} - -.btn.active.focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn:active:focus, -.btn:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -.btn.focus, -.btn:focus, -.btn:hover { - 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,.125); - box-shadow: inset 0 3px 5px rgba(0,0,0,.125); -} - -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; - opacity: .65; -} - -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 > .dropdown-toggle.btn-default { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} - -.btn-default.active.focus, -.btn-default.active:focus, -.btn-default.active:hover, -.btn-default:active.focus, -.btn-default:active:focus, -.btn-default:active:hover, -.open > .dropdown-toggle.btn-default.focus, -.open > .dropdown-toggle.btn-default:focus, -.open > .dropdown-toggle.btn-default:hover { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} - -.btn-default.active, -.btn-default:active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} - -.btn-default.disabled.focus, -.btn-default.disabled:focus, -.btn-default.disabled:hover, -.btn-default[disabled].focus, -.btn-default[disabled]:focus, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default.focus, -fieldset[disabled] .btn-default:focus, -fieldset[disabled] .btn-default:hover { - 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 > .dropdown-toggle.btn-primary { - color: #fff; - background-color: #286090; - border-color: #204d74; -} - -.btn-primary.active.focus, -.btn-primary.active:focus, -.btn-primary.active:hover, -.btn-primary:active.focus, -.btn-primary:active:focus, -.btn-primary:active:hover, -.open > .dropdown-toggle.btn-primary.focus, -.open > .dropdown-toggle.btn-primary:focus, -.open > .dropdown-toggle.btn-primary:hover { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} - -.btn-primary.active, -.btn-primary:active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} - -.btn-primary.disabled.focus, -.btn-primary.disabled:focus, -.btn-primary.disabled:hover, -.btn-primary[disabled].focus, -.btn-primary[disabled]:focus, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary.focus, -fieldset[disabled] .btn-primary:focus, -fieldset[disabled] .btn-primary:hover { - 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 > .dropdown-toggle.btn-success { - color: #fff; - background-color: #449d44; - border-color: #398439; -} - -.btn-success.active.focus, -.btn-success.active:focus, -.btn-success.active:hover, -.btn-success:active.focus, -.btn-success:active:focus, -.btn-success:active:hover, -.open > .dropdown-toggle.btn-success.focus, -.open > .dropdown-toggle.btn-success:focus, -.open > .dropdown-toggle.btn-success:hover { - color: #fff; - background-color: #398439; - border-color: #255625; -} - -.btn-success.active, -.btn-success:active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} - -.btn-success.disabled.focus, -.btn-success.disabled:focus, -.btn-success.disabled:hover, -.btn-success[disabled].focus, -.btn-success[disabled]:focus, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success.focus, -fieldset[disabled] .btn-success:focus, -fieldset[disabled] .btn-success:hover { - 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 > .dropdown-toggle.btn-info { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} - -.btn-info.active.focus, -.btn-info.active:focus, -.btn-info.active:hover, -.btn-info:active.focus, -.btn-info:active:focus, -.btn-info:active:hover, -.open > .dropdown-toggle.btn-info.focus, -.open > .dropdown-toggle.btn-info:focus, -.open > .dropdown-toggle.btn-info:hover { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} - -.btn-info.active, -.btn-info:active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} - -.btn-info.disabled.focus, -.btn-info.disabled:focus, -.btn-info.disabled:hover, -.btn-info[disabled].focus, -.btn-info[disabled]:focus, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info.focus, -fieldset[disabled] .btn-info:focus, -fieldset[disabled] .btn-info:hover { - 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 > .dropdown-toggle.btn-warning { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} - -.btn-warning.active.focus, -.btn-warning.active:focus, -.btn-warning.active:hover, -.btn-warning:active.focus, -.btn-warning:active:focus, -.btn-warning:active:hover, -.open > .dropdown-toggle.btn-warning.focus, -.open > .dropdown-toggle.btn-warning:focus, -.open > .dropdown-toggle.btn-warning:hover { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} - -.btn-warning.active, -.btn-warning:active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} - -.btn-warning.disabled.focus, -.btn-warning.disabled:focus, -.btn-warning.disabled:hover, -.btn-warning[disabled].focus, -.btn-warning[disabled]:focus, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning.focus, -fieldset[disabled] .btn-warning:focus, -fieldset[disabled] .btn-warning:hover { - 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 > .dropdown-toggle.btn-danger { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} - -.btn-danger.active.focus, -.btn-danger.active:focus, -.btn-danger.active:hover, -.btn-danger:active.focus, -.btn-danger:active:focus, -.btn-danger:active:hover, -.open > .dropdown-toggle.btn-danger.focus, -.open > .dropdown-toggle.btn-danger:focus, -.open > .dropdown-toggle.btn-danger:hover { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} - -.btn-danger.active, -.btn-danger:active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} - -.btn-danger.disabled.focus, -.btn-danger.disabled:focus, -.btn-danger.disabled:hover, -.btn-danger[disabled].focus, -.btn-danger[disabled]:focus, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger.focus, -fieldset[disabled] .btn-danger:focus, -fieldset[disabled] .btn-danger:hover { - 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:active, -.btn-link:focus, -.btn-link:hover { - border-color: transparent; -} - -.btn-link:focus, -.btn-link:hover { - color: #23527c; - text-decoration: underline; - background-color: transparent; -} - -.btn-link[disabled]:focus, -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:focus, -fieldset[disabled] .btn-link:hover { - color: #777; - text-decoration: none; -} - -.btn-group-lg > .btn, -.btn-lg { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} - -.btn-group-sm > .btn, -.btn-sm { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-group-xs > .btn, -.btn-xs { - 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=button].btn-block, -input[type=reset].btn-block, -input[type=submit].btn-block { - width: 100%; -} - -.fade { - opacity: 0; - -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; - transition: opacity .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-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .35s; - -o-transition-duration: .35s; - transition-duration: .35s; - -webkit-transition-property: height,visibility; - -o-transition-property: height,visibility; - transition-property: height,visibility; -} - -.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; -} - -.dropdown, -.dropup { - 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; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0,0,0,.15); - border-radius: 4px; - -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175); - box-shadow: 0 6px 12px rgba(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.42857143; - color: #333; - white-space: nowrap; -} - -.dropdown-menu > li > a:focus, -.dropdown-menu > li > a:hover { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} - -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:focus, -.dropdown-menu > .active > a:hover { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} - -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:focus, -.dropdown-menu > .disabled > a:hover { - color: #777; -} - -.dropdown-menu > .disabled > a:focus, -.dropdown-menu > .disabled > a:hover { - 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.42857143; - color: #777; - 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 { - right: auto; - left: 0; - } -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} - -.btn-group-vertical > .btn, -.btn-group > .btn { - position: relative; - float: left; -} - -.btn-group-vertical > .btn.active, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:hover, -.btn-group > .btn.active, -.btn-group > .btn:active, -.btn-group > .btn:focus, -.btn-group > .btn:hover { - 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 .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 { - padding-right: 12px; - padding-left: 12px; -} - -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125); - box-shadow: inset 0 3px 5px rgba(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 { - border-width: 5px 5px 0; - border-bottom-width: 0; -} - -.dropup .btn-lg .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 > .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=checkbox], -[data-toggle=buttons] > .btn input[type=radio], -[data-toggle=buttons] > .btn-group > .btn input[type=checkbox], -[data-toggle=buttons] > .btn-group > .btn input[type=radio] { - 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-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-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 46px; - line-height: 46px; -} - -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn, -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn { - height: auto; -} - -.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-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 30px; - line-height: 30px; -} - -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn, -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn { - height: auto; -} - -.input-group .form-control, -.input-group-addon, -.input-group-btn { - display: table-cell; -} - -.input-group .form-control:not(:first-child):not(:last-child), -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn: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: #555; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 4px; -} - -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} - -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} - -.input-group-addon input[type=checkbox], -.input-group-addon input[type=radio] { - 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-group:not(:last-child) > .btn, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { - 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:first-child > .btn-group:not(:first-child) > .btn, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle { - 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:active, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:hover { - 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 > li { - position: relative; - display: block; -} - -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} - -.nav > li > a:focus, -.nav > li > a:hover { - text-decoration: none; - background-color: #eee; -} - -.nav > li.disabled > a { - color: #777; -} - -.nav > li.disabled > a:focus, -.nav > li.disabled > a:hover { - color: #777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} - -.nav .open > a, -.nav .open > a:focus, -.nav .open > a:hover { - background-color: #eee; - 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.42857143; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} - -.nav-tabs > li > a:hover { - border-color: #eee #eee #ddd; -} - -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:focus, -.nav-tabs > li.active > a:hover { - color: #555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} - -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} - -.nav-tabs.nav-justified > li { - float: none; -} - -.nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} - -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} - -@media (min-width:768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} - -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} - -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:focus, -.nav-tabs.nav-justified > .active > a:hover { - border: 1px solid #ddd; -} - -@media (min-width:768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:hover { - border-bottom-color: #fff; - } -} - -.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:focus, -.nav-pills > li.active > a:hover { - color: #fff; - background-color: #337ab7; -} - -.nav-stacked > li { - float: none; -} - -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} - -.nav-justified { - width: 100%; -} - -.nav-justified > li { - float: none; -} - -.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 { - display: table-cell; - width: 1%; - } - - .nav-justified > li > a { - margin-bottom: 0; - } -} - -.nav-tabs-justified { - border-bottom: 0; -} - -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 4px; -} - -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:focus, -.nav-tabs-justified > .active > a:hover { - border: 1px solid #ddd; -} - -@media (min-width:768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:focus, - .nav-tabs-justified > .active > a:hover { - 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; -} - -@media (min-width:768px) { - .navbar { - border-radius: 4px; - } -} - -@media (min-width:768px) { - .navbar-header { - float: left; - } -} - -.navbar-collapse { - padding-right: 15px; - padding-left: 15px; - overflow-x: visible; - -webkit-overflow-scrolling: touch; - border-top: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1); - box-shadow: inset 0 1px 0 rgba(255,255,255,.1); -} - -.navbar-collapse.in { - overflow-y: auto; -} - -@media (min-width:768px) { - .navbar-collapse { - width: auto; - border-top: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - - .navbar-collapse.collapse { - display: block; - height: auto; - padding-bottom: 0; - overflow: visible; - } - - .navbar-collapse.in { - overflow-y: visible; - } - - .navbar-fixed-bottom .navbar-collapse, - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse { - padding-right: 0; - padding-left: 0; - } -} - -.navbar-fixed-bottom .navbar-collapse, -.navbar-fixed-top .navbar-collapse { - max-height: 340px; -} - -@media (max-device-width:480px) and (orientation:landscape) { - .navbar-fixed-bottom .navbar-collapse, - .navbar-fixed-top .navbar-collapse { - max-height: 200px; - } -} - -.container-fluid > .navbar-collapse, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container > .navbar-header { - margin-right: -15px; - margin-left: -15px; -} - -@media (min-width:768px) { - .container-fluid > .navbar-collapse, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container > .navbar-header { - 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-fixed-bottom, -.navbar-fixed-top { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} - -@media (min-width:768px) { - .navbar-fixed-bottom, - .navbar-fixed-top { - 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; -} - -.navbar-brand { - float: left; - height: 50px; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; -} - -.navbar-brand:focus, -.navbar-brand:hover { - 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-top: 8px; - margin-right: 15px; - 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; - -webkit-box-shadow: none; - box-shadow: none; - } - - .navbar-nav .open .dropdown-menu .dropdown-header, - .navbar-nav .open .dropdown-menu > li > a { - padding: 5px 15px 5px 25px; - } - - .navbar-nav .open .dropdown-menu > li > a { - line-height: 20px; - } - - .navbar-nav .open .dropdown-menu > li > a:focus, - .navbar-nav .open .dropdown-menu > li > a:hover { - 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-top: 8px; - margin-right: -15px; - margin-bottom: 8px; - margin-left: -15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1); - box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1); -} - -@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 .form-control, - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn { - width: auto; - } - - .navbar-form .input-group > .form-control { - width: 100%; - } - - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - - .navbar-form .checkbox, - .navbar-form .radio { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - - .navbar-form .checkbox label, - .navbar-form .radio label { - padding-left: 0; - } - - .navbar-form .checkbox input[type=checkbox], - .navbar-form .radio input[type=radio] { - 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 { - margin-top: 10px; - margin-bottom: 10px; -} - -.navbar-btn.btn-xs { - 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; - } - - .navbar-right { - float: right; - 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:focus, -.navbar-default .navbar-brand:hover { - 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:focus, -.navbar-default .navbar-nav > li > a:hover { - color: #333; - background-color: transparent; -} - -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:focus, -.navbar-default .navbar-nav > .active > a:hover { - color: #555; - background-color: #e7e7e7; -} - -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:focus, -.navbar-default .navbar-nav > .disabled > a:hover { - color: #ccc; - background-color: transparent; -} - -.navbar-default .navbar-toggle { - border-color: #ddd; -} - -.navbar-default .navbar-toggle:focus, -.navbar-default .navbar-toggle:hover { - 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-nav > .open > a, -.navbar-default .navbar-nav > .open > a:focus, -.navbar-default .navbar-nav > .open > a:hover { - 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:focus, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover { - color: #333; - background-color: transparent; - } - - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover { - color: #555; - background-color: #e7e7e7; - } - - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover { - color: #ccc; - background-color: transparent; - } -} - -.navbar-default .navbar-link { - color: #777; -} - -.navbar-default .navbar-link:hover { - color: #333; -} - -.navbar-default .btn-link { - color: #777; -} - -.navbar-default .btn-link:focus, -.navbar-default .btn-link:hover { - color: #333; -} - -.navbar-default .btn-link[disabled]:focus, -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:focus, -fieldset[disabled] .navbar-default .btn-link:hover { - color: #ccc; -} - -.navbar-inverse { - background-color: #222; - border-color: #080808; -} - -.navbar-inverse .navbar-brand { - color: #9d9d9d; -} - -.navbar-inverse .navbar-brand:focus, -.navbar-inverse .navbar-brand:hover { - 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:focus, -.navbar-inverse .navbar-nav > li > a:hover { - color: #fff; - background-color: transparent; -} - -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:focus, -.navbar-inverse .navbar-nav > .active > a:hover { - color: #fff; - background-color: #080808; -} - -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:focus, -.navbar-inverse .navbar-nav > .disabled > a:hover { - color: #444; - background-color: transparent; -} - -.navbar-inverse .navbar-toggle { - border-color: #333; -} - -.navbar-inverse .navbar-toggle:focus, -.navbar-inverse .navbar-toggle:hover { - 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-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:focus, -.navbar-inverse .navbar-nav > .open > a:hover { - color: #fff; - background-color: #080808; -} - -@media (max-width:767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #080808; - } - - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; - } - - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #9d9d9d; - } - - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover { - color: #fff; - background-color: transparent; - } - - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover { - color: #fff; - background-color: #080808; - } - - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover { - color: #444; - background-color: transparent; - } -} - -.navbar-inverse .navbar-link { - color: #9d9d9d; -} - -.navbar-inverse .navbar-link:hover { - color: #fff; -} - -.navbar-inverse .btn-link { - color: #9d9d9d; -} - -.navbar-inverse .btn-link:focus, -.navbar-inverse .btn-link:hover { - color: #fff; -} - -.navbar-inverse .btn-link[disabled]:focus, -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:focus, -fieldset[disabled] .navbar-inverse .btn-link:hover { - 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: "/\00a0"; -} - -.breadcrumb > .active { - color: #777; -} - -.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.42857143; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #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 > li > a:focus, -.pagination > li > a:hover, -.pagination > li > span:focus, -.pagination > li > span:hover { - z-index: 2; - color: #23527c; - background-color: #eee; - border-color: #ddd; -} - -.pagination > .active > a, -.pagination > .active > a:focus, -.pagination > .active > a:hover, -.pagination > .active > span, -.pagination > .active > span:focus, -.pagination > .active > span:hover { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} - -.pagination > .disabled > a, -.pagination > .disabled > a:focus, -.pagination > .disabled > a:hover, -.pagination > .disabled > span, -.pagination > .disabled > span:focus, -.pagination > .disabled > span:hover { - color: #777; - 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 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:focus, -.pager li > a:hover { - text-decoration: none; - background-color: #eee; -} - -.pager .next > a, -.pager .next > span { - float: right; -} - -.pager .previous > a, -.pager .previous > span { - float: left; -} - -.pager .disabled > a, -.pager .disabled > a:focus, -.pager .disabled > a:hover, -.pager .disabled > span { - color: #777; - 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; -} - -a.label:focus, -a.label:hover { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.label:empty { - display: none; -} - -.btn .label { - position: relative; - top: -1px; -} - -.label-default { - background-color: #777; -} - -.label-default[href]:focus, -.label-default[href]:hover { - background-color: #5e5e5e; -} - -.label-primary { - background-color: #337ab7; -} - -.label-primary[href]:focus, -.label-primary[href]:hover { - background-color: #286090; -} - -.label-success { - background-color: #5cb85c; -} - -.label-success[href]:focus, -.label-success[href]:hover { - background-color: #449d44; -} - -.label-info { - background-color: #5bc0de; -} - -.label-info[href]:focus, -.label-info[href]:hover { - background-color: #31b0d5; -} - -.label-warning { - background-color: #f0ad4e; -} - -.label-warning[href]:focus, -.label-warning[href]:hover { - background-color: #ec971f; -} - -.label-danger { - background-color: #d9534f; -} - -.label-danger[href]:focus, -.label-danger[href]:hover { - background-color: #c9302c; -} - -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: 700; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777; - border-radius: 10px; -} - -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.btn-group-xs > .btn .badge, -.btn-xs .badge { - top: 0; - padding: 1px 5px; -} - -a.badge:focus, -a.badge:hover { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.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; -} - -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eee; -} - -.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.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border .2s ease-in-out; - -o-transition: border .2s ease-in-out; - transition: border .2s ease-in-out; -} - -.thumbnail a > img, -.thumbnail > img { - margin-right: auto; - margin-left: auto; -} - -a.thumbnail.active, -a.thumbnail:focus, -a.thumbnail:hover { - border-color: #337ab7; -} - -.thumbnail .caption { - padding: 9px; - color: #333; -} - -.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: 700; -} - -.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; - } -} - -@-o-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,.1); - box-shadow: inset 0 1px 2px rgba(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,.15); - box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); - -webkit-transition: width .6s ease; - -o-transition: width .6s ease; - transition: width .6s ease; -} - -.progress-bar-striped, -.progress-striped .progress-bar { - background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - -webkit-background-size: 40px 40px; - background-size: 40px 40px; -} - -.progress-bar.active, -.progress.active .progress-bar { - -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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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-body, -.media-left, -.media-right { - 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; -} - -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:focus, -a.list-group-item:hover, -button.list-group-item:focus, -button.list-group-item:hover { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} - -button.list-group-item { - width: 100%; - text-align: left; -} - -.list-group-item.disabled, -.list-group-item.disabled:focus, -.list-group-item.disabled:hover { - color: #777; - cursor: not-allowed; - background-color: #eee; -} - -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading { - color: inherit; -} - -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text { - color: #777; -} - -.list-group-item.active, -.list-group-item.active:focus, -.list-group-item.active:hover { - 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: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, -.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 { - color: inherit; -} - -.list-group-item.active .list-group-item-text, -.list-group-item.active:focus .list-group-item-text, -.list-group-item.active:hover .list-group-item-text { - color: #c7ddef; -} - -.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:focus, -a.list-group-item-success:hover, -button.list-group-item-success:focus, -button.list-group-item-success:hover { - color: #3c763d; - background-color: #d0e9c6; -} - -a.list-group-item-success.active, -a.list-group-item-success.active:focus, -a.list-group-item-success.active:hover, -button.list-group-item-success.active, -button.list-group-item-success.active:focus, -button.list-group-item-success.active:hover { - 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:focus, -a.list-group-item-info:hover, -button.list-group-item-info:focus, -button.list-group-item-info:hover { - color: #31708f; - background-color: #c4e3f3; -} - -a.list-group-item-info.active, -a.list-group-item-info.active:focus, -a.list-group-item-info.active:hover, -button.list-group-item-info.active, -button.list-group-item-info.active:focus, -button.list-group-item-info.active:hover { - 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:focus, -a.list-group-item-warning:hover, -button.list-group-item-warning:focus, -button.list-group-item-warning:hover { - color: #8a6d3b; - background-color: #faf2cc; -} - -a.list-group-item-warning.active, -a.list-group-item-warning.active:focus, -a.list-group-item-warning.active:hover, -button.list-group-item-warning.active, -button.list-group-item-warning.active:focus, -button.list-group-item-warning.active:hover { - 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:focus, -a.list-group-item-danger:hover, -button.list-group-item-danger:focus, -button.list-group-item-danger:hover { - color: #a94442; - background-color: #ebcccc; -} - -a.list-group-item-danger.active, -a.list-group-item-danger.active:focus, -a.list-group-item-danger.active:hover, -button.list-group-item-danger.active, -button.list-group-item-danger.active:focus, -button.list-group-item-danger.active:hover { - 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,.05); - box-shadow: 0 1px 1px rgba(0,0,0,.05); -} - -.panel-body { - padding: 15px; -} - -.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 > .small, -.panel-title > .small > a, -.panel-title > a, -.panel-title > small, -.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 > .panel-collapse > .table, -.panel > .table, -.panel > .table-responsive > .table { - margin-bottom: 0; -} - -.panel > .panel-collapse > .table caption, -.panel > .table caption, -.panel > .table-responsive > .table caption { - padding-right: 15px; - padding-left: 15px; -} - -.panel > .table-responsive:first-child > .table:first-child, -.panel > .table:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} - -.panel > .table-responsive:first-child > .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:first-child > tbody:first-child > tr:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; -} - -.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, -.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: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:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child { - border-top-left-radius: 3px; -} - -.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, -.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: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:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child { - border-top-right-radius: 3px; -} - -.panel > .table-responsive:last-child > .table:last-child, -.panel > .table:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} - -.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, -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} - -.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, -.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 { - border-bottom-left-radius: 3px; -} - -.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, -.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 { - 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 td, -.panel > .table > tbody:first-child > tr:first-child th { - border-top: 0; -} - -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} - -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child { - border-left: 0; -} - -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child { - border-right: 0; -} - -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .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, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > 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 > .list-group, -.panel-group .panel-heading + .panel-collapse > .panel-body { - 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: #333; - 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: #333; -} - -.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 embed, -.embed-responsive iframe, -.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,.05); - box-shadow: inset 0 1px 1px rgba(0,0,0,.05); -} - -.well blockquote { - border-color: #ddd; - border-color: rgba(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: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: .2; -} - -.close:focus, -.close:hover { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: .5; -} - -button.close { - -webkit-appearance: none; - padding: 0; - cursor: pointer; - background: 0 0; - border: 0; -} - -.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-transition: -webkit-transform .3s ease-out; - -o-transition: -o-transform .3s ease-out; - transition: transform .3s ease-out; - -webkit-transform: translate(0,-25%); - -ms-transform: translate(0,-25%); - -o-transform: translate(0,-25%); - transform: translate(0,-25%); -} - -.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; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #999; - border: 1px solid rgba(0,0,0,.2); - border-radius: 6px; - outline: 0; - -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5); - box-shadow: 0 3px 9px rgba(0,0,0,.5); -} - -.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: .5; -} - -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} - -.modal-header .close { - margin-top: -2px; -} - -.modal-title { - margin: 0; - line-height: 1.42857143; -} - -.modal-body { - position: relative; - padding: 15px; -} - -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} - -.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,.5); - box-shadow: 0 5px 15px rgba(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-size: 12px; - font-style: normal; - font-weight: 400; - line-height: 1.42857143; - 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; - filter: alpha(opacity=0); - opacity: 0; - line-break: auto; -} - -.tooltip.in { - filter: alpha(opacity=90); - opacity: .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-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; -} - -.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; -} - -.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-size: 14px; - font-style: normal; - font-weight: 400; - line-height: 1.42857143; - 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; - background-color: #fff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #ccc; - border: 1px solid rgba(0,0,0,.2); - border-radius: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); - box-shadow: 0 5px 10px rgba(0,0,0,.2); - line-break: auto; -} - -.popover.top { - margin-top: -10px; -} - -.popover.right { - margin-left: 10px; -} - -.popover.bottom { - margin-top: 10px; -} - -.popover.left { - margin-left: -10px; -} - -.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; -} - -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} - -.popover > .arrow { - border-width: 11px; -} - -.popover > .arrow:after { - content: ""; - border-width: 10px; -} - -.popover.top > .arrow { - bottom: -11px; - left: 50%; - margin-left: -11px; - border-top-color: #999; - border-top-color: rgba(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: #999; - border-right-color: rgba(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: #999; - border-bottom-color: rgba(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: #999; - border-left-color: rgba(0,0,0,.25); -} - -.popover.left > .arrow:after { - right: 1px; - bottom: -10px; - content: " "; - border-right-width: 0; - border-left-color: #fff; -} - -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} - -.carousel-inner > .item { - position: relative; - display: none; - -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; - transition: .6s ease-in-out left; -} - -.carousel-inner > .item > a > img, -.carousel-inner > .item > img { - line-height: 1; -} - -@media all and (transform-3d),(-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; - } - - .carousel-inner > .item.active.right, - .carousel-inner > .item.next { - left: 0; - -webkit-transform: translate3d(100%,0,0); - transform: translate3d(100%,0,0); - } - - .carousel-inner > .item.active.left, - .carousel-inner > .item.prev { - left: 0; - -webkit-transform: translate3d(-100%,0,0); - transform: translate3d(-100%,0,0); - } - - .carousel-inner > .item.active, - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right { - left: 0; - -webkit-transform: translate3d(0,0,0); - transform: translate3d(0,0,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,.6); - background-color: rgba(0,0,0,0); - filter: alpha(opacity=50); - opacity: .5; -} - -.carousel-control.left { - background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%); - background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%); - background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001))); - background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(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,.0001) 0,rgba(0,0,0,.5) 100%); - background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%); - background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5))); - background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; -} - -.carousel-control:focus, -.carousel-control:hover { - color: #fff; - text-decoration: none; - filter: alpha(opacity=90); - outline: 0; - opacity: .9; -} - -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right, -.carousel-control .icon-next, -.carousel-control .icon-prev { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; - margin-top: -10px; -} - -.carousel-control .glyphicon-chevron-left, -.carousel-control .icon-prev { - left: 50%; - margin-left: -10px; -} - -.carousel-control .glyphicon-chevron-right, -.carousel-control .icon-next { - right: 50%; - margin-right: -10px; -} - -.carousel-control .icon-next, -.carousel-control .icon-prev { - 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,.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-next, - .carousel-control .icon-prev { - 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; - } -} - -.btn-group-vertical > .btn-group:after, -.btn-group-vertical > .btn-group:before, -.btn-toolbar:after, -.btn-toolbar:before, -.clearfix:after, -.clearfix:before, -.container-fluid:after, -.container-fluid:before, -.container:after, -.container:before, -.dl-horizontal dd:after, -.dl-horizontal dd:before, -.form-horizontal .form-group:after, -.form-horizontal .form-group:before, -.modal-footer:after, -.modal-footer:before, -.modal-header:after, -.modal-header:before, -.nav:after, -.nav:before, -.navbar-collapse:after, -.navbar-collapse:before, -.navbar-header:after, -.navbar-header:before, -.navbar:after, -.navbar:before, -.pager:after, -.pager:before, -.panel-body:after, -.panel-body:before, -.row:after, -.row:before { - display: table; - content: " "; -} - -.btn-group-vertical > .btn-group:after, -.btn-toolbar:after, -.clearfix:after, -.container-fluid:after, -.container:after, -.dl-horizontal dd:after, -.form-horizontal .form-group:after, -.modal-footer:after, -.modal-header:after, -.nav:after, -.navbar-collapse:after, -.navbar-header:after, -.navbar:after, -.pager:after, -.panel-body:after, -.row:after { - clear: both; -} - -.center-block { - display: block; - margin-right: auto; - margin-left: auto; -} - -.pull-right { - float: right; -} - -.pull-left { - float: left; -} - -.hide { - display: none; -} - -.show { - display: block; -} - -.invisible { - visibility: hidden; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.hidden { - display: none; -} - -.affix { - position: fixed; -} - -@-ms-viewport { - width: device-width; -} - -.visible-lg, -.visible-md, -.visible-sm, -.visible-xs { - display: none; -} - -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block { - display: none; -} - -@media (max-width:767px) { - .visible-xs { - display: block; - } - - table.visible-xs { - display: table; - } - - tr.visible-xs { - display: table-row; - } - - td.visible-xs, - th.visible-xs { - display: table-cell; - } -} - -@media (max-width:767px) { - .visible-xs-block { - display: block; - } -} - -@media (max-width:767px) { - .visible-xs-inline { - display: inline; - } -} - -@media (max-width:767px) { - .visible-xs-inline-block { - display: inline-block; - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm { - display: block; - } - - table.visible-sm { - display: table; - } - - tr.visible-sm { - display: table-row; - } - - td.visible-sm, - th.visible-sm { - display: table-cell; - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm-block { - display: block; - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm-inline { - display: inline; - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm-inline-block { - display: inline-block; - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md { - display: block; - } - - table.visible-md { - display: table; - } - - tr.visible-md { - display: table-row; - } - - td.visible-md, - th.visible-md { - display: table-cell; - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md-block { - display: block; - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md-inline { - display: inline; - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md-inline-block { - display: inline-block; - } -} - -@media (min-width:1200px) { - .visible-lg { - display: block; - } - - table.visible-lg { - display: table; - } - - tr.visible-lg { - display: table-row; - } - - td.visible-lg, - th.visible-lg { - display: table-cell; - } -} - -@media (min-width:1200px) { - .visible-lg-block { - display: block; - } -} - -@media (min-width:1200px) { - .visible-lg-inline { - display: inline; - } -} - -@media (min-width:1200px) { - .visible-lg-inline-block { - display: inline-block; - } -} - -@media (max-width:767px) { - .hidden-xs { - display: none; - } -} - -@media (min-width:768px) and (max-width:991px) { - .hidden-sm { - display: none; - } -} - -@media (min-width:992px) and (max-width:1199px) { - .hidden-md { - display: none; - } -} - -@media (min-width:1200px) { - .hidden-lg { - display: none; - } -} - -.visible-print { - display: none; -} - -@media print { - .visible-print { - display: block; - } - - table.visible-print { - display: table; - } - - tr.visible-print { - display: table-row; - } - - td.visible-print, - th.visible-print { - display: table-cell; - } -} - -.visible-print-block { - display: none; -} - -@media print { - .visible-print-block { - display: block; - } -} - -.visible-print-inline { - display: none; -} - -@media print { - .visible-print-inline { - display: inline; - } -} - -.visible-print-inline-block { - display: none; -} - -@media print { - .visible-print-inline-block { - display: inline-block; - } -} - -@media print { - .hidden-print { - display: none; - } -} - -@media (max-width:767px) { - .container { - width: 100%; - } -} - -@media (min-width:1600px) { - .container { - width: 1570px; - } -} - -.password-strength-meter { - margin: 10px 0; - font-size: 0.9rem; -} - -.clear { - clear: both; -} - -@media (min-width:1600px) { - .col-xlg-1, - .col-xlg-2, - .col-xlg-3, - .col-xlg-4, - .col-xlg-5, - .col-xlg-6, - .col-xlg-7, - .col-xlg-8, - .col-xlg-9, - .col-xlg-10, - .col-xlg-11, - .col-xlg-12 { - float: left; - } - - .col-xlg-12 { - width: 100%; - } - - .col-xlg-11 { - width: 91.66666667%; - } - - .col-xlg-10 { - width: 83.33333333%; - } - - .col-xlg-9 { - width: 75%; - } - - .col-xlg-8 { - width: 66.66666667%; - } - - .col-xlg-7 { - width: 58.33333333%; - } - - .col-xlg-6 { - width: 50%; - } - - .col-xlg-5 { - width: 41.66666667%; - } - - .col-xlg-4 { - width: 33.33333333%; - } - - .col-xlg-3 { - width: 25%; - } - - .col-xlg-2 { - width: 16.66666667%; - } - - .col-xlg-1 { - width: 8.33333333%; - } - - .col-xlg-pull-12 { - right: 100%; - } - - .col-xlg-pull-11 { - right: 91.66666667%; - } - - .col-xlg-pull-10 { - right: 83.33333333%; - } - - .col-xlg-pull-9 { - right: 75%; - } - - .col-xlg-pull-8 { - right: 66.66666667%; - } - - .col-xlg-pull-7 { - right: 58.33333333%; - } - - .col-xlg-pull-6 { - right: 50%; - } - - .col-xlg-pull-5 { - right: 41.66666667%; - } - - .col-xlg-pull-4 { - right: 33.33333333%; - } - - .col-xlg-pull-3 { - right: 25%; - } - - .col-xlg-pull-2 { - right: 16.66666667%; - } - - .col-xlg-pull-1 { - right: 8.33333333%; - } - - .col-xlg-pull-0 { - right: auto; - } - - .col-xlg-push-12 { - left: 100%; - } - - .col-xlg-push-11 { - left: 91.66666667%; - } - - .col-xlg-push-10 { - left: 83.33333333%; - } - - .col-xlg-push-9 { - left: 75%; - } - - .col-xlg-push-8 { - left: 66.66666667%; - } - - .col-xlg-push-7 { - left: 58.33333333%; - } - - .col-xlg-push-6 { - left: 50%; - } - - .col-xlg-push-5 { - left: 41.66666667%; - } - - .col-xlg-push-4 { - left: 33.33333333%; - } - - .col-xlg-push-3 { - left: 25%; - } - - .col-xlg-push-2 { - left: 16.66666667%; - } - - .col-xlg-push-1 { - left: 8.33333333%; - } - - .col-xlg-push-0 { - left: auto; - } - - .col-xlg-offset-12 { - margin-left: 100%; - } - - .col-xlg-offset-11 { - margin-left: 91.66666667%; - } - - .col-xlg-offset-10 { - margin-left: 83.33333333%; - } - - .col-xlg-offset-9 { - margin-left: 75%; - } - - .col-xlg-offset-8 { - margin-left: 66.66666667%; - } - - .col-xlg-offset-7 { - margin-left: 58.33333333%; - } - - .col-xlg-offset-6 { - margin-left: 50%; - } - - .col-xlg-offset-5 { - margin-left: 41.66666667%; - } - - .col-xlg-offset-4 { - margin-left: 33.33333333%; - } - - .col-xlg-offset-3 { - margin-left: 25%; - } - - .col-xlg-offset-2 { - margin-left: 16.66666667%; - } - - .col-xlg-offset-1 { - margin-left: 8.33333333%; - } - - .col-xlg-offset-0 { - margin-left: 0%; - } -} - -.col-xs-5ths, -.col-sm-5ths, -.col-md-5ths, -.col-lg-5ths, -.col-xl-5ths { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} - -.col-xs-5ths { - width: 20%; - float: left; -} - -@media (min-width:768px) { - .col-sm-5ths { - width: 20%; - float: left; - } -} - -@media (min-width:992px) { - .col-md-5ths { - width: 20%; - float: left; - } -} - -@media (min-width:1200px) { - .col-lg-5ths { - width: 20%; - float: left; - } -} - -@media (min-width:1500px) { - .col-xl-5ths { - width: 20%; - float: left; - } -} - -@media (min-width:1200px) and (max-width:1599px) { - .hidden-lg-to-xlg { - display: none; - } -} - -@media (min-width:1600px) { - .hidden-xlg { - display: none; - } -} - -.modal-open { - overflow: hidden; -} - -.modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 2060; - -webkit-overflow-scrolling: touch; - outline: 0; -} - -.modal.fade .modal-dialog { - transform: translate(0, -25%); - -webkit-transform: translate(0, -25%); - -moz-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-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 { - transform: translate(0, 0); - -webkit-transform: translate(0, 0); - -moz-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} - -.modal-content { - box-shadow: 0 3px 9px rgba(0,0,0,0.5); - position: relative; - background-color: #fff; - border: 1px solid #999; - border: 1px solid rgba(0,0,0,0.2); - border-radius: 6px; - background-clip: padding-box; - outline: 0; - padding: 45px; -} - -@media (max-width:991px) { - .modal-content { - padding: 29px; - } -} - -@media (max-width:767px) { - .modal-content { - padding: 16px; - } -} - -.modal-content .close { - margin-top: -50px; - margin-right: -38px; - font-size: 50px; - font-weight: lighter; - opacity: 0.8; -} - -@media (max-width:991px) { - .modal-content .close { - margin-top: -27px; - margin-right: -17px; - } -} - -.modal-content > .close { - padding: 15px; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 2050; - background-color: #000; -} - -.modal-backdrop.fade { - opacity: 0; -} - -.modal-backdrop.in { - opacity: .5; -} - -.modal-header { - padding: 15px; - border-bottom: none; -} - -.modal-header h4 { - color: #000; - font-size: 24px; - font-weight: bold; -} - -.modal-title { - margin: 0; - line-height: 1.6; -} - -.modal-body { - position: relative; - padding: 15px; -} - -.modal-body p { - margin-bottom: 32px; - color: #7f7f7f; -} - -.modal-body .input label { - text-transform: uppercase; - color: #004a99; - font-size: 10px; - font-weight: bold; - letter-spacing: 1.4px; -} - -.modal-body input[type="text"] { - width: 100%; - padding: 10px 0; -} - -.modal-footer { - padding: 15px; - text-align: right; - border-top: none; -} - -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} - -.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; -} - -#bikelocal-modal { - padding-left: 0; -} - -#bikelocal-modal .modal-dialog { - width: 90vw; - margin: 0 auto; -} - -@media (max-width:767px) { - #bikelocal-modal .modal-dialog { - width: 100%; - } -} - -#bikelocal-modal .modal-dialog .modal-content { - height: 100vh; - border-radius: 0; -} - -#bikelocal-modal .modal-dialog .modal-content .modal-body, -#bikelocal-modal .modal-dialog .modal-content iframe { - height: 100%; -} - -@media (min-width:768px) { - .modal-dialog { - width: 780px; - margin: 30px auto; - } - - .modal-content { - box-shadow: 0 5px 15px rgba(0,0,0,0.5); - } - - .modal-sm { - width: 300px; - } -} - -@media (min-width:992px) { - .modal-lg { - width: 85%; - } -} - -body .slick-slider { - position: relative; - display: block; - box-sizing: border-box; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -ms-touch-action: auto; - touch-action: auto; - -webkit-tap-highlight-color: transparent; -} - -body .slick-list { - overflow: hidden; - position: relative; - display: block; - margin: 0; - padding: 0; -} - -body .slick-list:focus { - outline: none; -} - -body .slick-list.dragging { - cursor: pointer; - cursor: hand; -} - -body .slick-slider .slick-track, -body .slick-slider .slick-list { - -webkit-transform: translate3d(0, 0, 0); - -moz-transform: translate3d(0, 0, 0); - -ms-transform: translate3d(0, 0, 0); - -o-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} - -body .slick-track { - position: relative; - left: 0; - top: 0; - display: block; -} - -body .slick-track:before, -body .slick-track:after { - content: ""; - display: table; -} - -body .slick-track:after { - clear: both; -} - -.slick-loading body .slick-track { - visibility: hidden; -} - -body .slick-slide { - float: left; - min-height: 1px; -} - -[dir="rtl"] body .slick-slide { - float: right; -} - -body .slick-slide img { - display: block; -} - -body .slick-slide.slick-loading img { - display: none; -} - -body .slick-slide.dragging img { - pointer-events: none; -} - -.slick-initialized body .slick-slide { - display: block; -} - -.slick-loading body .slick-slide { - visibility: hidden; -} - -.slick-vertical body .slick-slide { - display: block; - height: auto; - border: 1px solid transparent; -} - -body .slick-arrow.slick-hidden { - display: none; -} - -/*! jQuery UI - v1.12.1 - 2017-10-17 -* http://jqueryui.com -* Includes: core.css, datepicker.css, theme.css -* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif -* Copyright jQuery Foundation and other contributors; Licensed MIT */ - -.ui-helper-hidden { - display: none; -} - -.ui-helper-hidden-accessible { - border: 0; - clip: rect(0 0 0 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} - -.ui-helper-reset { - margin: 0; - padding: 0; - border: 0; - outline: 0; - line-height: 1.3; - text-decoration: none; - font-size: 100%; - list-style: none; -} - -.ui-helper-clearfix:before, -.ui-helper-clearfix:after { - content: ""; - display: table; - border-collapse: collapse; -} - -.ui-helper-clearfix:after { - clear: both; -} - -.ui-helper-zfix { - width: 100%; - height: 100%; - top: 0; - left: 0; - position: absolute; - opacity: 0; - filter: alpha(opacity=0); -} - -.ui-front { - z-index: 100; -} - -.ui-state-disabled { - cursor: default; - pointer-events: none; -} - -.ui-icon { - display: inline-block; - vertical-align: middle; - margin-top: -.25em; - position: relative; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; -} - -.ui-widget-icon-block { - left: 50%; - margin-left: -8px; - display: block; -} - -.ui-widget-overlay { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.ui-datepicker { - width: 17em; - padding: .2em .2em 0; - display: none; -} - -.ui-datepicker .ui-datepicker-header { - position: relative; - padding: .2em 0; -} - -.ui-datepicker .ui-datepicker-prev, -.ui-datepicker .ui-datepicker-next { - position: absolute; - top: 2px; - width: 1.8em; - height: 1.8em; -} - -.ui-datepicker .ui-datepicker-prev-hover, -.ui-datepicker .ui-datepicker-next-hover { - top: 1px; -} - -.ui-datepicker .ui-datepicker-prev { - left: 2px; -} - -.ui-datepicker .ui-datepicker-next { - right: 2px; -} - -.ui-datepicker .ui-datepicker-prev-hover { - left: 1px; -} - -.ui-datepicker .ui-datepicker-next-hover { - right: 1px; -} - -.ui-datepicker .ui-datepicker-prev span, -.ui-datepicker .ui-datepicker-next span { - display: block; - position: absolute; - left: 50%; - margin-left: -8px; - top: 50%; - margin-top: -8px; -} - -.ui-datepicker .ui-datepicker-title { - margin: 0 2.3em; - line-height: 1.8em; - text-align: center; -} - -.ui-datepicker .ui-datepicker-title select { - font-size: 1em; - margin: 1px 0; -} - -.ui-datepicker select.ui-datepicker-month, -.ui-datepicker select.ui-datepicker-year { - width: 45%; -} - -.ui-datepicker table { - width: 100%; - font-size: .9em; - border-collapse: collapse; - margin: 0 0 .4em; -} - -.ui-datepicker th { - padding: .7em .3em; - text-align: center; - font-weight: bold; - border: 0; -} - -.ui-datepicker td { - border: 0; - padding: 1px; -} - -.ui-datepicker td span, -.ui-datepicker td a { - display: block; - padding: .2em; - text-align: right; - text-decoration: none; -} - -.ui-datepicker .ui-datepicker-buttonpane { - background-image: none; - margin: .7em 0 0 0; - padding: 0 .2em; - border-left: 0; - border-right: 0; - border-bottom: 0; -} - -.ui-datepicker .ui-datepicker-buttonpane button { - float: right; - margin: .5em .2em .4em; - cursor: pointer; - padding: .2em .6em .3em .6em; - width: auto; - overflow: visible; -} - -.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { - float: left; -} - -.ui-datepicker.ui-datepicker-multi { - width: auto; -} - -.ui-datepicker-multi .ui-datepicker-group { - float: left; -} - -.ui-datepicker-multi .ui-datepicker-group table { - width: 95%; - margin: 0 auto .4em; -} - -.ui-datepicker-multi-2 .ui-datepicker-group { - width: 50%; -} - -.ui-datepicker-multi-3 .ui-datepicker-group { - width: 33.3%; -} - -.ui-datepicker-multi-4 .ui-datepicker-group { - width: 25%; -} - -.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { - border-left-width: 0; -} - -.ui-datepicker-multi .ui-datepicker-buttonpane { - clear: left; -} - -.ui-datepicker-row-break { - clear: both; - width: 100%; - font-size: 0; -} - -.ui-datepicker-rtl { - direction: rtl; -} - -.ui-datepicker-rtl .ui-datepicker-prev { - right: 2px; - left: auto; -} - -.ui-datepicker-rtl .ui-datepicker-next { - left: 2px; - right: auto; -} - -.ui-datepicker-rtl .ui-datepicker-prev:hover { - right: 1px; - left: auto; -} - -.ui-datepicker-rtl .ui-datepicker-next:hover { - left: 1px; - right: auto; -} - -.ui-datepicker-rtl .ui-datepicker-buttonpane { - clear: right; -} - -.ui-datepicker-rtl .ui-datepicker-buttonpane button { - float: left; -} - -.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, -.ui-datepicker-rtl .ui-datepicker-group { - float: right; -} - -.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { - border-right-width: 0; - border-left-width: 1px; -} - -.ui-datepicker .ui-icon { - display: block; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; - left: .5em; - top: .3em; -} - -.ui-widget { - font-family: Arial,Helvetica,sans-serif; - font-size: 1em; -} - -.ui-widget .ui-widget { - font-size: 1em; -} - -.ui-widget input, -.ui-widget select, -.ui-widget textarea, -.ui-widget button { - font-family: Arial,Helvetica,sans-serif; - font-size: 1em; -} - -.ui-widget.ui-widget-content { - border: 1px solid #c5c5c5; -} - -.ui-widget-content { - border: 1px solid #ddd; - background: #ffffff; - color: #333333; -} - -.ui-widget-content a { - color: #333333; -} - -.ui-widget-header { - border: 1px solid #ddd; - background: #e9e9e9; - color: #333333; - font-weight: bold; -} - -.ui-widget-header a { - color: #333333; -} - -.ui-state-default, -.ui-widget-content .ui-state-default, -.ui-widget-header .ui-state-default, -.ui-button, -html .ui-button.ui-state-disabled:hover, -html .ui-button.ui-state-disabled:active { - border: 1px solid #c5c5c5; - background: #f6f6f6; - font-weight: normal; - color: #454545; -} - -.ui-state-default a, -.ui-state-default a:link, -.ui-state-default a:visited, -a.ui-button, -a:link.ui-button, -a:visited.ui-button, -.ui-button { - color: #454545; - text-decoration: none; -} - -.ui-state-hover, -.ui-widget-content .ui-state-hover, -.ui-widget-header .ui-state-hover, -.ui-state-focus, -.ui-widget-content .ui-state-focus, -.ui-widget-header .ui-state-focus, -.ui-button:hover, -.ui-button:focus { - border: 1px solid #ccc; - background: #ededed; - font-weight: normal; - color: #2b2b2b; -} - -.ui-state-hover a, -.ui-state-hover a:hover, -.ui-state-hover a:link, -.ui-state-hover a:visited, -.ui-state-focus a, -.ui-state-focus a:hover, -.ui-state-focus a:link, -.ui-state-focus a:visited, -a.ui-button:hover, -a.ui-button:focus { - color: #2b2b2b; - text-decoration: none; -} - -.ui-visual-focus { - box-shadow: 0 0 3px 1px #5e9ed6; -} - -.ui-state-active, -.ui-widget-content .ui-state-active, -.ui-widget-header .ui-state-active, -a.ui-button:active, -.ui-button:active, -.ui-button.ui-state-active:hover { - border: 1px solid #003eff; - background: #007fff; - font-weight: normal; - color: #ffffff; -} - -.ui-icon-background, -.ui-state-active .ui-icon-background { - border: #003eff; - background-color: #ffffff; -} - -.ui-state-active a, -.ui-state-active a:link, -.ui-state-active a:visited { - color: #ffffff; - text-decoration: none; -} - -.ui-state-highlight, -.ui-widget-content .ui-state-highlight, -.ui-widget-header .ui-state-highlight { - border: 1px solid #dad55e; - background: #fffa90; - color: #777620; -} - -.ui-state-checked { - border: 1px solid #dad55e; - background: #fffa90; -} - -.ui-state-highlight a, -.ui-widget-content .ui-state-highlight a, -.ui-widget-header .ui-state-highlight a { - color: #777620; -} - -.ui-state-error, -.ui-widget-content .ui-state-error, -.ui-widget-header .ui-state-error { - border: 1px solid #f1a899; - background: #fddfdf; - color: #5f3f3f; -} - -.ui-state-error a, -.ui-widget-content .ui-state-error a, -.ui-widget-header .ui-state-error a { - color: #5f3f3f; -} - -.ui-state-error-text, -.ui-widget-content .ui-state-error-text, -.ui-widget-header .ui-state-error-text { - color: #5f3f3f; -} - -.ui-priority-primary, -.ui-widget-content .ui-priority-primary, -.ui-widget-header .ui-priority-primary { - font-weight: bold; -} - -.ui-priority-secondary, -.ui-widget-content .ui-priority-secondary, -.ui-widget-header .ui-priority-secondary { - opacity: .7; - filter: alpha(opacity=70); - font-weight: normal; -} - -.ui-state-disabled, -.ui-widget-content .ui-state-disabled, -.ui-widget-header .ui-state-disabled { - opacity: .35; - filter: alpha(opacity=35); - background-image: none; -} - -.ui-state-disabled .ui-icon { - filter: alpha(opacity=35); -} - -.ui-icon { - width: 16px; - height: 16px; -} - -.ui-icon, -.ui-widget-content .ui-icon { - background-image: url("../images/jquery-ui/ui-icons_444444_256x240.png"); -} - -.ui-widget-header .ui-icon { - background-image: url("../images/jquery-ui/ui-icons_444444_256x240.png"); -} - -.ui-state-hover .ui-icon, -.ui-state-focus .ui-icon, -.ui-button:hover .ui-icon, -.ui-button:focus .ui-icon { - background-image: url("../images/jquery-ui/ui-icons_555555_256x240.png"); -} - -.ui-state-active .ui-icon, -.ui-button:active .ui-icon { - background-image: url("../images/jquery-ui/ui-icons_ffffff_256x240.png"); -} - -.ui-state-highlight .ui-icon, -.ui-button .ui-state-highlight.ui-icon { - background-image: url("../images/jquery-ui/ui-icons_777620_256x240.png"); -} - -.ui-state-error .ui-icon, -.ui-state-error-text .ui-icon { - background-image: url("../images/jquery-ui/ui-icons_cc0000_256x240.png"); -} - -.ui-button .ui-icon { - background-image: url("../images/jquery-ui/ui-icons_777777_256x240.png"); -} - -.ui-icon-blank { - background-position: 16px 16px; -} - -.ui-icon-caret-1-n { - background-position: 0 0; -} - -.ui-icon-caret-1-ne { - background-position: -16px 0; -} - -.ui-icon-caret-1-e { - background-position: -32px 0; -} - -.ui-icon-caret-1-se { - background-position: -48px 0; -} - -.ui-icon-caret-1-s { - background-position: -65px 0; -} - -.ui-icon-caret-1-sw { - background-position: -80px 0; -} - -.ui-icon-caret-1-w { - background-position: -96px 0; -} - -.ui-icon-caret-1-nw { - background-position: -112px 0; -} - -.ui-icon-caret-2-n-s { - background-position: -128px 0; -} - -.ui-icon-caret-2-e-w { - background-position: -144px 0; -} - -.ui-icon-triangle-1-n { - background-position: 0 -16px; -} - -.ui-icon-triangle-1-ne { - background-position: -16px -16px; -} - -.ui-icon-triangle-1-e { - background-position: -32px -16px; -} - -.ui-icon-triangle-1-se { - background-position: -48px -16px; -} - -.ui-icon-triangle-1-s { - background-position: -65px -16px; -} - -.ui-icon-triangle-1-sw { - background-position: -80px -16px; -} - -.ui-icon-triangle-1-w { - background-position: -96px -16px; -} - -.ui-icon-triangle-1-nw { - background-position: -112px -16px; -} - -.ui-icon-triangle-2-n-s { - background-position: -128px -16px; -} - -.ui-icon-triangle-2-e-w { - background-position: -144px -16px; -} - -.ui-icon-arrow-1-n { - background-position: 0 -32px; -} - -.ui-icon-arrow-1-ne { - background-position: -16px -32px; -} - -.ui-icon-arrow-1-e { - background-position: -32px -32px; -} - -.ui-icon-arrow-1-se { - background-position: -48px -32px; -} - -.ui-icon-arrow-1-s { - background-position: -65px -32px; -} - -.ui-icon-arrow-1-sw { - background-position: -80px -32px; -} - -.ui-icon-arrow-1-w { - background-position: -96px -32px; -} - -.ui-icon-arrow-1-nw { - background-position: -112px -32px; -} - -.ui-icon-arrow-2-n-s { - background-position: -128px -32px; -} - -.ui-icon-arrow-2-ne-sw { - background-position: -144px -32px; -} - -.ui-icon-arrow-2-e-w { - background-position: -160px -32px; -} - -.ui-icon-arrow-2-se-nw { - background-position: -176px -32px; -} - -.ui-icon-arrowstop-1-n { - background-position: -192px -32px; -} - -.ui-icon-arrowstop-1-e { - background-position: -208px -32px; -} - -.ui-icon-arrowstop-1-s { - background-position: -224px -32px; -} - -.ui-icon-arrowstop-1-w { - background-position: -240px -32px; -} - -.ui-icon-arrowthick-1-n { - background-position: 1px -48px; -} - -.ui-icon-arrowthick-1-ne { - background-position: -16px -48px; -} - -.ui-icon-arrowthick-1-e { - background-position: -32px -48px; -} - -.ui-icon-arrowthick-1-se { - background-position: -48px -48px; -} - -.ui-icon-arrowthick-1-s { - background-position: -64px -48px; -} - -.ui-icon-arrowthick-1-sw { - background-position: -80px -48px; -} - -.ui-icon-arrowthick-1-w { - background-position: -96px -48px; -} - -.ui-icon-arrowthick-1-nw { - background-position: -112px -48px; -} - -.ui-icon-arrowthick-2-n-s { - background-position: -128px -48px; -} - -.ui-icon-arrowthick-2-ne-sw { - background-position: -144px -48px; -} - -.ui-icon-arrowthick-2-e-w { - background-position: -160px -48px; -} - -.ui-icon-arrowthick-2-se-nw { - background-position: -176px -48px; -} - -.ui-icon-arrowthickstop-1-n { - background-position: -192px -48px; -} - -.ui-icon-arrowthickstop-1-e { - background-position: -208px -48px; -} - -.ui-icon-arrowthickstop-1-s { - background-position: -224px -48px; -} - -.ui-icon-arrowthickstop-1-w { - background-position: -240px -48px; -} - -.ui-icon-arrowreturnthick-1-w { - background-position: 0 -64px; -} - -.ui-icon-arrowreturnthick-1-n { - background-position: -16px -64px; -} - -.ui-icon-arrowreturnthick-1-e { - background-position: -32px -64px; -} - -.ui-icon-arrowreturnthick-1-s { - background-position: -48px -64px; -} - -.ui-icon-arrowreturn-1-w { - background-position: -64px -64px; -} - -.ui-icon-arrowreturn-1-n { - background-position: -80px -64px; -} - -.ui-icon-arrowreturn-1-e { - background-position: -96px -64px; -} - -.ui-icon-arrowreturn-1-s { - background-position: -112px -64px; -} - -.ui-icon-arrowrefresh-1-w { - background-position: -128px -64px; -} - -.ui-icon-arrowrefresh-1-n { - background-position: -144px -64px; -} - -.ui-icon-arrowrefresh-1-e { - background-position: -160px -64px; -} - -.ui-icon-arrowrefresh-1-s { - background-position: -176px -64px; -} - -.ui-icon-arrow-4 { - background-position: 0 -80px; -} - -.ui-icon-arrow-4-diag { - background-position: -16px -80px; -} - -.ui-icon-extlink { - background-position: -32px -80px; -} - -.ui-icon-newwin { - background-position: -48px -80px; -} - -.ui-icon-refresh { - background-position: -64px -80px; -} - -.ui-icon-shuffle { - background-position: -80px -80px; -} - -.ui-icon-transfer-e-w { - background-position: -96px -80px; -} - -.ui-icon-transferthick-e-w { - background-position: -112px -80px; -} - -.ui-icon-folder-collapsed { - background-position: 0 -96px; -} - -.ui-icon-folder-open { - background-position: -16px -96px; -} - -.ui-icon-document { - background-position: -32px -96px; -} - -.ui-icon-document-b { - background-position: -48px -96px; -} - -.ui-icon-note { - background-position: -64px -96px; -} - -.ui-icon-mail-closed { - background-position: -80px -96px; -} - -.ui-icon-mail-open { - background-position: -96px -96px; -} - -.ui-icon-suitcase { - background-position: -112px -96px; -} - -.ui-icon-comment { - background-position: -128px -96px; -} - -.ui-icon-person { - background-position: -144px -96px; -} - -.ui-icon-print { - background-position: -160px -96px; -} - -.ui-icon-trash { - background-position: -176px -96px; -} - -.ui-icon-locked { - background-position: -192px -96px; -} - -.ui-icon-unlocked { - background-position: -208px -96px; -} - -.ui-icon-bookmark { - background-position: -224px -96px; -} - -.ui-icon-tag { - background-position: -240px -96px; -} - -.ui-icon-home { - background-position: 0 -112px; -} - -.ui-icon-flag { - background-position: -16px -112px; -} - -.ui-icon-calendar { - background-position: -32px -112px; -} - -.ui-icon-cart { - background-position: -48px -112px; -} - -.ui-icon-pencil { - background-position: -64px -112px; -} - -.ui-icon-clock { - background-position: -80px -112px; -} - -.ui-icon-disk { - background-position: -96px -112px; -} - -.ui-icon-calculator { - background-position: -112px -112px; -} - -.ui-icon-zoomin { - background-position: -128px -112px; -} - -.ui-icon-zoomout { - background-position: -144px -112px; -} - -.ui-icon-search { - background-position: -160px -112px; -} - -.ui-icon-wrench { - background-position: -176px -112px; -} - -.ui-icon-gear { - background-position: -192px -112px; -} - -.ui-icon-heart { - background-position: -208px -112px; -} - -.ui-icon-star { - background-position: -224px -112px; -} - -.ui-icon-link { - background-position: -240px -112px; -} - -.ui-icon-cancel { - background-position: 0 -128px; -} - -.ui-icon-plus { - background-position: -16px -128px; -} - -.ui-icon-plusthick { - background-position: -32px -128px; -} - -.ui-icon-minus { - background-position: -48px -128px; -} - -.ui-icon-minusthick { - background-position: -64px -128px; -} - -.ui-icon-close { - background-position: -80px -128px; -} - -.ui-icon-closethick { - background-position: -96px -128px; -} - -.ui-icon-key { - background-position: -112px -128px; -} - -.ui-icon-lightbulb { - background-position: -128px -128px; -} - -.ui-icon-scissors { - background-position: -144px -128px; -} - -.ui-icon-clipboard { - background-position: -160px -128px; -} - -.ui-icon-copy { - background-position: -176px -128px; -} - -.ui-icon-contact { - background-position: -192px -128px; -} - -.ui-icon-image { - background-position: -208px -128px; -} - -.ui-icon-video { - background-position: -224px -128px; -} - -.ui-icon-script { - background-position: -240px -128px; -} - -.ui-icon-alert { - background-position: 0 -144px; -} - -.ui-icon-info { - background-position: -16px -144px; -} - -.ui-icon-notice { - background-position: -32px -144px; -} - -.ui-icon-help { - background-position: -48px -144px; -} - -.ui-icon-check { - background-position: -64px -144px; -} - -.ui-icon-bullet { - background-position: -80px -144px; -} - -.ui-icon-radio-on { - background-position: -96px -144px; -} - -.ui-icon-radio-off { - background-position: -112px -144px; -} - -.ui-icon-pin-w { - background-position: -128px -144px; -} - -.ui-icon-pin-s { - background-position: -144px -144px; -} - -.ui-icon-play { - background-position: 0 -160px; -} - -.ui-icon-pause { - background-position: -16px -160px; -} - -.ui-icon-seek-next { - background-position: -32px -160px; -} - -.ui-icon-seek-prev { - background-position: -48px -160px; -} - -.ui-icon-seek-end { - background-position: -64px -160px; -} - -.ui-icon-seek-start { - background-position: -80px -160px; -} - -.ui-icon-seek-first { - background-position: -80px -160px; -} - -.ui-icon-stop { - background-position: -96px -160px; -} - -.ui-icon-eject { - background-position: -112px -160px; -} - -.ui-icon-volume-off { - background-position: -128px -160px; -} - -.ui-icon-volume-on { - background-position: -144px -160px; -} - -.ui-icon-power { - background-position: 0 -176px; -} - -.ui-icon-signal-diag { - background-position: -16px -176px; -} - -.ui-icon-signal { - background-position: -32px -176px; -} - -.ui-icon-battery-0 { - background-position: -48px -176px; -} - -.ui-icon-battery-1 { - background-position: -64px -176px; -} - -.ui-icon-battery-2 { - background-position: -80px -176px; -} - -.ui-icon-battery-3 { - background-position: -96px -176px; -} - -.ui-icon-circle-plus { - background-position: 0 -192px; -} - -.ui-icon-circle-minus { - background-position: -16px -192px; -} - -.ui-icon-circle-close { - background-position: -32px -192px; -} - -.ui-icon-circle-triangle-e { - background-position: -48px -192px; -} - -.ui-icon-circle-triangle-s { - background-position: -64px -192px; -} - -.ui-icon-circle-triangle-w { - background-position: -80px -192px; -} - -.ui-icon-circle-triangle-n { - background-position: -96px -192px; -} - -.ui-icon-circle-arrow-e { - background-position: -112px -192px; -} - -.ui-icon-circle-arrow-s { - background-position: -128px -192px; -} - -.ui-icon-circle-arrow-w { - background-position: -144px -192px; -} - -.ui-icon-circle-arrow-n { - background-position: -160px -192px; -} - -.ui-icon-circle-zoomin { - background-position: -176px -192px; -} - -.ui-icon-circle-zoomout { - background-position: -192px -192px; -} - -.ui-icon-circle-check { - background-position: -208px -192px; -} - -.ui-icon-circlesmall-plus { - background-position: 0 -208px; -} - -.ui-icon-circlesmall-minus { - background-position: -16px -208px; -} - -.ui-icon-circlesmall-close { - background-position: -32px -208px; -} - -.ui-icon-squaresmall-plus { - background-position: -48px -208px; -} - -.ui-icon-squaresmall-minus { - background-position: -64px -208px; -} - -.ui-icon-squaresmall-close { - background-position: -80px -208px; -} - -.ui-icon-grip-dotted-vertical { - background-position: 0 -224px; -} - -.ui-icon-grip-dotted-horizontal { - background-position: -16px -224px; -} - -.ui-icon-grip-solid-vertical { - background-position: -32px -224px; -} - -.ui-icon-grip-solid-horizontal { - background-position: -48px -224px; -} - -.ui-icon-gripsmall-diagonal-se { - background-position: -64px -224px; -} - -.ui-icon-grip-diagonal-se { - background-position: -80px -224px; -} - -.ui-corner-all, -.ui-corner-top, -.ui-corner-left, -.ui-corner-tl { - border-top-left-radius: 3px; -} - -.ui-corner-all, -.ui-corner-top, -.ui-corner-right, -.ui-corner-tr { - border-top-right-radius: 3px; -} - -.ui-corner-all, -.ui-corner-bottom, -.ui-corner-left, -.ui-corner-bl { - border-bottom-left-radius: 3px; -} - -.ui-corner-all, -.ui-corner-bottom, -.ui-corner-right, -.ui-corner-br { - border-bottom-right-radius: 3px; -} - -.ui-widget-overlay { - background: #aaaaaa; - opacity: .3; - filter: alpha(opacity=30); -} - -.ui-widget-shadow { - -webkit-box-shadow: 0px 0px 5px #666; - box-shadow: 0px 0px 5px #666; -} - -.select2-container { - box-sizing: border-box; - display: inline-block; - margin: 0; - position: relative; - vertical-align: middle; -} - -.select2-container .select2-selection--single { - box-sizing: border-box; - cursor: pointer; - display: block; - height: 28px; - user-select: none; - -webkit-user-select: none; -} - -.select2-container .select2-selection--single .select2-selection__rendered { - display: block; - padding-left: 8px; - padding-right: 20px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.select2-container .select2-selection--single .select2-selection__clear { - position: relative; -} - -.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { - padding-right: 8px; - padding-left: 20px; -} - -.select2-container .select2-selection--multiple { - box-sizing: border-box; - cursor: pointer; - display: block; - min-height: 32px; - user-select: none; - -webkit-user-select: none; -} - -.select2-container .select2-selection--multiple .select2-selection__rendered { - display: inline-block; - overflow: hidden; - padding-left: 8px; - text-overflow: ellipsis; - white-space: nowrap; -} - -.select2-container .select2-search--inline { - float: left; -} - -.select2-container .select2-search--inline .select2-search__field { - box-sizing: border-box; - border: none; - font-size: 100%; - margin-top: 5px; - padding: 0; -} - -.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.select2-dropdown { - background-color: white; - border: 1px solid #aaa; - border-radius: 4px; - box-sizing: border-box; - display: block; - position: absolute; - left: -100000px; - width: 100%; - z-index: 1051; -} - -.select2-results { - display: block; -} - -.select2-results__options { - list-style: none; - margin: 0; - padding: 0; -} - -.select2-results__option { - padding: 6px; - user-select: none; - -webkit-user-select: none; -} - -.select2-results__option[aria-selected] { - cursor: pointer; -} - -.select2-container--open .select2-dropdown { - left: 0; -} - -.select2-container--open .select2-dropdown--above { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} - -.select2-container--open .select2-dropdown--below { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.select2-search--dropdown { - display: block; - padding: 4px; -} - -.select2-search--dropdown .select2-search__field { - padding: 4px; - width: 100%; - box-sizing: border-box; -} - -.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -.select2-search--dropdown.select2-search--hide { - display: none; -} - -.select2-close-mask { - border: 0; - margin: 0; - padding: 0; - display: block; - position: fixed; - left: 0; - top: 0; - min-height: 100%; - min-width: 100%; - height: auto; - width: auto; - opacity: 0; - z-index: 99; - background-color: #fff; - filter: alpha(opacity=0); -} - -.select2-hidden-accessible { - border: 0; - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - height: 1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; - white-space: nowrap; -} - -.select2-container--default .select2-selection--single { - background-color: #fff; - border: 1px solid #aaa; - border-radius: 4px; -} - -.select2-container--default .select2-selection--single .select2-selection__rendered { - color: #444; - line-height: 28px; -} - -.select2-container--default .select2-selection--single .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: bold; -} - -.select2-container--default .select2-selection--single .select2-selection__placeholder { - color: #999; -} - -.select2-container--default .select2-selection--single .select2-selection__arrow { - height: 26px; - position: absolute; - top: 1px; - right: 1px; - width: 20px; -} - -.select2-container--default .select2-selection--single .select2-selection__arrow b { - border-color: #888 transparent transparent transparent; - border-style: solid; - border-width: 5px 4px 0 4px; - height: 0; - left: 50%; - margin-left: -4px; - margin-top: -2px; - position: absolute; - top: 50%; - width: 0; -} - -.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { - float: left; -} - -.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { - left: 1px; - right: auto; -} - -.select2-container--default.select2-container--disabled .select2-selection--single { - background-color: #eee; - cursor: default; -} - -.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { - display: none; -} - -.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { - border-color: transparent transparent #888 transparent; - border-width: 0 4px 5px 4px; -} - -.select2-container--default .select2-selection--multiple { - background-color: white; - border: 1px solid #aaa; - border-radius: 4px; - cursor: text; -} - -.select2-container--default .select2-selection--multiple .select2-selection__rendered { - box-sizing: border-box; - list-style: none; - margin: 0; - padding: 0 5px; - width: 100%; -} - -.select2-container--default .select2-selection--multiple .select2-selection__rendered li { - list-style: none; -} - -.select2-container--default .select2-selection--multiple .select2-selection__placeholder { - color: #999; - margin-top: 5px; - float: left; -} - -.select2-container--default .select2-selection--multiple .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: bold; - margin-top: 5px; - margin-right: 10px; -} - -.select2-container--default .select2-selection--multiple .select2-selection__choice { - background-color: #e4e4e4; - border: 1px solid #aaa; - border-radius: 4px; - cursor: default; - float: left; - margin-right: 5px; - margin-top: 5px; - padding: 0 5px; -} - -.select2-container--default .select2-selection--multiple .select2-selection__choice__remove { - color: #999; - cursor: pointer; - display: inline-block; - font-weight: bold; - margin-right: 2px; -} - -.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { - color: #333; -} - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { - float: right; -} - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { - margin-left: 5px; - margin-right: auto; -} - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { - margin-left: 2px; - margin-right: auto; -} - -.select2-container--default.select2-container--focus .select2-selection--multiple { - border: solid #000 1px; - outline: 0; -} - -.select2-container--default.select2-container--disabled .select2-selection--multiple { - background-color: #eee; - cursor: default; -} - -.select2-container--default.select2-container--disabled .select2-selection__choice__remove { - display: none; -} - -.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, -.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, -.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} - -.select2-container--default .select2-search--dropdown .select2-search__field { - border: 1px solid #aaa; -} - -.select2-container--default .select2-search--inline .select2-search__field { - background: transparent; - border: none; - outline: 0; - box-shadow: none; - -webkit-appearance: textfield; -} - -.select2-container--default .select2-results > .select2-results__options { - max-height: 200px; - overflow-y: auto; -} - -.select2-container--default .select2-results__option[role=group] { - padding: 0; -} - -.select2-container--default .select2-results__option[aria-disabled=true] { - color: #999; -} - -.select2-container--default .select2-results__option[aria-selected=true] { - background-color: #ddd; -} - -.select2-container--default .select2-results__option .select2-results__option { - padding-left: 1em; -} - -.select2-container--default .select2-results__option .select2-results__option .select2-results__group { - padding-left: 0; -} - -.select2-container--default .select2-results__option .select2-results__option .select2-results__option { - margin-left: -1em; - padding-left: 2em; -} - -.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -2em; - padding-left: 3em; -} - -.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -3em; - padding-left: 4em; -} - -.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -4em; - padding-left: 5em; -} - -.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -5em; - padding-left: 6em; -} - -.select2-container--default .select2-results__option--highlighted[aria-selected] { - background-color: #5897fb; - color: white; -} - -.select2-container--default .select2-results__group { - cursor: default; - display: block; - padding: 6px; -} - -.select2-container--classic .select2-selection--single { - background-color: #f7f7f7; - border: 1px solid #aaa; - border-radius: 4px; - outline: 0; - background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%); - background-image: -o-linear-gradient(top, #fff 50%, #eee 100%); - background-image: linear-gradient(to bottom, #fff 50%, #eee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); -} - -.select2-container--classic .select2-selection--single:focus { - border: 1px solid #5897fb; -} - -.select2-container--classic .select2-selection--single .select2-selection__rendered { - color: #444; - line-height: 28px; -} - -.select2-container--classic .select2-selection--single .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: bold; - margin-right: 10px; -} - -.select2-container--classic .select2-selection--single .select2-selection__placeholder { - color: #999; -} - -.select2-container--classic .select2-selection--single .select2-selection__arrow { - background-color: #ddd; - border: none; - border-left: 1px solid #aaa; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - height: 26px; - position: absolute; - top: 1px; - right: 1px; - width: 20px; - background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%); - background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%); - background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); -} - -.select2-container--classic .select2-selection--single .select2-selection__arrow b { - border-color: #888 transparent transparent transparent; - border-style: solid; - border-width: 5px 4px 0 4px; - height: 0; - left: 50%; - margin-left: -4px; - margin-top: -2px; - position: absolute; - top: 50%; - width: 0; -} - -.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { - float: left; -} - -.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { - border: none; - border-right: 1px solid #aaa; - border-radius: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - left: 1px; - right: auto; -} - -.select2-container--classic.select2-container--open .select2-selection--single { - border: 1px solid #5897fb; -} - -.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { - background: transparent; - border: none; -} - -.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { - border-color: transparent transparent #888 transparent; - border-width: 0 4px 5px 4px; -} - -.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; - background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%); - background-image: -o-linear-gradient(top, #fff 0%, #eee 50%); - background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); -} - -.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%); - background-image: -o-linear-gradient(top, #eee 50%, #fff 100%); - background-image: linear-gradient(to bottom, #eee 50%, #fff 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); -} - -.select2-container--classic .select2-selection--multiple { - background-color: white; - border: 1px solid #aaa; - border-radius: 4px; - cursor: text; - outline: 0; -} - -.select2-container--classic .select2-selection--multiple:focus { - border: 1px solid #5897fb; -} - -.select2-container--classic .select2-selection--multiple .select2-selection__rendered { - list-style: none; - margin: 0; - padding: 0 5px; -} - -.select2-container--classic .select2-selection--multiple .select2-selection__clear { - display: none; -} - -.select2-container--classic .select2-selection--multiple .select2-selection__choice { - background-color: #e4e4e4; - border: 1px solid #aaa; - border-radius: 4px; - cursor: default; - float: left; - margin-right: 5px; - margin-top: 5px; - padding: 0 5px; -} - -.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { - color: #888; - cursor: pointer; - display: inline-block; - font-weight: bold; - margin-right: 2px; -} - -.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { - color: #555; -} - -.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { - float: right; - margin-left: 5px; - margin-right: auto; -} - -.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { - margin-left: 2px; - margin-right: auto; -} - -.select2-container--classic.select2-container--open .select2-selection--multiple { - border: 1px solid #5897fb; -} - -.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; -} - -.select2-container--classic .select2-search--dropdown .select2-search__field { - border: 1px solid #aaa; - outline: 0; -} - -.select2-container--classic .select2-search--inline .select2-search__field { - outline: 0; - box-shadow: none; -} - -.select2-container--classic .select2-dropdown { - background-color: white; - border: 1px solid transparent; -} - -.select2-container--classic .select2-dropdown--above { - border-bottom: none; -} - -.select2-container--classic .select2-dropdown--below { - border-top: none; -} - -.select2-container--classic .select2-results > .select2-results__options { - max-height: 200px; - overflow-y: auto; -} - -.select2-container--classic .select2-results__option[role=group] { - padding: 0; -} - -.select2-container--classic .select2-results__option[aria-disabled=true] { - color: grey; -} - -.select2-container--classic .select2-results__option--highlighted[aria-selected] { - background-color: #3875d7; - color: white; -} - -.select2-container--classic .select2-results__group { - cursor: default; - display: block; - padding: 6px; -} - -.select2-container--classic.select2-container--open .select2-dropdown { - border-color: #5897fb; -} - -@font-face { - font-family: 'ProximaNova'; - font-weight: 400; - font-display: swap; - src: url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.eot'); - src: url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.eot?iefix') format('eot'),url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.woff') format('woff'),url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.ttf') format('truetype'),url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.svg#ProximaNova-Reg-webfont') format('svg'); -} - -@font-face { - font-family: 'ProximaNova'; - font-weight: 300; - font-display: swap; - src: url('../fonts/proximanova/light/ProximaNova-Light-webfont.eot'); - src: url('../fonts/proximanova/light/ProximaNova-Light-webfont.eot?iefix') format('eot'),url('../fonts/proximanova/light/ProximaNova-Light-webfont.woff') format('woff'),url('../fonts/proximanova/light/ProximaNova-Light-webfont.ttf') format('truetype'),url('../fonts/proximanova/light/ProximaNova-Light-webfont.svg#ProximaNova-Light-webfont') format('svg'); -} - -@font-face { - font-family: 'ProximaNova'; - font-weight: 700; - font-display: swap; - src: url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.eot'); - src: url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.eot?iefix') format('eot'),url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.woff') format('woff'),url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.ttf') format('truetype'),url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.svg#ProximaNova-Bold-webfont') format('svg'); -} - -@font-face { - font-family: 'Gazelle'; - font-weight: 400; - font-display: swap; - src: url('../fonts/gazelle/pon-gazelle.eot'); - src: url('../fonts/gazelle/pon-gazelle.eot?iefix') format('eot'),url('../fonts/gazelle/pon-gazelle.woff') format('woff'),url('../fonts/gazelle/pon-gazelle.ttf') format('truetype'),url('../fonts/gazelle/pon-gazelle.svg#pon-gazelle') format('svg'); -} - -@font-face { - font-family: 'ga-icon'; - font-weight: 400; - font-display: swap; - src: url('../fonts/gazelle-icons/icons.eot'); - src: url('../fonts/gazelle-icons/icons.eot?iefix') format('eot'),url('../fonts/gazelle-icons/icons.woff') format('woff'),url('../fonts/gazelle-icons/icons.woff2') format('woff2'),url('../fonts/gazelle-icons/icons.ttf') format('truetype'),url('../fonts/gazelle-icons/icons.svg#icons') format('svg'); -} - -html, -body { - font-family: 'ProximaNova',Helvetica,Arial,sans-serif; - font-size: 16px; - -webkit-font-smoothing: antialiased; -} - -p { - font-size: 1rem; - line-height: 1.6; - margin-bottom: 25px; -} - -.article p { - font-size: 1.125rem; - line-height: 24px; -} - -p a { - color: #004a99; -} - -p a:hover { - color: #000; - text-decoration: underline; -} - -a, -a:hover, -a:active, -a:focus { - color: #000; - text-decoration: none; - outline: none; -} - -b, -strong { - font-weight: 600; -} - -table { - border: none; - margin-bottom: 25px; -} - -table.no-lines tr, -table.no-lines td { - border: none; -} - -table thead tr { - border-bottom: 1px solid #e8e8e8; -} - -table thead tr th, -table thead tr td { - padding: 10px; -} - -table tbody tr { - border-bottom: 1px solid rgba(0,0,0,0.1); -} - -table tbody tr:last-of-type { - border: none; -} - -table tbody tr td { - border-right: 1px solid rgba(0,0,0,0.1); - padding: 10px; -} - -@media screen and (min-width:768px) { - table tbody tr td { - word-break: break-word; - } -} - -table tbody tr td:last-of-type { - border: none; -} - -h1, -h2, -h3, -h4, -h5 { - font-weight: 700; -} - -h3.title--background { - color: #e8e8e8; - font-weight: 600; - font-size: 100px; -} - -@media (max-width:991px) { - h3.title--background { - font-size: 60px; - } -} - -@media (max-width:767px) { - h3.title--background { - font-size: 48px; - } -} - -h1 { - font-size: 3rem; - line-height: 1.125; -} - -@media (max-width:767px) { - h1 { - font-size: 1.75rem; - line-height: 1.357; - } -} - -h2 { - font-size: 2.5rem; - line-height: 1.3; -} - -@media (max-width:767px) { - h2 { - font-size: 1.5rem; - line-height: 1.25; - } -} - -h3 { - font-size: 1.75rem; - line-height: 1.28; -} - -@media (max-width:767px) { - h3 { - font-size: 1.375rem; - line-height: 1.181; - } -} - -h4 { - font-size: 1.5rem; - line-height: 1.5; -} - -@media (max-width:767px) { - h4 { - font-size: 1.25rem; - line-height: 1.2; - } -} - -h4.subtitle { - margin-top: 0; - font-size: 15px; - text-transform: uppercase; - font-weight: bold; - letter-spacing: 1px; - line-height: 1.47; -} - -h4.subtitle--large { - font-size: 20px; -} - -h4.title--blue { - font-size: 12px; - font-weight: 600; - color: #004a99; - text-transform: uppercase; - margin: 0; - letter-spacing: 1.5px; -} - -h5 { - font-size: 1.125rem; - line-height: 1.333; -} - -@media (max-width:767px) { - h5 { - font-size: 1.125rem; - line-height: 1.222; - } -} - -ul, -ol { - margin-bottom: 0; - margin-left: 20px; -} - -.ves-container ul { - line-height: 23px; -} - -.ves-container ol { - line-height: 23px; -} - -blockquote { - border-left: 2px solid #004a99; - display: inline-block; - margin: 20px 0; - padding: 100px 50px; -} - -@media screen and (max-width:991px) { - blockquote { - padding: 80px 30px; - } -} - -blockquote.right { - border-left: none; - border-right: 2px solid #004a99; - text-align: right; -} - -blockquote p { - font-size: 2.5rem; - font-weight: 300; - letter-spacing: 0.9px; - line-height: 1; -} - -@media screen and (max-width:991px) { - blockquote p { - font-size: 1.875rem; - } -} - -blockquote small { - font-size: .9375rem; - color: #000; - font-weight: 700; -} - -blockquote small:before { - display: none; -} - -figcaption { - font-size: 1rem; - color: #a9a9a9; -} - -figcaption:after { - content: ''; - border-top: 1px solid #a9a9a9; - width: 45px; - display: inline-block; - height: 5px; - margin-left: 20px; -} - -.white { - color: #fff; -} - -.old-price { - color: rgba(0,0,0,0.2); - font-size: 1rem; - text-decoration: line-through; - margin-right: 10px; -} - -.label--special { - text-transform: uppercase; - color: #004a99; - font-size: 10px; - font-weight: bold; - letter-spacing: 1.4px; -} - -* { - box-sizing: border-box; - border: none; - margin: 0; - outline: none; - padding: 0; -} - -body, -html { - line-height: initial; - height: 100%; -} - -body.no-scroll, -html.no-scroll { - overflow-y: hidden; - position: relative; -} - -img { - image-rendering: -webkit-optimize-contrast; - max-width: 100%; -} - -.no-scroll { - overflow: hidden; -} - -body.has-lightbox { - overflow: hidden; - position: fixed; - left: 0; - right: 0; -} - -@supports (-webkit-overflow-scrolling: touch) { - body { - cursor: pointer; - } -} - -.page-header { - padding: 0; - margin: 0; - border: 0; - height: 107px; -} - -.transparent-menu-active .page-header { - height: 0; -} - -.stickybar-active .page-header { - height: 138px; -} - -@media (min-width:992px) { - .page-header { - height: 120px; - } - - .stickybar-active .page-header { - height: 164px; - } -} - -.loading-mask, -.black-overlay { - top: 0; - left: 0; - width: 100%; - height: 100%; - position: fixed; -} - -.black-overlay { - display: none; - z-index: 1040; - background-color: rgba(0,0,0,0.2); -} - -.page-wrapper .black-overlay { - z-index: 1020; -} - -div.product-image-photo-holder { - background-image: url('../images/loading.gif'); - height: 32px; - left: 50%; - position: absolute; - top: 50%; - transform: translateY(-50%) translateX(-50%); - width: 32px; -} - -@media (max-width:767px) { - .no-padding-mobile { - padding: 0; - } -} - -.container .no-padding { - padding: 0; -} - -.page-wrapper { - overflow: hidden; - min-height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.page-main { - margin: 90px auto 30px auto; - padding: 0 50px; - transition: all 250ms ease-in-out; -} - -.topbar-active .page-main { - margin: 0 auto 30px auto; -} - -.page-with-filter .page-main { - margin-top: 15px; -} - -.transparent-menu .page-main { - margin-top: 0px; -} - -.page-main:not(.container) { - width: 100%; -} - -@media (max-width:991px) { - .page-main { - padding: 0 25px; - margin: 77px auto 0 auto; - } - - .page-main.no-padding { - padding: 0; - } -} - -@media (min-width:991px) { - .page-main .col-inner .widget-contenthtml, - .page-main .col-inner .widget-html { - opacity: 0; - transform: translate(0, 50px); - transform-origin: center bottom; - transition: all .75s ease-in-out; - } - - .page-main .col-inner .widget-contenthtml.element-loaded, - .page-main .col-inner .widget-html.element-loaded { - opacity: 1; - transform: translate(0, 0); - } - - .page-main .col-inner .carousel .widget-contenthtml, - .page-main .col-inner .carousel .widget-html { - opacity: 1; - transform: scale(1); - } - - .page-main .col-inner .carousel .element-loaded { - transform: scale(1); - } -} - -.page-layout-family-pages .page-main { - padding: 0; -} - -.widget-contenthtml { - border-radius: 0; - padding: 0; -} - -.row { - width: calc(100% + 30px); -} - -@media (min-width:992px) { - .row--flex { - margin-bottom: 30px; - } -} - -.row--flex.full-width, -.bluefoot-row.full-width { - margin: 0 -50px; -} - -@media screen and (max-width:992px) { - .row--flex.full-width, - .bluefoot-row.full-width { - margin: 0 -25px; - } -} - -@media screen and (min-width:992px) { - .row--flex .row-inner, - .bluefoot-row .row-inner, - .row--flex .bluefoot-wrapper, - .bluefoot-row .bluefoot-wrapper { - display: flex; - height: 100%; - } -} - -.flex--grow { - flex-grow: 1; -} - -@media screen and (min-width:992px) { - .row-primary > .row-inner, - .row-darked > .row-inner { - display: flex; - flex-direction: row; - } - - .row-primary > .row-inner--block, - .row-darked > .row-inner--block { - display: block; - } - - .row-primary > .row-inner > [class^="col-"], - .row-darked > .row-inner > [class^="col-"], - .row-primary > .row-inner > [class*=" col-"], - .row-darked > .row-inner > [class*=" col-"] { - display: flex; - align-items: center; - justify-content: center; - } - - .row-primary > .row-inner > [class^="col-"] .col-inner, - .row-darked > .row-inner > [class^="col-"] .col-inner, - .row-primary > .row-inner > [class*=" col-"] .col-inner, - .row-darked > .row-inner > [class*=" col-"] .col-inner { - width: 100%; - } - - .row-darked { - color: #fff; - } - - .row-darked > .row-inner > [class^="col-"], - .row-darked > .row-inner > [class*=" col-"] { - color: #fff; - min-height: 50vh; - } - - .row-darked > .row-inner > [class^="col-"] .row-darked, - .row-darked > .row-inner > [class*=" col-"] .row-darked { - color: #000; - } - - .row-darked > .row-inner > [class^="col-"] .row-darked > .row-inner > [class^="col-"], - .row-darked > .row-inner > [class*=" col-"] .row-darked > .row-inner > [class^="col-"], - .row-darked > .row-inner > [class^="col-"] .row-darked > .row-inner > [class*=" col-"], - .row-darked > .row-inner > [class*=" col-"] .row-darked > .row-inner > [class*=" col-"] { - color: #000; - min-height: auto; - } - - .col-highlighted > div { - padding-bottom: 5%; - padding-right: 10%; - padding-left: 10%; - padding-top: 5%; - } - - .row-no-padding > .row-inner > [class^="col-"], - .row-no-padding > .row-inner > [class*=" col-"] { - padding: 0; - } - - .row-no-padding > .row-inner > [class^="col-"]:first-of-type, - .row-no-padding > .row-inner > [class*=" col-"]:first-of-type { - padding-left: 15px; - } - - .row-no-padding > .row-inner > [class^="col-"]:last-of-type, - .row-no-padding > .row-inner > [class*=" col-"]:last-of-type { - padding-right: 15px; - } - - .col-no-padding { - padding: 0; - } - - .col-no-padding:first-of-type { - padding-left: 15px; - } - - .col-no-padding:last-of-type { - padding-right: 15px; - } - - .box-primary:after { - background-color: #fff; - content: ''; - height: calc(100% - 30px); - position: absolute; - right: 0; - top: 15px; - width: 1px; - } - - .ves-container { - background-position: center center; - background-size: cover; - } -} - -@media screen and (min-width:768px) { - .row-warning > .row-inner { - display: flex; - flex-wrap: wrap; - } -} - -@media screen and (max-width:991px) { - .row-darked:after, - .ves-container { - background-color: #fff; - background-image: none; - } -} - -@media (min-width:992px) { - .bluefoot-column.col-highlighted, - .static-content .ves-container { - background-color: #f2f2f2; - } - - .bluefoot-column.col-highlighted .row-inner > [class^="col-"], - .static-content .ves-container .row-inner > [class^="col-"], - .bluefoot-column.col-highlighted .row-inner > [class*=" col-"], - .static-content .ves-container .row-inner > [class*=" col-"] { - padding: 0; - } - - .bluefoot-column.col-highlighted .row-inner > [class^="col-"]:first-of-type, - .static-content .ves-container .row-inner > [class^="col-"]:first-of-type, - .bluefoot-column.col-highlighted .row-inner > [class*=" col-"]:first-of-type, - .static-content .ves-container .row-inner > [class*=" col-"]:first-of-type { - padding-left: 15px; - } - - .bluefoot-column.col-highlighted .row-inner > [class^="col-"]:last-of-type, - .static-content .ves-container .row-inner > [class^="col-"]:last-of-type, - .bluefoot-column.col-highlighted .row-inner > [class*=" col-"]:last-of-type, - .static-content .ves-container .row-inner > [class*=" col-"]:last-of-type { - padding-right: 15px; - } -} - -.bluefoot-row, -.static-content .ves-container { - margin-bottom: 25px; - margin-top: 25px; -} - -@media (min-width:992px) { - .bluefoot-row, - .static-content .ves-container { - margin-bottom: 50px; - margin-top: 50px; - } -} - -.bluefoot-row:first-of-type, -.static-content .ves-container:first-of-type { - margin-top: 0; -} - -.static-content .ves-container { - background-color: #f2f2f2; -} - -.static-content .ves-container:last-of-type { - background-color: transparent; - margin-bottom: 0; -} - -.catalog-product-view #surveyContent .mopinion-survey-content .btn-open-survey.tab { - z-index: 1050; -} - -[data-lazy-src], -[data-lazy-bg] { - transition: opacity .5s ease-in-out; - opacity: 0; -} - -[data-lazy-src].lazy-img-loaded, -[data-lazy-bg].lazy-img-loaded { - opacity: 1; -} - -.fadeout { - opacity: 0; -} - -.grecaptcha-badge { - visibility: hidden; -} - -.bluefoot-row.full-width { - margin: 0 -50px; - width: calc(100% + 100px); -} - -@media screen and (max-width:992px) { - .bluefoot-row.full-width { - margin: 0 -25px; - width: calc(100% + 50px); - } -} - -.bluefoot-row.bluefoot-menu { - margin: 0; - display: inline-block; -} - -@media screen and (min-width:992px) { - .bluefoot-row.bluefoot-menu { - margin-right: 150px; - } -} - -@media screen and (min-width:992px) { - .bluefoot-row .row-inner, - .bluefoot-row .bluefoot-wrapper { - display: flex; - } - - .ie11 .bluefoot-row .row-inner, - .ie11 .bluefoot-row .bluefoot-wrapper { - display: block; - } -} - -.bluefoot-row .col-inner-flex .col-inner { - display: flex; - flex-wrap: wrap; -} - -.bluefoot-row ul { - line-height: 23px; - margin-bottom: 25px; - margin-left: 20px; - list-style: disc; -} - -.bluefoot-column { - background-repeat: no-repeat; - background-size: cover; - background-position: center; -} - -.bluefoot-column .col-inner { - width: 100%; -} - -@media screen and (min-width:992px) { - .col-vertical-align { - display: flex; - align-items: center; - } -} - -.col-animation { - overflow: hidden; -} - -.col-animation-images--type-scale.element-loaded img { - -webkit-animation: scaleImage 5s ease-in-out; - animation: scaleImage 5s ease-in-out; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.col-animation-text--type-fade-bottom .bluefoot-entity { - opacity: 0; - transform: translate(0, 50px); - transform-origin: center bottom; - transition: all .5s ease-in-out; -} - -.col-animation-text--type-fade-bottom.element-loaded .bluefoot-entity { - opacity: 1; - transform: translate(0, 0); -} - -@-webkit-keyframes scaleImage { - 0% { - -webkit-transform: scale(1, 1); - -ms-transform: scale(1, 1); - transform: scale(1, 1); - } - - 100% { - -webkit-transform: scale(1.05, 1.05); - -ms-transform: scale(1.05, 1.05); - transform: scale(1.05, 1.05); - } -} - -@keyframes scaleImage { - 0% { - -webkit-transform: scale(1, 1); - -ms-transform: scale(1, 1); - transform: scale(1, 1); - } - - 100% { - -webkit-transform: scale(1.05, 1.05); - -ms-transform: scale(1.05, 1.05); - transform: scale(1.05, 1.05); - } -} - -.bluefoot-column.col-background-type--light-grey, -.col-background-type--light-grey { - background-color: #f2f2f2; -} - -.bluefoot-column.col-background-type--medium-brown, -.col-background-type--medium-brown { - background-color: #84776b; - color: #fff; -} - -@media screen and (max-width:991px) { - .bluefoot-column.col-background-type--light-grey, - .col-background-type--light-grey, - .bluefoot-column.col-background-type--medium-brown, - .col-background-type--medium-brown { - padding: 20px; - } -} - -.col-height-screen { - min-height: calc(100vh - 90px); -} - -.columns .col-height-screen-half { - min-height: 60vh; -} - -@media screen and (max-width:767px) { - .columns .col-height-screen-half { - min-height: 30vh; - } -} - -figure.bluefoot-entity { - margin-bottom: 0; -} - -.bluefoot-image img { - display: block; - width: 100%; - height: auto; -} - -.bluefoot-textarea ul, -.bluefoot-textarea ol { - list-style: disc; - margin-left: 20px; -} - -.bluefoot-textarea ol { - list-style: decimal; -} - -.bluefoot-video iframe { - height: 500px; -} - -@media screen and (max-width:991px) { - .bluefoot-video iframe { - height: 400px; - } -} - -@media screen and (max-width:767px) { - .bluefoot-video iframe { - height: 240px; - } -} - -@media screen and (max-width:767px) { - .bluefoot-entity.bluefoot-textarea { - overflow-x: auto; - } -} - -.gazelle-icon:before, -.account .form-wishlist-items li .product-item-actions a:before { - content: ''; - font-family: 'Gazelle'; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - speak: none; - line-height: 1; - vertical-align: middle; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.gazelle-icon.small-icon:before, -.account .form-wishlist-items li .product-item-actions a.small-icon:before { - font-size: 10px; -} - -.gazelle-icon.extra-small-icon:before, -.account .form-wishlist-items li .product-item-actions a.extra-small-icon:before { - font-size: 8px; -} - -.icon-cross:before { - content: '\e024'; -} - -.icon-compare:before { - content: '\e01e'; -} - -.icon-dealerfinder-circle:before { - content: '\e001'; -} - -.icon-success:before { - content: '\e003'; -} - -.icon-time:before { - content: '\e004'; -} - -.icon-info-circle:before { - content: '\e005'; -} - -.icon-decide:before { - content: '\e006'; -} - -.icon-arrow-left:before { - content: '\e008'; -} - -.icon-decide-circle:before { - content: '\e009'; -} - -.icon-triangle-down:before { - content: '\e00b'; -} - -.icon-dot:before { - content: '\e00c'; -} - -.icon-arrow-right:before { - content: '\e00d'; -} - -.icon-arrow-up:before { - content: '\e00e'; -} - -.icon-electric:before { - content: '\e00f'; -} - -.icon-triangle-up:before { - content: '\e010'; -} - -.icon-experience:before { - content: '\e012'; -} - -.icon-calendar:before { - content: '\e013'; -} - -.icon-experience-circle:before { - content: '\e015'; -} - -.icon-pause:before { - content: '\e939'; -} - -.icon-pin:before { - content: '\e018'; -} - -.icon-play:before { - content: '\e938'; -} - -.icon-zoom:before { - content: '\e01a'; -} - -.icon-zoom-circle:before { - content: '\e01b'; -} - -.icon-play-circle:before { - content: '\e01c'; -} - -.icon-correct:before { - content: '\e01f'; -} - -.icon-finance-circle:before { - content: '\e020'; -} - -.icon-grid:before { - content: '\e022'; -} - -.icon-globe:before { - content: '\e023'; -} - -.icon-dealer-pin:before { - content: '\e025'; -} - -.icon-help-decide:before { - content: '\e026'; -} - -.icon-stripe:before { - content: '\e027'; -} - -.icon-classic:before { - content: '\e029'; -} - -.icon-comfort:before { - content: '\e02a'; -} - -.icon-female:before { - content: '\e02b'; -} - -.icon-ultimate-1:before { - content: '\e02c'; -} - -.icon-parents-kids:before { - content: '\e02d'; -} - -.icon-male:before { - content: '\e02e'; -} - -.icon-lifestyle-old:before { - content: '\e02f'; -} - -.icon-transport:before { - content: '\e030'; -} - -.icon-download:before { - content: '\e031'; -} - -.icon-list:before { - content: '\e032'; -} - -.icon-email:before { - content: '\e033'; -} - -.icon-oval-closed:before { - content: '\e034'; -} - -.icon-oval-open:before { - content: '\e035'; -} - -.icon-triangle-left:before { - content: '\e036'; -} - -.icon-triangle-right:before { - content: '\e037'; -} - -.icon-allround:before { - content: '\e038'; -} - -.icon-midstep:before { - content: '\e039'; -} - -.icon-trekking:before { - content: '\e03a'; -} - -.icon-parents:before { - content: '\e03b'; -} - -.icon-highstep:before { - content: '\e03c'; -} - -.icon-elektrisch:before { - content: '\e03d'; -} - -.icon-lifestyle:before { - content: '\e03e'; -} - -.icon-ultimate:before { - content: '\e03f'; -} - -.icon-lowstep:before { - content: '\e041'; -} - -.icon-google-plus:before { - content: '\e042'; -} - -.icon-pinterest:before { - content: '\e043'; -} - -.icon-commuter:before { - content: '\e044'; -} - -.icon-basket:before { - content: '\e014'; -} - -.ga-icon, -.ga-icon-extend, -.tooltip .dismiss, -.list--usps li, -.side-navigation__apply, -.page-footer .footer-links h4, -.contact-block a.submit, -.contact-block_link, -.cms-hierarchy__title strong, -.cart-crosssell__header a, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron, -.knowledge-base__most-viewed a, -.product-stickybar__nav-toggle a, -.product-reviews__more span, -.review-summary__stars, -.review-summary__stars > span, -.tile-icon, -#service-tile .btn, -.virtual-category button.content-collapse, -.account .order-item__title--collapsible, -body .__react_component_tooltip .dismiss, -.pdp__header__usps ul:not(.list--check) li { - display: inline-block; - margin: 0; - background-repeat: no-repeat; -} - -.ga-icon:before, -.ga-icon-extend:before, -.btn-add:after, -.pon-btn-add:after, -.arrow-link:after, -.flash-messages-wrapper .flash-message .flash-message-close:before, -.flash-messages-wrapper .flash-message.notice_swipe .flash-message-content:before, -.lightbox__wrapper .back-button button::before, -.tooltip .dismiss:before, -.list--usps li:before, -.usps-inline li:before, -.image-carousel .slick-arrow:before, -.side-navigation__apply:before, -.product-carousel-pdp .slick-arrow:before, -.page-footer .footer-links h4:before, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item:after, -.family-favorites p:after, -.product-carousel .slick-arrow:before, -.contact-block a.submit:before, -.contact-block_link:before, -.sticky-anchors h2:after, -.sticky-anchors h3:after, -.cms-hierarchy__title strong:before, -#checkout .step-title--with-link a:before, -.checkout-step__header:after, -.cart-crosssell__header a:before, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron:before, -.customer-account-create .form-create-account .account-usps ul li:before, -.magento_invitation-customer_account-create .form-create-account .account-usps ul li:before, -#invitationForm #invitations-options button.remove:after, -.knowledge-base__most-viewed a:before, -.pdp__header .back-button button:before, -.pdp__header .back-button a:before, -.product-stickybar__nav-toggle a:before, -.product-reviews__more span:before, -.review-summary__stars:before, -.review-summary__stars > span:before, -.review-summary__tooltip:before, -.tile-icon:before, -.filter-content .bike-filter__form-clear:before, -.filter-content .bike-filter__clear-current:before, -#service-tile .btn:before, -.virtual-category button.content-collapse:before, -.account .order-item__title--collapsible:before, -.wizard__wrapper .previous:before, -.configurator__summary-button button::before, -#upsells-modal .slick-arrow:before, -body .__react_component_tooltip .dismiss:before, -.product-accessories .slick-arrow:before, -.wvtav .slick-arrow:before, -.cart-crosssell .slick-arrow:before, -.checkout-crosssell .slick-arrow:before, -.bike__crosssell .slick-arrow:before, -.pdp__header__usps ul:not(.list--check) li:before { - content: ''; - font-family: 'ga-icon'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: middle; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.ga-icon.small-icon:before, -.ga-icon-extend.small-icon:before, -.tooltip .dismiss.small-icon:before, -.list--usps li.small-icon:before, -.side-navigation__apply.small-icon:before, -.page-footer .footer-links h4.small-icon:before, -.contact-block a.submit.small-icon:before, -.contact-block_link.small-icon:before, -.cms-hierarchy__title strong.small-icon:before, -.cart-crosssell__header a.small-icon:before, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron.small-icon:before, -.knowledge-base__most-viewed a.small-icon:before, -.product-stickybar__nav-toggle a.small-icon:before, -.product-reviews__more span.small-icon:before, -.review-summary__stars.small-icon:before, -.review-summary__stars > span.small-icon:before, -.tile-icon.small-icon:before, -#service-tile .btn.small-icon:before, -.virtual-category button.content-collapse.small-icon:before, -.account .order-item__title--collapsible.small-icon:before, -body .__react_component_tooltip .dismiss.small-icon:before, -.pdp__header__usps ul:not(.list--check) li.small-icon:before { - font-size: 10px; -} - -.ga-icon.extra-small-icon:before, -.ga-icon-extend.extra-small-icon:before, -.tooltip .dismiss.extra-small-icon:before, -.list--usps li.extra-small-icon:before, -.side-navigation__apply.extra-small-icon:before, -.page-footer .footer-links h4.extra-small-icon:before, -.contact-block a.submit.extra-small-icon:before, -.contact-block_link.extra-small-icon:before, -.cms-hierarchy__title strong.extra-small-icon:before, -.cart-crosssell__header a.extra-small-icon:before, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron.extra-small-icon:before, -.knowledge-base__most-viewed a.extra-small-icon:before, -.product-stickybar__nav-toggle a.extra-small-icon:before, -.product-reviews__more span.extra-small-icon:before, -.review-summary__stars.extra-small-icon:before, -.review-summary__stars > span.extra-small-icon:before, -.tile-icon.extra-small-icon:before, -#service-tile .btn.extra-small-icon:before, -.virtual-category button.content-collapse.extra-small-icon:before, -.account .order-item__title--collapsible.extra-small-icon:before, -body .__react_component_tooltip .dismiss.extra-small-icon:before, -.pdp__header__usps ul:not(.list--check) li.extra-small-icon:before { - font-size: 8px; -} - -.ga-icon.icon-spacing-left, -.ga-icon-extend.icon-spacing-left, -.tooltip .dismiss.icon-spacing-left, -.list--usps li.icon-spacing-left, -.side-navigation__apply.icon-spacing-left, -.page-footer .footer-links h4.icon-spacing-left, -.contact-block a.submit.icon-spacing-left, -.contact-block_link.icon-spacing-left, -.cms-hierarchy__title strong.icon-spacing-left, -.cart-crosssell__header a.icon-spacing-left, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron.icon-spacing-left, -.knowledge-base__most-viewed a.icon-spacing-left, -.product-stickybar__nav-toggle a.icon-spacing-left, -.product-reviews__more span.icon-spacing-left, -.review-summary__stars.icon-spacing-left, -.review-summary__stars > span.icon-spacing-left, -.tile-icon.icon-spacing-left, -#service-tile .btn.icon-spacing-left, -.virtual-category button.content-collapse.icon-spacing-left, -.account .order-item__title--collapsible.icon-spacing-left, -body .__react_component_tooltip .dismiss.icon-spacing-left, -.pdp__header__usps ul:not(.list--check) li.icon-spacing-left { - padding-left: 8px; -} - -.ga-icon.icon-spacing-right, -.ga-icon-extend.icon-spacing-right, -.tooltip .dismiss.icon-spacing-right, -.list--usps li.icon-spacing-right, -.side-navigation__apply.icon-spacing-right, -.page-footer .footer-links h4.icon-spacing-right, -.contact-block a.submit.icon-spacing-right, -.contact-block_link.icon-spacing-right, -.cms-hierarchy__title strong.icon-spacing-right, -.cart-crosssell__header a.icon-spacing-right, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron.icon-spacing-right, -.knowledge-base__most-viewed a.icon-spacing-right, -.product-stickybar__nav-toggle a.icon-spacing-right, -.product-reviews__more span.icon-spacing-right, -.review-summary__stars.icon-spacing-right, -.review-summary__stars > span.icon-spacing-right, -.tile-icon.icon-spacing-right, -#service-tile .btn.icon-spacing-right, -.virtual-category button.content-collapse.icon-spacing-right, -.account .order-item__title--collapsible.icon-spacing-right, -body .__react_component_tooltip .dismiss.icon-spacing-right, -.pdp__header__usps ul:not(.list--check) li.icon-spacing-right { - padding-right: 8px; -} - -.ga-icon-arrow-right { - background-image: url('../icons/svg/arrow-right-black.svg'); -} - -.icon-financing:before, -.icon-finance:before { - content: "\e942"; -} - -.icon-premium:before { - content: "\e940"; -} - -.icon-demo:before { - content: "\e941"; -} - -.icon-chevron-down:before, -.page-footer .footer-links h4:before, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a.open-dropdown:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item.open-dropdown:after, -body.compare-bar-open .toggle-compare-bar:before, -.cms-hierarchy__title strong:before, -.checkout-step__header:after, -.cart-crosssell__header a.active:before, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron:before, -.product-stickybar__nav-toggle a:before, -.product-reviews__more span:before, -.virtual-category button.content-collapse:before, -.account .order-item__title--collapsible:before { - content: "\e910"; -} - -.icon-chevron-left:before, -.lightbox__wrapper .back-button button::before, -#checkout .step-title--with-link a:before, -.pdp__header .back-button button:before, -.pdp__header .back-button a:before, -.wizard__wrapper .previous:before, -.configurator__summary-button button::before { - content: "\e93c"; -} - -.icon-chevron-right:before, -.arrow-link:after, -.image-carousel .slick-arrow:before, -.side-navigation__apply:before, -.product-carousel-pdp .slick-arrow:before, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item:after, -.product-carousel .slick-arrow:before, -.knowledge-base__most-viewed a:before, -#service-tile .btn:before, -#upsells-modal .slick-arrow:before, -.product-accessories .slick-arrow:before, -.wvtav .slick-arrow:before, -.cart-crosssell .slick-arrow:before, -.checkout-crosssell .slick-arrow:before, -.bike__crosssell .slick-arrow:before { - content: "\e93d"; -} - -.icon-chevron-up:before, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a.open-dropdown.open:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item.open-dropdown.open:after, -body:not(.compare-bar-open) .toggle-compare-bar:before, -.family-favorites p:after, -.nav-open .cms-hierarchy__title strong:before, -.active .checkout-step__header:after, -.cart-crosssell__header a:before, -.nav-open .product-stickybar__nav-toggle a:before, -.account .order-item.active > .order-item__title:before { - content: "\e93e"; -} - -.icon-ebike--no:before, -.tile-icon[data-type="pim_productebike"].tile-icon--N:before, -.tile-icon[data-type="pim_productebike"].tile-icon--nee:before { - content: "\e901"; -} - -.icon-ebike--yes:before, -.tile-icon[data-type="pim_productebike"].tile-icon--Y:before, -.tile-icon[data-type="pim_productebike"].tile-icon--ja:before { - content: "\e902"; -} - -.icon-ebike:before { - content: "\e93f"; -} - -.icon-sit-forward:before { - content: "\e903"; -} - -.icon-sit-straight:before { - content: "\e904"; -} - -.icon-warranty:before { - content: "\e905"; -} - -.icon-calender:before { - content: "\e906"; -} - -.icon-connect:before, -.list--usps li:before, -.pdp__header__usps ul:not(.list--check) li:before { - content: "\e908"; -} - -.icon-mail:before { - content: "\e909"; -} - -.icon-print:before { - content: "\e90a"; -} - -.icon-info:before { - content: "\e90b"; -} - -.icon-filter:before { - content: "\e90c"; -} - -.icon-arrow-down:before { - content: "\e90d"; -} - -.icon-small-wheels:before { - content: "\e90e"; -} - -.icon-bike:before { - content: "\e90f"; -} - -.icon-menu:before { - content: "\e911"; -} - -.icon-search:before, -.icon-dealer:before { - content: "\e912"; -} - -.icon-account:before { - content: "\e913"; -} - -.icon-arrow-left:before { - content: "\e914"; -} - -.icon-arrow-right:before { - content: "\e915"; -} - -.icon-arrow-up:before { - content: "\e916"; -} - -.icon-cart:before, -.icon-buy:before { - content: "\e917"; -} - -.icon-cross:before { - content: "\e918"; -} - -.icon-close:before, -.btn-add:after, -.pon-btn-add:after, -.flash-messages-wrapper .flash-message .flash-message-close:before, -.tooltip .dismiss:before, -#invitationForm #invitations-options button.remove:after, -.filter-content .bike-filter__form-clear:before, -.filter-content .bike-filter__clear-current:before, -body .__react_component_tooltip .dismiss:before { - content: "\e919"; -} - -.icon-idle:before, -.contact-block a.submit:before, -.contact-block_link:before { - content: "\e91a"; -} - -.icon-swipe:before, -.flash-messages-wrapper .flash-message.notice_swipe .flash-message-content:before { - content: "\e91b"; -} - -.icon-leasing:before, -.icon-lease:before { - content: "\e91c"; -} - -.icon-facebook:before { - content: "\e91d"; -} - -.icon-twitter:before { - content: "\e91e"; -} - -.icon-youtube:before { - content: "\e91f"; -} - -.icon-instagram:before { - content: "\e920"; -} - -.icon-battery:before { - content: "\e921"; -} - -.icon-finance:before { - content: "\e922"; -} - -.icon-locator:before { - content: "\e923"; -} - -.icon-check-circle:before, -.usps-inline li:before, -.customer-account-create .form-create-account .account-usps ul li:before, -.magento_invitation-customer_account-create .form-create-account .account-usps ul li:before { - content: "\e924"; -} - -.icon-fast-bike:before { - content: "\e925"; -} - -.icon-award:before { - content: "\e926"; -} - -.icon-lock:before { - content: "\e927"; -} - -.icon-eye:before { - content: "\e928"; -} - -.icon-bestellen-en-ophalen:before, -.payment-method__select__option .icon-checkout_group_order:before { - content: "\e929"; -} - -.icon-winkel-zoeken:before, -.payment-method__select__option .icon-checkout_group_store_pickup:before { - content: "\e92a"; -} - -.icon-test-center:before { - content: "\e92b"; -} - -.icon-list:before { - content: "\e92c"; -} - -.icon-rdw:before { - content: "\e92d"; -} - -.icon-star:before { - content: "\e92e"; -} - -.icon-reserve:before { - content: "\e92f"; -} - -.icon-scroll-arrow-down:before, -.sticky-anchors h2:after, -.sticky-anchors h3:after { - content: "\e930"; -} - -.icon-mobile:before { - content: "\e931"; -} - -.icon-sit-active:before { - content: "\e932"; -} - -.icon-marker:before { - content: "\e933"; -} - -.icon-outlet:before { - content: "\e934"; -} - -.icon-arrowicon:before { - content: "\e935"; -} - -.icon-check:before, -.review-summary__tooltip:before { - content: "\e936"; -} - -.icon-delivery:before { - content: "\e937"; -} - -.icon-play:before { - content: "\e938"; -} - -.icon-pause:before { - content: "\e939"; -} - -.icon-service:before { - content: "\e93a"; -} - -.icon-bike-fast:before { - content: "\e93b"; -} - -.monthly-price .price, -.catalog-product-view .price { - display: block; - margin: 0 0 15px 0; - font-size: .9rem; -} - -.monthly-price .price strong, -.catalog-product-view .price strong, -.monthly-price .price .price-label, -.catalog-product-view .price .price-label { - margin: 5px 0 0 0; - font-size: 14px; - font-weight: 600; - color: #000; -} - -.monthly-price .price strong span, -.catalog-product-view .price strong span, -.monthly-price .price .price-label span, -.catalog-product-view .price .price-label span { - font-weight: 400; -} - -.monthly-price .price strong span.month, -.catalog-product-view .price strong span.month, -.monthly-price .price .price-label span.month, -.catalog-product-view .price .price-label span.month { - font-weight: 600; - font-size: 20px; -} - -.monthly-price .price strong, -.catalog-product-view .price strong { - font-size: 20px; - line-height: 20px; -} - -.monthly-price .price .old-price strong, -.catalog-product-view .price .old-price strong { - color: #a9a9a9; - font-size: 1rem; -} - -.monthly-price .price--contains-description-label .price-from, -.catalog-product-view .price--contains-description-label .price-from { - visibility: hidden; -} - -.monthly-price .price--contains-description-label .price-label, -.catalog-product-view .price--contains-description-label .price-label { - font-size: 14px; - font-weight: 600; - line-height: 20px; -} - -.monthly-price .price--contains-description-label .icon-info, -.catalog-product-view .price--contains-description-label .icon-info { - top: -5px; -} - -.monthly-price .price-from, -.catalog-product-view .price-from { - display: block; - margin-bottom: 4px; - min-height: 18px; -} - -.monthly-price .price--small, -.catalog-product-view .price--small { - font-size: 0.7rem; -} - -.monthly-price .price--small strong, -.catalog-product-view .price--small strong { - display: inline-block; - font-size: 1rem; -} - -.monthly-price .price--small strong span, -.catalog-product-view .price--small strong span { - font-weight: inherit; -} - -.monthly-price .price--small strong span:last-of-type, -.catalog-product-view .price--small strong span:last-of-type { - font-size: 0.7rem; - font-weight: 400; -} - -.page-heading { - display: block; -} - -.page-heading--position-absolute { - color: #fff; - position: absolute; - z-index: 1; - text-shadow: 0 0 14px rgba(0,0,0,0.2); - margin: 50px; -} - -@media (max-width:767px) { - .page-heading--position-absolute { - margin: 20px; - } -} - -.page-heading--position-static { - margin: 0 0 50px 0; -} - -@media (max-width:767px) { - .page-heading--position-static { - margin: 0 0 20px 0; - } -} - -.icon, -.account .form-wishlist-items li .product-item-actions a { - background-color: transparent; - border: 1px solid rgba(0,0,0,0.1); - border-radius: 50%; - display: block; - font-size: 1rem; - height: 36px; - line-height: 36px; - text-align: center; - width: 36px; -} - -.icon:not(.glyphicon):before, -.account .form-wishlist-items li .product-item-actions a:not(.glyphicon):before { - font-family: 'Gazelle'; -} - -.icon:active, -.icon:focus, -.account .form-wishlist-items li .product-item-actions a:active, -.account .form-wishlist-items li .product-item-actions a:focus { - border: 1px solid #000; -} - -.icon:hover, -.account .form-wishlist-items li .product-item-actions a:hover { - border: 1px solid rgba(0,0,0,0.3); -} - -.icon-primary, -.account .form-wishlist-items li .product-item-actions a { - background-color: #004a99; - border: none; - color: #fff; -} - -.icon-primary:active, -.icon-primary:focus, -.account .form-wishlist-items li .product-item-actions a:active, -.account .form-wishlist-items li .product-item-actions a:focus { - background-color: rgba(0,0,0,0.05); - border: none; - color: rgba(0,0,0,0.25); -} - -.icon-primary:hover, -.account .form-wishlist-items li .product-item-actions a:hover { - background-color: #0d4282; - border: none; -} - -.icon-no-border { - border: none; -} - -.icon-no-border:active, -.icon-no-border:focus, -.icon-no-border:hover { - border: none; -} - -.icon-xs { - font-size: 0.8rem; - height: 26px; - line-height: 26px; - width: 26px; -} - -.icon-sm { - font-size: 0.8rem; - height: 30px; - line-height: 30px; - width: 30px; -} - -.icon-lg { - font-size: 1.8rem; - height: 55px; - line-height: 55px; - width: 55px; -} - -.img-icon, -.icon-frame-m, -.icon-frame-H, -.icon-frame-h, -.icon-frame-u, -.icon-frame-M, -.icon-frame-f, -.icon-frame-L, -.icon-frame-l, -.icon-motor-m, -.icon-motor-midden, -.icon-motor-middenmotor, -.icon-motor-f, -.icon-motor-voor, -.icon-motor-voorwielmotor, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--m, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--h, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--H, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--man, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--f, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--L, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--l, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--g, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--u, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--M, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--unisex, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--M, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--R, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--REAR, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--F, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--MID { - display: inline-block; - width: 36px; - height: 23px; - background-repeat: no-repeat; - background-size: contain; -} - -.icon-frame-m, -.icon-frame-H, -.icon-frame-h, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--m, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--h, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--H, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--man { - background-image: url('../images/frames/high.svg'); -} - -.icon-frame-m--white, -.icon-frame-H--white, -.icon-frame-h--white, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--m, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--h, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--H { - background-image: url('../images/frames/high-white.svg'); -} - -.icon-frame-u, -.icon-frame-M, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--u, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--M, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--unisex { - background-image: url('../images/frames/mid.svg'); -} - -.icon-frame-u--white, -.icon-frame-M--white, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--u { - background-image: url('../images/frames/mid-white.svg'); -} - -.icon-frame-f, -.icon-frame-L, -.icon-frame-l, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--f, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--L, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--l, -.tile-icon[data-type='pim_itemgenderframe'].tile-icon--g { - background-image: url('../images/frames/low.svg'); -} - -.icon-frame-f--white, -.icon-frame-L--white, -.icon-frame-l--white, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--f, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--L, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_itemgenderframe'].tile-icon--l { - background-image: url('../images/frames/low-white.svg'); -} - -.icon-motor-m, -.icon-motor-midden, -.icon-motor-middenmotor, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--M, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--R, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--REAR { - background-image: url('../images/motorlocation/motor-center.svg'); -} - -.icon-motor-m--white, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--M { - background-image: url('../images/motorlocation/motor-center-white.svg'); -} - -.icon-motor-f, -.icon-motor-voor, -.icon-motor-voorwielmotor, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--F, -.tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--MID { - background-image: url('../images/motorlocation/motor-front.svg'); -} - -.icon-motor-f--white, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type='pim_ebikeenginelocation'].tile-icon--F { - background-image: url('../images/motorlocation/motor-front-white.svg'); -} - -.icon-position-straight, -.tile-icon[data-type="pim_productseatingposition"].tile-icon--Rechtop { - background-image: url('../images/seatingposition/straight.svg'); -} - -.icon-position-straight--active, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type="pim_productseatingposition"].tile-icon--Rechtop { - background-image: url('../images/seatingposition/straight--active.svg'); -} - -.icon-position-active, -.tile-icon[data-type="pim_productseatingposition"].tile-icon--Actief { - background-image: url('../images/seatingposition/active.svg'); -} - -.icon-position-active--active, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type="pim_productseatingposition"].tile-icon--Actief { - background-image: url('../images/seatingposition/active--active.svg'); -} - -.icon-position-sportive, -.tile-icon[data-type="pim_productseatingposition"].tile-icon--Sportief { - background-image: url('../images/seatingposition/sportive.svg'); -} - -.icon-position-sportive--active, -.filter-options-content [type=checkbox]:checked + label .tile-icon[data-type="pim_productseatingposition"].tile-icon--Sportief { - background-image: url('../images/seatingposition/sportive--active.svg'); -} - -.btn, -.pon-btn { - background-color: #004a99; - border: 2px solid #004a99; - font-size: 1rem; - color: #fff; - border-radius: 2px; - text-align: inherit; - line-height: 18px; - font-weight: 700; - padding: 12px 15px; - transition: .2s ease-in-out; -} - -.btn.disabled, -.pon-btn.disabled, -.btn:disabled, -.pon-btn:disabled { - opacity: 0.35; -} - -.btn .ga-icon, -.pon-btn .ga-icon, -.btn .pon-icon, -.pon-btn .pon-icon, -.btn .knowledge-base__most-viewed a, -.pon-btn .knowledge-base__most-viewed a { - font-size: 10px; - margin-left: 25px; - transition: .2s ease-in-out; - float: right; -} - -.btn-small, -.pon-btn-small, -.btn.small, -.pon-btn.small { - font-size: 14px; - padding: 8px 12px; -} - -.btn-small .ga-icon, -.pon-btn-small .ga-icon, -.btn.small .ga-icon, -.pon-btn.small .ga-icon, -.btn-small .pon-icon, -.pon-btn-small .pon-icon, -.btn.small .pon-icon, -.pon-btn.small .pon-icon, -.btn-small .knowledge-base__most-viewed a, -.pon-btn-small .knowledge-base__most-viewed a, -.btn.small .knowledge-base__most-viewed a, -.pon-btn.small .knowledge-base__most-viewed a { - margin-left: 15px; - transform: translate(0, -1px); -} - -.btn-small .pon-icon, -.pon-btn-small .pon-icon, -.btn.small .pon-icon, -.pon-btn.small .pon-icon { - margin-left: 15px; - transform: translate(0, -50%); -} - -.btn-small:hover .ga-icon:not(.icon-cross), -.pon-btn-small:hover .ga-icon:not(.icon-cross), -.btn.small:hover .ga-icon:not(.icon-cross), -.pon-btn.small:hover .ga-icon:not(.icon-cross), -.btn-small:active .ga-icon:not(.icon-cross), -.pon-btn-small:active .ga-icon:not(.icon-cross), -.btn.small:active .ga-icon:not(.icon-cross), -.pon-btn.small:active .ga-icon:not(.icon-cross), -.btn-small:focus .ga-icon:not(.icon-cross), -.pon-btn-small:focus .ga-icon:not(.icon-cross), -.btn.small:focus .ga-icon:not(.icon-cross), -.pon-btn.small:focus .ga-icon:not(.icon-cross), -.btn-small:hover .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn-small:hover .knowledge-base__most-viewed a:not(.icon-cross), -.btn.small:hover .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn.small:hover .knowledge-base__most-viewed a:not(.icon-cross), -.btn-small:active .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn-small:active .knowledge-base__most-viewed a:not(.icon-cross), -.btn.small:active .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn.small:active .knowledge-base__most-viewed a:not(.icon-cross), -.btn-small:focus .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn-small:focus .knowledge-base__most-viewed a:not(.icon-cross), -.btn.small:focus .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn.small:focus .knowledge-base__most-viewed a:not(.icon-cross) { - transform: translate(3px, -1px); -} - -.btn-small:hover .pon-icon, -.pon-btn-small:hover .pon-icon, -.btn.small:hover .pon-icon, -.pon-btn.small:hover .pon-icon, -.btn-small:active .pon-icon, -.pon-btn-small:active .pon-icon, -.btn.small:active .pon-icon, -.pon-btn.small:active .pon-icon, -.btn-small:focus .pon-icon, -.pon-btn-small:focus .pon-icon, -.btn.small:focus .pon-icon, -.pon-btn.small:focus .pon-icon { - transform: translate(3px, -50%); -} - -.btn-large, -.pon-btn-large, -.btn.large, -.pon-btn.large { - padding: 15px 20px; -} - -.btn-large:hover .ga-icon:not(.icon-cross), -.pon-btn-large:hover .ga-icon:not(.icon-cross), -.btn.large:hover .ga-icon:not(.icon-cross), -.pon-btn.large:hover .ga-icon:not(.icon-cross), -.btn-large:active .ga-icon:not(.icon-cross), -.pon-btn-large:active .ga-icon:not(.icon-cross), -.btn.large:active .ga-icon:not(.icon-cross), -.pon-btn.large:active .ga-icon:not(.icon-cross), -.btn-large:focus .ga-icon:not(.icon-cross), -.pon-btn-large:focus .ga-icon:not(.icon-cross), -.btn.large:focus .ga-icon:not(.icon-cross), -.pon-btn.large:focus .ga-icon:not(.icon-cross), -.btn-large:hover .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn-large:hover .knowledge-base__most-viewed a:not(.icon-cross), -.btn.large:hover .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn.large:hover .knowledge-base__most-viewed a:not(.icon-cross), -.btn-large:active .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn-large:active .knowledge-base__most-viewed a:not(.icon-cross), -.btn.large:active .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn.large:active .knowledge-base__most-viewed a:not(.icon-cross), -.btn-large:focus .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn-large:focus .knowledge-base__most-viewed a:not(.icon-cross), -.btn.large:focus .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn.large:focus .knowledge-base__most-viewed a:not(.icon-cross) { - transform: translateX(8px); -} - -.btn-large:hover .pon-icon, -.pon-btn-large:hover .pon-icon, -.btn.large:hover .pon-icon, -.pon-btn.large:hover .pon-icon, -.btn-large:active .pon-icon, -.pon-btn-large:active .pon-icon, -.btn.large:active .pon-icon, -.pon-btn.large:active .pon-icon, -.btn-large:focus .pon-icon, -.pon-btn-large:focus .pon-icon, -.btn.large:focus .pon-icon, -.pon-btn.large:focus .pon-icon { - transform: translate(8px, -50%); -} - -.btn:hover, -.pon-btn:hover, -.btn:active, -.pon-btn:active, -.btn:focus, -.pon-btn:focus { - box-shadow: none; - background: #003062; - border-color: #003062; -} - -.btn:hover .ga-icon:not(.icon-cross), -.pon-btn:hover .ga-icon:not(.icon-cross), -.btn:active .ga-icon:not(.icon-cross), -.pon-btn:active .ga-icon:not(.icon-cross), -.btn:focus .ga-icon:not(.icon-cross), -.pon-btn:focus .ga-icon:not(.icon-cross), -.btn:hover .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn:hover .knowledge-base__most-viewed a:not(.icon-cross), -.btn:active .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn:active .knowledge-base__most-viewed a:not(.icon-cross), -.btn:focus .knowledge-base__most-viewed a:not(.icon-cross), -.pon-btn:focus .knowledge-base__most-viewed a:not(.icon-cross) { - transform: translateX(5px); -} - -.btn:hover .pon-icon:not(.pon-icon--loading), -.pon-btn:hover .pon-icon:not(.pon-icon--loading), -.btn:active .pon-icon:not(.pon-icon--loading), -.pon-btn:active .pon-icon:not(.pon-icon--loading), -.btn:focus .pon-icon:not(.pon-icon--loading), -.pon-btn:focus .pon-icon:not(.pon-icon--loading) { - transform: translate(5px, -50%); -} - -.btn:active, -.pon-btn:active { - background: #0d4282; - border-color: #0d4282; -} - -.btn:focus, -.pon-btn:focus { - outline: 2px solid #588294; - outline-offset: 3px; -} - -.btn-secondary, -.pon-btn-secondary, -.btn-grey, -.pon-btn-grey { - background-color: #f2f2f2; - border: 2px solid #f2f2f2; - color: #000; -} - -.btn-secondary.disabled, -.pon-btn-secondary.disabled, -.btn-grey.disabled, -.pon-btn-grey.disabled, -.btn-secondary:disabled, -.pon-btn-secondary:disabled, -.btn-grey:disabled, -.pon-btn-grey:disabled { - opacity: 0.45; -} - -.btn-secondary:hover, -.pon-btn-secondary:hover, -.btn-grey:hover, -.pon-btn-grey:hover, -.btn-secondary:active, -.pon-btn-secondary:active, -.btn-grey:active, -.pon-btn-grey:active, -.btn-secondary:focus, -.pon-btn-secondary:focus, -.btn-grey:focus, -.pon-btn-grey:focus { - background-color: #E0E0E0; - border-color: #E0E0E0; -} - -.btn-secondary:active, -.pon-btn-secondary:active, -.btn-grey:active, -.pon-btn-grey:active { - background-color: #F9F9F9; - border-color: #E0E0E0; -} - -.btn-white, -.pon-btn-white { - background-color: #fff; - border: 2px solid #fff; - color: #000; -} - -.btn-white.disabled, -.pon-btn-white.disabled, -.btn-white:disabled, -.pon-btn-white:disabled { - opacity: 0.45; -} - -.btn-white:hover, -.pon-btn-white:hover, -.btn-white:focus, -.pon-btn-white:focus, -.btn-white:active, -.pon-btn-white:active { - background-color: #E0E0E0; - border: 2px solid #e0e0e0; - color: #000; -} - -.btn-white:active, -.pon-btn-white:active { - background-color: #fff; -} - -.btn-outline, -.pon-btn-outline { - background-color: transparent; - border-color: #fff; - color: #fff; -} - -.btn-outline.disabled, -.pon-btn-outline.disabled, -.btn-outline:disabled, -.pon-btn-outline:disabled { - opacity: 0.45; -} - -.btn-outline:hover, -.pon-btn-outline:hover, -.btn-outline:focus, -.pon-btn-outline:focus, -.btn-outline:active, -.pon-btn-outline:active { - background-color: rgba(224,224,224,0.2); - border-color: #fff; - color: #fff; -} - -.btn-outline:active, -.pon-btn-outline:active { - background-color: rgba(224,224,224,0.4); -} - -.btn-outline--grey, -.pon-btn-outline--grey { - background-color: transparent; - border-color: #E0E0E0; - color: #000; -} - -.btn-outline--grey:hover, -.pon-btn-outline--grey:hover, -.btn-outline--grey:focus, -.pon-btn-outline--grey:focus, -.btn-outline--grey:active, -.pon-btn-outline--grey:active { - background-color: rgba(224,224,224,0.8); - border-color: #E0E0E0; - color: #000; -} - -.btn-green, -.pon-btn-green { - background-color: #5b8451; - border: 2px solid #5b8451; -} - -.btn-green.disabled, -.pon-btn-green.disabled, -.btn-green:disabled, -.pon-btn-green:disabled { - opacity: 0.45; -} - -.btn-green.disabled:hover, -.pon-btn-green.disabled:hover, -.btn-green:disabled:hover, -.pon-btn-green:disabled:hover { - background-color: #5b8451; - border-color: #5b8451; -} - -.btn-green:hover, -.pon-btn-green:hover, -.btn-green:active, -.pon-btn-green:active, -.btn-green:focus, -.pon-btn-green:focus { - color: #fff; - background-color: #4E7744; - border: 2px solid #4e7744; -} - -.btn-green:active, -.pon-btn-green:active { - background-color: #6A9B5E; - border: 2px solid #6a9b5e; -} - -.btn-add, -.pon-btn-add { - font-size: 13px; - color: #004a99; - font-weight: 600; -} - -.btn-add:hover, -.pon-btn-add:hover, -.btn-add:active, -.pon-btn-add:active, -.btn-add:focus, -.pon-btn-add:focus { - color: #004a99; -} - -.btn-add:after, -.pon-btn-add:after { - font-weight: 600; - margin-left: 10px; - transform: rotate(45deg); - display: inline-block; -} - -.btn.full-width, -.pon-btn.full-width { - width: 100%; -} - -.arrow-link { - font-size: 1rem; - color: #004a99; - font-weight: bold; - cursor: pointer; -} - -.arrow-link:after { - position: relative; - font-size: 11px; - font-weight: bold; - margin: 0 5px 0 25px; - left: 0; - transition: ease-in-out .2s; -} - -.arrow-link:hover { - color: #004a99; -} - -.arrow-link:hover:after { - left: 5px; -} - -.arrow-link--black { - color: #000; -} - -.arrow-link--black:hover { - color: #000; -} - -.arrow-link--white { - color: #fff; -} - -.arrow-link--white:hover { - color: #fff; -} - -.btn-is-loading { - pointer-events: none; -} - -.btn-is-loading:after, -.wizard__loader:after { - content: ''; - display: block; - opacity: 1; - transition: opacity .3s .3s ease-in-out; - margin-left: 13px; - height: 18px; - width: 18px; - border-radius: 18px; - float: right; - border-top: 2px solid rgba(255,255,255,0.2); - border-right: 2px solid rgba(255,255,255,0.2); - border-bottom: 2px solid rgba(255,255,255,0.2); - border-left: 2px solid #fff; - animation: btn-spinner 1.1s infinite linear; -} - -.btn-is-loading--centered::after { - transition: none; - position: static; - right: auto; - top: auto; - margin: 0 auto; -} - -.btn-is-loading--centered.black::after { - border-left: 2px solid #000; -} - -.btn-is-loading--centered span { - display: none; -} - -.btn-is-loading .gazelle-icon, -.btn-is-loading .ga-icon, -.btn-is-loading .account .form-wishlist-items li .product-item-actions a, -.btn-is-loading .knowledge-base__most-viewed a { - display: none; -} - -.lcly-primary-trigger:hover .ga-icon:not(.icon-cross), -.lcly-primary-trigger:active .ga-icon:not(.icon-cross), -.lcly-primary-trigger:focus .ga-icon:not(.icon-cross), -.lcly-primary-trigger:hover .knowledge-base__most-viewed a:not(.icon-cross), -.lcly-primary-trigger:active .knowledge-base__most-viewed a:not(.icon-cross), -.lcly-primary-trigger:focus .knowledge-base__most-viewed a:not(.icon-cross) { - transform: translateX(5px); -} - -.lcly-primary-trigger:hover .pon-icon:not(.pon-icon--loading), -.lcly-primary-trigger:active .pon-icon:not(.pon-icon--loading), -.lcly-primary-trigger:focus .pon-icon:not(.pon-icon--loading), -.lcly-primary-trigger:hover .lcly-primary-trigger__icon:not(.pon-icon--loading), -.lcly-primary-trigger:active .lcly-primary-trigger__icon:not(.pon-icon--loading), -.lcly-primary-trigger:focus .lcly-primary-trigger__icon:not(.pon-icon--loading) { - transform: translate(5px, -50%); -} - -@keyframes btn-spinner { - 0% { - transform: rotate(0deg); - } - - 100% { - transform: rotate(360deg); - } -} - -.pdp .product-cta-buttons .btn, -.pdp .upsells__buttons .btn { - padding: 13px 15px; -} - -.pdp .product-cta-buttons .btn .ga-icon, -.pdp .upsells__buttons .btn .ga-icon, -.pdp .product-cta-buttons .btn .knowledge-base__most-viewed a, -.pdp .upsells__buttons .btn .knowledge-base__most-viewed a { - margin-left: 5px; -} - -.flash-messages-wrapper { - position: fixed; - top: 0; - left: 0; - z-index: 2060; - width: 100%; -} - -.flash-messages-wrapper .flash-message { - color: #fff; - position: relative; - width: 100%; - height: 60px; - margin: 0 0 10px 0; - padding: 0 30px; - background: #93887e; -} - -.flash-messages-wrapper .flash-message .show-flash-timer { - display: block; - width: 100vw; - height: 100%; - position: absolute; - top: 0; - left: -100vw; - background: #84776b; - z-index: 2065; - will-change: transform; -} - -.flash-messages-wrapper .flash-message .show-flash-timer.load { - transform: translateX(100vw); -} - -.flash-messages-wrapper .flash-message .flash-message-content { - position: relative; - z-index: 2070; - font-size: 12px; - font-weight: 600; - line-height: 60px; -} - -.flash-messages-wrapper .flash-message .flash-message-close { - float: right; - cursor: pointer; - font-weight: normal; -} - -.flash-messages-wrapper .flash-message .flash-message-close:before { - font-size: 12px; -} - -.flash-messages-wrapper .flash-message.notice_alert { - background: #ee3a3a; - text-align: center; -} - -.flash-messages-wrapper .flash-message.notice_swipe .flash-message-content:before { - font-size: 30px; - margin-right: 10px; -} - -@keyframes animateFlashMessageDuration { - from { - width: 0; - } - - to { - width: 100%; - } -} - -body:not(.catalog-product-view):not(.bikewizard-index-index) .breadcrumbs { - display: none; -} - -.breadcrumbs { - z-index: 1000; - font-size: 14px; - font-weight: 600; -} - -.breadcrumbs ol { - margin-left: 0; -} - -.breadcrumbs ul { - margin-left: 0; -} - -.breadcrumbs li { - display: inline; - color: #7f7f7f; -} - -.breadcrumbs li a { - color: #7f7f7f; -} - -.breadcrumbs li .close-lightbox { - background: none; -} - -.breadcrumbs li:not(:last-child):after { - content: '>'; - padding: 0 2px; -} - -.breadcrumbs li:last-of-type { - color: #000; -} - -.breadcrumbs li:last-of-type a { - color: #000; -} - -.ui-slider { - border: 1px dotted rgba(0,0,0,0.3); - margin: 0 15px 15px; - position: relative; -} - -.ui-slider .ui-slider-handle { - border-radius: 50%; - height: 10px; - margin-left: -5px; - position: absolute; - transition: box-shadow 250ms ease-in-out; - top: -4.5px; - width: 10px; - z-index: 2; -} - -.ui-slider .ui-slider-handle.ui-state-default { - background-color: #004a99; -} - -.ui-slider .ui-slider-handle.ui-state-hover, -.ui-slider .ui-slider-handle.ui-state-active { - box-shadow: 0 0 5px #004a99; -} - -.ui-slider .ui-slider-range { - border: 1px solid #004a99; - position: absolute; - z-index: 1; -} - -.ui-slider + #ln_slider_text_price { - margin-left: 15px; -} - -.swatch-option-tooltip, -.swatch-attribute-tooltip { - display: none; -} - -.swatch-attribute-label { - font-weight: bold; - position: relative; -} - -.swatch-attribute-label.required { - padding-right: 10px; -} - -.swatch-attribute-label[data-required="1"]:after { - content: '*'; - color: red; - position: absolute; - right: -11px; - top: -2px; - font-weight: bold; - font-size: 1em; -} - -.swatch-attribute-selected-option { - color: #646464; - padding-left: 17px; -} - -.swatch-attribute-options { - margin-top: 10px; -} - -.swatch-attribute-options:focus { - box-shadow: none; -} - -.swatch-option { - padding: 1px 2px; - min-width: 30px; - max-width: 100%; - height: 20px; - float: left; - margin: 0 10px 5px 0; - text-align: center; - cursor: pointer; - position: relative; - border: 1px solid #dadada; - overflow: hidden; - text-overflow: ellipsis; -} - -.swatch-option:focus { - box-shadow: 0 0 3px 1px #68a8e0; -} - -.swatch-option.text { - background: #F0F0F0; - color: #686868; - font-size: 12px; - font-weight: 700; - line-height: 20px; - padding: 4px 8px; - min-width: 22px; - margin-right: 7px; -} - -.swatch-option.selected { - outline: 2px solid #ff5501; - border: 1px solid #fff; - color: #333; -} - -.swatch-option.text.selected { - background-color: #FFF; -} - -.clearfix:after, -.modal-header:after, -.modal-footer:after { - content: " "; - visibility: hidden; - display: block; - height: 0; - clear: both; -} - -.swatch-attribute.size .swatch-option, -.swatch-attribute.manufacturer .swatch-option { - background: #f0f0f0; - color: #949494; -} - -.swatch-attribute.size .swatch-option.selected, -.swatch-attribute.manufacturer .swatch-option.selected { - color: black; - background: #fff; - border: 1px solid #fff; -} - -.swatch-option:not(.disabled):hover { - outline: 1px solid #999; - border: 1px solid #fff; - color: #333; -} - -.swatch-option.image:not(.disabled):hover, -.swatch-option.color:not(.disabled):hover { - outline: 2px solid #e00; - border: 1px solid #fff; -} - -.swatch-option.disabled { - cursor: default; -} - -.swatch-option.disabled:after { - content: ''; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - background: -moz-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%); - background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(42%, rgba(255,255,255,0)), color-stop(43%, #fff), color-stop(46%, #fff), color-stop(47%, #ff5216), color-stop(53%, #ff5216), color-stop(54%, #fff), color-stop(57%, #fff), color-stop(58%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,0))); - background: -webkit-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%); - background: -o-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%); - background: -ms-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%); - background: linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1); -} - -.swatch-option-tooltip { - max-width: 140px; - max-height: 100%; - min-height: 20px; - min-width: 20px; - position: absolute; - padding: 5px; - background: #fff; - color: #949494; - border: 1px solid #adadad; - display: none; - z-index: 999; - text-align: center; -} - -.swatch-option-tooltip .corner, -.swatch-option-tooltip-layered .corner { - left: 40%; - position: absolute; - bottom: 0; - height: 8px; -} - -.swatch-option-tooltip .corner:after, -.swatch-option-tooltip-layered .corner:after { - content: ''; - position: relative; - top: 1px; - left: -15px; - width: 0; - height: 0; - border-style: solid; - border-width: 7px 7.5px 0 7.5px; - border-color: #fff transparent transparent transparent; - font-size: 1px; -} - -.swatch-option-tooltip .corner:before, -.swatch-option-tooltip-layered .corner:before { - content: ''; - position: relative; - top: 2px; - left: 0; - width: 0; - height: 0; - border-style: solid; - border-width: 8px 8.5px 0 8.5px; - border-color: #adadad transparent transparent transparent; - font-size: 1px; -} - -.swatch-option-tooltip .image, -.swatch-option-tooltip-layered .image { - display: block; - height: 130px; - width: 130px; - margin: 0 auto; -} - -.swatch-option-tooltip .title { - max-width: 140px; - min-height: 20px; - max-height: 200px; - color: #282828; - text-align: center; - display: block; - overflow: hidden; -} - -.swatch-opt { - margin: 20px 0; -} - -.swatch-more { - display: inline-block; - margin: 2px 0; - text-decoration: none; - position: static; - z-index: 1; -} - -.swatch-option-link-layered { - position: relative; - margin: 0; - padding: 0; -} - -.swatch-option-link-layered:focus > div { - box-shadow: 0 0 3px 1px #68a8e0; -} - -.swatch-option-tooltip-layered { - width: 140px; - position: absolute; - background: #fff; - color: #949494; - border: 1px solid #adadad; - display: none; - z-index: 999; - left: -47px; -} - -.swatch-visual-tooltip-layered { - height: 160px; - top: -170px; -} - -.swatch-textual-tooltip-layered { - height: 30px; - top: -40px; -} - -.swatch-option-link-layered:hover > .swatch-option-tooltip-layered { - display: block; -} - -.swatch-attribute-options .swatch-option-tooltip-layered .title { - width: 100%; - height: 20px; - position: absolute; - bottom: -5px; - left: 0; - color: #282828; - text-align: center; - margin-bottom: 10px; -} - -.swatch-option-disabled:after { - content: ''; - position: absolute; - width: 42px; - height: 2px; - background: red; - transform: rotate(-30deg); - -o-transform: rotate(-30deg); - -moz-transform: rotate(-30deg); - -ms-transform: rotate(-30deg); - -webkit-transform: rotate(-30deg); - z-index: 995; - left: -4px; - top: 10px; -} - -.swatch-option-disabled { - outline: none; - cursor: default; - border: 0; -} - -.swatch-opt-listing { - margin-bottom: 10px; -} - -.swatch-option-loading { - content: url("../images/loader-2.gif"); -} - -.swatch-input { - left: -1000px; - position: absolute; - visibility: hidden; -} - -.customer-dob input, -input[type=file], -.input-file, -.input-text { - background-color: transparent; - border-bottom: 1px solid #bababa; - height: 32px; - margin-top: 5px; - font-size: 1rem; - padding: 0; - position: relative; - width: 100%; - z-index: 100; -} - -.customer-dob input:focus, -input[type=file]:focus, -.input-file:focus, -.input-text:focus { - border-bottom: 2px solid #004a99; - padding-top: 1px; -} - -.customer-dob input.full-border, -input[type=file].full-border, -.input-file.full-border, -.input-text.full-border { - height: 41px; - border: 1px solid rgba(0,0,0,0.1); - padding: 0 15px; - border-radius: 2px; -} - -.customer-dob input.full-border:focus, -input[type=file].full-border:focus, -.input-file.full-border:focus, -.input-text.full-border:focus { - border: 2px solid #004a99; - padding: 0 14px; -} - -.filled-in .customer-dob input, -.filled-in input[type=file], -.filled-in .input-file, -.filled-in .input-text { - border: 0; - pointer-events: none; -} - -#connected-dob-field { - margin: 0 auto 20px; -} - -#connected-dob-field .mage-error { - background-color: transparent; - font-size: 14px; - color: #ee3a3a; - position: static; - margin: 10px 0 15px 0; - width: 100%; -} - -input[type=file], -.input-file { - display: inline-block; - line-height: 1; - padding-top: 7px; - height: 32px; -} - -textarea.input-text { - height: auto; - resize: none; -} - -textarea.input-text:focus { - margin-bottom: 14px; - padding-top: 0; -} - -textarea.full-border { - width: 100%; - border: 1px solid rgba(0,0,0,0.1); - padding: 15px; - border-radius: 2px; -} - -textarea.full-border:focus { - border: 2px solid #004a99; -} - -.qty.field { - width: 70px; -} - -.qty.field .decrease-qty, -.qty.field .increase-qty { - display: block; - background-color: transparent; - float: left; - height: 20px; - width: 20px; - border-radius: 20px; - line-height: 20px; - position: relative; - z-index: 99; - transition: background-color .2s; - font-size: 1.25rem; -} - -.qty.field .decrease-qty:hover, -.qty.field .increase-qty:hover { - background-color: #f2f2f2; -} - -.qty.field .increase-qty { - line-height: 22px; - float: right; -} - -.qty.field .control .mage-error { - background-color: transparent; - top: 50px; -} - -.qty.field .control .input-text { - -moz-appearance: textfield; - background-color: transparent; - border: none; - display: block; - height: 22px; - line-height: 22px; - margin: 0; - padding: 0; - position: absolute; - text-align: center; - top: 0; - z-index: 0; -} - -.qty.field .control .input-text::-webkit-inner-spin-button, -.qty.field .control .input-text::-webkit-outer-spin-button { - -webkit-appearance: none; - margin: 0; -} - -input[type=checkbox], -input[type=radio] { - position: absolute; - left: -9999em; -} - -input[type=checkbox].required + label .checker, -input[type=radio].required + label .checker { - position: relative; - z-index: 2; -} - -input[type=checkbox] + label .checker, -input[type=radio] + label .checker { - float: left; - height: 16px; - width: 16px; - border: 1px solid #7f7f7f; - margin: 5px 10px 0 0; - vertical-align: middle; - cursor: pointer; - position: relative; -} - -input[type=checkbox] + label .checker.value, -input[type=radio] + label .checker.value { - background-color: transparent; - color: rgba(0,0,0,0.2); - display: inline-block; - height: 19px; - margin: 0 10px 0 0; - width: auto; -} - -input[type=checkbox] + label .checker:before, -input[type=radio] + label .checker:before { - display: none; -} - -input[type=checkbox].active-checked:checked + label .checker, -input[type=radio].active-checked:checked + label .checker, -input[type=checkbox].active + label .checker, -input[type=radio].active + label .checker, -input[type=checkbox]:checked + label .checker, -input[type=radio]:checked + label .checker { - background-color: #004a99; - border-color: #004a99; -} - -input[type=checkbox].active-checked:checked + label .checker.icon-oval-closed:before, -input[type=radio].active-checked:checked + label .checker.icon-oval-closed:before, -input[type=checkbox].active + label .checker.icon-oval-closed:before, -input[type=radio].active + label .checker.icon-oval-closed:before, -input[type=checkbox]:checked + label .checker.icon-oval-closed:before, -input[type=radio]:checked + label .checker.icon-oval-closed:before { - font-size: 8px; - line-height: 20px; -} - -input[type=checkbox].active-checked:checked + label .checker.icon-oval-closed:after, -input[type=radio].active-checked:checked + label .checker.icon-oval-closed:after, -input[type=checkbox].active + label .checker.icon-oval-closed:after, -input[type=radio].active + label .checker.icon-oval-closed:after, -input[type=checkbox]:checked + label .checker.icon-oval-closed:after, -input[type=radio]:checked + label .checker.icon-oval-closed:after { - border-radius: 50%; -} - -input[type=checkbox].active-checked:checked + label .checker.value, -input[type=radio].active-checked:checked + label .checker.value, -input[type=checkbox].active + label .checker.value, -input[type=radio].active + label .checker.value, -input[type=checkbox]:checked + label .checker.value, -input[type=radio]:checked + label .checker.value { - background-color: transparent; - color: #000; -} - -input[type=checkbox].active-checked:checked + label .checker:after, -input[type=radio].active-checked:checked + label .checker:after, -input[type=checkbox].active + label .checker:after, -input[type=radio].active + label .checker:after, -input[type=checkbox]:checked + label .checker:after, -input[type=radio]:checked + label .checker:after { - content: " "; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - border: 2px solid #fff; -} - -input[type=checkbox]:disabled + label .checker, -input[type=radio]:disabled + label .checker { - opacity: 0.35; -} - -input[type=checkbox] + label .checker { - border-radius: 2px; -} - -input[type=radio] + label .checker { - border-radius: 50%; -} - -.checkbox-field { - display: table; -} - -.checkbox-field .checkbox-button, -.checkbox-field .checkbox-text { - display: table-cell; -} - -.checkbox-field .checkbox-button { - padding: 0px 15px; -} - -.checkbox-field .checkbox-text { - padding-right: 15px; -} - -.label { - display: block; - font-size: 14px; - text-transform: uppercase; - text-align: left; -} - -.form-horizontal .checkbox .label, -.form-horizontal .checkbox-inline .label, -.form-horizontal .radio .label, -.form-horizontal .radio-inline .label { - margin-top: 8px; - margin-bottom: 10px; -} - -span.select { - display: block; - position: relative; - z-index: 10; - width: 100%; -} - -span.select:after { - content: "\e00b"; - color: #004a99; - font-family: 'Gazelle'; - font-size: 12px; - height: 32px; - line-height: 32px; - margin-top: 15px; - pointer-events: none; - position: absolute; - right: 0; - top: 0; -} - -span.select .label { - display: block; -} - -span.select.dateselect::after { - display: none; -} - -span.select select { - appearance: none; - -moz-appearance: none; - -webkit-appearance: none; - background-color: transparent; - border-bottom: 1px solid rgba(0,0,0,0.1); - border-radius: 0; - height: 32px; - width: 100%; -} - -span.select select:focus { - border-bottom: 2px solid #004a99; - padding-top: 1px; -} - -span.select select option:checked { - color: #bababa; -} - -.limiter .select { - display: initial; - margin: 0 12px; -} - -.limiter .select select { - margin: 0; - width: 43px; -} - -.limiter .select:after { - margin: 0; -} - -.field { - position: relative; - margin-top: 30px; -} - -@media (max-width:767px) { - .field .tooltip-icon { - display: block; - margin: 3px 0; - } -} - -.field.clear-left { - clear: left; -} - -.field.row-choice { - padding-bottom: 8px; -} - -.field.row-choice label { - padding-left: 0; - display: inline-block; - margin-top: 8px; - margin-bottom: 10px; -} - -.field.row-choice label:not(.label) { - margin: 0 15px 20px 0; -} - -.field.row-choice label:not(.label):last-of-type::after { - content: ''; - display: block; - position: absolute; - height: 0; - margin-top: 6px; - border-bottom: 1px solid rgba(0,0,0,0.1); - left: 15px; - right: 15px; -} - -.rows-without-lines .field.row-choice label:not(.label) { - margin: 0 15px 10px 0; -} - -.rows-without-lines .field.row-choice label:not(.label):last-of-type::after { - display: none; -} - -.field.row-choice .checkbox + label:not(.label) { - margin-left: 25px; -} - -.field.row-choice .checkbox + label:not(.label) .checker { - margin-left: -25px; - margin-top: 3px; -} - -form .fieldset { - margin-bottom: 15px; -} - -form div.mage-error { - background-color: transparent; - color: #ee3a3a; - font-size: 14px; - margin-top: 5px; - font-weight: 600; -} - -form .qty-field div.mage-error { - background-color: transparent; - margin-bottom: 15px; - position: relative; -} - -form .actions-toolbar .secondary { - float: left; -} - -form .actions-toolbar .primary { - float: left; - margin-right: 15px; -} - -@media screen and (max-width:767px) { - form .actions-toolbar .primary button { - text-align: center; - } -} - -form .label { - padding: 0; - font-weight: 600; - color: #004a99; - font-size: 12px; - letter-spacing: 1.4px; -} - -form label a { - font-weight: 600; - color: #004a99; -} - -form .control { - position: relative; -} - -form .control .toggle-password-visibility { - position: absolute; - top: 13px; - right: 12px; - z-index: 101; -} - -form .control .toggle-password-visibility .ga-icon, -form .control .toggle-password-visibility .knowledge-base__most-viewed a { - font-size: 20px; - color: #bababa; -} - -form .field-note { - color: #7f7f7f; - font-size: 14px; - margin-top: 7px; -} - -form .form-filler { - position: absolute; - top: 0; - left: 0; - width: 0; - height: 0; - opacity: 0; -} - -.webforms form { - font-size: 14px; -} - -.webforms form .fieldset, -.webforms form .fieldset:not(.spaced-fields) .field, -.webforms form .actions-toolbar { - padding-left: 0; - padding-right: 0; -} - -.webforms form .hidden-title .legend, -.webforms form .hidden-title br { - display: none; -} - -.webforms form .field { - padding-left: 0; -} - -.webforms form fieldset select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - width: 100%; - margin-top: 5px; - background: transparent url('../images/icons/chevron-down.svg') no-repeat; - background-position: center right 14px; - border-bottom: 1px solid rgba(0,0,0,0.1); - line-height: 32px; - border-radius: 0; -} - -.ie11 .webforms form fieldset select { - background: none; -} - -.webforms form textarea { - margin-top: 5px; - border: 1px solid rgba(0,0,0,0.1); - width: 100%; - min-width: 100%; - min-height: 90px; - padding: 15px; - font-size: 14px; -} - -.webforms form .type-select-radio .field { - margin-top: 4px; - padding-left: 0; - display: inline-block; -} - -.webforms form .validation-advice { - font-size: 14px; - margin-top: 6px; -} - -.webforms form .hidden-contact-field { - display: none; -} - -.webforms form input[type=checkbox] + label .checker:nth-of-type(2), -.webforms form input[type=radio] + label .checker:nth-of-type(2) { - display: none; -} - -fieldset:disabled .input-text, -fieldset:disabled select { - background-color: rgba(0,0,0,0.1); - border-bottom: 1px solid rgba(0,0,0,0.1); - height: 32px; - line-height: 32px; - margin: 15px 0; - padding: 0; - position: relative; - width: 100%; - z-index: 100; -} - -fieldset:disabled input[type=checkbox] + label .checker, -fieldset:disabled input[type=radio] + label .checker { - background-color: rgba(0,0,0,0.1); - border: 1px solid rgba(0,0,0,0.1); -} - -.date-dropdowns { - overflow: hidden; - margin: 0; - display: inline-block; - padding: 0 0 0 0; -} - -.date-dropdowns .day, -.date-dropdowns .month, -.date-dropdowns .year { - float: left; - margin-right: 20px; - padding: 0 10px; - width: initial; -} - -.label-description { - display: block; - font-size: 0.9rem; - margin: 15px 0 -5px 0; -} - -@media (min-width:1200px) { - #leaseForm { - width: 100%; - } -} - -input.fake-hidden { - position: absolute; - opacity: 0; - z-index: -9; - pointer-events: none; - left: -99999px; -} - -.js-error { - display: none; - color: #ee3a3a; - margin: 0; - clear: both; - position: relative; - top: -15px; -} - -.js-error--pushed { - top: -10px; -} - -@media (min-width:480px) { - .js-error--pushed { - margin-left: 41.667%; - } -} - -@media (min-width:1200px) { - .js-error--pushed { - margin-left: 50%; - } -} - -input[type=checkbox].toggle { - height: 0; - width: 0; - visibility: hidden; -} - -input[type=checkbox].toggle + label { - cursor: pointer; - width: 32px; - height: 16px; - background: grey; - display: block; - border-radius: 32px; - position: relative; -} - -input[type=checkbox].toggle + label:active:after { - width: 16px; -} - -input[type=checkbox].toggle + label:after { - content: ''; - position: absolute; - top: 2px; - left: 2px; - width: 12px; - height: 12px; - background: #fff; - border-radius: 32px; - transition: 0.3s; -} - -input[type=checkbox].toggle:checked + label { - background: #004a99; -} - -input[type=checkbox].toggle:checked + label:after { - left: calc(100% - 2px); - transform: translateX(-100%); -} - -._has-datepicker + .ui-datepicker-trigger { - display: none; -} - -.webforms fieldset select { - margin-top: 25px; - margin-bottom: 15px; -} - -.webforms fieldset input[type=file] { - margin-bottom: 15px; -} - -.webforms-datepicker .webforms-calendar { - display: block; - width: auto; -} - -.webforms-datepicker .webforms-calendar:hover { - cursor: pointer; -} - -.webforms-datepicker ._has-datepicker.input-text { - pointer-events: none; -} - -.webforms .webforms-description-text { - margin-bottom: 0; -} - -.webforms .webforms-description-text p { - margin-bottom: 0; -} - -.field-spinner::after { - content: ''; - position: absolute; - display: block; - opacity: 1; - z-index: 100; - transition: opacity .3s .3s ease-in-out; - right: 24px; - top: 34px; -} - -.form-shipping-address .field-spinner::after { - right: 0; - top: 8px; -} - -.form-address-edit .field-spinner::after { - right: 24px; - top: 26px; -} - -.ui-datepicker-trigger { - margin-top: -10px; -} - -.ui-datepicker-trigger::before { - content: "\e906"; - font-family: 'ga-icon'; -} - -@media (max-width:767px) { - .opentip-container { - width: 240px; - } -} - -@media print { - @page { - margin: 0; - size: auto; - } - - a:after { - display: none; - } - - body { - -webkit-print-color-adjust: exact; - margin: 15px 25px; - } - - header nav.navbar { - display: block; - padding: 0; - position: static; - } - - header nav.navbar #navbar > div, - header nav.navbar #navbar > ul { - display: none; - } - - header nav.navbar .navbar-header { - height: auto; - position: static; - } - - header nav.navbar .navbar-header .navbar-brand { - position: static; - transform: translateY(0); - } - - table.table-comparison { - table-layout: fixed; - } - - table.table-comparison tbody tr td, - table.table-comparison tfoot tr td, - table.table-comparison thead tr td, - table.table-comparison tbody tr th, - table.table-comparison tfoot tr th, - table.table-comparison thead tr th { - background-color: #f5f5f5; - padding: 0 15px; - } - - table.table-comparison tbody tr td h3, - table.table-comparison tfoot tr td h3, - table.table-comparison thead tr td h3, - table.table-comparison tbody tr th h3, - table.table-comparison tfoot tr th h3, - table.table-comparison thead tr th h3 { - font-size: 1.5em; - height: calc(1.5em * 3); - overflow: hidden; - text-overflow: ellipsis; - } - - table.table-comparison tbody tr td:nth-child(even), - table.table-comparison tfoot tr td:nth-child(even), - table.table-comparison thead tr td:nth-child(even), - table.table-comparison tbody tr th:nth-child(even), - table.table-comparison tfoot tr th:nth-child(even), - table.table-comparison thead tr th:nth-child(even) { - background-color: #fafafa; - } - - table.table-comparison tbody tr td .title, - table.table-comparison tfoot tr td .title, - table.table-comparison thead tr td .title, - table.table-comparison tbody tr th .title, - table.table-comparison tfoot tr th .title, - table.table-comparison thead tr th .title, - table.table-comparison tbody tr td .value, - table.table-comparison tfoot tr td .value, - table.table-comparison thead tr td .value, - table.table-comparison tbody tr th .value, - table.table-comparison tfoot tr th .value, - table.table-comparison thead tr th .value { - width: 100%; - } - - table.table-comparison tbody tr td .product-item-description, - table.table-comparison tfoot tr td .product-item-description, - table.table-comparison thead tr td .product-item-description, - table.table-comparison tbody tr th .product-item-description, - table.table-comparison tfoot tr th .product-item-description, - table.table-comparison thead tr th .product-item-description { - margin: 0; - width: 100%; - } - - table.table-comparison tbody tr th, - table.table-comparison tfoot tr th, - table.table-comparison thead tr th { - padding-top: 25px; - } - - table.table-comparison tbody tr th .icon, - table.table-comparison tfoot tr th .icon, - table.table-comparison thead tr th .icon, - table.table-comparison tbody tr th .account .form-wishlist-items li .product-item-actions a, - table.table-comparison tfoot tr th .account .form-wishlist-items li .product-item-actions a, - table.table-comparison thead tr th .account .form-wishlist-items li .product-item-actions a { - display: none; - } - - table.table-comparison tbody tr.toggle, - table.table-comparison tfoot tr.toggle, - table.table-comparison thead tr.toggle { - display: table-row; - } - - table.table-comparison thead { - display: table-row-group; - } - - table.table-comparison .btn, - table.table-comparison .button-less, - table.table-comparison .button-more { - display: none; - } - - .page-main { - margin-top: 0; - padding: 0; - } - - .page.messages, - .table-caption, - .page-footer { - display: none; - } - - .table-wrapper { - overflow: visible; - } - - .account .sidebar-main, - .account .actions-toolbar { - display: none; - } - - #product-comparison .thead-top { - height: 225px; - } - - #product-comparison .compare__category-header .th { - background: #004a99; - } - - #product-comparison .compare__category-header .th .attribute-header_title { - color: #fff; - } - - #product-comparison .thead .tr { - background: #f2f2f2; - } - - #product-comparison .tbody > .tr:nth-of-type(2n) { - background: #f2f2f2; - } -} - -@media print { - .icon-frame-m, - .icon-frame-u, - .icon-frame-f, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--m, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--h, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--H, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--man, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--f, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--L, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--l, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--g, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--u, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--M, - .tile-icon[data-type='pim_itemgenderframe'].tile-icon--unisex { - width: 34px; - height: 21px; - } -} - -.product-highlight { - margin: 0 0 45px; -} - -@media (min-width:768px) { - .product-highlight { - margin-bottom: 60px; - } -} - -@media (min-width:992px) { - .product-highlight { - margin-bottom: 90px; - } -} - -@media (min-width:1200px) { - .product-highlight { - margin-bottom: 120px; - } -} - -.product-highlight__title { - font-size: 40px; - margin: 0 0 60px; - font-weight: 300; - line-height: 1.2; -} - -.product-highlight__content { - margin-bottom: 50px; -} - -.product-highlight__product-image { - background: #f2f2f2; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-align-self: flex-end; - -ms-align-self: flex-end; - align-self: flex-end; -} - -.product-highlight__product-image img { - width: 100%; -} - -.product-highlight__product-data { - margin-top: 20px; -} - -.product-highlight__product-data p { - font-size: 18px; - margin: 0; -} - -.product-highlight__product-data__price { - font-size: 14px; - color: #7f7f7f; -} - -.product-highlight__product-data__price .price-box { - display: inline-block; -} - -.product-highlight__product-data__price .price-box strong { - font-weight: normal; -} - -.product-highlight__flex { - display: flex; - flex-wrap: wrap; -} - -@media (max-width:991px) { - .product-highlight__title { - margin-bottom: 30px; - } -} - -@media (max-width:767px) { - .product-highlight { - margin-top: 30px; - } - - .product-highlight__title { - font-size: 24px; - margin-bottom: 20px; - } - - .product-highlight__product-image { - margin-top: 10px; - } - - .product-highlight__product-title { - margin-top: 10px; - } -} - -.search { - position: absolute; - top: 0; - left: 0; - right: 0; - z-index: 1; -} - -@media (min-width:992px) { - .topbar-active .search { - top: 37px; - } -} - -@media (min-width:992px) { - .no-navbar-top .search { - top: -8px; - } -} - -@media (min-width:992px) { - .topbar-active.minimize .search { - top: 30px; - } -} - -.search .search__background { - position: absolute; - right: 0; - left: 0; - opacity: 0; - height: 90px; - visibility: hidden; - background: #fff; - transition: opacity 800ms cubic-bezier(.25, .1, .25, 1) 200ms,visibility 0s 800ms; -} - -.search .search__entry { - position: absolute; - width: 120px; - right: 50px; - transition: width 400ms cubic-bezier(.25, .1, .25, 1); -} - -.search .search__entry input { - width: 100%; - margin-top: 28px; - padding: 6.5px 50px 6.5px 20px; - background: #f2f2f2; - border-radius: 18px; - transition: all 400ms cubic-bezier(.25, .1, .25, 1); -} - -@media (min-width:768px) { - .search .search__entry input { - border: 1px solid #f2f2f2; - } - - .transparent-menu .search .search__entry input { - background: transparent; - border-color: #fff; - } -} - -.search .search__entry input::placeholder { - color: #000; -} - -.transparent-menu .search .search__entry input::placeholder { - color: #fff; -} - -.minimize .search .search__entry input::placeholder { - color: #000; -} - -.transparent-menu .search .search__entry .ga-icon, -.transparent-menu .search .search__entry .knowledge-base__most-viewed a { - color: #fff; -} - -.minimize .search .search__entry .ga-icon, -.minimize .search .search__entry .knowledge-base__most-viewed a { - color: #000; -} - -.search .search__entry .search__mobile-label { - display: none; - font-size: 11px; - position: absolute; - right: 0; - top: 39px; -} - -.transparent-menu .search .search__entry .search__mobile-label { - color: #fff; -} - -.search .search__button, -.search .search__clear-button { - position: absolute; - font-size: 18px; - top: 34px; - right: 0; - background: none; - transition: top 400ms cubic-bezier(.25, .1, .25, 1); -} - -.search .search__button:hover, -.search .search__clear-button:hover { - color: #004a99; -} - -@media (min-width:768px) { - .search .search__button, - .search .search__clear-button { - right: 20px; - } -} - -.search .search__clear-button { - transition: top 400ms cubic-bezier(.25, .1, .25, 1),opacity 400ms cubic-bezier(.25, .1, .25, 1); - opacity: 0; - visibility: hidden; -} - -.search .search__results { - visibility: hidden; - position: absolute; - top: 75px; - left: 0; - right: 0; - padding: 15px 50px 0; - background: #fff; - opacity: 0; - transition: padding-top 400ms cubic-bezier(.25, .1, .25, 1),opacity 200ms cubic-bezier(.25, .1, .25, 1),visibility 0s 400ms; -} - -.search .search__results .search__results__message { - font-size: 14px; - color: #7f7f7f; - margin-bottom: 30px; -} - -.search .search__results .search__result { - margin-bottom: 30px; - display: flex; - cursor: pointer; -} - -.search .search__results .search__result__title { - font-size: 16px; - margin: 0; -} - -.search .search__results .search__result:hover .search__result__title { - color: #004a99; -} - -.search .search__results .search__result__subtitle { - font-size: 12px; - color: #7f7f7f; - margin: 0; -} - -.search .search__results .search__result--has-image img { - max-height: 90px; - width: auto; - background-color: #f2f2f2; -} - -.search .search__results .search__result--has-image .search__result-text { - margin: 0 0 0 20px; - align-self: center; -} - -.search .search__results__group { - padding-bottom: 60px; -} - -.search .search__results__group__title { - font-size: 12px; - color: #004a99; - text-transform: uppercase; - margin: 0 0 30px; - letter-spacing: 1.5px; -} - -.search .search__results__group__read-more { - font-size: 14px; - color: #004a99; - font-weight: bold; - cursor: pointer; - display: block; -} - -.search .search__results__group__read-more:hover { - color: #004a99; -} - -.search .search__results__group__read-more:hover .ga-icon, -.search .search__results__group__read-more:hover .knowledge-base__most-viewed a { - margin-left: 10px; -} - -.search .search__results__group__read-more .ga-icon, -.search .search__results__group__read-more .knowledge-base__most-viewed a { - font-size: 9px; - vertical-align: middle; - margin-left: 4px; - transition: margin-left 400ms cubic-bezier(.25, .1, .25, 1); -} - -.search.search--active { - z-index: 1055; -} - -@media (min-width:992px) { - .topbar-active .search.search--active { - top: 45px; - } -} - -.search.search--active .search__background { - height: 75px; - visibility: visible; - transition: opacity 400ms cubic-bezier(.25, .1, .25, 1); - opacity: 1; -} - -.search.search--active .search__entry { - width: calc(100% - 100px); -} - -.search.search--active .search__entry input { - margin-top: 0; - padding: 28px 40px 27px 37px; - border: none; - background: none; -} - -.search.search--active .search__entry input::placeholder { - color: transparent; -} - -.transparent-menu .search.search--active .search__entry input { - border-radius: 0; - border: none; -} - -.search.search--active .search__entry .search__mobile-label { - display: none; -} - -.search.search--active .search__button { - right: unset; - left: 0; - top: 25px; -} - -.search.search--active .search__button .ga-icon, -.search.search--active .search__button .knowledge-base__most-viewed a { - color: #000; -} - -.search.search--active .search__clear-button { - top: 25px; - opacity: 1; - visibility: visible; -} - -.search.search--active .search__clear-button .ga-icon, -.search.search--active .search__clear-button .knowledge-base__most-viewed a { - color: #000; -} - -.search.search--active .search__results { - padding-top: 30px; - overflow-y: auto; - max-height: calc(100vh - 75px); - visibility: visible; - opacity: 1; - transition: padding-top 400ms cubic-bezier(.25, .1, .25, 1),opacity 200ms cubic-bezier(.25, .1, .25, 1); -} - -@media (max-width:767px) { - .search:not(.search--active) .search__entry { - width: 0; - } - - .search:not(.search--active) .search__entry input { - width: 0; - padding: 0; - } - - .search:not(.search--active) .search__entry .search__button { - top: 6px; - font-size: 24px; - } - - .search .search__entry { - right: 22.5px; - } - - .search .search__entry .search__mobile-label { - display: inline-block; - } - - .search .search__results { - padding: 0 22.5px 100px; - } - - .search.search--active .search__entry { - width: calc(100% - 45px); - } -} - -@media (max-width:991px) { - .search .search__entry input { - margin-top: 13px; - } - - .search .search__button { - top: 18px; - } - - .search .search__clear-button { - top: 14px; - } - - .search .search__background { - height: 60px; - } - - .search .search__results { - top: 60px; - } - - .search.search--active .search__background { - height: 75px; - } - - .search.search--active .search__results { - padding-top: 45px; - max-height: calc(100vh - 60px); - } -} - -.search__loading { - width: 100%; - height: 100%; - visibility: hidden; - transition: visibility 0s .3s; - max-height: 80vh; -} - -.search__loading .search__loading-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - background: #fff; - opacity: 0; -} - -.search__loading--active { - visibility: visible; - transition: visibility 0s 0s; -} - -.search__loading--active .search__loading-overlay { - opacity: 1; -} - -.search__loading--use-fade .search__loading-overlay { - transition: opacity .3s; -} - -.search__spinner { - position: absolute; - right: calc(50% - 15px); - top: calc(50% - 15px); - width: 30px; - height: 30px; - border-radius: 30px; - border-top: 3px solid #bababa; - border-right: 3px solid #bababa; - border-bottom: 3px solid #bababa; - border-left: 3px solid #fff; - animation: search-spinner 1.1s infinite linear; -} - -@keyframes search-spinner { - 0% { - transform: rotate(0deg); - } - - 100% { - transform: rotate(360deg); - } -} - -.page.messages .messages .message { - -webkit-animation: hide-notification 250ms ease-in-out 20s forwards; - -o-animation: hide-notification 250ms ease-in-out 20s forwards; - animation: hide-notification 250ms ease-in-out 20s forwards; - background-color: rgba(13,66,130,0.9); - bottom: 0; - box-shadow: -1px 2px 14px 0 rgba(0,0,0,0.19); - position: fixed; - right: 50%; - transition: all 500ms ease-in-out; - transform: translateY(100%) translateX(50%); - z-index: 3000; - color: #fff; - font-weight: 800; - padding: 15px 30px; - text-align: center; -} - -.page.messages .messages .message a { - color: #fff; - text-decoration: underline; -} - -.page.messages .messages .message a:hover { - color: #f2f2f2; -} - -.page.messages .messages .message.clickable { - cursor: pointer; -} - -@media screen and (max-width:991px) { - .page.messages .messages .message { - width: 100vw; - } -} - -body[aria-busy="false"] .page.messages .messages .message:not(.error) { - transform: translateY(0) translateX(50%); -} - -@media (min-width:992px) { - body[aria-busy="false"] .page.messages .messages .message:not(.error) { - transform: translateY(-50px) translateX(50%); - } -} - -@media screen and (max-width:991px) { - .page.messages .messages .message { - width: 100vw; - } -} - -.page.messages .messages .message.error { - background-color: #e34545; - bottom: auto; - top: 0; - -webkit-animation: hide-notification-to-top 250ms ease-in-out 20s forwards; - -o-animation: hide-notification-to-top 250ms ease-in-out 20s forwards; - animation: hide-notification-to-top 250ms ease-in-out 20s forwards; -} - -.page.messages .messages .message.show-again { - -webkit-animation: none; - -o-animation: none; - animation: none; -} - -@keyframes hide-notification { - 0% { - transform: translateY(-50px) translateX(50%); - opacity: 1; - } - - 100% { - transform: translateY(100%) translateX(50%); - opacity: 0; - } -} - -@keyframes hide-notification-to-top { - 0% { - transform: translateY(50px) translateX(50%); - opacity: 1; - } - - 100% { - transform: translateY(-100%) translateX(50%); - opacity: 0; - } -} - -.not-available { - height: 100%; - margin-top: -30px; - text-align: center; -} - -@media (min-width:992px) { - .not-available > [class*="col-"] { - position: relative; - top: 50%; - transform: translateY(-50%); - } -} - -.not-available > [class*="col-"] h3, -.not-available > [class*="col-"] p { - width: 100%; -} - -.stock-status { - border: 2px solid; - border-radius: 10px; - display: table; - font-size: 14px; - min-height: 40px; - overflow: hidden; - width: 100%; -} - -.stock-status > span { - display: table-cell; - padding: 5px 15px; - vertical-align: middle; -} - -.stock-status:before { - content: "\e013"; - color: #fff; - display: table-cell; - font-family: 'Gazelle'; - font-size: 20px; - text-align: center; - vertical-align: middle; - width: 50px; -} - -.stock-status.green { - border-color: #5fd350; -} - -.stock-status.green:before { - background-color: #5fd350; -} - -.stock-status.yellow { - border-color: #e9682d; -} - -.stock-status.yellow:before { - background-color: #e9682d; -} - -.product-stock { - color: #a9a9a9; - font-size: 0.9rem; - line-height: 0.9rem; - margin-top: 10px; - clear: both; - text-transform: lowercase; -} - -.product-stock > div span { - display: inline-block; -} - -.product-stock > div span:first-letter { - text-transform: uppercase; -} - -.product-stock > div:before { - content: ""; - display: inline-block; - width: 8px; - height: 8px; - margin-right: 6px; - border-radius: 50%; -} - -.product-stock > div.in-stock:before { - background-color: green; -} - -.product-stock > div.out-of-stock:before { - background-color: red; -} - -.stickybar { - width: 100%; - background-color: #0d4282; - overflow: hidden; - color: #fff; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.topbar-active.gazelle-pdp .stickybar { - position: fixed; - top: 120px; - transition: linear .2s; - will-change: top; -} - -.topbar-active.gazelle-pdp.minimize .stickybar { - top: 0; -} - -.topbar-active.gazelle-pdp.stickybar-visible .stickybar { - top: calc(176px); -} - -.topbar-active.gazelle-pdp.minimize.stickybar-visible .stickybar { - top: 56px; -} - -.has-lightbox .stickybar { - display: none; -} - -.stickybar__content { - width: calc(100% - 50px); - text-align: center; - font-size: 14px; - line-height: 1.3em; - padding: 13px 0 13px 50px; - float: left; -} - -.stickybar__content a:not(.btn) { - text-decoration: underline; - color: #fff; -} - -.stickybar__cta { - margin-left: 15px; -} - -.stickybar__button { - float: right; - width: 50px; - cursor: pointer; -} - -.stickybar__button .ga-icon, -.stickybar__button .knowledge-base__most-viewed a { - font-size: 18px; - margin: 11px; - line-height: 1; -} - -@media (max-width:991px) { - .topbar-active.gazelle-pdp .stickybar { - top: 107px; - } - - .topbar-active.gazelle-pdp.stickybar-visible .stickybar { - top: calc(163px); - } - - .topbar-active.gazelle-pdp.minimize.stickybar-visible .stickybar { - top: 56px; - } - - .stickybar__content { - width: calc(100% - 60px); - font-size: 12px; - padding: 8px 0 8px 18px; - } - - .stickybar__button { - width: 60px; - } - - .stickybar__button .ga-icon, - .stickybar__button .knowledge-base__most-viewed a { - margin-left: 21px; - } -} - -@media (max-width:480px) { - .stickybar__cta { - display: block; - margin: 15px 0 0; - } -} - -label { - font-weight: initial; - display: initial; -} - -.sub-title { - font-weight: 600; - font-size: 1rem; - margin: 0; -} - -.sub-title hr { - margin-top: 10px; - border-color: #f2f2f2; -} - -@media (min-width:992px) { - .sub-title--pushed-in > span { - margin: 0 20px; - } -} - -@media (min-width:1200px) { - .sub-title--pushed-in > span { - margin: 0 70px; - } -} - -.catalog-product-view .awards { - margin-top: 180px; -} - -@media (max-width:991px) { - .catalog-product-view .awards { - margin-top: 60px; - } -} - -.awards h3 { - color: #000; - font-weight: 700; - font-size: 48px; - margin-bottom: 40px; - float: none; -} - -@media (max-width:767px) { - .awards h3 { - font-size: 48px; - margin-bottom: 15px; - } -} - -@media screen and (max-width:1199px) { - .award { - margin: 20px 0; - } -} - -@media screen and (min-width:768px) { - .award { - margin: 30px 10px; - max-width: 300px; - } -} - -@media screen and (min-width:1200px) { - .awards[data-amount="2"] .award, - .awards[data-amount="3"] .award { - margin-left: 50px; - margin-right: 50px; - } -} - -@media screen and (min-width:1500px) { - .award { - margin-left: 50px; - margin-right: 50px; - } -} - -.award--hero { - margin: 0; - max-width: 100%; -} - -.award__container { - transition: color 200ms; - color: #a9a9a9; -} - -.award--hero .award__container strong { - color: #000; -} - -.award__image { - margin-right: 25px; -} - -.award__image img { - display: block; - max-width: 100%; - max-height: 45px; - height: auto; -} - -@media (max-width:767px) { - .award__image img { - max-height: 30px; - } -} - -.award__content { - width: calc(100% - 100px); -} - -.award__content strong { - display: block; -} - -.award:not(.award--hero) .award__content strong { - font-weight: normal; - display: inline; -} - -.history-block { - margin-top: 180px; -} - -@media (max-width:767px) { - .history-block { - margin-top: 95px; - } -} - -.flex-basics { - display: flex; - height: 100%; -} - -.flex-display { - display: flex; -} - -.flex { - display: flex; - height: 100%; -} - -@media screen and (min-width:768px) { - .flex--centered { - display: flex; - align-items: center; - } - - .flex--column { - flex-direction: column; - } -} - -.flex--start { - align-self: flex-start; -} - -.flex--row { - display: flex; - flex-direction: row; -} - -.flex--mobile { - display: flex; - height: 100%; -} - -.flex--mobile--centered { - display: flex; - align-items: center; -} - -.flex--mobile--column { - flex-direction: column; -} - -.flex-wrap { - flex-wrap: wrap; -} - -@media screen and (min-width:992px) { - .flex__push-down { - margin-top: auto; - } -} - -.media-container { - align-self: flex-start; - opacity: 0; - margin: 20px 0 60px; - transition: opacity 200ms ease-in-out; -} - -@media (max-width:767px) { - .media-container { - margin: 0 0 20px 0; - } -} - -.media-container.is-loaded { - opacity: 1; -} - -.media iframe, -.bluefoot-video iframe { - width: 100%; - height: 650px; -} - -@media screen and (max-width:1199px) { - .media iframe, - .bluefoot-video iframe { - height: 540px; - } -} - -@media screen and (max-width:991px) { - .media iframe, - .bluefoot-video iframe { - height: 400px; - } -} - -@media screen and (max-width:767px) { - .media iframe, - .bluefoot-video iframe { - height: 240px; - } -} - -@media screen and (max-width:480px) { - .media iframe, - .bluefoot-video iframe { - height: 190px; - } -} - -.media--small iframe, -.bluefoot-video--small iframe { - height: 180px; -} - -@media screen and (max-width:991px) { - .media--small iframe, - .bluefoot-video--small iframe { - height: 400px; - } -} - -@media screen and (max-width:767px) { - .media--small iframe, - .bluefoot-video--small iframe { - height: 240px; - } -} - -@media screen and (min-width:1500px) { - .media--small iframe, - .bluefoot-video--small iframe { - height: 240px; - } -} - -.bikeconfigurator form { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.bikeconfigurator #configurator-root { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.bikeconfigurator .lightbox__wrapper { - background-color: #f2f2f2; -} - -@media (min-width:768px) { - .bikeconfigurator .lightbox__wrapper { - padding-top: 106px; - } -} - -.bikeconfigurator .lightbox__wrapper:before { - content: ''; - position: absolute; - width: 100%; - height: 30%; - background-color: #fff; -} - -@media (max-width:767px) { - .bikeconfigurator .lightbox__wrapper:before { - height: 20%; - } -} - -.bikeconfigurator__body { - margin: auto 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.bikeconfigurator__body > .container { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -@media (max-width:767px) { - .bikeconfigurator__body { - margin: 0 0 auto 0; - } -} - -@media (max-width:991px) { - .bikeconfigurator__body { - height: 100%; - } -} - -@media (min-width:992px) { - .bikeconfigurator__body { - background-color: #fff; - } -} - -.bikeconfigurator .product-cta-buttons { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.bikeconfigurator .product-cta-buttons .btn { - max-width: 300px; - white-space: nowrap; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.bikeconfigurator .product-cta-buttons .btn.full-width { - overflow: initial; -} - -.bikeconfigurator .product-cta-buttons .btn.full-width > span { - padding-right: 15px; -} - -.bikeconfigurator .product-cta-buttons .btn.full-width .ga-icon, -.bikeconfigurator .product-cta-buttons .btn.full-width .knowledge-base__most-viewed a { - position: absolute; - right: 15px; -} - -.bikeconfigurator .product-cta-buttons .btn:nth-child(2) { - margin-left: 15px; -} - -@media (max-width:991px) { - .bikeconfigurator .product-cta-buttons.overview-hidden { - display: none; - } -} - -@media (max-width:767px) { - .bikeconfigurator .product-cta-buttons { - display: block; - } - - .bikeconfigurator .product-cta-buttons .btn { - width: 100%; - max-width: 100%; - } - - .bikeconfigurator .product-cta-buttons .btn:nth-child(2) { - margin: 10px 0 0; - } -} - -.bikeconfigurator .next-visible { - display: none; -} - -@media (max-width:991px) { - .bikeconfigurator .next-visible { - display: block; - } -} - -.bikeconfigurator-price-bar { - width: 100%; - position: relative; - min-height: 100px; - background-color: #fff; - z-index: 3; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.bikeconfigurator-price-bar .icon-info { - color: #7f7f7f; - line-height: 1; - vertical-align: super; - cursor: pointer; -} - -@media (min-width:768px) { - .bikeconfigurator-price-bar { - margin-top: 70px; - } -} - -@media (max-width:767px) { - .bikeconfigurator-price-bar { - min-height: 82px; - } -} - -@media (max-width:1199px) { - .bikeconfigurator-price-bar .bikeconfigurator-price-bar { - padding: 10px 0; - } -} - -.price-bar__content { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -@media (max-width:767px) { - .price-bar__content { - padding-top: 4px; - padding-bottom: 4px; - } - - .price-bar__content > div { - width: 100%; - } -} - -.price-bar__container { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -@media (min-width:768px) { - .price-bar__container { - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } -} - -@media (max-width:991px) { - .price-bar__container .price-bar__price-label:not(:first-of-type) { - display: none; - } -} - -@media (max-width:991px) { - .price-bar__container .product-cta-buttons .btn { - max-width: 100%; - } -} - -.price-bar__price-wrapper { - display: inline-block; -} - -.price-bar__price-wrapper:first-of-type { - padding-right: 20px; -} - -.price-bar__price-wrapper .configurable-tooltips { - font-size: 16px; - position: absolute; - top: -3px; - right: -18px; -} - -@media (max-width:767px) { - .price-bar__price-wrapper { - width: 50%; - } -} - -@media (max-width:767px) { - .price-bar__price-wrapper.fullwidth { - width: 100%; - } -} - -@media (min-width:768px) { - .price-bar__price-wrapper { - margin-right: 30px; - } -} - -@media (min-width:992px) { - .price-bar__price-wrapper { - margin-right: 50px; - } -} - -@media (min-width:1200px) { - .price-bar__price-wrapper { - margin-right: 80px; - } -} - -.price-bar__price { - font-size: 20px; - font-weight: 600; - display: inline-block; - padding-top: 5px; - line-height: 1; - position: relative; -} - -@media (max-width:767px) { - .price-bar__price { - font-size: 14px; - } -} - -.price-bar__price .old-price { - margin-left: 10px; - font-weight: 400; - font-size: 14px; - color: #7f7f7f; -} - -.price-bar__price .month { - font-size: 11px; - top: -5px; - left: 1px; -} - -@media (max-width:767px) { - .price-bar__price .month { - top: -3px; - } -} - -.price-bar__price .finance { - font-size: 20px; -} - -@media (max-width:767px) { - .price-bar__price .finance { - font-size: 14px; - } -} - -.price-bar__price-contains-description-label { - font-size: 14px; - font-weight: 600; -} - -.price-bar__price-contains-description-label .configurable-tooltips { - top: -3px; -} - -.price-bar__price-label { - font-size: 14px; - color: #7f7f7f; - display: flex; - vertical-align: top; -} - -.store__list .price-bar__price-label { - width: calc(100% - 20px); -} - -.price-bar__price-label--dealer { - text-decoration: underline; - cursor: pointer; -} - -.price-bar__stock-wrapper > div { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.price-bar__stock-wrapper span { - content: ''; - float: left; - width: 6px; - min-width: 6px; - height: 6px; - margin-right: 10px; - border-radius: 6px; -} - -@media (max-width:991px) { - .price-bar__stock-wrapper { - width: 100%; - } -} - -.status__color { - float: left; - width: 6px; - height: 6px; - margin-right: 10px; - margin-top: 6px; - border-radius: 50%; - -webkit-flex: 0 0 6px; - -ms-flex: 0 0 6px; - flex: 0 0 6px; -} - -.status__color--blue { - background-color: #004a99; -} - -.status__color--red { - background-color: #ee3a3a; -} - -@media (min-width:768px) { - .configurator .price-bar__price .month { - display: none; - } -} - -@media (min-width:992px) { - .zoom-cursor { - cursor: url('../images/zoom-icon-white-bg.png') 20 20,zoom-in; - cursor: -webkit-image-set(url('../images/zoom-icon-white-bg.png') 1x, url('../images/zoom-icon-white-bg@2x.png') 2x, url('../images/zoom-icon-white-bg@3x.png') 3x) 20 20,zoom-in; - } -} - -.image-carousel__overlay__container .zoom-cursor { - cursor: initial; -} - -.configurator-intro__zoom-icon { - cursor: pointer; - position: absolute; - top: 18px; - right: 0; - width: 45px; - height: 45px; - background: url('../images/zoom-icon-white-bg@2x.png') no-repeat; - background-size: 45px; - transition: opacity .2s ease-in-out; -} - -@media (min-width:768px) { - .configurator-intro__zoom-icon { - top: 32px; - right: 50px; - } -} - -@media (max-width:991px) { - .configurator-intro__zoom-icon { - opacity: 1; - } -} - -.image-carousel__overlay__container .configurator-intro__zoom-icon { - display: none; -} - -.swatches__tooltip { - position: relative; - display: inline-block; - word-break: initial; -} - -.swatches__tooltip-link { - cursor: pointer; - font-size: 14px; - text-decoration: underline; - color: #7f7f7f; - font-weight: 400; -} - -.swatches__tooltip .sub-title { - transition: all 300ms ease; -} - -.swatches__tooltip .sub-title.highlight { - color: #ee3a3a; -} - -.gloss-mixin:before, -.cart.table-wrapper .product-item-details .swatch-option.color.color-gloss:before { - display: block; - content: ""; - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - background-image: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0)); - border-radius: 50%; -} - -.specifications .specifications__item .swatches__option-label { - padding: 0; - min-width: auto; - border: none; - margin-bottom: 0; - text-align: left; -} - -.specifications .specifications__item .swatches__option-label:before { - box-shadow: none; -} - -.tooltip .confirm-swatch { - display: block; - font-weight: 600; -} - -#leaseForm .swatches__tooltip .info-icon, -#leaseForm .swatches__tooltip .swatch-attribute-icon, -#leaseForm .swatch-attribute .swatch-attribute-icon { - background-color: rgba(0,0,0,0.2); - border-radius: 50%; - cursor: pointer; - height: 15px; - width: 15px; - display: inline-block; - line-height: 15px; - right: 0; - text-align: center; - transform: translateY(-50%); -} - -#leaseForm .swatches__tooltip .info-icon.right, -#leaseForm .swatches__tooltip .swatch-attribute-icon.right, -#leaseForm .swatch-attribute .swatch-attribute-icon.right { - right: initial; - margin-left: 10px; -} - -#leaseForm .swatches__tooltip .info-icon:before, -#leaseForm .swatches__tooltip .swatch-attribute-icon:before, -#leaseForm .swatch-attribute .swatch-attribute-icon:before { - font-size: .5625rem; - color: #fff; - content: '\e002'; - font-family: 'Gazelle'; -} - -.store { - border-bottom: 1px solid #e8e8e8; - background: #fff; - padding: 0 20px 20px 20px; - margin-bottom: 20px; -} - -@media (max-width:767px) { - .store { - padding: 10px; - } -} - -.store__list { - clear: right; - padding-top: 15px; -} - -.store__icon-holder { - padding-left: 30px; - position: relative; - margin: 0; -} - -.store__icon { - position: absolute; - top: 0; - left: 0; - width: 30px; - height: 100%; -} - -.store__icon--premium { - background: url('../images/icons/premium.svg') no-repeat top left / contain; -} - -.store__title h2 { - display: inline-block; - font-weight: 400; - font-size: 1.1rem; - margin-bottom: 0; -} - -.store__title--premium h2 { - font-weight: 700; -} - -@media screen and (min-width:768px) { - .store__title { - display: flex; - justify-content: space-between; - width: 100%; - } -} - -.store__distance { - display: inline-block; - font-size: 14px; - font-weight: 400; - float: none; - margin-right: 0; -} - -.store__distance-time { - color: #7f7f7f; - margin-left: 4px; -} - -.store__distance .ga-icon, -.store__distance .knowledge-base__most-viewed a { - font-size: 18px; - margin-right: 4px; -} - -.store__distance p { - font-size: 1rem; - color: #000; - margin-top: 0; -} - -.store__class { - font-size: 0.9rem; - color: #a9a9a9; - margin-top: 10px; -} - -.store__info { - padding: 0 30px 10px 30px; - width: 100%; - margin-top: 20px; - font-size: 0.85rem; -} - -.store__info p { - font-size: 0.85rem; -} - -.store__info strong { - color: #004a99; - display: block; - margin-bottom: 10px; - font-size: 0.9rem; -} - -@media screen and (min-width:768px) { - .store__info { - display: flex; - justify-content: space-between; - padding: 0; - } -} - -.store__times-loader { - pointer-events: none; - margin: 15px; -} - -.store__times-loader::after { - content: ''; - display: block; - opacity: 1; - transition: opacity .3s .3s ease-in-out; - right: 9px; - width: 18px; - height: 18px; - border-radius: 18px; - top: 6px; - border-top: 2px solid rgba(52,52,52,0.3); - border-right: 2px solid rgba(52,52,52,0.3); - border-bottom: 2px solid rgba(52,52,52,0.3); - border-left: 2px solid #fff; - animation: btn-spinner 1.1s infinite linear; -} - -.store__times table { - margin: 0; -} - -.store__times th, -.store__times td { - padding: 3px 0; - width: 50%; -} - -.store__times th:first-child, -.store__times td:first-child { - padding-right: 5px; -} - -.store__times tr { - border: 0; -} - -@media screen and (min-width:768px) { - .store__times { - min-width: 40%; - } -} - -.store__stock { - position: relative; - width: 100%; - border-top: 1px solid #f2f2f2; - margin-top: 12px; - padding-top: 12px; - font-size: 0.95rem; -} - -@media screen and (min-width:768px) { - .store__stock { - margin-bottom: -4px; - } -} - -.store__stock > span { - padding-left: 36px; - font-weight: bold; -} - -.store__stock > span:before { - text-align: center; - position: absolute; - top: 9px; - left: 0; - line-height: 22px; - width: 24px; - height: 24px; - border-radius: 20px; -} - -.store__stock-yes { - background-color: #5fd350; -} - -.store__stock-no { - background-color: #ee3a3a; -} - -.store__stock-delivery { - background-color: #e9682d; -} - -.store__stock-unknown { - background-color: #a9a9a9; -} - -.store__sort-dealers { - direction: rtl; - float: right; - padding-right: 18px; - appearance: none; - -moz-appearance: none; - -webkit-appearance: none; - background: transparent url('../images/icons/chevron-down.svg') no-repeat; - background-position-x: 100%; - background-position-y: center; -} - -.store__sort-dealers::-ms-expand { - display: none; -} - -.store__sort-dealers-distance { - margin-left: 25px; - color: #0d4282; - background-image: url('../images/icons/chevron-down-blue.svg'); -} - -.dealerfinder-widget .store { - padding: 25px; - position: relative; -} - -.cms-page-view .dealerfinder-widget .store { - margin: 0; - padding: 20px 0; -} - -@media (min-width:768px) { - .cms-page-view .dealerfinder-widget .store { - margin: 0 25px; - padding: 20px 0 20px 20px; - } -} - -.dealerfinder-widget .store:last-child { - border-bottom: 0; -} - -.dealerfinder-widget .store.active:before { - content: ''; - width: 5px; - height: 100%; - background: #004a99; - position: absolute; - top: 0; - left: 0; -} - -.dealerfinder-widget .store__title h2 { - display: flex; - align-items: center; - font-size: 18px; - font-weight: 600; - margin: 0; -} - -.dealerfinder-widget .store__title h2 img { - width: 22px; - margin-right: 10px; -} - -@media (max-width:480px) { - .dealerfinder-widget .store__title h2 { - max-width: 175px; - } -} - -.dealerfinder-widget .store__marker { - display: none; - min-width: 22px; - width: 22px; - height: 27px; - margin-right: 10px; - background-image: url('../images/markers/marker-store.png'); - background-size: contain; - background-repeat: no-repeat; -} - -.cms-page-view .dealerfinder-widget .store__marker { - display: inline-block; -} - -.dealerfinder-widget .store__wrapper { - margin-top: 5px; - display: flex; - flex-direction: column; - gap: 10px; -} - -.dealerfinder-widget .store .price-bar__price-label { - margin: 0; - font-size: 14px; -} - -.dealerfinder-widget .store .status__color { - margin-top: 6px; -} - -.dealerfinder-widget .store__icon-holder { - font-size: 14px; - background: #fff; - border: 1px solid #e8e8e8; -} - -.dealerfinder-widget .store__icon-holder .open-icon-tooltip { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.dealerfinder-widget .store__icon-holder .icon-award { - font-size: 27px; -} - -.dealerfinder-widget .store__icons { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.dealerfinder-widget .store__icon-single .open-icon-tooltip { - display: block; -} - -.dealerfinder-widget .store__icon-single .ga-icon, -.dealerfinder-widget .store__icon-single .knowledge-base__most-viewed a { - font-size: 15px; -} - -.dealerfinder-widget .store__info { - margin-top: 20px; -} - -.dealerfinder-widget .store__address { - margin-bottom: 30px; -} - -.dealerfinder-widget .store__address p { - font-size: 14px; - color: #000; - margin-top: 0; -} - -.dealerfinder-widget .store__cta { - display: flex; - gap: 15px; - margin-top: 20px; -} - -.dealerfinder-widget .store__cta form { - display: inline-block; -} - -.dealerfinder-widget .store__cta .arrow-link { - margin-right: 12px; -} - -.dealerfinder-widget .store__cta--reservation { - margin-right: 8px; -} - -@media (max-width:480px) { - .dealerfinder-widget .store__icon-holder { - position: absolute; - top: 20px; - right: 20px; - } - - .dealerfinder-widget .store__icon-holder ~ .store__distance.has-stock { - top: 73px; - } - - .dealerfinder-widget .store__distance.has-stock { - position: absolute; - top: 20px; - right: 20px; - } - - .dealerfinder-widget .store__distance.has-stock .store__distance-time, - .dealerfinder-widget .store__distance.has-stock .ga-icon, - .dealerfinder-widget .store__distance.has-stock .knowledge-base__most-viewed a { - display: none; - } - - .dealerfinder-widget .store__wrapper { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .dealerfinder-widget .store .price-bar__stock { - max-width: 175px; - } - - .dealerfinder-widget .store__cta { - display: flex; - flex-direction: column; - } - - .dealerfinder-widget .store__cta .btn { - padding: 6px 9px; - } -} - -@media (max-width:767px) { - .dealerfinder-widget .store__title h2 { - margin: 5px 0; - } - - .dealerfinder-widget .store__icon-holder { - width: 45px; - height: 45px; - padding: 0; - float: right; - } - - .dealerfinder-widget .store__icon-holder .ga-icon, - .dealerfinder-widget .store__icon-holder .knowledge-base__most-viewed a { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - -webkit-transform: translate(-50%, -50%); - -moz-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - -o-transform: translate(-50%, -50%); - } - - .dealerfinder-widget .store__icons { - margin-top: 30px; - } - - .dealerfinder-widget .store__icon-single { - margin-right: 15px; - } - - .dealerfinder-widget .store__info { - padding: 0; - } -} - -@media (min-width:768px) { - .dealerfinder-widget .store__title { - -webkit-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .dealerfinder-widget .store__icon-holder { - padding: 2px 10px; - margin-left: 10px; - border-radius: 2px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .dealerfinder-widget .store__icon-holder .icon-award { - font-size: 20px; - margin-right: 8px; - } - - .dealerfinder-widget .store__icons { - margin-left: auto; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - } - - .dealerfinder-widget .store__icon-single { - margin-left: 15px; - } - - .dealerfinder-widget .store__info { - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - } - - .dealerfinder-widget .store__address { - margin-bottom: 0; - } -} - -@media (min-width:768px) and (max-width:1599px) { - .dealerfinder-widget .store__cta { - text-align: right; - } - - .dealerfinder-widget .store__cta .arrow-link { - display: block; - margin: 0 0 5px; - } -} - -@media screen and (max-width:767px) { - .dealerfinder-widget .gm-style-iw, - .dealerfinder-widget .gm-style-iw-d { - width: 240px; - max-width: 240px; - padding: 0; - } -} - -.dealerfinder-widget .info-window { - width: 240px; - padding: 15px 18px 12px 18px; -} - -.dealerfinder-widget .info-window h2 { - font-size: 14px; - font-weight: 600; - margin: 0; -} - -.dealerfinder-widget .info-window p { - font-size: 14px; - color: #000; - margin: 15px 0; -} - -.dealerfinder-widget .info-window .ga-icon:not(:last-child), -.dealerfinder-widget .info-window .knowledge-base__most-viewed a:not(:last-child) { - margin-right: 12px; -} - -.dealerfinder-widget .info-window__buttons { - display: flex; - flex-direction: column; - gap: 10px; -} - -.dealerfinder-widget .info-window .btn:not(:last-child) { - margin-right: 5px; -} - -.dealerfinder-widget .info-window .arrow-link { - display: block; - margin-bottom: 10px; -} - -.dealerfinder-widget .info-window__icons { - margin-top: 15px; -} - -@media screen and (max-width:767px) { - .dealerfinder-widget .info-window { - width: 220px; - } - - .dealerfinder-widget .info-window__buttons .btn { - min-width: 120px; - } - - .dealerfinder-widget .info-window__buttons .btn:not(:last-child) { - margin-bottom: 5px; - } -} - -@media screen and (min-width:768px) { - .dealerfinder-widget .info-window { - width: 280px; - } -} - -.expand-label { - position: relative; - display: block; - cursor: pointer; -} - -.expand-label:before, -.expand-label:after { - content: ""; - position: absolute; - top: 2px; - right: 0; - width: 1px; - height: 12px; - background: #000; - z-index: 1; - transition: all 300ms; -} - -.expand-label:before { - transform: rotate(90deg); - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); -} - -input[type="checkbox"]:checked + .expand-label:before { - transform: rotate(270deg); - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); - -ms-transform: rotate(270deg); - -o-transform: rotate(270deg); -} - -input[type="checkbox"]:checked + .expand-label:after { - transform: rotate(45deg); - -webkit-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -ms-transform: rotate(45deg); - -o-transform: rotate(45deg); - opacity: 0; -} - -@media (max-width:767px) { - .expand-label:before, - .expand-label:after { - right: 10px; - } -} - -.expand { - overflow: hidden; - max-height: 0; - transition: max-height 500ms; -} - -input[type="checkbox"]:checked + .expand-label .expand { - max-height: 400px; -} - -.lightbox { - display: none; - position: fixed; - background: #fff; - z-index: 1025; - top: 0; - left: 0; - right: 0; - bottom: 0; -} - -.lightbox.visible { - display: block; -} - -.lightbox__wrapper { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.lightbox__wrapper .back-button { - color: #7f7f7f; - font-size: 12px; - font-weight: 600; - display: inline-block; -} - -.lightbox__wrapper .back-button button { - background: none; -} - -.lightbox__wrapper .back-button button::before { - padding-right: 10px; - line-height: 11px; -} - -.lightbox__container { - height: 100%; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.lightbox__header { - z-index: 4; - position: absolute; - width: 100%; -} - -.lightbox__product-title { - position: absolute; - top: 0; - font-size: 100px; - color: #e8e8e8; -} - -.lightbox img { - position: relative; - z-index: 1; -} - -.lightbox .breadcrumbs { - margin-top: 30px; -} - -.lightbox .breadcrumbs .items { - display: none; -} - -@media (max-width:767px) { - body.has-lightbox .page-header { - display: none; - } - - .lightbox { - top: 0; - } - - .lightbox__header { - padding-top: 26px; - } - - .lightbox__product-title { - font-size: 45px; - left: 0; - padding: 0 15px; - } - - .lightbox img { - position: relative; - } -} - -@media (min-width:1200px) { - .lightbox img { - width: 100%; - margin-top: -3%; - max-width: 900px; - } - - .lightbox .breadcrumbs .items { - display: block; - } -} - -@media (min-width:992px) { - .lightbox { - overflow-y: auto; - } - - .lightbox__header { - z-index: 2; - } - - .lightbox img { - position: absolute; - top: 0; - } -} - -@media (max-width:991px) { - .section { - margin-bottom: 30px; - } -} - -.section img { - display: block; - width: 80%; - height: auto; -} - -@media (max-width:767px) { - .section--light-grey-mobile { - background: #f2f2f2; - } -} - -.section--fixed { - display: block; - background-color: #f2f2f2; - width: 100%; - position: absolute; - bottom: 0; - left: 0; -} - -body._has-modal { - height: 100%; - overflow: hidden; - width: 100%; -} - -.modal-body input[type="text"] { - padding: 10px 14px; - border-radius: 2px; - border: 1px solid #e8e8e8; - font-size: 14px; - height: 45px; -} - -.modal--flex-end { - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -@media (max-width:480px) { - .modal .modal-dialog { - margin: 0; - } - - .modal .modal-dialog .modal-content { - min-height: 100vh; - border: none; - border-radius: 0; - box-shadow: none; - } -} - -.modals-overlay { - background-color: rgba(0,0,0,0.5); - bottom: 0; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 1099; -} - -.modal-slide, -.modal-popup { - bottom: 0; - left: 0; - min-width: 0; - overflow-y: auto; - position: fixed; - right: 0; - top: 0; - visibility: hidden; - z-index: 1100; -} - -.modal-slide.hpp_actionModal, -.modal-popup.hpp_actionModal { - max-width: 550px; - margin-left: auto; - margin-right: auto; -} - -.modal-slide.hpp_actionModal .adyen-checkout__iframe, -.modal-popup.hpp_actionModal .adyen-checkout__iframe { - width: 100%; -} - -.modal-slide.hpp_actionModal .modal-header .action-close, -.modal-popup.hpp_actionModal .modal-header .action-close { - display: none; -} - -.modal-slide._show, -.modal-popup._show { - visibility: visible; -} - -.modal-slide .modal-inner-wrap, -.modal-popup .modal-inner-wrap { - background-color: #FFFFFF; - box-shadow: 0 0 12px 2px rgba(0,0,0,0.35); - display: flex; - flex-direction: column; - height: auto; - left: 50px; - margin: 50px auto; - max-height: 90%; - overflow-y: auto; - position: absolute; - right: 50px; -} - -@media (max-width:767px) { - .modal-slide .modal-inner-wrap, - .modal-popup .modal-inner-wrap { - left: 25px; - margin: 25px auto; - max-height: 95%; - right: 25px; - } -} - -.modal-slide .modal-header, -.modal-popup .modal-header { - padding: 30px; - border: none; -} - -.modal-slide .modal-content, -.modal-popup .modal-content { - overflow-y: auto; - padding: 0 30px; - box-shadow: none; - border: none; -} - -.modal-slide .modal-footer, -.modal-popup .modal-footer { - border: none; - padding: 30px; -} - -.modal-slide .modal-title, -.modal-popup .modal-title { - margin: 0; -} - -.modal-slide .action-accept, -.modal-popup .action-accept { - margin: 0 0 0 12px; -} - -.modal-slide .action-close, -.modal-popup .action-close { - background-color: transparent; - color: rgba(0,0,0,0.1); - position: absolute; - right: 30px; - top: 30px; -} - -.modal-slide .action-close:before, -.modal-popup .action-close:before { - content: ''; - font-family: 'Gazelle'; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - speak: none; - line-height: 1; - vertical-align: middle; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.modal-slide .action-close.small-icon:before, -.modal-popup .action-close.small-icon:before { - font-size: 10px; -} - -.modal-slide .action-close.extra-small-icon:before, -.modal-popup .action-close.extra-small-icon:before { - font-size: 8px; -} - -.modal-slide .action-close:before, -.modal-popup .action-close:before { - content: '\e024'; -} - -.modal-slide .action-close span, -.modal-popup .action-close span { - display: none; -} - -.modal-slide .action-close:hover:before, -.modal-popup .action-close:hover:before { - color: rgba(0,0,0,0.3); -} - -.modal-slide .action-dismiss, -.modal-popup .action-dismiss, -.modal-slide .action-hide-popup, -.modal-popup .action-hide-popup { - margin: 0 0 0 12px; -} - -@media (min-width:768px) { - #dealerfinder-modal .modal-dialog, - #reservation-modal .modal-dialog, - #stock-warning-modal .modal-dialog { - transform: translateX(50%); - } -} - -#dealerfinder-modal .modal-header, -#reservation-modal .modal-header, -#stock-warning-modal .modal-header { - padding-bottom: 0; -} - -@media (min-width:768px) { - #dealerfinder-modal .modal-dialog, - #reservation-modal .modal-dialog, - #stock-warning-modal .modal-dialog { - margin: 0 0 0 auto; - } -} - -#dealerfinder-modal .modal-content, -#reservation-modal .modal-content, -#stock-warning-modal .modal-content { - border-radius: 0; - border: none; - min-height: 100vh; -} - -#dealerfinder-modal .modal-content .dealerfinder__results, -#reservation-modal .modal-content .dealerfinder__results, -#stock-warning-modal .modal-content .dealerfinder__results { - border-top: none; - padding: 0; -} - -#dealerfinder-modal .modal-content .dealerfinder__noresults, -#reservation-modal .modal-content .dealerfinder__noresults, -#stock-warning-modal .modal-content .dealerfinder__noresults { - margin-bottom: 20px; -} - -#dealerfinder-modal .modal-content .dealerfinder__sort-container, -#reservation-modal .modal-content .dealerfinder__sort-container, -#stock-warning-modal .modal-content .dealerfinder__sort-container { - margin-top: 0; -} - -#dealerfinder-modal .modal-content .dealerfinder__buttons, -#reservation-modal .modal-content .dealerfinder__buttons, -#stock-warning-modal .modal-content .dealerfinder__buttons { - right: 5px; - top: 50%; - margin: 0; - position: absolute; - transform: translateY(-50%); -} - -#dealerfinder-modal .modal-content .dealerfinder__my-location, -#reservation-modal .modal-content .dealerfinder__my-location, -#stock-warning-modal .modal-content .dealerfinder__my-location { - margin-left: 10px; - display: flex; - align-items: center; - justify-content: space-between; -} - -@media (max-width:480px) { - #dealerfinder-modal .modal-content .dealerfinder__my-location, - #reservation-modal .modal-content .dealerfinder__my-location, - #stock-warning-modal .modal-content .dealerfinder__my-location { - margin-left: 0; - margin-top: 15px; - justify-content: flex-start; - gap: 5px; - } - - #dealerfinder-modal .modal-content .dealerfinder__my-location svg, - #reservation-modal .modal-content .dealerfinder__my-location svg, - #stock-warning-modal .modal-content .dealerfinder__my-location svg { - width: 20px; - height: 20px; - } -} - -#dealerfinder-modal .modal-content .dealerfinder__my-location span, -#reservation-modal .modal-content .dealerfinder__my-location span, -#stock-warning-modal .modal-content .dealerfinder__my-location span { - margin-left: 5px; - font-size: 14px; - color: #004a99; -} - -#dealerfinder-modal .modal-content .dealerfinder__search-button, -#reservation-modal .modal-content .dealerfinder__search-button, -#stock-warning-modal .modal-content .dealerfinder__search-button { - width: 50px; - height: 50px; - padding: 0; - text-align: center; -} - -#dealerfinder-modal .modal-content .dealerfinder__search-button .ga-icon, -#reservation-modal .modal-content .dealerfinder__search-button .ga-icon, -#stock-warning-modal .modal-content .dealerfinder__search-button .ga-icon, -#dealerfinder-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a, -#reservation-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a, -#stock-warning-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a { - float: none; -} - -#dealerfinder-modal .modal-content .dealerfinder__search-button.btn-is-loading:after, -#reservation-modal .modal-content .dealerfinder__search-button.btn-is-loading:after, -#stock-warning-modal .modal-content .dealerfinder__search-button.btn-is-loading:after, -#dealerfinder-modal .modal-content .dealerfinder__search-button.wizard__loader:after, -#reservation-modal .modal-content .dealerfinder__search-button.wizard__loader:after, -#stock-warning-modal .modal-content .dealerfinder__search-button.wizard__loader:after { - float: none; -} - -#dealerfinder-modal .modal-content .dealerfinder__search-button.btn-is-loading .ga-icon, -#reservation-modal .modal-content .dealerfinder__search-button.btn-is-loading .ga-icon, -#stock-warning-modal .modal-content .dealerfinder__search-button.btn-is-loading .ga-icon, -#dealerfinder-modal .modal-content .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a, -#reservation-modal .modal-content .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a, -#stock-warning-modal .modal-content .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a { - display: none; -} - -#dealerfinder-modal .modal-content .dealerfinder__search-button .ga-icon, -#reservation-modal .modal-content .dealerfinder__search-button .ga-icon, -#stock-warning-modal .modal-content .dealerfinder__search-button .ga-icon, -#dealerfinder-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a, -#reservation-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a, -#stock-warning-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a { - margin-left: 0; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget, -#reservation-modal .modal-content .dealerfinder-widget, -#stock-warning-modal .modal-content .dealerfinder-widget { - padding-top: 0; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store, -#reservation-modal .modal-content .dealerfinder-widget .store, -#stock-warning-modal .modal-content .dealerfinder-widget .store { - padding: 25px 0; - margin-bottom: 0; - border-bottom: 1px solid #2f2f2f; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store:first-child, -#reservation-modal .modal-content .dealerfinder-widget .store:first-child, -#stock-warning-modal .modal-content .dealerfinder-widget .store:first-child { - padding-top: 0; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store .status__color, -#reservation-modal .modal-content .dealerfinder-widget .store .status__color, -#stock-warning-modal .modal-content .dealerfinder-widget .store .status__color { - width: 10px; - height: 10px; - margin-top: 3px; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__wrapper, -#reservation-modal .modal-content .dealerfinder-widget .store__wrapper, -#stock-warning-modal .modal-content .dealerfinder-widget .store__wrapper { - gap: 5px; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__times-loader, -#reservation-modal .modal-content .dealerfinder-widget .store__times-loader, -#stock-warning-modal .modal-content .dealerfinder-widget .store__times-loader { - margin: 0 0 25px 0; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__distance, -#reservation-modal .modal-content .dealerfinder-widget .store__distance, -#stock-warning-modal .modal-content .dealerfinder-widget .store__distance { - margin-top: 15px; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__distance-amount, -#reservation-modal .modal-content .dealerfinder-widget .store__distance-amount, -#stock-warning-modal .modal-content .dealerfinder-widget .store__distance-amount { - display: none; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__icon-holder, -#reservation-modal .modal-content .dealerfinder-widget .store__icon-holder, -#stock-warning-modal .modal-content .dealerfinder-widget .store__icon-holder, -#dealerfinder-modal .modal-content .dealerfinder-widget .store__icons, -#reservation-modal .modal-content .dealerfinder-widget .store__icons, -#stock-warning-modal .modal-content .dealerfinder-widget .store__icons { - display: none; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__info, -#reservation-modal .modal-content .dealerfinder-widget .store__info, -#stock-warning-modal .modal-content .dealerfinder-widget .store__info { - margin-top: 0; -} - -@media (max-width:480px) { - #dealerfinder-modal .modal-content .dealerfinder-widget .store__info, - #reservation-modal .modal-content .dealerfinder-widget .store__info, - #stock-warning-modal .modal-content .dealerfinder-widget .store__info { - margin-top: 15px; - } -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__title h2, -#reservation-modal .modal-content .dealerfinder-widget .store__title h2, -#stock-warning-modal .modal-content .dealerfinder-widget .store__title h2 { - font-size: 24px; - max-width: none; -} - -@media (max-width:480px) { - #dealerfinder-modal .modal-content .dealerfinder-widget .store__title h2, - #reservation-modal .modal-content .dealerfinder-widget .store__title h2, - #stock-warning-modal .modal-content .dealerfinder-widget .store__title h2 { - font-size: 20px; - } -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__address, -#reservation-modal .modal-content .dealerfinder-widget .store__address, -#stock-warning-modal .modal-content .dealerfinder-widget .store__address { - margin-bottom: 0; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store .contact-dealer, -#reservation-modal .modal-content .dealerfinder-widget .store .contact-dealer, -#stock-warning-modal .modal-content .dealerfinder-widget .store .contact-dealer { - color: #e9682d; - font-size: 12px; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store .price-bar__stock, -#reservation-modal .modal-content .dealerfinder-widget .store .price-bar__stock, -#stock-warning-modal .modal-content .dealerfinder-widget .store .price-bar__stock { - margin-top: 5px; - font-size: 14px; - font-weight: 700; - display: flex; - justify-content: space-between; - max-width: none; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store .price-bar__distance, -#reservation-modal .modal-content .dealerfinder-widget .store .price-bar__distance, -#stock-warning-modal .modal-content .dealerfinder-widget .store .price-bar__distance { - font-weight: 400; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store .price-bar__price-label, -#reservation-modal .modal-content .dealerfinder-widget .store .price-bar__price-label, -#stock-warning-modal .modal-content .dealerfinder-widget .store .price-bar__price-label { - color: #000; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta, -#reservation-modal .modal-content .dealerfinder-widget .store__cta, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta { - margin-top: 15px; - flex-direction: row; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone, -#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone { - display: flex; - border-color: #004a99; - color: #004a99; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone svg, -#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone svg, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone svg { - margin-top: 1px; - margin-right: 5px; - fill: #004a99; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone:hover, -#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone:hover, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone:hover, -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone:active, -#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone:active, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone:active, -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone:focus, -#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone:focus, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone:focus { - background-color: #f2f2f2; -} - -#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone--visible, -#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone--visible, -#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone--visible { - display: flex; -} - -@media (max-width:767px) { - #dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone, - #reservation-modal .modal-content .dealerfinder-widget .store__cta .phone, - #stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone { - display: flex; - } - - #dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone.show-toggle, - #reservation-modal .modal-content .dealerfinder-widget .store__cta .phone.show-toggle, - #stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone.show-toggle { - display: none; - } -} - -#dealerfinder-modal .modal-content .dealerfinder__form-container, -#reservation-modal .modal-content .dealerfinder__form-container, -#stock-warning-modal .modal-content .dealerfinder__form-container { - display: flex; - justify-content: space-between; - margin: 25px 0; -} - -@media (max-width:480px) { - #dealerfinder-modal .modal-content .dealerfinder__form-container, - #reservation-modal .modal-content .dealerfinder__form-container, - #stock-warning-modal .modal-content .dealerfinder__form-container { - display: block; - } -} - -#dealerfinder-modal .modal-content .dealerfinder__form-container form, -#reservation-modal .modal-content .dealerfinder__form-container form, -#stock-warning-modal .modal-content .dealerfinder__form-container form { - width: 100%; -} - -#dealerfinder-modal .modal-content .dealerfinder__form-container form .dealerfinder__input[type="text"], -#reservation-modal .modal-content .dealerfinder__form-container form .dealerfinder__input[type="text"], -#stock-warning-modal .modal-content .dealerfinder__form-container form .dealerfinder__input[type="text"] { - padding: 30px 15px; -} - -@media (min-width:768px) { - #dealerfinder-modal.in .modal-dialog, - #reservation-modal.in .modal-dialog, - #stock-warning-modal.in .modal-dialog { - transform: translateX(0); - } -} - -#reservation-modal { - z-index: 2061; -} - -@media (min-width:992px) { - .modal-md .modal-dialog { - width: 970px; - } -} - -.tooltip { - z-index: 2065; -} - -.tooltip .dismiss { - cursor: pointer; -} - -.tooltip .dismiss:before { - position: absolute; - top: 10px; - right: 5px; - color: #fff; -} - -.tooltip.bottom .tooltip-arrow { - border-bottom-color: #fff; -} - -.tooltip.top .tooltip-arrow { - border-top-color: #fff; -} - -.tooltip .tooltip-inner { - background-color: #fff; - padding: 25px; - border-radius: 2px; - box-shadow: 0px 0px 5px rgba(0,0,0,0.15); - max-width: 250px; - color: #000; -} - -.tooltip .tooltip-inner p { - font-size: 14px; - line-height: 1.5; - text-align: left; - margin-bottom: 18px; -} - -.tooltip .tooltip-inner p a { - color: #004a99; - font-size: 14px; - text-decoration: underline; - display: inline-block; -} - -.tooltip .tooltip-inner p:last-of-type { - margin-bottom: 0; -} - -.tooltip .tooltip-inner strong { - color: #000; -} - -.tooltip.in { - opacity: 1; -} - -.tooltip--yes, -.tooltip--no { - margin-top: 10px; -} - -.tooltip--no { - float: right; -} - -.tooltip .content { - display: inline-block; -} - -.tooltip.icon-tooltip { - padding: 5px 0; - margin: 0; -} - -.tooltip.icon-tooltip h3 { - font-size: 14px; - font-weight: 600; - color: #000; - margin: 0 0 8px 0; -} - -.tooltip.icon-tooltip p { - margin-bottom: 5px; -} - -.tooltip.icon-tooltip p a { - font-size: 14px; - color: #004a99; - text-decoration: none; -} - -.tooltip.icon-tooltip .tooltip-inner { - color: #2f2f2f; - text-align: left; - background: #fff; - border: 1px solid #fff; - max-width: 190px; - padding: 17px 15px 17px 20px; -} - -.tooltip.icon-tooltip .tooltip-arrow { - border: 0; - margin: 0; - bottom: 6px; - box-shadow: 0px 0px 5px rgba(0,0,0,0.15); -} - -.tooltip.icon-tooltip .tooltip-arrow:before, -.tooltip.icon-tooltip .tooltip-arrow:after { - content: ''; - border: solid transparent; - height: 0; - width: 0; - position: absolute; - top: 100%; - left: 50%; - pointer-events: none; -} - -.tooltip.icon-tooltip .tooltip-arrow:before { - border-top-color: #fff; - border-width: 6px; - margin-left: -6px; -} - -.tooltip.icon-tooltip .tooltip-arrow:after { - border-top-color: #fff; - border-width: 5px; - margin-left: -5px; -} - -.ga-icon.icon-info, -.knowledge-base__most-viewed a.icon-info { - display: inline-block; -} - -.tooltip-mixin, -body .page-wrapper .tooltip-content, -.configurator__wrapper table tbody input:disabled + label .tooltip-content { - z-index: 2065; - background-color: #84776b; - border-radius: 2px; - max-width: 250px; - border: none; - padding: 25px; -} - -.tooltip-mixin p, -body .page-wrapper .tooltip-content p, -.configurator__wrapper table tbody input:disabled + label .tooltip-content p { - font-size: 14px; - line-height: 1.5; - color: #fff; - margin: 0; -} - -.tooltip-mixin:after, -body .page-wrapper .tooltip-content:after, -.configurator__wrapper table tbody input:disabled + label .tooltip-content:after { - border-top-color: #84776b; -} - -.tooltip-mixin:before, -body .page-wrapper .tooltip-content:before, -.configurator__wrapper table tbody input:disabled + label .tooltip-content:before { - border-top: none; -} - -.flex-table { - position: relative; - background: #000; - font-size: 0.9rem; - width: 100%; - margin: 40px 0; -} - -.flex-table--transparent { - background: transparent; -} - -.flex-table__head { - width: 110px; - position: absolute; - top: 0; - left: 0; - bottom: 0; - background: #000; - z-index: 1; - padding-top: 10px; -} - -.flex-table__head--transparent { - background: transparent; -} - -@media (min-width:480px) { - .flex-table__head { - width: 145px; - } -} - -.flex-table__container { - display: flex; - overflow: auto; - padding: 10px 0; -} - -.flex-table__container--has-head { - margin-left: 110px; -} - -@media (min-width:480px) { - .flex-table__container--has-head { - margin-left: 145px; - } -} - -.flex-table__column { - flex-grow: 1; -} - -.flex--padding { - padding-left: 30px; - padding-right: 30px; -} - -.flex-table__item { - height: 40px; - min-width: 100px; - max-width: 200px; - padding: 5px 5px 5px 0; - overflow: hidden; - margin-left: auto; - margin-right: auto; -} - -.flex-table__item--large { - height: auto; - min-width: 130px; -} - -@media (min-width:992px) and (max-width:1199px) { - .flex-table__item--large { - height: 120px; - } -} - -.flex-table__item--extra-large { - height: 120px; - min-width: 130px; -} - -.flex-table__item:last-child { - height: auto; -} - -.battery__text { - font-size: 16px; - font-weight: 600; - background-color: #fff; -} - -@media (max-width:767px) { - .battery__text { - font-size: 12px; - line-height: .8; - } -} - -.battery__text:before { - content: ''; - display: inline-block; - width: 10px; - height: 10px; - margin-right: 10px; - border-radius: 10px; -} - -.battery__text--platinum { - color: #7f7f7f; -} - -.battery__text--platinum:before { - background-color: #7f7f7f; -} - -.battery__text--diamond { - color: #b2dde3; -} - -.battery__text--diamond:before { - background-color: #b2dde3; -} - -.battery__text--silver { - color: #b8b8b8; -} - -.battery__text--silver:before { - background-color: #b8b8b8; -} - -.battery__text--gold { - color: #c2b991; -} - -.battery__text--gold:before { - background-color: #c2b991; -} - -.battery__text--bronze { - color: #a97f5f; -} - -.battery__text--bronze:before { - background-color: #a97f5f; -} - -.battery-icon { - display: inline-block; - position: relative; - top: -5px; -} - -.battery-icon--large { - width: 80px; - height: 80px; - border-radius: 50%; - border: 1px solid #fff; - padding-top: 45px; - text-align: center; - top: 0; -} - -.battery-icon--bronze { - border-color: #a97f5f; -} - -.battery-icon--silver { - border-color: #b8b8b8; -} - -.battery-icon--gold { - border-color: #c2b991; -} - -.battery-icon--platinum { - border-color: #7f7f7f; -} - -.battery-icon--diamond { - border-color: #b2dde3; -} - -.battery-icon__icon { - display: inline-block; - margin-left: 5px; - position: relative; - top: 4px; -} - -.battery-icon__icon svg { - width: 34px; - height: 17px; -} - -.battery-icon--large .battery-icon__icon { - position: absolute; - top: 24px; - left: calc(50% - 17px); - margin-left: 0; -} - -.battery-icon--bronze .battery-icon__icon svg path { - fill: #a97f5f; -} - -.battery-icon--silver .battery-icon__icon svg path { - fill: #b8b8b8; -} - -.battery-icon--gold .battery-icon__icon svg path { - fill: #c2b991; -} - -.battery-icon--platinum .battery-icon__icon svg path { - fill: #7f7f7f; -} - -.battery-icon--diamond .battery-icon__icon svg path { - fill: #b2dde3; -} - -.account .connected-bikes .block-title { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.account .connected-bikes .block-title .ga-icon, -.account .connected-bikes .block-title .knowledge-base__most-viewed a { - color: #004a99; - margin-left: 10px; -} - -.account .connected-bikes__row span { - display: block; - margin-bottom: 5px; -} - -.account .connected-bikes__row a { - color: #004a99; - font-weight: 600; -} - -@media (max-width:991px) { - .account .connected-bikes__col strong { - display: block; - margin-bottom: 30px; - } -} - -.account .connected-bikes__app-button { - display: inline-block; -} - -.account .connected-bikes__app-button:not(.button-google) { - padding: 10px; -} - -.account .connected-bikes__app-button img { - max-width: 150px; - max-height: 60px; -} - -.list--grey, -.list--check-clean, -.list--check, -.list--usps, -.content-offset-photo__content ul, -.pdp__header__usps ul:not(.list--check) { - color: #a9a9a9; - list-style-type: none; - margin: 6px 0 0 0; -} - -.list--grey li, -.list--check-clean li, -.list--check li, -.list--usps li, -.content-offset-photo__content ul li, -.pdp__header__usps ul:not(.list--check) li { - position: relative; - margin: 15px 0; - padding: 0 0 0 30px; -} - -.list--check-clean li:before, -.list--check li:before { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 18px; - height: 18px; - border-radius: 50%; - border: 1px solid #a9a9a9; - background: url('../images/icons/check--dark.svg') no-repeat center / 8px 6px; -} - -.list--check-clean-white, -.list--check-white { - color: #fff; -} - -.list--check-clean-white ul, -.list--check-white ul { - margin-left: 0; -} - -.list--check-clean-white li, -.list--check-white li { - list-style: none; - margin: 20px 0; - padding: 0 0 0 32px; -} - -.list--check-clean-white li:before, -.list--check-white li:before { - width: 22px; - height: 22px; - border-color: #fff; - background: url('../images/icons/check.svg') no-repeat center / 10px 10px; -} - -.list--usps li, -.pdp__header__usps ul:not(.list--check) li { - display: block; -} - -.list--usps li:before, -.pdp__header__usps ul:not(.list--check) li:before { - position: absolute; - top: -2px; - left: -2px; - font-size: 22px; -} - -.list--check-clean li { - margin: 5px 0; - padding-left: 20px; -} - -.list--check-clean li:before { - border: 0; - background-position: center left; -} - -.list--small li { - font-size: 0.9rem; - margin: 0; - padding-left: 15px; -} - -.usps-inline { - list-style: none; - color: #fff; - margin: 0 0 25px; - font-size: 1rem; -} - -.usps-inline li { - display: inline-block; - margin: 0 30px 20px 0; -} - -.usps-inline li:before { - font-size: 22px; - margin-right: 15px; - position: relative; - top: -1px; -} - -@media (min-width:992px) { - .pdp__header .image-carousel__navigation { - display: none; - } -} - -.image-carousel__overlay .image-carousel__preview { - display: none; -} - -.image-carousel { - height: 100%; -} - -.image-carousel__navigation .image-slider__slide, -.image-carousel__preview .image-slider__slide { - margin-right: 14px; - background-color: #fff; - border-radius: 2px; - border: 1px solid #e8e8e8; - width: 100px; - height: 66px; - cursor: pointer; -} - -.image-carousel__navigation .image-slider__slide img, -.image-carousel__preview .image-slider__slide img { - max-height: 100%; - margin: auto; -} - -.image-carousel__navigation .image-slider__slide.slick-current, -.image-carousel__preview .image-slider__slide.slick-current { - border-color: #000; -} - -@media (max-width:767px) and (orientation:landscape) { - .image-carousel__navigation { - display: none; - } -} - -.image-carousel__navigation .slick-slide.slick-cloned { - display: none; -} - -.image-carousel__preview .image-slider__slide { - float: left; - text-align: center; -} - -.image-carousel__preview .image-slider__more { - display: flex; - flex-direction: column; - justify-content: center; - text-align: center; - font-weight: 600; -} - -.image-carousel__preview .image-slider__more span { - display: block; - font-size: 12px; -} - -.image-carousel__overlay { - display: none; - position: fixed; - background-color: #fff; - top: 0; - left: 0; - z-index: 2060; - width: 100%; - height: 100%; -} - -.image-carousel__overlay .icon-zoom { - visibility: hidden; -} - -.image-carousel__overlay .close { - position: absolute; - top: 40px; - font-size: 50px; - right: 40px; - font-weight: normal; -} - -.image-carousel__overlay__container { - height: calc(100% - 80px); - position: relative; -} - -@media (max-width:767px) and (orientation:landscape) { - .image-carousel__overlay__container { - height: 100%; - } -} - -.image-carousel__overlay .image-carousel__view .slick-slide { - padding-bottom: 66px; -} - -.image-carousel__pagination { - text-align: center; - margin-bottom: 20px; - width: 100%; - color: #7f7f7f; -} - -@media (max-width:767px) { - .image-carousel__pagination { - position: absolute; - bottom: 0; - } -} - -.image-carousel__pagination span { - font-weight: bold; - color: #000; -} - -.image-carousel .slick-arrow { - position: absolute; - z-index: 2061; - top: 50%; - background-color: transparent; - color: transparent; - display: inline-block; - width: 14px; - padding: 20px 34px 20px 25px; -} - -.image-carousel .slick-arrow:before { - color: #000; - font-size: 20px; -} - -.image-carousel .slick-arrow.slick-prev { - left: 0; - transform: rotate(180deg); -} - -.image-carousel .slick-arrow.slick-next { - right: 0; -} - -.image-carousel .icon-zoom { - display: none; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - cursor: pointer; -} - -.image-carousel__view { - height: 100%; -} - -.image-carousel__view .slick-slide.image-slider__slide { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.image-carousel__view .slick-slide.image-slider__slide img { - margin: auto; - max-height: 100%; - -webkit-align-self: center; - -ms-align-self: center; - align-self: center; -} - -.image-carousel__view .slick-list { - overflow: hidden; -} - -.image-carousel__view .slick-track, -.image-carousel__view .slick-list, -.image-carousel__view .slick-slider { - height: 100%; -} - -@media (max-width:767px) { - .image-carousel .icon-zoom { - visibility: hidden; - } -} - -.pdp__header__image .slick-arrow { - top: auto; - bottom: -40px; -} - -@media (min-width:768px) { - .pdp__header__image .slick-arrow { - visibility: hidden; - } -} - -.slick-overlay { - overflow: hidden; -} - -.flowbox { - margin-bottom: 40px; -} - -.flowbox h3 { - font-size: 48px; - font-weight: 700; - margin: 120px 0 20px 0; -} - -@media (max-width:767px) { - .flowbox h3 { - font-size: 24px; - margin: 40px 0 12px 0; - } -} - -.flowbox__subtitle { - font-size: 1rem; - line-height: 1.6; - color: #7f7f7f; - margin-bottom: 10px; -} - -.flowbox a { - color: #004a99; -} - -.side-navigation { - position: fixed; - background-color: #fff; - left: -300px; - top: 0; - z-index: 1150; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - height: 100%; - min-width: 250px; - max-width: 300px; - transition: transform .5s ease-in-out; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.side-navigation.open { - transform: translateX(300px); -} - -.side-navigation__container { - padding: 30px 15px 20px 15px; -} - -.side-navigation__header { - border-bottom: 1px solid rgba(0,0,0,0.1); - padding-bottom: 12px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.side-navigation__list { - margin-bottom: 30px; -} - -.side-navigation__list-item { - margin-top: 28px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.side-navigation__list input[type=checkbox] + label .checker, -.side-navigation__list input[type=radio] + label .checker { - margin: 0 0 0 auto; -} - -.side-navigation__apply { - margin-top: auto; - padding: 0 15px; - background-color: #004a99; - line-height: 59px; - width: 100%; - color: white; - font-weight: bold; - font-size: 14px; -} - -.side-navigation__apply:before { - font-size: 10px; - float: right; - font-weight: bold; - margin: 26px 0 0 10px; -} - -.side-navigation__apply:active, -.side-navigation__apply:focus { - color: #fff; -} - -.side-navigation .list-item__body { - padding-right: 16px; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.side-navigation h4 { - font-weight: 600; - margin: 0; -} - -.page-main .fixed-nav { - position: fixed; - transform: translateY(-40px); - width: 100%; - z-index: 100; - transition: all .25s ease-in-out; -} - -.page-main .fixed-nav.active { - transform: translateY(120px); -} - -@media (max-width:991px) { - .page-main .fixed-nav.active { - transform: translateY(106px); - } -} - -.minimize .page-main .fixed-nav.active { - transform: translateY(60px); -} - -.product-carousel-pdp h3, -.product-accessories h3, -.wvtav h3, -.cart-crosssell h3, -.checkout-crosssell h3, -.bike__crosssell h3 { - font-weight: 700; - font-size: 48px; - margin-bottom: 50px; -} - -@media (max-width:767px) { - .product-carousel-pdp h3, - .product-accessories h3, - .wvtav h3, - .cart-crosssell h3, - .checkout-crosssell h3, - .bike__crosssell h3 { - font-size: 24px; - margin-bottom: 40px; - } -} - -.product-carousel-pdp h3 span, -.product-accessories h3 span, -.wvtav h3 span, -.cart-crosssell h3 span, -.checkout-crosssell h3 span, -.bike__crosssell h3 span { - display: block; -} - -.product-carousel-pdp ol, -.product-accessories ol, -.wvtav ol, -.cart-crosssell ol, -.checkout-crosssell ol, -.bike__crosssell ol { - margin: 0; -} - -.product-carousel-pdp li.product-item, -.product-accessories li.product-item, -.wvtav li.product-item, -.cart-crosssell li.product-item, -.checkout-crosssell li.product-item, -.bike__crosssell li.product-item { - margin: 0 15px; - width: 262px; - height: auto; -} - -.product-carousel-pdp li.product-item .product-image-container, -.product-accessories li.product-item .product-image-container, -.wvtav li.product-item .product-image-container, -.cart-crosssell li.product-item .product-image-container, -.checkout-crosssell li.product-item .product-image-container, -.bike__crosssell li.product-item .product-image-container { - min-height: calc(202px * .703125); -} - -@media (min-width:1600px) { - .product-carousel-pdp li.product-item, - .product-accessories li.product-item, - .wvtav li.product-item, - .cart-crosssell li.product-item, - .checkout-crosssell li.product-item, - .bike__crosssell li.product-item { - width: 362px; - } - - .product-carousel-pdp li.product-item .product-image-container, - .product-accessories li.product-item .product-image-container, - .wvtav li.product-item .product-image-container, - .cart-crosssell li.product-item .product-image-container, - .checkout-crosssell li.product-item .product-image-container, - .bike__crosssell li.product-item .product-image-container { - min-height: calc(302px * .703125); - } -} - -.product-carousel-pdp li.product-item .product-item-actions, -.product-accessories li.product-item .product-item-actions, -.wvtav li.product-item .product-item-actions, -.cart-crosssell li.product-item .product-item-actions, -.checkout-crosssell li.product-item .product-item-actions, -.bike__crosssell li.product-item .product-item-actions { - float: none; - margin: 0; -} - -.product-carousel-pdp li.product-item .product-item-cta .btn-primary, -.product-accessories li.product-item .product-item-cta .btn-primary, -.wvtav li.product-item .product-item-cta .btn-primary, -.cart-crosssell li.product-item .product-item-cta .btn-primary, -.checkout-crosssell li.product-item .product-item-cta .btn-primary, -.bike__crosssell li.product-item .product-item-cta .btn-primary { - color: #fff; -} - -.product-carousel-pdp .slick-track, -.product-accessories .slick-track, -.wvtav .slick-track, -.cart-crosssell .slick-track, -.checkout-crosssell .slick-track, -.bike__crosssell .slick-track { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.product-carousel-pdp .slick-list, -.product-accessories .slick-list, -.wvtav .slick-list, -.cart-crosssell .slick-list, -.checkout-crosssell .slick-list, -.bike__crosssell .slick-list { - overflow: visible; -} - -.product-carousel-pdp .slick-arrow, -.product-accessories .slick-arrow, -.wvtav .slick-arrow, -.cart-crosssell .slick-arrow, -.checkout-crosssell .slick-arrow, -.bike__crosssell .slick-arrow { - width: 14px; - position: absolute; - bottom: 0; - font-size: 0; - overflow: hidden; -} - -.product-carousel-pdp .slick-arrow:before, -.product-accessories .slick-arrow:before, -.wvtav .slick-arrow:before, -.cart-crosssell .slick-arrow:before, -.checkout-crosssell .slick-arrow:before, -.bike__crosssell .slick-arrow:before { - color: #000; - font-size: 16px; -} - -.product-carousel-pdp .slick-arrow.slick-next, -.product-accessories .slick-arrow.slick-next, -.wvtav .slick-arrow.slick-next, -.cart-crosssell .slick-arrow.slick-next, -.checkout-crosssell .slick-arrow.slick-next, -.bike__crosssell .slick-arrow.slick-next { - right: 0; -} - -.product-carousel-pdp .slick-arrow.slick-prev, -.product-accessories .slick-arrow.slick-prev, -.wvtav .slick-arrow.slick-prev, -.cart-crosssell .slick-arrow.slick-prev, -.checkout-crosssell .slick-arrow.slick-prev, -.bike__crosssell .slick-arrow.slick-prev { - transform: rotate(180deg); -} - -.product-carousel-pdp .slick-dots, -.product-accessories .slick-dots, -.wvtav .slick-dots, -.cart-crosssell .slick-dots, -.checkout-crosssell .slick-dots, -.bike__crosssell .slick-dots { - list-style: none; - color: #7f7f7f; - font-size: 12px; - text-align: center; - margin-top: 20px; -} - -.product-accessories { - margin-top: 65px; -} - -@media (min-width:768px) { - .product-accessories { - margin-top: 160px; - } -} - -@media (min-width:1200px) { - .product-accessories .slick-list { - overflow-x: hidden; - } -} - -.frame-number-lookup { - background: #fff; - border: 1px solid #e8e8e8; - padding: 28px 20px; -} - -.frame-number-lookup--accessory { - background: transparent; - border: 0; - padding: 0; -} - -@media (min-width:1200px) { - .frame-number-lookup--accessory { - padding-right: 40px; - } -} - -.frame-number-lookup .label { - font-size: 12px; - margin-bottom: 20px; -} - -.frame-number-lookup .icon-info { - font-size: 12px; - color: #7f7f7f; - position: relative; - top: -1px; - margin-left: 10px; -} - -.frame-number-lookup__field { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.frame-number-lookup__field .field__prefix { - position: absolute; - padding: 12px 0 0 15px; - color: #a9a9a9; - z-index: 150; -} - -.frame-number-lookup__field .input-text { - font-family: 'ProximaNova',Helvetica,Arial,sans-serif; - background: #fff; - margin: 0; -} - -.frame-number-lookup__field .input-text--prefixed { - padding-left: 37px; -} - -.frame-number-lookup__field .input-text--prefixed:focus { - padding-left: 36px; -} - -.frame-number-lookup__field .btn { - height: 41px; - margin-left: 10px; - -webkit-flex: 0 0 40px; - -ms-flex: 0 0 40px; - flex: 0 0 40px; -} - -.frame-number-lookup__field .btn .ga-icon, -.frame-number-lookup__field .btn .knowledge-base__most-viewed a { - margin-left: 0; - line-height: 10px; -} - -.frame-number-lookup__message { - font-weight: 600; - margin: 15px 0 0; -} - -.frame-number-lookup__message.success { - color: #56be49; -} - -.frame-number-lookup__message.error { - color: #cd0c00; -} - -.wvtav { - margin-bottom: 60px; -} - -.family-bikes { - margin-bottom: 15px; -} - -@media (min-width:768px) { - .family-bikes { - margin-bottom: 65px; - } -} - -.family-bikes h3 { - font-size: 40px; - font-weight: 300; - margin: 0 0 30px; -} - -.family-bikes p { - margin-bottom: 55px; -} - -.family-bikes .product-items { - margin: 0 -15px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.family-bikes .product-item { - width: 100%; - padding: 0 15px; -} - -@media (min-width:992px) { - .family-bikes .product-item { - width: 33.33333333%; - } -} - -.btn-locally { - position: relative; - height: 52px; - display: block; - width: 100%; - line-height: 48px; -} - -.btn-locally a { - transition: all .3s ease-in-out; - position: absolute; - top: 0; - left: 0; - height: 48px; - display: inline-block; - width: 100%; - padding: 0px 15px; - color: #fff; -} - -.btn-locally.disabled a { - cursor: default; - pointer-events: none; -} - -.btn-locally.disabled .ga-icon, -.btn-locally.disabled .knowledge-base__most-viewed a { - color: #fff; -} - -.btn-locally .ga-icon, -.btn-locally .knowledge-base__most-viewed a { - position: absolute; - top: 0; - right: 15px; - color: #000; -} - -.btn-locally.btn-primary .ga-icon, -.btn-locally.btn-primary .knowledge-base__most-viewed a { - color: #fff; -} - -#lcly-button-0 a { - background-color: #fff; - color: #000; -} - -#lcly-button-0 a:hover { - background-color: #e8e8e8; -} - -@media (min-width:768px) and (max-width:991px) { - #lcly-button-0 a { - background-color: #f2f2f2; - } -} - -#lcly-button-2:not(.disabled) a { - background-color: #f2f2f2; - color: #000; -} - -#lcly-button-1:not(.disabled) span { - color: #fff; -} - -.hs-form, -.hbspt-form, -.hs-form-private { - width: 100%; - margin: 0 auto; -} - -.hs-form .hs-richtext:has(.block), -.hbspt-form .hs-richtext:has(.block), -.hs-form-private .hs-richtext:has(.block) { - display: flex; - gap: 20px; -} - -@media (max-width:767px) { - .hs-form .hs-richtext:has(.block), - .hbspt-form .hs-richtext:has(.block), - .hs-form-private .hs-richtext:has(.block) { - flex-direction: column; - } -} - -.hs-form p, -.hbspt-form p, -.hs-form-private p { - margin-bottom: 0; - color: #bababa; -} - -.hs-form p.block, -.hbspt-form p.block, -.hs-form-private p.block { - background: #f2f2f2; - padding: 20px; -} - -.hs-form .legal-consent-container, -.hbspt-form .legal-consent-container, -.hs-form-private .legal-consent-container { - margin: 30px 0; - font-style: italic; - font-size: 1rem; - line-height: 1.6; - color: #7f7f7f; -} - -.hs-form .grecaptcha-badge, -.hbspt-form .grecaptcha-badge, -.hs-form-private .grecaptcha-badge { - display: none; -} - -.hs-form input, -.hbspt-form input, -.hs-form-private input, -.hs-form textarea, -.hbspt-form textarea, -.hs-form-private textarea, -.hs-form select, -.hbspt-form select, -.hs-form-private select { - font-size: 14px; - padding: 15px; - border: 1px solid #d9d9d9; - border-radius: 2px; - width: 100%; - background: #fff; -} - -.hs-form input:focus, -.hbspt-form input:focus, -.hs-form-private input:focus, -.hs-form textarea:focus, -.hbspt-form textarea:focus, -.hs-form-private textarea:focus, -.hs-form select:focus, -.hbspt-form select:focus, -.hs-form-private select:focus { - border-color: #004a99; -} - -.hs-form input.error, -.hbspt-form input.error, -.hs-form-private input.error, -.hs-form textarea.error, -.hbspt-form textarea.error, -.hs-form-private textarea.error, -.hs-form select.error, -.hbspt-form select.error, -.hs-form-private select.error { - border-color: #ee3a3a; -} - -.hs-form input[type=checkbox], -.hbspt-form input[type=checkbox], -.hs-form-private input[type=checkbox], -.hs-form textarea[type=checkbox], -.hbspt-form textarea[type=checkbox], -.hs-form-private textarea[type=checkbox], -.hs-form select[type=checkbox], -.hbspt-form select[type=checkbox], -.hs-form-private select[type=checkbox] { - width: auto; - left: 0; - padding: 0; -} - -.hs-form .hs-form-booleancheckbox, -.hbspt-form .hs-form-booleancheckbox, -.hs-form-private .hs-form-booleancheckbox { - margin-top: -10px; - padding-bottom: 30px; -} - -.hs-form .hs-form-booleancheckbox label, -.hbspt-form .hs-form-booleancheckbox label, -.hs-form-private .hs-form-booleancheckbox label { - font-size: 12px; - color: #7f7f7f; -} - -.hs-form .hs-form-booleancheckbox label:not(.hs-error-msg), -.hbspt-form .hs-form-booleancheckbox label:not(.hs-error-msg), -.hs-form-private .hs-form-booleancheckbox label:not(.hs-error-msg) { - position: absolute; - background: #fff; - top: -10px; - left: 10px; - padding: 5px; -} - -.hs-form .hs-form-booleancheckbox label.hs-form-booleancheckbox-display, -.hbspt-form .hs-form-booleancheckbox label.hs-form-booleancheckbox-display, -.hs-form-private .hs-form-booleancheckbox label.hs-form-booleancheckbox-display { - left: 0; -} - -.hs-form .hs-form-booleancheckbox label.hs-error-msg, -.hbspt-form .hs-form-booleancheckbox label.hs-error-msg, -.hs-form-private .hs-form-booleancheckbox label.hs-error-msg { - color: #ee3a3a; -} - -.hs-form .hs-form-booleancheckbox-display > span, -.hbspt-form .hs-form-booleancheckbox-display > span, -.hs-form-private .hs-form-booleancheckbox-display > span { - margin-left: 20px; - display: block; - font-size: 16px; - letter-spacing: normal; - text-transform: none; - font-weight: 400; -} - -.hs-form .hs-form-booleancheckbox-display > span a, -.hbspt-form .hs-form-booleancheckbox-display > span a, -.hs-form-private .hs-form-booleancheckbox-display > span a { - color: #7f7f7f; - text-decoration: underline; - font-weight: 400; -} - -.hs-form label, -.hbspt-form label, -.hs-form-private label { - font-size: 12px; - color: #7f7f7f; -} - -.hs-form label:not(.hs-error-msg), -.hbspt-form label:not(.hs-error-msg), -.hs-form-private label:not(.hs-error-msg) { - position: absolute; - background: #fff; - top: -10px; - left: 10px; - padding: 5px; -} - -.hs-form label.hs-form-booleancheckbox-display, -.hbspt-form label.hs-form-booleancheckbox-display, -.hs-form-private label.hs-form-booleancheckbox-display { - left: 0; -} - -.hs-form label.hs-error-msg, -.hbspt-form label.hs-error-msg, -.hs-form-private label.hs-error-msg { - color: #ee3a3a; -} - -.hs-form .pika-table tr td.is-today .pika-button, -.hbspt-form .pika-table tr td.is-today .pika-button, -.hs-form-private .pika-table tr td.is-today .pika-button { - color: #000; -} - -.hs-form .pika-table tr td .pika-button:hover, -.hbspt-form .pika-table tr td .pika-button:hover, -.hs-form-private .pika-table tr td .pika-button:hover { - background: #004a99; - box-shadow: none; -} - -.hs-form .pika-table tr td.is-selected .pika-button, -.hbspt-form .pika-table tr td.is-selected .pika-button, -.hs-form-private .pika-table tr td.is-selected .pika-button { - background: #004a99; - box-shadow: none; -} - -.hs-form fieldset, -.hbspt-form fieldset, -.hs-form-private fieldset { - max-width: none; -} - -.hs-form fieldset .hs-form-field label, -.hbspt-form fieldset .hs-form-field label, -.hs-form-private fieldset .hs-form-field label { - font-size: 12px; - color: #7f7f7f; -} - -.hs-form fieldset .hs-form-field label:not(.hs-error-msg), -.hbspt-form fieldset .hs-form-field label:not(.hs-error-msg), -.hs-form-private fieldset .hs-form-field label:not(.hs-error-msg) { - position: absolute; - background: #fff; - top: -10px; - left: 10px; - padding: 5px; -} - -.hs-form fieldset .hs-form-field label.hs-form-booleancheckbox-display, -.hbspt-form fieldset .hs-form-field label.hs-form-booleancheckbox-display, -.hs-form-private fieldset .hs-form-field label.hs-form-booleancheckbox-display { - left: 0; -} - -.hs-form fieldset .hs-form-field label.hs-error-msg, -.hbspt-form fieldset .hs-form-field label.hs-error-msg, -.hs-form-private fieldset .hs-form-field label.hs-error-msg { - color: #ee3a3a; -} - -.hs-form fieldset .hs-form-field .hs-form-booleancheckbox, -.hbspt-form fieldset .hs-form-field .hs-form-booleancheckbox, -.hs-form-private fieldset .hs-form-field .hs-form-booleancheckbox { - margin-top: -10px; - padding-bottom: 30px; -} - -.hs-form fieldset .hs-form-field .hs-form-booleancheckbox-display > span, -.hbspt-form fieldset .hs-form-field .hs-form-booleancheckbox-display > span, -.hs-form-private fieldset .hs-form-field .hs-form-booleancheckbox-display > span { - margin-left: 20px; - display: block; - font-size: 16px; - letter-spacing: normal; - text-transform: none; - font-weight: 400; -} - -.hs-form fieldset .hs-form-field .hs-form-booleancheckbox-display > span a, -.hbspt-form fieldset .hs-form-field .hs-form-booleancheckbox-display > span a, -.hs-form-private fieldset .hs-form-field .hs-form-booleancheckbox-display > span a { - color: #7f7f7f; - text-decoration: underline; - font-weight: 400; -} - -.hs-form .actions .primary, -.hbspt-form .actions .primary, -.hs-form-private .actions .primary { - background: #004a99; - color: #fff; - font-weight: 700; - border-radius: 2px; - padding: 10px 25px; - width: auto; -} - -@media (max-width:767px) { - .hs-form .actions .primary, - .hbspt-form .actions .primary, - .hs-form-private .actions .primary { - margin-top: 20px; - } -} - -.menu-category-header { - margin: 30px 0 8px; - padding-left: 30px; - font-size: 12px; - text-align: left; - font-weight: bold; - line-height: 1.17; - letter-spacing: 1.4px; - color: #004a99; - text-transform: uppercase; -} - -@media screen and (max-width:992px) { - [data-submenu="more-menu"] .menu-category-header { - padding-left: 14px; - } -} - -@media screen and (min-width:768px) { - .menu-category-header:nth-child(1) { - margin-top: 0; - } -} - -.navbar { - border: none; - margin: 0; - z-index: 1060; -} - -.active-overlay-element .navbar { - z-index: 1020; -} - -.no-navbar-top.navbar .navbar-header { - top: calc(11px); -} - -@media screen and (max-width:767px) { - .no-navbar-top.navbar .navbar-header { - top: calc(31px); - } -} - -@media screen and (min-width:768px) and (max-width:991px) { - .navbar .navbar-header { - top: 42px; - } - - .no-navbar-top.navbar .navbar-header { - top: calc(-3px); - } -} - -@media screen and (min-width:992px) { - .topbar-active.minimize .navbar .navbar-header { - top: 46px; - } -} - -.navbar .navbar-header .navbar-brand { - height: auto; - position: relative; -} - -@media screen and (max-width:991px) { - .navbar .navbar-header .navbar-brand { - line-height: 107px; - } -} - -.navbar .navbar-header .navbar-brand .logo-wrapper .nav-toggle { - display: none; -} - -@media screen and (max-width:767px) { - .navbar .navbar-collapse { - float: right; - padding: 0; - width: 100%; - } -} - -.navbar .navbar-collapse.collapse { - display: block; -} - -.navbar .navbar-collapse .navbar-nav { - float: right; - margin-right: 0; - position: relative; -} - -@media screen and (min-width:992px) { - .navbar .navbar-collapse .navbar-nav li.category-content { - width: auto; - padding: 0; - } -} - -@media screen and (max-width:767px) { - .navbar .navbar-collapse .navbar-nav { - display: inline-block; - margin: 0; - } - - .navbar .navbar-collapse .navbar-nav .dropdown-container.xs-open { - display: block; - top: 0; - left: 0; - padding: 0; - position: relative; - height: 100%; - } - - .navbar .navbar-collapse .navbar-nav .dropdown-container.xs-open .category-content { - padding: 0 25px; - } -} - -.navbar .navbar-collapse .navbar-nav .menu-toggles { - margin-right: 40px; -} - -@media screen and (min-width:768px) { - .navbar .navbar-collapse .navbar-nav .menu-toggles { - margin-right: 147px; - margin-top: 8px; - } -} - -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle { - padding: 0; - float: right; - margin-left: 4px; -} - -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle.open, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle.open, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle:hover, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle:hover { - color: #004a99; - cursor: pointer; -} - -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle .ga-icon, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle .ga-icon, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle .knowledge-base__most-viewed a, -.navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle .knowledge-base__most-viewed a { - font-size: 23px; -} - -@media screen and (max-width:767px) { - .navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle, - .navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle { - text-align: right; - } - - .navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle .ga-icon, - .navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle .ga-icon, - .navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-toggle .knowledge-base__most-viewed a, - .navbar .navbar-collapse .navbar-nav .menu-toggles .dropdown-no-toggle .knowledge-base__most-viewed a { - display: block; - text-align: center; - font-size: 26px; - margin-top: 2px; - } -} - -@media screen and (min-width:768px) { - .navbar .navbar-collapse .navbar-nav .ga-icon, - .navbar .navbar-collapse .navbar-nav .knowledge-base__most-viewed a { - line-height: 43px; - } -} - -@media screen and (max-width:991px) { - .navbar .navbar-collapse .navbar-nav > li, - .navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li { - display: inline-block; - vertical-align: top; - } -} - -.navbar .navbar-collapse .navbar-nav > li > a, -.navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li > a { - display: block; - height: 75px; - line-height: 75px; - padding: 0 20px; -} - -.navbar .navbar-collapse .navbar-nav > li > a:hover, -.navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li > a:hover { - color: #0d4282; -} - -@media screen and (max-width:992px) { - .navbar .navbar-collapse .navbar-nav > li > a, - .navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li > a { - height: initial; - } -} - -.navbar .navbar-collapse .navbar-nav > li .dropdown-container .dropdown-content a .icon-wrapper, -.navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li .dropdown-container .dropdown-content a .icon-wrapper { - display: none; -} - -.navbar .navbar-collapse .navbar-nav > li .dropdown-container .dropdown-content a .icon-description, -.navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li .dropdown-container .dropdown-content a .icon-description { - font-size: 15px; - text-transform: none; -} - -.navbar .navbar-collapse .navbar-nav > li .dropdown-container .dropdown-content a:hover, -.navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li .dropdown-container .dropdown-content a:hover { - color: #0d4282; - opacity: 1; -} - -.navbar .navbar-collapse .navbar-nav > li .dropdown-container .dropdown-content li, -.navbar .navbar-collapse .navbar-nav .bluefoot-row .row-inner > li .dropdown-container .dropdown-content li { - text-transform: none; -} - -.navbar .navbar-collapse .navbar-icons { - width: 100%; - height: 45px; - padding: 0 50px; -} - -@media screen and (max-width:767px) { - .navbar .navbar-collapse .navbar-icons { - padding: 0 15px; - text-align: right; - float: left; - } -} - -.navbar .navbar-collapse .navbar-icons .header-usps { - margin-left: 0; - overflow: hidden; - float: left; - height: 45px; - display: inline-block; - min-width: 205px; - position: relative; -} - -@media (min-width:480px) { - .navbar .navbar-collapse .navbar-icons .header-usps { - min-width: 350px; - } -} - -@media (min-width:768px) { - .navbar .navbar-collapse .navbar-icons .header-usps { - max-width: calc(100% - 110px); - } -} - -@media (min-width:992px) { - .navbar .navbar-collapse .navbar-icons .header-usps { - max-width: calc(100% - 300px); - } -} - -.navbar .navbar-collapse .navbar-icons .header-usps li { - list-style: none; - float: left; -} - -.navbar .navbar-collapse .navbar-icons .header-usps li a { - font-weight: 700; - line-height: 45px; - opacity: 0.5; - padding: 0 20px 0 0; - width: 100%; - text-align: left; -} - -.navbar .navbar-collapse .navbar-icons .header-usps li a strong { - color: #008000; -} - -@media (max-width:767px) { - .navbar .navbar-collapse .navbar-icons .header-usps li { - width: 100%; - clear: both; - position: absolute; - transform: translateY(45px); - text-align: left; - } - - .navbar .navbar-collapse .navbar-icons .header-usps li a { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .navbar .navbar-collapse .navbar-icons .header-usps li.visible { - transform: translateY(0); - } - - .navbar .navbar-collapse .navbar-icons .header-usps li.slide-out { - animation: slide-out 1.5s; - } - - .navbar .navbar-collapse .navbar-icons .header-usps li.slide-in { - animation: slide-in .5s; - } - - @keyframes slide-out { - from { - transform: translateY(0); - } - - to { - transform: translateY(-100px); - } - } - - @keyframes slide-in { - from { - transform: translateY(100px); - } - - to { - transform: translateY(0); - } - } -} - -.navbar .navbar-collapse .navbar-icons > li { - position: static; - float: right; -} - -.navbar .navbar-collapse .navbar-icons > li > a { - padding: 0 0 0 20px; -} - -.navbar .navbar-collapse .navbar-icons li { - font-size: 1rem; -} - -.navbar .navbar-collapse .navbar-icons li a:not(.btn):hover { - opacity: 1; - background-color: transparent; -} - -.navbar .navbar-collapse .navbar-icons li a:not(.btn):focus { - background-color: initial; -} - -.navbar .navbar-collapse .navbar-icons li a:not(.btn) .ga-icon, -.navbar .navbar-collapse .navbar-icons li a:not(.btn) .knowledge-base__most-viewed a { - margin-left: 6px; - font-size: 25px; - vertical-align: middle; - position: relative; - top: -4px; -} - -.navbar .navbar-collapse .navbar-icons li a.empty { - display: none; -} - -@media screen and (max-width:767px) { - .navbar .navbar-collapse .navbar-icons li a.showcart { - padding-left: 0; - } -} - -.navbar .navbar-collapse .navbar-icons li a .icon-wrapper { - display: inline-block; - position: relative; -} - -.navbar .navbar-collapse .navbar-icons li a .icon-wrapper i { - font-size: 12px; -} - -@media screen and (max-width:767px) { - .navbar .navbar-collapse .navbar-icons li a .icon-wrapper i { - font-size: 17px; - line-height: normal; - } -} - -.navbar .navbar-collapse .navbar-icons li a .icon-description { - display: inline-block; - font-size: 1rem; -} - -@media screen and (max-width:992px) { - .navbar .navbar-collapse .navbar-icons li a .icon-description { - display: none; - } -} - -.navbar .navbar-collapse .navbar-icons li .ui-dialog-content a { - padding: 0; -} - -.navbar .navbar-collapse .navbar-icons li li a { - line-height: 25px; -} - -.navbar .navigation { - clear: both; - width: 100%; - padding: 0 50px 0; -} - -@media screen and (max-width:992px) { - .navbar .navigation { - padding: 0 50px 8px; - float: right; - } -} - -@media screen and (max-width:767px) { - .navbar .navigation { - padding: 0 18px 5px; - clear: none; - height: 60px; - } -} - -.navbar .navigation .nav-menu-label { - text-align: center; - font-size: 11px; - display: block; - width: 45px; - padding-top: 4px; -} - -@media screen and (min-width:768px) { - .navbar .navigation .nav-menu-label { - float: left; - font-size: 15px; - padding: 13px 15px 13px 22px; - width: auto; - } -} - -@media screen and (min-width:992px) { - .navbar .navigation .nav-menu-label { - display: none; - } -} - -.navbar .navigation .navbar-nav .dropdown-container .dropdown-content a.icon-link { - border-bottom: 1px solid rgba(0,0,0,0.05); - display: block; - height: 50px; - line-height: 50px; - margin: 0; - padding: 0; -} - -.navbar .navigation .navbar-nav .dropdown-container .dropdown-content a.icon-link .icon-wrapper { - display: inline-block; - float: right; - padding-left: 10px; - position: relative; - width: auto; -} - -.navbar .navigation .navbar-nav .dropdown-container .dropdown-content a.icon-link .icon-wrapper .counter { - top: 10px; -} - -.navbar .navigation .navbar-nav .dropdown-container .dropdown-content a.icon-link .icon-description { - font-size: 1.1875rem; - font-weight: 300; -} - -@media (max-width:767px) { - .navbar .navigation .navbar-nav { - text-align: right; - width: 100%; - } -} - -.checkout-index-index header .navbar { - border-bottom: 1px solid rgba(0,0,0,0.05); -} - -header .navbar .navbar-header .navbar-brand { - padding: 0; -} - -@media (max-width:767px) { - header .navbar .navbar-header .navbar-brand { - position: absolute; - transform: translate3d(0, -50%, 0); - -webkit-transform: translate3d(0, -50%, 0); - -moz-transform: translate3d(0, -50%, 0); - -ms-transform: translate3d(0, -50%, 0); - -o-transform: translate3d(0, -50%, 0); - } -} - -header .navbar .navbar-header .navbar-brand .logo-wrapper { - display: block; - line-height: 1; - transition: all .25s ease-in-out; -} - -header .navbar .counter { - font-size: .5625rem; - background-color: #004a99; - color: #fff; - border-radius: 3px; - display: block; - height: 15px; - right: -6px; - line-height: 17px; - overflow: hidden; - position: absolute; - text-align: center; - top: 7px; - width: 15px; -} - -header .navbar .counter.empty { - display: none; -} - -.customer-account { - float: right; - margin: 0; - padding: 0 20px; -} - -@media (max-width:991px) { - .customer-account { - padding: 0 10px; - } -} - -.customer-account a i { - font-size: 1.25rem; - display: block; - height: 120px; - line-height: 120px; -} - -@media (max-width:767px) { - .customer-account a i { - font-size: .9375rem; - height: 107px; - line-height: 107px; - } -} - -.customer-account li { - list-style: none; -} - -.customer-account.header-account-link span { - display: none; -} - -.navbar-nav .item.account .dropdown-container { - overflow: hidden; -} - -.navbar-nav .item.account .field-recaptcha { - margin-top: 0; -} - -.navbar-nav .item.account .form-login p { - font-size: 12px; - color: #7f7f7f; - text-align: left; - border-bottom: 1px solid #dbdbdb; - padding-bottom: 15px; -} - -.navbar-nav .item.account .form-login p a { - font-size: 12px; - text-transform: lowercase; - margin-left: 10px; -} - -.navbar-nav .item.account .form-login p .arrow-link { - text-decoration: none; -} - -.navbar-nav .item.account .form-login p .arrow-link:after { - margin: 0 5px 0 8px; - font-size: 8px; -} - -.navbar-nav .item.account .form-login .field { - margin-top: 18px; -} - -.navbar-nav .item.account .form-login .field:first-child { - margin: 0; -} - -.navbar-nav .item.account .form-login .input-text { - background: #fff; -} - -.navbar-nav .item.account .form-login .actions-toolbar { - margin-top: 20px; -} - -.navbar-nav .item.account .form-login .actions-toolbar .primary, -.navbar-nav .item.account .form-login .actions-toolbar .secondary { - width: auto; -} - -.navbar-nav .item.account .form-login .actions-toolbar .primary { - float: right; - margin: 0; -} - -.navbar-nav .item.account .form-login .actions-toolbar .secondary { - margin-top: 4px; -} - -.navbar-nav .item.account .form-login .actions-toolbar .secondary a { - font-size: 11px; - font-weight: 400; - color: #7f7f7f; - text-decoration: underline; - text-transform: none; - background: transparent; - border: 0; - padding: 0; - margin: 0; -} - -.navbar-nav .item.account .account-customer-info { - padding-top: 5px; -} - -.navbar-nav .item.account .account-customer-info .label { - font-size: 10px; - font-weight: 600; - color: #004a99; - letter-spacing: 1.4px; - padding: 0; - margin-bottom: 7px; -} - -.navbar-nav .item.account .account-customer-info .ga-icon, -.navbar-nav .item.account .account-customer-info .knowledge-base__most-viewed a { - font-size: 12px; - line-height: initial; - margin-right: 3px; -} - -.navbar-nav .item.account .account-links { - list-style: none; - padding: 0 0 5px; - margin: 30px 0 0; -} - -.navbar-nav .item.account .account-links li { - margin-top: 10px; -} - -.navbar-nav .item.account .account-links .btn.btn-primary:hover { - color: #fff; -} - -.navbar-nav .item.account .account-links .ga-icon, -.navbar-nav .item.account .account-links .knowledge-base__most-viewed a { - line-height: 20px; -} - -.navbar-payment-icons { - height: 60px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; -} - -@media (min-width:992px) { - .navbar-payment-icons { - height: 75px; - } -} - -.navbar-payment-icons p { - margin: 0 0 0 30px; -} - -@media (max-width:991px) { - .navbar-payment-icons p { - margin-left: 15px; - } -} - -.page-footer { - background-color: #f2f2f2; - padding: 0; - margin-top: auto; - position: relative; - width: 100%; - z-index: 90; -} - -.catalog-product-view .page-footer { - border: 0; - margin-top: 0; -} - -.page-footer .footer-usps { - padding-top: 28px; - padding-bottom: 28px; -} - -.page-footer .footer-usps .ga-icon, -.page-footer .footer-usps .knowledge-base__most-viewed a { - line-height: 1; - font-size: 30px; - vertical-align: middle; - text-align: center; -} - -.page-footer .footer-usps .ga-icon.icon-delivery:before, -.page-footer .footer-usps .knowledge-base__most-viewed a.icon-delivery:before { - transform: scaleX(-1); -} - -.page-footer .footer-usps .ga-icon.icon-fast-bike, -.page-footer .footer-usps .knowledge-base__most-viewed a.icon-fast-bike { - font-size: 22px; - padding: 4px 0; -} - -.page-footer .footer-usps ul { - list-style: none; - margin: 0; - display: flex; - justify-content: center; -} - -.page-footer .footer-usps ul li { - font-size: 1rem; - flex-grow: 1; -} - -@media (max-width:767px) { - .checkout-cart-index .page-footer, - .checkout-index-index .page-footer { - margin-top: 0; - } - - .page-footer .footer-usps { - padding-top: 10px; - padding-bottom: 10px; - } - - .page-footer .footer-usps ul { - flex-direction: column; - } - - .page-footer .footer-usps li { - margin-bottom: 10px; - } - - .page-footer .footer-usps li:first-of-type { - margin-top: 10px; - } - - .page-footer .footer-usps .ga-icon, - .page-footer .footer-usps .knowledge-base__most-viewed a { - width: 60px; - margin-right: 15px; - } -} - -@media (min-width:768px) { - .page-footer .footer-usps li { - font-size: 14px; - padding: 0 10px; - text-align: center; - } - - .page-footer .footer-usps .ga-icon, - .page-footer .footer-usps .knowledge-base__most-viewed a { - margin-bottom: 10px; - display: block; - } -} - -.page-footer .footer-links { - padding: 25px 0; - background-color: #f2f2f2; - border-top: 1px solid rgba(0,0,0,0.1); -} - -@media (min-width:768px) { - .page-footer .footer-links { - padding: 50px 0; - } -} - -.page-footer .footer-links h4 { - font-size: 12px; - font-weight: 700; - letter-spacing: 1.7px; - margin: 0 0 30px 0; - color: #004a99; - text-transform: uppercase; -} - -@media (min-width:768px) { - .page-footer .footer-links h4:before { - display: none; - } -} - -@media (max-width:767px) { - .page-footer .footer-links h4:before { - float: right; - line-height: 1.8; - font-size: 7px; - font-weight: bold; - margin-left: 10px; - } -} - -.page-footer .footer-links h4.less:before { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); -} - -.page-footer .footer-links ul { - list-style: none; - font-size: 14px; - margin: 0; -} - -@media (max-width:767px) { - .page-footer .footer-links ul { - display: none; - } -} - -.page-footer .footer-links ul li { - margin-bottom: 15px; - line-height: 1; -} - -@media (max-width:767px) { - .page-footer .footer-links ul li:last-child { - margin-bottom: 30px; - } -} - -.page-footer .footer-links ul a { - color: #7f7f7f; -} - -.page-footer .footer-links ul a:hover { - color: #000; -} - -.page-footer .social-networks { - display: inline-block; -} - -.page-footer .social-networks ul { - list-style: none; - margin: 0; -} - -.page-footer .social-networks ul li { - display: inline-block; -} - -.page-footer .social-networks ul li:last-of-type { - margin-right: 0; -} - -.page-footer .copyright { - color: #bababa; - width: 100%; - font-size: 14px; -} - -.page-footer .footer-nav { - font-size: 14px; -} - -@media (min-width:1600px) { - .page-footer .footer-nav { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - } -} - -@media (min-width:768px) { - .page-footer .footer-nav { - text-align: right; - } -} - -@media (max-width:767px) { - .page-footer .footer-nav { - margin-top: 10px; - } - - .page-footer .footer-nav .social-networks { - margin-top: 20px; - } - - .page-footer .footer-nav .social-networks ul li { - margin-right: 20px; - } -} - -.page-footer .footer-nav .ga-icon, -.page-footer .footer-nav .knowledge-base__most-viewed a { - font-size: 30px; -} - -@media (min-width:480px) { - .page-footer .footer-nav .ga-icon, - .page-footer .footer-nav .knowledge-base__most-viewed a { - font-size: 18px; - } -} - -.page-footer .footer-nav ul { - display: inline; - list-style: none; - margin: 0; -} - -.page-footer .footer-nav ul li { - display: inline-block; - margin-left: 30px; -} - -@media (min-width:1600px) { - .page-footer .footer-nav ul li:first-child { - margin-left: 0px; - } -} - -@media (max-width:1199px) { - .page-footer .footer-nav ul li { - margin-left: 23px; - } -} - -@media (max-width:991px) { - .page-footer .footer-nav ul li { - margin-left: 0; - margin-right: 8px; - } -} - -.page-footer .footer-nav ul li a { - color: #7f7f7f; -} - -.page-footer .footer-bottom { - background-color: #fff; - padding: 30px 50px; -} - -@media (max-width:991px) { - .page-footer .footer-bottom { - padding: 15px; - } -} - -.page-footer .waarborg { - max-height: 28px; - margin-right: 10px; - padding-bottom: 6px; -} - -.page-footer #trustedshops-badge { - position: relative; - top: 10px; - display: inline-block; - margin-left: 30px; -} - -@media (max-width:1199px) { - .page-footer #trustedshops-badge { - margin-left: 23px; - } -} - -@media (max-width:991px) { - .page-footer #trustedshops-badge { - margin-left: 10px; - } -} - -@media (max-width:767px) { - .page-footer #trustedshops-badge { - margin-left: 0; - } -} - -.page-footer .country-selector { - color: #7f7f7f; - font-size: 12px; - transition: color .3s ease-in-out; -} - -.page-footer .country-selector:hover { - color: #000; -} - -.page-footer .country-selector__flag { - width: 22px; - height: 15px; - margin-right: 8px; -} - -.page-footer .country-selector__name { - vertical-align: middle; -} - -@media (max-width:1599px) { - .page-footer .country-selector { - margin-left: 50px; - } -} - -@media (max-width:767px) { - .page-footer .country-selector { - display: block; - margin: 20px 0 0; - } -} - -.navbar { - background-color: #fff; - transition: all .2s linear; - border-bottom: 1px solid #f2f2f2; - will-change: auto; -} - -.navbar .dropdown-container { - margin-top: 1px; -} - -.transparent-menu .navbar { - background-color: transparent; - border-color: transparent; -} - -.transparent-menu .navbar:before { - content: ''; - width: 100%; - height: 120px; - position: absolute; - top: 0; - left: 0; - right: 0; - background-image: linear-gradient(to bottom, #000, rgba(0,0,0,0)); - pointer-events: none; - transition: all .2s ease-in-out; -} - -.minimize .navbar { - background-color: #fff; -} - -.minimize .navbar:before { - opacity: 0; -} - -.topbar-active.minimize .navbar { - margin-top: -45px; -} - -.topbar-active.minimize.gazelle-pdp .navbar { - margin-top: -120px; -} - -.navbar .navbar-header { - top: 56px; - position: absolute; - padding-left: 50px; - z-index: 1; -} - -.navbar .navbar-header .logo-max svg { - width: 141px; - height: 57px; -} - -.navbar .navbar-collapse { - background-color: #fff; - transition: all .2s ease-in-out; -} - -.transparent-menu .navbar .navbar-collapse { - background-color: transparent; -} - -.navbar .navbar-collapse .navbar-icons { - background-color: #f2f2f2; - transition: all .2s ease-in-out; - z-index: 1060; - backdrop-filter: blur(0px); - -webkit-backdrop-filter: blur(0px); - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.navbar .navbar-collapse .navbar-icons:before, -.navbar .navbar-collapse .navbar-icons:after { - position: absolute; -} - -.transparent-menu .navbar .navbar-collapse .navbar-icons { - background-color: transparent; - backdrop-filter: blur(24px); - -webkit-backdrop-filter: blur(24px); -} - -.minimize .navbar .navbar-collapse .navbar-icons { - backdrop-filter: blur(0px); - -webkit-backdrop-filter: blur(0px); -} - -.navbar .navbar-collapse .navbar-icons li .navbar-item { - color: #000; - height: auto; - line-height: 45px; - float: left; - opacity: 0.5; -} - -.transparent-menu .navbar .navbar-collapse .navbar-icons li .navbar-item { - color: #7f7f7f; - opacity: 1; -} - -.minimize .navbar .navbar-collapse .navbar-icons li .navbar-item { - color: #000; -} - -.navbar .navbar-collapse .navbar-icons .account .dropdown-container.open { - max-height: 100vh; - padding-bottom: 0; -} - -.navbar .navbar-collapse .navbar-icons .header-usps { - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.transparent-menu .navbar .navbar-collapse .navbar-icons .header-usps li a { - color: #7f7f7f; - opacity: 1; -} - -.transparent-menu .navbar .navbar-collapse .navbar-icons .header-usps li a strong { - color: #7f7f7f; -} - -.minimize .navbar .navbar-collapse .navbar-icons .header-usps li a { - color: #000; - opacity: 0.5; -} - -.navbar .navigation__items { - list-style: none; - margin: 0 150px 0 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.navbar .navigation .title-heading { - display: block; - font-size: 12px; - font-weight: bold; - text-transform: uppercase; - letter-spacing: 1.5px; - color: #004a99; -} - -.navbar .navigation .submenu-fullwidth .container { - padding: 0; -} - -.navbar .navigation .submenu-fullwidth__title { - padding: 0 0 20px; -} - -.navbar .navigation .submenu-fullwidth .col-md-12 { - margin-top: 60px; - width: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.navbar .navigation .submenu-fullwidth .col-md-12 ul { - width: 22%; - margin-bottom: 60px; -} - -.navbar .navigation .submenu-fullwidth .col-md-12 ul li { - list-style: none; -} - -.navbar .navigation .submenu-fullwidth .col-md-12 ul li a { - height: auto; - padding: 0; - line-height: 2; -} - -.navbar .navigation .submenu-fullwidth .col-md-12 ul li a:hover { - color: #004a99; -} - -.navbar .navigation__item-link:hover, -.navbar .navigation__item-link.open { - color: #004a99; -} - -.transparent-menu .navbar .navigation__item-link { - color: #fff; -} - -.minimize:not(.gazelle-pdp) .navbar .navigation__item-link { - color: #000; - height: 60px; -} - -.transparent-menu .navbar .navigation__item-link:hover, -.minimize .navbar .navigation__item-link:hover, -.transparent-menu .navbar .navigation__item-link.open, -.minimize .navbar .navigation__item-link.open { - color: #004a99; -} - -.navbar .navigation__item a, -.navbar .navigation__item .open-dropdown { - height: 75px; - padding: 0 20px; - transition: .2s color ease-in-out; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.transparent-menu .navbar .navigation .menu-toggles__item { - color: #fff; -} - -.minimize .navbar .navigation .menu-toggles__item { - color: #000; -} - -.navbar .navigation .menu-toggles .dropdown-content { - padding-top: 30px; - -webkit-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__items { - width: 100%; - margin: 0; - padding: 0 15px; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item { - margin-bottom: 10px; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item { - color: #000; - background-color: #f2f2f2; - height: 60px; - position: relative; - display: flex; - padding: 0 20px; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item:after { - font-size: 11px; - position: absolute; - right: 20px; - top: 50%; - transform: translateY(-50%); -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a.open-dropdown:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item.open-dropdown:after { - font-size: 7px; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item a.open-dropdown.open:after, -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .main-item.open-dropdown.open:after { - font-size: 7px; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-container .submenu-items { - margin: 20px 0; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-container .submenu-items__title { - text-align: left; - padding: 30px 0 15px; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-container .submenu-items__title:first-child { - padding-top: 10px; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-container .submenu-items__item { - list-style: none; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-container .submenu-items__item a { - padding: 0; - background-color: #fff; - height: auto; - line-height: 2; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-container .submenu-items__item a:after { - display: none; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item .dropdown-toggle { - padding: 0 20px; - margin: 0; - float: none; -} - -.navbar .navigation .menu-toggles .dropdown-content .navigation__item:last-child { - margin-bottom: 0; -} - -.logo-transparent { - display: none; -} - -.logo-default { - display: block; -} - -.transparent-menu .logo-transparent { - display: block; -} - -.transparent-menu .logo-default { - display: none; -} - -@media (min-width:992px) { - .transparent-menu .navbar:before { - height: 140px; - } -} - -@media (min-width:768px) and (max-width:991px) { - .navbar .navbar-header { - top: 46px; - } -} - -@media (max-width:991px) { - .topbar-active.minimize.gazelle-pdp .navbar { - margin-top: -111px; - } - - .navbar .navigation__item .dropdown-container { - -ms-overflow-style: none; - scrollbar-width: none; - transition: ease-in-out .5s; - } - - .navbar .navigation__item .dropdown-container.open { - max-height: 4000px; - } - - .navbar .navigation__item .dropdown-container::-webkit-scrollbar { - display: none; - } - - .navbar .navigation .menu-toggles .dropdown-content .navigation__items { - padding: 0; - } -} - -@media (max-width:767px) { - .topbar-active.minimize.gazelle-pdp .navbar { - margin-top: -107px; - } - - .navbar .dropdown-container { - margin-top: 0; - } - - .navbar .navbar-header { - padding: 0 18px; - top: 76px; - } - - .navbar .navbar-header .logo-max svg { - width: 152px; - height: 52px; - } - - .bikewizard-index-index .navbar .menu-toggles .dropdown-container.open { - padding-bottom: 60px; - } -} - -.navbar .navigation .bike-menu .container { - padding-top: 60px; -} - -@media screen and (max-width:991px) { - .navbar .navigation .bike-menu .container { - width: 100%; - } -} - -.navbar .navigation .bike-menu-highlighted__wrapper { - border-radius: 5px; - position: relative; - overflow: hidden; - width: 100%; - height: 300px; - padding: 0; -} - -.minimize .navbar .navigation .bike-menu-highlighted__wrapper { - height: 300px; -} - -.navbar .navigation .bike-menu-highlighted__wrapper:hover .bike-menu-highlighted__img { - transform: scale(1.05); -} - -.navbar .navigation .bike-menu-highlighted__wrapper:hover .bike-menu-highlighted__content { - padding-bottom: 60px; -} - -.navbar .navigation .bike-menu-highlighted__img { - position: relative; - background-size: cover; - background-position: center top; - height: 100%; - width: 100%; - transition: transform .6s; - border-radius: 5px; -} - -.navbar .navigation .bike-menu-highlighted__content { - position: absolute; - height: 50%; - padding-bottom: 50px; - bottom: 0; - left: 0; - width: 100%; - color: #fff; - text-align: center; - background: linear-gradient(to bottom, rgba(0,0,0,0), #000); - border-radius: 0 0 4px 4px; - transition: 0.2s; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; -} - -.navbar .navigation .bike-menu-subitems { - margin-top: 40px; -} - -.navbar .navigation .bike-menu-subitems .col-md-9 { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.navbar .navigation .bike-menu-subitems .col-md-9.full-width ul { - width: 100%; -} - -.navbar .navigation .bike-menu-subitems .col-md-9.full-width ul li { - width: 33.33%; -} - -.navbar .navigation .bike-menu-subitems__container { - margin: 0; - padding-top: 25px; - width: 66.66%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-flow: row wrap; - -ms-flex-flow: row wrap; - flex-flow: row wrap; -} - -.navbar .navigation .bike-menu-subitems__container.highlighted { - width: 33.33%; - -webkit-flex-flow: column wrap; - -ms-flex-flow: column wrap; - flex-flow: column wrap; -} - -.navbar .navigation .bike-menu-subitems__container.highlighted__item, -.navbar .navigation .bike-menu-subitems__container.highlighted li { - width: 100%; -} - -.navbar .navigation .bike-menu-subitems__item, -.navbar .navigation .bike-menu-subitems li { - list-style: none; - width: 50%; - position: relative; - margin: 0; - height: 85px; -} - -.navbar .navigation .bike-menu-subitems__item:before, -.navbar .navigation .bike-menu-subitems li:before { - content: ""; - width: 100%; - height: 85px; - background-color: #0d4282; - position: absolute; - top: 0; - left: 0; - z-index: 0; - max-width: 0; - transition: all .3s; -} - -.navbar .navigation .bike-menu-subitems__item a, -.navbar .navigation .bike-menu-subitems li a { - z-index: 3; - display: table; - margin-bottom: 0; - padding: 20px 30px; - text-align: left; - width: 100%; -} - -.navbar .navigation .bike-menu-subitems__item:hover a, -.navbar .navigation .bike-menu-subitems li:hover a { - position: absolute; -} - -.navbar .navigation .bike-menu-subitems__item:hover a span, -.navbar .navigation .bike-menu-subitems li:hover a span { - color: #fff; -} - -.navbar .navigation .bike-menu-subitems__item:hover:before, -.navbar .navigation .bike-menu-subitems li:hover:before { - max-width: 100%; -} - -.navbar .navigation .bike-menu-subitems__item:hover .bike-menu-subitems__description, -.navbar .navigation .bike-menu-subitems li:hover .bike-menu-subitems__description { - color: #fff; -} - -.navbar .navigation .bike-menu-subitems__title { - position: absolute; - top: -10px; - display: block; - text-transform: uppercase; - letter-spacing: 1.5px; - font-weight: 700; - padding: 0 30px 10px; - color: #004a99; - font-size: 12px; -} - -.navbar .navigation .bike-menu-subitems__subtitle { - list-style: none; - display: block; - font-size: 18px; - line-height: 18px; - margin-bottom: 10px; -} - -.navbar .navigation .bike-menu-subitems__description { - font-size: 14px; - line-height: 14px; - color: #a9a9a9; - position: absolute; - top: 50px; - left: 30px; -} - -.navbar .navigation .bike-menu-cta__content { - background-color: #5b8451; - padding: 40px; - border-radius: 4px; - height: 280px; - transition: all .3s; - -webkit-align-items: stretch; - -ms-align-items: stretch; - align-items: stretch; -} - -.minimize .navbar .navigation .bike-menu-cta__content { - height: 280px; -} - -.navbar .navigation .bike-menu-cta__content .description { - font-size: 25px; - font-weight: 600; - margin: 0; - color: #fff; -} - -.navbar .navigation .bike-menu-cta__content .cta-link { - position: absolute; - bottom: 40px; - height: auto; - padding: 0; - color: #fff; -} - -.navbar .navigation .bike-menu-cta__content:hover { - background-color: #4f7346; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__items { - padding-bottom: 0px; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__items-heading { - margin: 30px 0 20px; - text-align: left; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__items-heading:first-child { - margin-top: 0px; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item { - position: relative; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item a:not(.main-item) { - z-index: 3; - display: block; - margin-bottom: 0; - padding: 20px 0px; - text-align: left; - background: none; - width: 100%; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item a:not(.main-item):after { - display: none; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item .title { - list-style: none; - display: block; - font-size: 18px; - line-height: 18px; - margin-bottom: 10px; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item .description { - font-size: 14px; - color: #a9a9a9; - line-height: 14px; - position: absolute; - bottom: 0px; - display: block; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item--cta:not(.main-item) { - width: 100%; - margin-right: auto; - margin-left: auto; - bottom: 20px; - padding: 15px; - border-radius: 3px; - background-color: #e6ecee; - text-align: left; - -webkit-align-items: baseline; - -ms-align-items: baseline; - align-items: baseline; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item--cta:not(.main-item) .title { - color: #fff; - font-size: 14px; - font-weight: 600; - background-color: #5b8451; - border-radius: 3px; - line-height: 30px; - margin: 0; - padding: 0; - height: auto; - text-align: center; - min-width: 50%; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item--cta:not(.main-item) .title .ga-icon, -.navbar .navigation .menu-toggles .bike-menu .navigation__item--cta:not(.main-item) .title .knowledge-base__most-viewed a { - margin-left: 10px; - font-size: 12px; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item--cta:not(.main-item) .subtitle { - text-align: center; - min-width: 50%; - height: 24px; - color: #000; - font-size: 14px; - font-weight: 600; -} - -.navbar .navigation .menu-toggles .bike-menu .navigation__item--sticky { - position: -webkit-sticky; - position: sticky; - z-index: 3; -} - -@media (max-width:991px) { - .navbar .navigation .bike-menu-subitems__item:after, - .navbar .navigation .bike-menu-subitems li:after { - display: none; - } -} - -@media (max-width:767px) { - .navbar .navigation .menu-toggles .bike-menu .navigation__item--cta { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - } - - .navbar .navigation .menu-toggles .bike-menu .navigation__item--cta .title { - min-width: 180px; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - } -} - -.minicart-wrapper { - float: right; -} - -.minicart-wrapper .showcart { - display: block; - margin: 0; - position: relative; -} - -.minicart-wrapper .showcart .text { - display: block; - height: 120px; - line-height: 120px; - padding: 0 20px; -} - -@media (max-width:991px) { - .minicart-wrapper .showcart .text { - padding: 0 10px; - } -} - -@media (max-width:767px) { - .minicart-wrapper .showcart .text { - height: 107px; - line-height: 107px; - } -} - -.minicart-wrapper .showcart .text .gazelle-icon:before, -.minicart-wrapper .showcart .text .account .form-wishlist-items li .product-item-actions a:before { - font-size: 1.25rem; -} - -@media (max-width:767px) { - .minicart-wrapper .showcart .text .gazelle-icon:before, - .minicart-wrapper .showcart .text .account .form-wishlist-items li .product-item-actions a:before { - font-size: .9375rem; - } -} - -.minicart-wrapper .block-minicart { - display: none; - background: #f2f2f2; - border: 0; - position: absolute; - min-width: 300px; - top: 46px; - right: 50px; - z-index: 1057; - padding: 25px 30px 30px 30px; - border-radius: 0; -} - -@media (max-width:767px) { - .minicart-wrapper .block-minicart { - width: 100%; - left: 0; - right: 0; - } -} - -.minicart-wrapper .block-minicart p { - color: #7f7f7f; - margin: 0; -} - -.minicart-wrapper .block-minicart .block-title { - font-size: 20px; - font-weight: 600; - text-align: left; - border-bottom: 1px solid #e8e8e8; - padding-bottom: 20px; - margin-bottom: 25px; -} - -.minicart-wrapper .block-minicart .minicart-items { - list-style: none; - margin: 0; -} - -.minicart-wrapper .block-minicart .minicart-items .item { - margin: 0; -} - -.minicart-wrapper .block-minicart .minicart-items .item:not(:first-child) { - border-top: 1px solid #bababa; - padding-top: 20px; - margin-top: 20px; -} - -.minicart-wrapper .block-minicart .product, -.minicart-wrapper .block-minicart .subtotal { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.minicart-wrapper .block-minicart .product-item { - font-weight: 600; -} - -.minicart-wrapper .block-minicart .product-item-photo { - width: 70px; - margin-right: 10px; -} - -.minicart-wrapper .block-minicart .product-item-photo img { - height: auto; -} - -.minicart-wrapper .block-minicart .product-item-details, -.minicart-wrapper .block-minicart .product-item-pricing { - text-align: left; -} - -.minicart-wrapper .block-minicart .product-item-pricing { - font-size: 12px; -} - -.minicart-wrapper .block-minicart .price-monthly { - font-size: 10px; -} - -.minicart-wrapper .block-minicart .price-monthly--contains-description-label { - font-weight: 300; -} - -.minicart-wrapper .block-minicart .subtotal { - font-size: 14px; - font-weight: 600; - border-top: 1px solid #000; - padding-top: 17px; - margin-top: 25px; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.minicart-wrapper .block-minicart .subtotal span { - text-align: left; - display: block; -} - -.minicart-wrapper .block-minicart .subtotal small { - font-size: 12px; - font-weight: 400; - color: #7f7f7f; -} - -.minicart-wrapper .block-minicart .subtotal .price-wrapper { - text-align: right; -} - -.minicart-wrapper .block-minicart .subtotal .price-monthly { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.minicart-wrapper .block-minicart .subtotal .price-monthly span:first-of-type { - margin-right: 3px; -} - -.minicart-wrapper .block-minicart .borrow-money-notice { - border: solid .5px #bababa; - text-align: center; - margin-top: 20px; - padding: 8px 8px 6px 8px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.minicart-wrapper .block-minicart .borrow-money-notice__icon { - width: 152.5px; - height: 16px; - background: url('../images/geldlenenkostgeld.svg') no-repeat; -} - -.minicart-wrapper .block-minicart .actions { - margin-top: 20px; -} - -.navbar .minicart-wrapper .block-minicart .actions .ga-icon, -.navbar .minicart-wrapper .block-minicart .actions .knowledge-base__most-viewed a { - line-height: 20px; -} - -.dropdown-container { - background-color: #fff; - margin: 0 auto; - overflow: auto; - width: 100%; - position: fixed; - right: 0; - top: 120px; - max-height: 0; - transition: all .4s; - z-index: 3; -} - -body.minimize .dropdown-container { - top: 60px; -} - -.no-navbar-top .dropdown-container { - top: calc(75px); -} - -.dropdown-container > div { - padding: 20px; -} - -.dropdown-container > div.row { - width: 100%; -} - -@media (max-width:992px) { - .dropdown-container > div.row { - margin: 0; - } -} - -.dropdown-container.open { - max-height: 100vh; -} - -@media (max-width:991px) { - .dropdown-container.open { - padding-bottom: 100px; - max-height: 100%; - } - - .category-content .dropdown-container.open { - max-height: 100%; - } -} - -@media (min-width:992px) { - .dropdown-container { - height: calc(100vh - 160px); - } -} - -@media (max-width:991px) { - .dropdown-container { - top: 105px; - height: 100%; - left: 0; - right: 0; - } - - body.minimize .dropdown-container { - top: 60px; - } - - .no-navbar-top .dropdown-container { - top: calc(62px); - } - - .dropdown-container .bluefoot-menu { - width: 100%; - } - - .dropdown-container.show-xs { - position: initial; - padding-bottom: 0; - border: none; - } - - .dropdown-container.show-xs .row { - width: 100%; - } -} - -.dropdown-container-small { - top: 46px; - display: none; - border: none; - height: auto; - left: initial; - width: 300px; - text-align: left; - background-color: #f2f2f2; - z-index: 1000; -} - -.dropdown-container-small.open { - display: block; -} - -@media (max-width:991px) { - .dropdown-container-small { - top: 47px; - } -} - -@media (min-width:768px) { - .dropdown-container-small { - right: 50px; - } -} - -.dropdown-container-small .dropdown-content { - display: block; - padding: 20px 30px 15px 30px; -} - -.dropdown-container-small .dropdown-content .menu-category-header { - padding-left: 20px; -} - -@media (max-width:767px) { - .dropdown-container-small .dropdown-content .menu-category-header { - padding-left: 7px; - } -} - -.dropdown-container .dropdown-content-xs { - display: none; -} - -.dropdown-container .dropdown-content-xs .category-content { - padding: 0; -} - -.dropdown-container .dropdown-content-xs .full-width { - margin: 0; -} - -html:not(.has--js) .navbar-nav li:hover .dropdown-container { - display: block; -} - -.dropdown-container:not(.full-width) .dropdown-content .category-content { - z-index: 50; - margin-bottom: 10px; -} - -@media screen and (min-width:768px) { - .dropdown-container:not(.full-width) .dropdown-content .category-content { - min-width: 154px; - } -} - -.dropdown-container:not(.full-width) .dropdown-content .category-content:empty { - display: none; -} - -.dropdown-container .dropdown-content:before, -.dropdown-container .dropdown-content:after { - content: " "; - display: table; -} - -.dropdown-container .dropdown-content:after { - clear: both; -} - -.dropdown-container .dropdown-content .category-content h4 { - position: relative; - margin: 0; - text-align: left; - font-size: 16px; - font-weight: 400; -} - -@media screen and (min-width:992px) { - .dropdown-container .dropdown-content .category-content h4 { - padding: 8px 8px 8px 30px; - } -} - -@media screen and (max-width:992px) { - .dropdown-container .dropdown-content .category-content h4 { - display: block; - margin: 0; - padding: 0; - font-size: 16px; - line-height: 60px; - } - - .dropdown-container .dropdown-content .category-content h4 .ga-icon, - .dropdown-container .dropdown-content .category-content h4 .knowledge-base__most-viewed a { - position: absolute; - right: 0; - font-size: 11px; - line-height: 60px; - } - - .dropdown-container .dropdown-content .category-content h4 .ga-icon.icon-chevron-down, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.page-footer .footer-links h4, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.cms-hierarchy__title strong, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.cart-crosssell__header a.active, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron, - .dropdown-container .dropdown-content .category-content h4 .knowledge-base__most-viewed a.icon-chevron-down, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.product-stickybar__nav-toggle a, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.product-reviews__more span, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.virtual-category button.content-collapse, - .dropdown-container .dropdown-content .category-content h4 .ga-icon.account .order-item__title--collapsible { - font-size: 7px; - } -} - -.dropdown-container .dropdown-content .category-content ul { - list-style: none; - margin: 0; - padding: 0; - text-align: left; -} - -.dropdown-container .dropdown-content .category-content ul ul { - padding: 0; -} - -.dropdown-container .dropdown-content .category-content ul li { - line-height: 1.67; -} - -.dropdown-container .dropdown-content .category-content ul li.account-link .icon-wrapper { - display: none; -} - -.dropdown-container .dropdown-content .category-content ul li a { - padding: 0; - color: #777; -} - -.dropdown-container .dropdown-content .category-content ul li:hover a { - color: #004a99; -} - -.dropdown-container .dropdown-content .category-content a { - display: table; - line-height: 1; - margin-bottom: 0; -} - -@media screen and (max-width:992px) { - .dropdown-container .dropdown-content .category-content a { - background-color: #f2f2f2; - border-radius: 2px; - padding-top: 15px; - } - - .dropdown-container .dropdown-content .category-content a .ga-icon, - .dropdown-container .dropdown-content .category-content a .knowledge-base__most-viewed a { - transition: transform .25s; - } - - .dropdown-container .dropdown-content .category-content a.submenu-link { - background-color: transparent; - padding-left: 14px; - } - - .dropdown-container .dropdown-content .category-content a.submenu-link h4 { - line-height: 1; - } - - .dropdown-container .dropdown-content .category-content a.open .ga-icon, - .dropdown-container .dropdown-content .category-content a.open .knowledge-base__most-viewed a { - transform: rotate(-180deg); - } -} - -.dropdown-container .dropdown-content .category-content a h4:after { - display: none; -} - -@media screen and (min-width:768px) { - .dropdown-container:not(.dropdown-container-small) { - margin: 0; - width: 100%; - display: flex; - justify-content: space-around; - } -} - -@media (max-width:767px) { - .dropdown-container .dropdown-container > div { - padding: 0; - } -} - -@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) { - .minimize .dropdown-container { - top: 75px; - } -} - -.carousel .item, -.bluefoot-advanced-slider .item { - overflow: hidden; -} - -@media screen and (max-width:991px) { - .carousel .item, - .bluefoot-advanced-slider .item { - height: auto; - } -} - -.carousel .item.slick-slide:not(.slick-active) .row-info .row-inner > div:first-of-type, -.bluefoot-advanced-slider .item.slick-slide:not(.slick-active) .row-info .row-inner > div:first-of-type, -.carousel .item.prev.right .row-info .row-inner > div:first-of-type, -.bluefoot-advanced-slider .item.prev.right .row-info .row-inner > div:first-of-type, -.carousel .item.next.left .row-info .row-inner > div:first-of-type, -.bluefoot-advanced-slider .item.next.left .row-info .row-inner > div:first-of-type { - transform: translateX(-100%); -} - -.carousel .item.slick-active .row-info .row-inner > div:first-of-type, -.bluefoot-advanced-slider .item.slick-active .row-info .row-inner > div:first-of-type, -.carousel .item.active .row-info .row-inner > div:first-of-type, -.bluefoot-advanced-slider .item.active .row-info .row-inner > div:first-of-type { - transform: translateX(0); -} - -.carousel .item .col-inner, -.bluefoot-advanced-slider .item .col-inner { - width: 100%; -} - -.carousel .item .col-inner figure, -.bluefoot-advanced-slider .item .col-inner figure, -.carousel .item .col-inner video, -.bluefoot-advanced-slider .item .col-inner video, -.carousel .item .col-inner .background-image, -.bluefoot-advanced-slider .item .col-inner .background-image { - width: 100%; -} - -@media screen and (max-width:991px) { - .carousel .item .col-inner figure, - .bluefoot-advanced-slider .item .col-inner figure, - .carousel .item .col-inner video, - .bluefoot-advanced-slider .item .col-inner video, - .carousel .item .col-inner .background-image, - .bluefoot-advanced-slider .item .col-inner .background-image { - height: 300px; - } -} - -@media screen and (max-width:991px) { - .carousel .item.bluefoot-advanced-slide, - .bluefoot-advanced-slider .item.bluefoot-advanced-slide { - height: 300px; - } -} - -.carousel .item .row-info, -.bluefoot-advanced-slider .item .row-info { - margin: 0; - padding: 0; - height: 100%; -} - -.carousel .item .row-info .row-inner, -.bluefoot-advanced-slider .item .row-info .row-inner { - margin: 0; - padding: 0; - height: 100%; - position: relative; -} - -.carousel .item .row-info .row-inner > div, -.bluefoot-advanced-slider .item .row-info .row-inner > div { - padding: 0; - overflow: hidden; -} - -.carousel .item .row-info .row-inner > div:first-of-type, -.bluefoot-advanced-slider .item .row-info .row-inner > div:first-of-type { - background-color: #f2f2f2; - height: 100%; - padding-left: 15px; - position: absolute; - z-index: 50; - margin: 0; - transform: translateX(0); - transition: transform 750ms ease-in-out 800ms; -} - -@media screen and (max-width:991px) { - .carousel .item .row-info .row-inner > div:first-of-type, - .bluefoot-advanced-slider .item .row-info .row-inner > div:first-of-type { - display: none; - } -} - -.carousel .item .row-info .row-inner > div:first-of-type .col-inner, -.bluefoot-advanced-slider .item .row-info .row-inner > div:first-of-type .col-inner { - position: absolute; - top: 50%; - transform: translateY(-50%); - text-align: left; -} - -.carousel .item .row-info .row-inner > div:last-of-type, -.bluefoot-advanced-slider .item .row-info .row-inner > div:last-of-type { - width: 100%; - padding: 0; -} - -.carousel .item .row-info .row-inner > div .block, -.bluefoot-advanced-slider .item .row-info .row-inner > div .block { - padding: 0 60px; -} - -.carousel .item .row-primary .w_heading, -.bluefoot-advanced-slider .item .row-primary .w_heading, -.carousel .item .row-primary .block, -.bluefoot-advanced-slider .item .row-primary .block { - padding: 0 30%; -} - -@media screen and (max-width:991px) { - .carousel .item .row-primary .w_heading, - .bluefoot-advanced-slider .item .row-primary .w_heading, - .carousel .item .row-primary .block, - .bluefoot-advanced-slider .item .row-primary .block { - padding: 0 15px; - } -} - -.carousel.carousel-lg .carousel-inner .item, -.bluefoot-advanced-slider .item { - height: calc(100vh - 90px); -} - -.carousel.carousel-lg .carousel-inner .item .col-inner .youtube-video, -.bluefoot-advanced-slider .item .col-inner .youtube-video, -.carousel.carousel-lg .carousel-inner .item .col-inner figure, -.bluefoot-advanced-slider .item .col-inner figure, -.carousel.carousel-lg .carousel-inner .item .col-inner figure video, -.bluefoot-advanced-slider .item .col-inner figure video, -.carousel.carousel-lg .carousel-inner .item .col-inner .background-image, -.bluefoot-advanced-slider .item .col-inner .background-image { - height: calc(100vh - 90px); -} - -.carousel.carousel-md .carousel-inner .item { - height: 66.66666667vh; -} - -.carousel.carousel-md .carousel-inner .item .col-inner .youtube-video, -.carousel.carousel-md .carousel-inner .item .col-inner figure, -.carousel.carousel-md .carousel-inner .item .col-inner figure video, -.carousel.carousel-md .carousel-inner .item .col-inner .background-image { - height: 66.66666667vh; -} - -.carousel.carousel-sm .carousel-inner .item { - height: 50vh; -} - -.carousel.carousel-sm .carousel-inner .item .col-inner .youtube-video, -.carousel.carousel-sm .carousel-inner .item .col-inner figure, -.carousel.carousel-sm .carousel-inner .item .col-inner figure video, -.carousel.carousel-sm .carousel-inner .item .col-inner .background-image { - height: 50vh; -} - -.carousel .carousel-indicators { - display: none; -} - -.bluefoot-advanced-slider .carousel-control, -.carousel-control { - font-size: 20px; - opacity: 1; - text-shadow: none; - top: auto; - bottom: 15px; - width: 55px; - height: 55px; - background: transparent; -} - -.bluefoot-advanced-slider .carousel-control.left, -.carousel-control.left { - background-image: none; - left: auto; - padding-right: 15px; - right: 80px; -} - -@media screen and (max-width:991px) { - .bluefoot-advanced-slider .carousel-control.left, - .carousel-control.left { - left: 5px; - padding-left: 0; - padding-right: 0; - right: auto; - } -} - -.bluefoot-advanced-slider .carousel-control.right, -.carousel-control.right { - background-image: none; - padding-right: 15px; - right: 15px; -} - -@media screen and (max-width:991px) { - .bluefoot-advanced-slider .carousel-control.right, - .carousel-control.right { - padding-left: 0; - padding-right: 0; - right: 5px; - } -} - -.bluefoot-advanced-slider .carousel-control .icon, -.carousel-control .icon, -.bluefoot-advanced-slider .carousel-control .account .form-wishlist-items li .product-item-actions a, -.carousel-control .account .form-wishlist-items li .product-item-actions a { - background-color: rgba(255,255,255,0.2); - color: rgba(0,0,0,0.5); - transition: all 250ms ease-in-out; - width: 55px; - height: 55px; - line-height: 0; - position: relative; -} - -.bluefoot-advanced-slider .carousel-control .icon:before, -.carousel-control .icon:before, -.bluefoot-advanced-slider .carousel-control .account .form-wishlist-items li .product-item-actions a:before, -.carousel-control .account .form-wishlist-items li .product-item-actions a:before { - position: absolute; - top: 50%; - left: 50%; - transform: translate3d(-50%, -50%, 0); - -webkit-transform: translate3d(-50%, -50%, 0); - -moz-transform: translate3d(-50%, -50%, 0); - -ms-transform: translate3d(-50%, -50%, 0); - -o-transform: translate3d(-50%, -50%, 0); -} - -.bluefoot-advanced-slider .carousel-control .icon:hover, -.carousel-control .icon:hover, -.bluefoot-advanced-slider .carousel-control .account .form-wishlist-items li .product-item-actions a:hover, -.carousel-control .account .form-wishlist-items li .product-item-actions a:hover { - color: #000; -} - -@keyframes show-information { - 0% { - transform: translateX(-100%); - } - - 100% { - transform: translateX(0); - } -} - -.bluefoot-advanced-slider { - margin-bottom: 0; -} - -.category-carousel { - margin-bottom: 45px; -} - -@media (min-width:768px) { - .category-carousel { - margin-bottom: 60px; - } -} - -@media (min-width:992px) { - .category-carousel { - margin-bottom: 90px; - } -} - -@media (min-width:1200px) { - .category-carousel { - margin-bottom: 120px; - } -} - -.category-carousel__header { - padding: 0 30px; - margin: 0 0 60px; -} - -.category-carousel__header h3 { - font-size: 40px; - margin: 0; -} - -.category-carousel__header a { - line-height: 44px; - display: block; - text-align: right; -} - -@media (max-width:991px) { - .category-carousel__header { - margin-bottom: 30px; - } -} - -@media (max-width:767px) { - .category-carousel__header { - line-height: unset; - margin-bottom: 20px; - } - - .category-carousel__header h3 { - font-size: 24px; - margin-bottom: 10px; - } - - .category-carousel__header a { - line-height: unset; - text-align: unset; - } -} - -.category-carousel__slider { - opacity: 0; - width: 200%; - height: 410px; - transition: opacity .25s; -} - -.category-carousel__slider.slick-initialized { - opacity: 1; -} - -.category-carousel__slider.slick-initialized .category-carousel__slide { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.category-carousel__slider .slick-track { - height: 410px; -} - -.category-carousel .category-carousel__slide { - display: flex; - flex-direction: column; - padding: 0 15px; - width: 240px; - height: 100%; -} - -.category-carousel .category-carousel__slide .content-block-category__title > * { - font-size: 18px; - font-weight: 400; - margin: auto 0 4px; -} - -@media (max-width:767px) { - .category-carousel .category-carousel__slide .content-block-category img { - right: -13px; - } - - .category-carousel .category-carousel__slide .content-block-info .arrow-link:after { - margin: 0 0 .2em 0; - } -} - -@media (min-width:768px) { - .category-carousel .category-carousel__slide { - width: 290px; - } -} - -@media (min-width:992px) { - .category-carousel .category-carousel__slide { - width: 323.33333333px; - } -} - -@media (min-width:1200px) { - .category-carousel .category-carousel__slide { - width: 292.5px; - } -} - -.category-carousel__partial-slide { - display: flex; - flex-direction: column; - flex-grow: 1; -} - -.category-carousel__partial-slide:first-of-type { - margin-bottom: 30px; -} - -.bluefoot-category-overview__header { - padding: 0; - margin-bottom: 50px; -} - -@media (max-width:767px) { - .bluefoot-category-overview__header { - margin-bottom: 20px; - } -} - -.bluefoot-category-overview__header .title, -.bluefoot-category-overview__header a { - line-height: 50px; - margin: 0; -} - -.bluefoot-category-overview__header h2 { - font-weight: 600; -} - -.bluefoot-category-overview__header a { - float: right; -} - -@media (max-width:767px) { - .bluefoot-category-overview__header a { - float: left; - margin-top: 10px; - line-height: 15px; - } -} - -.bluefoot-category-overview__item { - position: relative; - background-size: cover; - background-position: center top; - height: 410px; - transition: transform .2s; - border-radius: 4px; -} - -@media (max-width:767px) { - .bluefoot-category-overview__item { - margin-bottom: 40px; - height: 0; - padding-bottom: 82.65%; - } - - .bluefoot-category-overview__item.small-img { - padding-bottom: 68.96%; - } -} - -@media (min-width:768px) { - .bluefoot-category-overview__item:hover { - transform: translateY(-5px); - } - - .bluefoot-category-overview__item:hover .bluefoot-category-overview__content { - padding-bottom: 55px; - } -} - -.bluefoot-category-overview__content { - position: absolute; - height: 30%; - padding-bottom: 50px; - bottom: 0; - width: 100%; - color: #fff; - text-align: center; - background: linear-gradient(to bottom, rgba(0,0,0,0), #202020); - border-radius: 0 0 4px 4px; - transition: 0.2s; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; -} - -.bluefoot-category-overview__links { - height: 410px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.bluefoot-category-overview__links:not(.col-sm-3) { - padding-left: 15px; - padding-right: 15px; -} - -@media (max-width:767px) { - .bluefoot-category-overview__links { - height: calc(310px); - } -} - -.bluefoot-category-overview__link { - border: 1px solid #e8e8e8; - padding: 50px; - height: 100%; - border-radius: 4px; - transition: 0.2s; -} - -.bluefoot-category-overview__link:hover { - border: 1px solid #d9d9d9; -} - -@media (min-width:768px) { - .bluefoot-category-overview__link:hover { - transform: translateY(-5px); - } -} - -@media (max-width:1599px) { - .bluefoot-category-overview__link { - padding: 30px; - } -} - -.bluefoot-category-overview__link .title { - font-size: 30px; - line-height: 1; - margin: 0; - padding: 0; -} - -@media (max-width:1199px) { - .bluefoot-category-overview__link .title { - font-size: 24px; - } -} - -.bluefoot-category-overview__link .arrow-link { - color: #000; - display: block; - margin-top: 11px; -} - -.bluefoot-category-overview__link:first-child { - margin-bottom: 30px; - background: #004a99; - border-color: #004a99; -} - -.bluefoot-category-overview__link:first-child:hover { - background: #003C7D; -} - -.bluefoot-category-overview__link:first-child .arrow-link, -.bluefoot-category-overview__link:first-child .title { - color: #fff; -} - -.content-block-info { - display: flex; - flex-grow: 1; - flex-direction: column; - padding: 30px; - background: #f2f2f2; -} - -.content-block-info__title { - color: #000; - font-size: 32px; - margin: 0; - font-weight: 300; -} - -.content-block-info p { - color: #000; -} - -.content-block-info .arrow-link { - color: #000; - margin-top: auto; -} - -.content-block-info .arrow-link:hover { - color: #000; -} - -.content-block-info .arrow-link .ga-icon, -.content-block-info .arrow-link .knowledge-base__most-viewed a { - font-size: 10px; - vertical-align: middle; - margin-left: 10px; -} - -.content-block-info--alpha { - background: #004a99; -} - -.content-block-info--alpha .content-block-info__title { - font-size: 40px; - color: #fff; -} - -.content-block-info--alpha p { - color: #fff; -} - -.content-block-info--alpha .arrow-link { - color: #fff; -} - -.content-block-info--alpha .arrow-link:hover { - color: #fff; -} - -.content-block-info--yellow { - background: #f0e082; -} - -.content-block-info--yellow .content-block-info__title { - font-size: 40px; - color: #000; -} - -.content-block-info--yellow p { - color: #000; -} - -.content-block-info--yellow a { - color: #000; -} - -.content-block-info--yellow a:hover { - color: #000; -} - -.content-block-info--blue { - background: #004a99; -} - -.content-block-info--blue .white { - font-size: 20px; - font-weight: 400; - color: #fff; -} - -.content-block-info--blue p, -.content-block-info--blue a, -.content-block-info--blue a:hover { - color: #fff; -} - -.content-block-info--blue h4 { - color: #fff; - font-weight: 400; -} - -@media (max-width:767px) { - .content-block-info { - padding: 20px; - } - - .content-block-info .content-block-info__title { - font-size: 24px; - } -} - -.content-block-category { - display: flex; - flex-grow: 1; - flex-direction: column; - background: #f2f2f2; - overflow: hidden; - position: relative; - min-height: 410px; -} - -.content-block-category__footer { - background: #e8e8e8; - text-align: center; - padding: 0 30px; - width: 100%; - margin-top: auto; - height: 140px; - display: flex; - flex-direction: column; -} - -.content-block-category__title { - height: 50%; - display: flex; - flex-direction: column; -} - -.content-block-category__title h5 { - font-size: 18px; - font-weight: 400; - margin: auto 0 4px; -} - -.content-block-category p { - margin: 4px 0 0; - color: #7f7f7f; -} - -.content-block-category img { - position: absolute; - bottom: 113px; - right: 3px; - width: 470px; - max-width: none; -} - -.compare-bar { - display: none; - width: 100%; - background: #fff; - font-size: 14px; - position: fixed; - bottom: -1px; - z-index: 1012; - border-top: solid 1px #f2f2f2; -} - -.has-lightbox .compare-bar { - display: none; -} - -.compare-bar #compare-items { - flex-direction: row; -} - -@media (max-width:767px) { - .compare-bar #compare-items { - padding: 0 15px; - } -} - -.compare-bar .compare-items-container { - display: flex; - flex-wrap: wrap; - justify-content: space-between; -} - -@media (max-width:767px) { - .compare-bar .compare-main { - margin-bottom: 16px; - } -} - -.compare-bar .compare-small-bar { - height: 60px; - border-top: solid 2px #f2f2f2; -} - -@media (min-width:992px) { - .compare-bar .compare-small-bar { - display: none; - } -} - -.compare-bar .compare-small-bar .row { - padding: 20px 30px 0; -} - -.compare-bar .compare-bar-margin { - margin: 15px 0; -} - -.compare-bar .container { - padding: 0; -} - -.compare-bar .product-item, -.compare-bar .empty-item { - margin-bottom: 0; -} - -@media (max-width:767px) { - .compare-bar .product-item, - .compare-bar .empty-item { - margin-bottom: 16px; - } -} - -.compare-bar .product-item .compare-container, -.compare-bar .empty-item .compare-container { - height: 60px; - margin-bottom: 0; -} - -.compare-bar .product-item .product-item-wrapper { - display: block; - background: #f2f2f2; - flex-direction: initial; - transition: .3s; -} - -.compare-bar .product-item .product-item-wrapper:hover { - background: #e8e8e8; -} - -.compare-bar .product-item .product-item-wrapper img { - max-height: 60px; - margin-top: 0; - position: relative; - top: 50%; - transform: translateY(-50%); -} - -@media (min-width:768px) and (max-width:991px) { - .compare-bar .product-item .product-item-wrapper img { - max-height: 160px; - margin-top: 15px; - position: static; - top: auto; - transform: none; - } -} - -.compare-bar .product-item .product-item-wrapper .product-image { - height: 100%; -} - -.compare-bar .product-item .product-item-wrapper .product-name { - height: 100%; -} - -@media (min-width:768px) and (max-width:991px) { - .compare-bar .product-item .product-item-wrapper .product-name { - height: auto; - padding-top: 14px; - } -} - -.compare-bar .product-item .product-item-wrapper .product-name span { - position: relative; - top: 50%; - transform: translateY(-50%); - display: block; - margin-right: 21px; -} - -.compare-bar .product-item .product-item-wrapper .product-name span.icon-cross { - transform: none; -} - -@media (min-width:768px) and (max-width:991px) { - .compare-bar .product-item .product-item-wrapper .product-name span { - position: static; - top: auto; - transform: none; - } -} - -.compare-bar .product-item .btn { - position: absolute; - top: 0; - bottom: 0; - right: 15px; - padding: 15px; - background: #f2f2f2; - border: none; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.compare-bar .product-item .btn .ga-icon, -.compare-bar .product-item .btn .knowledge-base__most-viewed a { - display: block; - padding-left: 0; - margin-right: 0; - margin-bottom: -4px; - right: auto; - bottom: auto; - color: #000; -} - -.compare-bar .product-item .btn.btn-is-loading .gazelle-icon, -.compare-bar .product-item .btn.btn-is-loading .ga-icon, -.compare-bar .product-item .btn.btn-is-loading .account .form-wishlist-items li .product-item-actions a, -.compare-bar .product-item .btn.btn-is-loading .knowledge-base__most-viewed a { - display: none; -} - -.compare-bar .product-item .btn:focus { - outline: none; -} - -@media (max-width:767px) { - .compare-bar .product-item, - .compare-bar .product-item .product-item-wrapper, - .compare-bar .empty-item, - .compare-bar .empty-item .product-item-wrapper { - height: 60px; - } -} - -@media (min-width:768px) and (max-width:991px) { - .compare-bar .product-item, - .compare-bar .product-item .product-item-wrapper, - .compare-bar .empty-item, - .compare-bar .empty-item .product-item-wrapper { - height: 220px; - } -} - -@media (min-width:992px) { - .compare-bar .product-item, - .compare-bar .product-item .product-item-wrapper, - .compare-bar .empty-item, - .compare-bar .empty-item .product-item-wrapper { - height: 60px; - } -} - -.compare-bar .empty-item .product-item-wrapper { - display: block; - width: 100%; - padding: 20px; - background: #fff; - border: solid 1px #bababa; - color: #7f7f7f; - text-align: center; - transition: .3s; -} - -.compare-bar .empty-item .product-item-wrapper:hover { - color: #004a99; - border-color: #004a99; -} - -@media (min-width:768px) and (max-width:991px) { - .compare-bar .empty-item .product-item-wrapper div { - position: relative; - top: 50%; - transform: translateY(-50%); - } -} - -.compare-bar .compare-container { - background: #004a99; - padding-left: 0; - padding-right: 0; -} - -.compare-bar .compare-container-disabled { - background: #bababa; -} - -.compare-bar .compare-container-disabled a { - cursor: default; -} - -.compare-bar .compare-container a { - display: block; - height: 100%; - padding: 20px; - margin: 0; - color: #fff; - font-weight: bold; -} - -.compare-bar .compare-container a span { - float: right; -} - -.compare-bar .toggle-compare-bar { - float: right; -} - -.compare-bar .minimize-compare-small-bar { - display: none; - font-size: 10px; - margin-top: 25px; - cursor: pointer; -} - -@media (min-width:992px) { - .compare-bar .minimize-compare-small-bar { - display: block; - } -} - -@media (min-width:992px) { - .compare-bar.minimized { - background: none; - border-top: 0; - width: auto; - right: 45px; - } -} - -@media (min-width:992px) { - .compare-bar.minimized .compare-small-bar { - display: block; - width: 280px; - background: #fff; - border: solid 2px #f2f2f2; - border-bottom: 0; - float: right; - cursor: pointer; - } -} - -.compare-bar.minimized .compare-small-bar .container { - width: auto; -} - -@media (min-width:992px) { - .compare-bar.minimized .compare-main { - display: none; - } -} - -.in-compare, -.compare-full { - color: #bababa; - cursor: default; -} - -.in-compare:hover, -.compare-full:hover, -.in-compare:active, -.compare-full:active, -.in-compare:focus, -.compare-full:focus { - color: #bababa; - outline: none; -} - -.badge { - border-radius: 2px; - background: #0d4282; - color: #fff; - padding: 5px 6px 4px; - margin-left: 8px; -} - -body.compare-bar-visible footer { - margin-bottom: 70px; -} - -body.compare-bar-open .compare-bar { - z-index: 1050; -} - -@media (max-width:991px) { - body:not(.compare-bar-open) .compare-main { - display: none; - } -} - -body.catalog-product-view .compare-bar, -body.catalog-category-view .compare-bar { - display: block; -} - -.cookie-status-message { - display: none; -} - -.message.cookie { - background-color: #84776b; - bottom: 0; - position: fixed; - z-index: 2000; - width: 100%; -} - -.message.cookie .row { - background-color: #82776c; -} - -.message.cookie .row:last-child { - background-color: #7b7066; -} - -.message.cookie .row:last-child .container { - padding-top: 24px; -} - -@media (min-width:992px) { - .message.cookie .row:last-child .container { - padding-bottom: 24px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - } -} - -@media (max-width:767px) { - .message.cookie .row:last-child .container { - padding-top: 10px; - } -} - -.message.cookie p { - margin: 0px; -} - -.message.cookie .btn { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.message.cookie .content { - color: #fff; -} - -.message.cookie .content p { - font-size: 14px; -} - -@media (min-width:992px) { - .message.cookie .content { - margin: 24px 0; - } -} - -@media (max-width:991px) { - .message.cookie .content { - margin-top: 10px; - } - - .message.cookie .content p { - margin-bottom: 10px; - } -} - -.message.cookie .actions { - align-items: center; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -@media (max-width:767px) { - .message.cookie .actions .cookie__settings-container, - .message.cookie .actions .cookie__accept-container { - padding: 0; - } -} - -@media (max-width:991px) { - .message.cookie .actions { - margin-bottom: 25px; - } - - .message.cookie .actions .cookie__accept-container { - padding-left: 5px; - padding-right: 0; - float: right; - } - - .message.cookie .actions .cookie__settings-container { - padding-left: 0; - padding-right: 5px; - } -} - -@media (max-width:767px) { - .message.cookie .actions { - margin-bottom: 10px; - margin-top: 10px; - } -} - -@media (min-width:992px) { - .cookie__settings, - #cookie-manager-popup__settings { - min-height: 45px; - border-right: 1px solid rgba(0,0,0,0.15); - } -} - -.cookie .items, -#cookie-manager-popup .items { - margin: 0; -} - -.cookie .items .item, -#cookie-manager-popup .items .item { - align-items: center; - list-style: none; - min-height: 45px; - font-size: 14px; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: -ms-inline-flex; - display: inline-flex; -} - -@media (max-width:767px) { - .cookie .items .item, - #cookie-manager-popup .items .item { - float: left; - height: 30px; - width: 50%; - margin: 0; - } -} - -@media (min-width:768px) { - .cookie .items .item:not(:last-child), - #cookie-manager-popup .items .item:not(:last-child) { - margin-right: 40px; - } -} - -.cookie .items .item .title, -#cookie-manager-popup .items .item .title { - margin-left: 10px; - color: #fff; -} - -.cookie .items .item .switch, -#cookie-manager-popup .items .item .switch { - position: relative; - display: inline-block; - width: 34px; - height: 16px; - margin: 0; -} - -.cookie .items .item .switch .slider, -#cookie-manager-popup .items .item .switch .slider { - background-color: #fff; - border: 1px solid #bababa; - position: absolute; - cursor: pointer; - top: 0px; - left: 0; - right: 0; - bottom: 0; - transition: .25s; - border-radius: 8px; -} - -.cookie .items .item .switch .slider:before, -#cookie-manager-popup .items .item .switch .slider:before { - border: 1px solid #bababa; - position: absolute; - content: ""; - height: 12px; - width: 12px; - left: 2px; - bottom: 1px; - transition: .25s; - border-radius: 50%; -} - -.cookie .items .item .switch input:checked + .slider, -#cookie-manager-popup .items .item .switch input:checked + .slider { - background-color: #fff; - border: 1px solid #004a99; -} - -.cookie .items .item .switch input:checked + .slider:before, -#cookie-manager-popup .items .item .switch input:checked + .slider:before { - transform: translateX(16px); - border: 0; - background-color: #004a99; -} - -.cookie .items .item .switch input:disabled + .slider, -#cookie-manager-popup .items .item .switch input:disabled + .slider { - background-color: #e8e8e8; - border: 1px solid #bababa; - cursor: default; -} - -.cookie .items .item .switch input:disabled + .slider:before, -#cookie-manager-popup .items .item .switch input:disabled + .slider:before { - background-color: #bbbbbb; -} - -.cookie .items .item .switch input:focus + .slider, -#cookie-manager-popup .items .item .switch input:focus + .slider { - box-shadow: 0 0 1px #fff; -} - -#cookie-manager-popup .modal-header .modal-title { - color: #000; - font-size: 24px; - font-weight: 700; -} - -#cookie-manager-popup .modal-content { - color: #7f7f7f; -} - -#cookie-manager-popup .modal-footer { - text-align: left; -} - -#cookie-manager-popup .modal-footer .btn-primary .ga-icon, -#cookie-manager-popup .modal-footer .btn-primary .knowledge-base__most-viewed a { - margin-left: 35px; -} - -#cookie-manager-popup h5 { - font-size: 12px; - line-height: 1.4; - letter-spacing: 1.4px; - font-weight: 700; - text-transform: uppercase; - color: #0d4282; -} - -#cookie-manager-popup .items { - margin: 0; -} - -#cookie-manager-popup .items .item { - height: auto; - list-style: none; - margin: 20px 0; - display: inline-block; - font-size: 16px; -} - -@media (max-width:767px) { - #cookie-manager-popup .items .item { - width: 100%; - float: none; - height: auto; - } -} - -#cookie-manager-popup .items .item .title { - text-transform: uppercase; - display: block; - font-size: 14px; - margin-left: 0; - color: #004a99; - font-weight: 600; - margin-bottom: 15px; - letter-spacing: 1.5px; -} - -#cookie-manager-popup .items .item .description { - margin-top: -3px; - display: block; - width: calc(100% - 44px); - float: left; - margin-left: 10px; -} - -#cookie-manager-popup .items .item .switch { - float: left; - position: relative; - display: inline-block; - width: 34px; - height: 16px; - margin: 0; -} - -#cookie-manager-popup .items .item .switch .slider { - border: 1px solid #bababa; -} - -#cookie-manager-popup .items .item .switch .slider:before { - left: 2px; - bottom: 1px; - background-color: #bababa; -} - -#cookie-manager-popup .items .item .switch input:checked + .slider { - border: 1px solid #004a99; -} - -#cookie-manager-popup .items .item .switch input:disabled + .slider { - border: 1px solid #bababa; -} - -.homepage-hero { - background-color: #f2f2f2; -} - -@media (max-width:767px) { - .homepage-hero { - padding-bottom: 25px; - } -} - -.homepage-hero__wrapper { - position: relative; - height: 66.67vh; - max-height: 800px; - padding-bottom: 50px; - background-color: #b3cddd; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; -} - -.homepage-hero__wrapper:hover .homepage-hero__controls-btn { - opacity: 1; -} - -@media (max-width:767px) { - .homepage-hero__wrapper { - margin-bottom: 25px; - padding-bottom: 25px; - } -} - -@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) { - .homepage-hero__wrapper { - overflow: hidden; - } - - .homepage-hero__wrapper .homepage-hero__video { - transform: scale(1.5); - } -} - -.homepage-hero__bg { - position: absolute; - inset: 0; - background-size: cover; - background-position: center; -} - -.homepage-hero__bg--portrait { - display: none; -} - -@media (max-width:767px),(orientation:portrait) { - .homepage-hero__bg { - display: none; - } - - .homepage-hero__bg--portrait { - display: block; - } -} - -.homepage-hero__video { - width: 100%; - height: 100%; - object-fit: cover; - position: absolute; - inset: 0; -} - -@media (max-width:767px) { - .homepage-hero__video { - display: none; - } -} - -.homepage-hero__gradient { - position: absolute; - inset: auto 0 0; - width: 100%; - height: 100%; - background-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 70%); - pointer-events: none; -} - -.homepage-hero__title { - font-size: 5rem; - line-height: 1.175; - color: #fff; - margin: 0 0 20px; -} - -@media (max-width:767px) { - .homepage-hero__title { - font-size: 2.5rem; - line-height: 1.25; - margin: 0 0 15px; - } -} - -.homepage-hero__subtitle { - font-size: 16px; - font-weight: 700; - color: #fff; - margin: 0; -} - -@media (max-width:480px) { - .homepage-hero__subtitle { - font-size: 15px; - margin: 0 0 10px; - } -} - -.homepage-hero__buttons .btn, -.homepage-hero__buttons .arrow-link { - color: #fff; -} - -.homepage-hero__buttons .arrow-link { - padding: 12px 20px; -} - -.homepage-hero__controls { - position: absolute; - bottom: 50px; - right: 50px; -} - -.homepage-hero__controls-btn { - background-color: rgba(0,0,0,0.4); - border-radius: 100%; - padding: 17px 20px; - font-size: 16px; - transition: opacity .3s ease-in-out; - opacity: 0; -} - -.homepage-hero__controls-btn .ga-icon, -.homepage-hero__controls-btn .knowledge-base__most-viewed a { - color: #a7a7a7; -} - -@media (max-width:767px) { - .homepage-hero__controls { - display: none; - } -} - -.homepage-hero__campaign { - margin: 50px 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -@media (max-width:767px) { - .homepage-hero__campaign { - padding: 0 15px; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } -} - -.homepage-hero__campaign-title { - font-size: 1.5rem; - line-height: 1.25; - margin: 0; -} - -@media (min-width:992px) { - .homepage-hero__campaign-title { - font-size: 2.5rem; - line-height: 1.3; - } -} - -.homepage-hero__campaign-content { - background: #004a99; - color: #fff; - padding: 40px; - margin-left: 15px; -} - -.homepage-hero__campaign-content p a { - color: #fff; - text-decoration: underline; -} - -@media (max-width:767px) { - .homepage-hero__campaign-content { - margin-left: 0; - } -} - -.homepage-hero__campaign-image { - background-size: cover; - background-position: center; - margin-right: 15px; -} - -@media (max-width:767px) { - .homepage-hero__campaign-image { - height: 340px; - margin-right: 0; - } -} - -@media (max-width:480px) { - .homepage-hero__campaign-image { - height: 180px; - } -} - -.parallax-hero { - position: relative; - width: 100%; - margin-bottom: 26px; -} - -@media (min-width:992px) { - .parallax-hero { - margin-bottom: 56px; - } -} - -@media (min-width:1600px) { - .parallax-hero { - margin-bottom: 80px; - } -} - -.parallax-hero.campaign { - margin-bottom: 0; -} - -@media (min-width:992px) { - .parallax-hero--with-bg { - background-image: url('../images/Gazelle_Brand.svg'); - background-position: 80% 20px; - background-repeat: no-repeat; - } -} - -.parallax-hero__content { - padding-top: 90px; - margin-bottom: 60px; -} - -@media (max-width:767px) { - .parallax-hero__content { - padding-top: 40px; - margin-bottom: 45px; - } -} - -@media (min-width:768px) { - .parallax-hero--use-parallax .parallax-hero__content:not(.parallax-hero__content--image-right) { - margin-bottom: 0; - } -} - -@media (min-width:768px) { - .parallax-hero__content--image-right { - padding-bottom: 80px; - margin-bottom: 0; - } -} - -.parallax-hero__content--heading-only { - padding-top: 80px; - padding-bottom: 70px; - margin-bottom: 40px; -} - -@media (max-width:767px) { - .parallax-hero__content--heading-only { - padding: 40px 25px 35px 25px; - } -} - -.parallax-hero__content h1, -.parallax-hero__content h2, -.parallax-hero__content h3, -.parallax-hero__content h4, -.parallax-hero__content p { - color: #fff; -} - -.parallax-hero__content h1, -.parallax-hero__content h2, -.parallax-hero__content h3 { - font-size: 56px; - font-weight: bold; - line-height: 1.14; - margin: 0 0 15px; -} - -@media (max-width:767px) { - .parallax-hero__content h1, - .parallax-hero__content h2, - .parallax-hero__content h3 { - font-size: 24px; - margin-bottom: 10px; - } -} - -.parallax-hero__content p { - color: #fff; - margin: 0 0 30px; -} - -.parallax-hero__content p a { - color: #fff; - text-decoration: underline; -} - -.parallax-hero__content .btn { - margin-bottom: 15px; - margin-right: 20px; -} - -.parallax-hero__content .btn:last-child { - margin-right: 0; -} - -.parallax-hero__content .arrow-link { - margin-top: 20px; - display: inline-block; - color: #fff; -} - -.parallax-hero__content .container { - position: relative; -} - -.parallax-hero__image { - position: relative; -} - -.parallax-hero__image img { - width: 100%; -} - -.parallax-hero__image__container { - position: absolute; - bottom: -60px; - right: 0; -} - -.parallax-hero__image__container img { - width: 100%; - max-width: 370px; -} - -.parallax-hero__mask { - position: absolute; - bottom: 0; - top: 30%; - width: 100%; - background: #fff; -} - -.parallax-hero__footer-link { - margin-top: 20px; - float: right; -} - -.parallax-hero--blue { - background-color: #004a99; -} - -@media (max-width:767px) { - .parallax-hero__content h1 { - font-size: 24px; - } -} - -.parallax-hero ul.usps-inline li { - display: block; -} - -@media (min-width:1600px) { - .parallax-hero ul.usps-inline li { - display: inline-block; - } -} - -.parallax-hero.no-image { - margin-bottom: 0; -} - -.parallax-hero.no-image .parallax-hero__content { - margin-bottom: 0; - padding-bottom: 60px; -} - -.page-layout-family-pages .parallax-hero, -.page-layout-family-pages .family-header { - padding: 0 50px; -} - -@media (max-width:991px) { - .page-layout-family-pages .parallax-hero, - .page-layout-family-pages .family-header { - padding: 0 25px; - } -} - -@media (max-width:767px) { - .page-layout-family-pages .parallax-hero, - .page-layout-family-pages .family-header { - padding: 0 12.5px; - } -} - -.page-layout-family-pages .family-header { - margin-bottom: 60px; -} - -@media (max-width:767px) { - .page-layout-family-pages .family-header { - margin-bottom: 20px; - } -} - -.headlines-carousel { - margin-bottom: 100px; -} - -@media (max-width:991px) { - .headlines-carousel { - margin-bottom: 70px; - } -} - -@media (max-width:767px) { - .headlines-carousel { - margin-bottom: 45px; - } -} - -.headlines-carousel__title { - font-size: 24px; - font-weight: normal; - margin: 50px 0; -} - -@media (max-width:767px) { - .headlines-carousel__title { - font-size: 20px; - margin-bottom: 30px; - } -} - -.headlines-carousel__image { - width: 100%; -} - -.headlines-carousel__pagination ul { - margin-left: 0; -} - -.headlines-carousel__pagination li { - transition: color .2s; - list-style: none; - color: #e8e8e8; -} - -.headlines-carousel__pagination li.slide--active { - color: #000; -} - -.headlines-carousel__pagination li:not(.slide--active) h2:hover { - color: #bababa; -} - -.headlines-carousel__pagination li h2 { - font-size: 60px; - font-weight: bold; - margin: 10px 0; - display: inline-block; - transition: all .3s; -} - -.headlines-carousel__pagination li h2:hover { - cursor: pointer; -} - -@media (max-width:991px) { - .headlines-carousel__pagination li h2 { - font-size: 48px; - } -} - -@media (max-width:767px) { - .headlines-carousel__pagination li h2 { - font-size: 24px; - margin: 4px 0; - } -} - -.headlines-carousel__slider { - margin-top: 35px; -} - -@media (max-width:767px) { - .headlines-carousel__slider { - margin-top: 0; - } -} - -.headlines-carousel__slide > div { - opacity: 0; - transform: translateY(0); - padding-bottom: 15px; -} - -.headlines-carousel__slide.slideIn > div { - transition: all .5s; - transform: translateY(15px); - opacity: 1; -} - -.headlines-carousel__slide h5 { - font-size: 20px; -} - -.headlines-carousel__slide p { - margin-top: 10px; - font-size: 14px; - color: #7f7f7f; -} - -.headlines-carousel ul, -.headlines-carousel ol { - list-style: disc; - margin-left: 20px; -} - -.headlines-carousel ol { - list-style: decimal; -} - -.pdp .headlines-carousel { - margin-bottom: 20px; - margin-top: 160px; -} - -@media (max-width:1199px) { - .pdp .headlines-carousel { - margin-top: 60px; - } -} - -.page-layout-2columns-left-with-page-hierarchy .headlines .title__wrapper { - margin-left: 0; -} - -.page-layout-2columns-left-with-page-hierarchy .headlines .headline--right .headline__data { - margin-left: 0; -} - -.page-layout-2columns-left-with-page-hierarchy .headlines .headline--left .headline__image { - margin-left: 0; -} - -.family-overview { - min-height: 895px; - padding-top: 5px; -} - -.family-overview .icon-heart { - width: 18px; - height: 16px; - background-image: url('../images/icons/heart.svg'); - background-size: 18px 16px; - display: block; -} - -.family-overview .icon-heart--large { - width: 32px; - height: 28px; - background-size: 32px 28px; -} - -.family-overview .icon-heart--active { - background-image: url('../images/icons/heart-active.svg'); -} - -@media (min-width:992px) { - .family-overview .icon-heart--active:hover { - background-image: url('../images/icons/heart.svg'); - } -} - -.family-overview__header { - padding: 0 15px; - border-top: 1px solid #e8e8e8; - margin-bottom: 30px; -} - -.family-overview__header span { - font-size: 14px; - color: #7f7f7f; - background: #fff; - padding-right: 15px; - display: inline-block; - transform: translate(-15px, -12px); -} - -.family-overview__items { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; -} - -.family-overview .flowbox h3 { - margin-top: 0; -} - -.family-overview .headlines { - width: 100%; -} - -@media (min-width:768px) { - .family-overview { - padding-top: 35px; - } - - .family-overview .headlines { - padding: 0; - margin-bottom: 140px; - } -} - -.family-item { - margin-bottom: 70px; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - backface-visibility: hidden; -} - -.family-item h5 { - font-size: 16px; - font-weight: 400; -} - -.family-item h2 { - font-size: 24px; - font-weight: 600; - margin: 0 0 10px; -} - -.family-item .ga-icon, -.family-item .knowledge-base__most-viewed a { - position: relative; - top: 1px; -} - -.family-item__image { - margin-bottom: 35px; -} - -.family-item__image p { - font-weight: 600; - margin: 10px 0 0 10px; -} - -.family-item__image img { - width: 100%; - height: auto; -} - -.family-item__image .add-to-favorites { - font-size: 12px; - font-weight: 600; - cursor: pointer; - position: absolute; - top: 18px; - right: 18px; -} - -.family-item__image .add-to-favorites span.text { - display: none; -} - -.family-item__video-container { - max-width: 370px; -} - -.family-item__video-wrapper { - display: block; - width: 100%; - background-size: cover; - background-position: center; - background-repeat: no-repeat; - padding-top: 66.66%; - position: relative; -} - -.family-item__video-wrapper video { - width: 100%; - height: 100%; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - object-fit: cover; -} - -.family-item__title-wrapper { - position: absolute; - bottom: 0; - left: 0; - right: 0; - color: #fff; - text-align: center; - padding: 15px 15px 50px; - background: linear-gradient(to bottom, rgba(0,0,0,0), #000); -} - -@media (max-width:767px) { - .family-item__title-wrapper { - padding-bottom: 30px; - } -} - -.family-item__message { - position: absolute; - top: 0; - bottom: 0; - right: 0; - left: 0; - color: #fff; - text-align: center; - background: rgba(0,0,0,0.7); - font-size: 14px; - padding: 15px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -@media (min-width:768px) { - .family-item__message span { - display: block; - } -} - -.family-item__content { - padding-top: 20px; -} - -.family-item__content ul { - font-weight: 600; - list-style: none; - margin: 0 0 25px; -} - -.family-item__content ul li { - margin: 3px 0; -} - -.family-item__content ul .ga-icon, -.family-item__content ul .knowledge-base__most-viewed a { - font-size: 26px; - margin-right: 13px; -} - -.family-item__description { - color: #7f7f7f; -} - -.family-item__count { - color: #000; - font-weight: 600; -} - -.family-item__count .ga-icon, -.family-item__count .knowledge-base__most-viewed a { - font-size: 23px; - margin-right: 10px; -} - -@media (max-width:767px) { - .family-item__image { - margin-bottom: 20px; - } - - .family-item__video-wrapper video { - display: none; - } -} - -@media (min-width:992px) { - .family-item { - margin-bottom: 115px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .family-item__image:hover .add-to-favorites { - transition: all 150ms; - -webkit-transition: all 150ms; - -moz-transition: all 150ms; - -ms-transition: all 150ms; - -o-transition: all 150ms; - } - - .family-item__image:hover .add-to-favorites:not(.in-favorites) { - background: #fff; - border: 1px solid #000; - padding: 6px 10px 6px 15px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-border-radius: 15px; - -moz-border-radius: 15px; - border-radius: 15px; - } - - .family-item__image:hover .add-to-favorites:not(.in-favorites) span.text { - display: block; - } - - .family-item__image:hover .add-to-favorites:not(.in-favorites) .icon-heart { - width: 18px; - height: 16px; - background-size: 18px 16px; - margin-left: 10px; - transition: transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - -moz-transition: transform 250ms ease-out; - -ms-transition: transform 250ms ease-out; - -o-transition: transform 250ms ease-out; - } - - .family-item__image:hover .add-to-favorites:not(.in-favorites):hover .icon-heart { - background-image: url('../images/icons/heart-active.svg'); - transform: scale(1.2); - -webkit-transform: scale(1.2); - -moz-transform: scale(1.2); - -ms-transform: scale(1.2); - -o-transform: scale(1.2); - } - - .family-item__video-wrapper { - padding-top: 100%; - } - - .family-item__content { - padding-top: 0; - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .family-item__content h2 { - font-size: 40px; - } - - .family-item__content p { - margin-bottom: 20px; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - } - - .family-item__content ul { - margin-bottom: 30px; - } - - .family-item__content ul li { - margin: 9px 0; - } -} - -@media (min-width:992px) { - .family-item__video-wrapper { - transition: transform .3s ease-out; - -webkit-transition: transform .3s ease-out; - -moz-transition: transform .3s ease-out; - -ms-transition: transform .3s ease-out; - -o-transition: transform .3s ease-out; - } - - .family-item__video-wrapper:hover { - transform: scale(1.05); - -webkit-transform: scale(1.05); - -moz-transform: scale(1.05); - -ms-transform: scale(1.05); - -o-transform: scale(1.05); - } -} - -.family-favorites p { - font-size: 14px; - margin: 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.family-favorites p:last-child { - font-size: 14px; - color: #7f7f7f; - line-height: 1.5; - margin: 0; -} - -.family-favorites p:after { - font-size: 6px; - margin-left: auto; -} - -.family-favorites p strong { - color: #333; -} - -.family-favorites__inner { - background: #fff; - padding: 15px; - position: relative; - z-index: 2; - cursor: pointer; - backface-visibility: hidden; - transition: .15s; - -webkit-transition: .15s; - -moz-transition: .15s; - -ms-transition: .15s; - -o-transition: .15s; -} - -.family-favorites__inner:hover { - transform: scale(1.05); -} - -.family-favorites__count { - font-size: 10px; - font-weight: 600; - color: #fff; - width: 18px; - height: 16px; - background-image: url('../images/icons/heart-active.svg'); - background-size: 18px 16px; - display: inline-block; - position: relative; - margin-left: 20px; -} - -@media (max-width:991px) { - .family-favorites { - width: 100%; - border-top: 1px solid #e8e8e8; - position: fixed; - top: auto; - bottom: 0; - left: 0; - z-index: 2; - } -} - -@media (min-width:992px) { - .family-favorites { - position: fixed; - bottom: 30px; - right: 30px; - margin: 0; - z-index: 2; - } - - .family-favorites p:after { - display: none; - } - - .family-favorites__inner { - border: 2px solid #000; - padding: 12px 20px 11px; - -webkit-border-radius: 30px; - -moz-border-radius: 30px; - border-radius: 30px; - } -} - -@media (min-width:992px) { - .family-detail__column { - float: none; - margin: 0 auto; - } -} - -.content-offset-photo { - margin-bottom: -40px; -} - -@media (min-width:768px) { - .content-offset-photo { - margin-bottom: -30px; - } -} - -@media (min-width:992px) { - .content-offset-photo { - margin-bottom: 90px; - min-height: 565px; - } -} - -@media (min-width:1200px) { - .content-offset-photo { - margin-bottom: 107px; - } -} - -.content-offset-photo__inside { - position: relative; -} - -.content-offset-photo .row { - position: relative; -} - -.content-offset-photo__bg { - background: #f2f2f2; - width: 50%; - height: 100%; - position: absolute; -} - -.content-offset-photo__content { - padding: 90px 0; - position: relative; - z-index: 1; -} - -.content-offset-photo__content h4.title { - margin: 0 0 30px; - font-size: 40px; - line-height: 1.2; -} - -.catalog-product-view .content-offset-photo__content h4.title { - font-size: 24px; - font-weight: 400; -} - -@media (max-width:767px) { - .catalog-product-view .content-offset-photo__content h4.title { - font-size: 20px; - } -} - -.content-offset-photo__content p { - color: #7f7f7f; -} - -.content-offset-photo__content ul { - color: #7f7f7f; - font-size: 12px; -} - -.content-offset-photo__content ul li:before { - content: ""; - position: absolute; - top: 0; - left: 0; - width: 18px; - height: 18px; - border-radius: 50%; - border: 1px solid #a9a9a9; - background: url('../images/icons/check--dark.svg') no-repeat center / 8px 6px; -} - -.content-offset-photo__content ul-white { - color: #fff; -} - -.content-offset-photo__content ul-white ul { - margin-left: 0; -} - -.content-offset-photo__content ul-white li { - list-style: none; - margin: 20px 0; - padding: 0 0 0 32px; -} - -.content-offset-photo__content ul-white li:before { - width: 22px; - height: 22px; - border-color: #fff; - background: url('../images/icons/check.svg') no-repeat center / 10px 10px; -} - -.content-offset-photo__content-bg { - background: #f2f2f2; - top: 0; - bottom: 0; - left: 0; - right: 0; - position: absolute; -} - -.content-offset-photo__image-container { - position: absolute; - width: 100%; -} - -.content-offset-photo__image { - position: relative; - top: 90px; - width: 100%; - height: 0; - padding-top: 100%; -} - -.content-offset-photo__image img { - display: block; - position: absolute; - width: 100%; - left: 0; - top: 0; -} - -.content-offset-photo__image figcaption { - margin-top: 20px; - float: right; -} - -.block-blue.content-offset-photo .content-offset-photo__bg, -.block-blue.content-offset-photo .content-offset-photo__content-bg { - background: #004a99; -} - -.block-grey.content-offset-photo .content-offset-photo__bg, -.block-grey.content-offset-photo .content-offset-photo__content-bg { - background: #f2f2f2; -} - -.block-yellow.content-offset-photo .content-offset-photo__bg, -.block-yellow.content-offset-photo .content-offset-photo__content-bg { - background: #f0e082; -} - -.block-brown.content-offset-photo .content-offset-photo__bg, -.block-brown.content-offset-photo .content-offset-photo__content-bg { - background: #84776b; -} - -.block-white.content-offset-photo .content-offset-photo__bg, -.block-white.content-offset-photo .content-offset-photo__content-bg { - background: #fff; -} - -.block-transparent.content-offset-photo .content-offset-photo__bg, -.block-transparent.content-offset-photo .content-offset-photo__content-bg { - background: transparent; -} - -.content-offset-photo.full-width { - margin-bottom: 60px; -} - -.content-offset-photo.full-width .content-offset-photo__bg, -.content-offset-photo.full-width .content-offset-photo__content-bg { - width: 100%; -} - -.content-offset-photo.full-width .content-offset-photo__image { - top: 0; -} - -@media (min-width:768px) { - .content-offset-photo.full-width .content-offset-photo__image { - top: 90px; - } -} - -@media (min-width:1200px) { - .content-offset-photo.full-width .content-offset-photo__image { - max-width: 450px; - } -} - -@media (max-width:1199px) { - .content-offset-photo.full-width .content-offset-photo__content { - padding: 90px 0; - } -} - -@media (max-width:767px) { - .content-offset-photo.full-width .content-offset-photo__content { - padding: 50px 0; - } -} - -.block-blue.content-offset-photo .content-offset-photo__content, -.block-brown.content-offset-photo .content-offset-photo__content { - color: #fff; -} - -.content-offset-photo--left .content-offset-photo__bg { - right: 0; -} - -.content-offset-photo--has-video { - min-height: auto; -} - -.content-offset-photo--has-video .content-offset-photo__image { - padding-top: 56.25%; -} - -@media (max-width:991px) { - .content-offset-photo:not(.full-width) .content-offset-photo__bg { - background: none; - } - - .content-offset-photo__content { - padding-bottom: 180px; - } - - .content-offset-photo__content-bg { - left: -200px; - } - - .content-offset-photo__image-container { - position: relative; - z-index: 4; - } - - .content-offset-photo__image { - top: -120px; - } - - .content-offset-photo__image img { - width: 100%; - } - - .content-offset-photo--left .content-offset-photo__content-bg { - left: 0; - right: -200px; - } -} - -.content-offset-video { - position: absolute; - padding-bottom: 56.25%; - height: 0; - top: 0; - right: 0; - left: 0; -} - -.content-offset-video__overlay { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.content-offset-video__play { - width: 70px; - height: 70px; - background-color: #004a99; - border-radius: 50px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.content-offset-video__play:hover { - cursor: pointer; -} - -.content-offset-video__play:after { - content: ''; - display: block; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - border-left: 10px solid #fff; -} - -.content-offset-video iframe, -.content-offset-video__overlay { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.family-detail .family-video { - min-height: 400px; - padding: 0 50px 160px; -} - -@media (max-width:991px) { - .family-detail .family-video { - padding: 0 25px 60px; - } -} - -.family-detail .family-video .youtube-video { - padding: 0; -} - -.family-detail .family-video .title { - margin: 25px 0 15px; - font-size: 48px; - font-weight: 700; - color: #000; -} - -@media (max-width:767px) { - .family-detail .family-video .title { - font-size: 24px; - } -} - -.battery-info { - margin: 180px auto 0; - position: relative; -} - -@media (max-width:991px) { - .battery-info { - margin: 60px auto 0; - } -} - -.battery-info .container:after { - background-color: #004a99; - position: absolute; - right: 0; - top: 0; - width: 70%; - height: 100%; -} - -@media (max-width:991px) { - .battery-info .container:after { - width: 100%; - } -} - -@media (max-width:991px) { - .battery-info .container { - margin: 0; - } -} - -.battery-info__content, -.battery-info__image { - z-index: 2; -} - -@media (max-width:767px) { - .battery-info__image { - padding: 0; - width: 100%; - -webkit-order: 2; - -ms-order: 2; - order: 2; - } -} - -@media (max-width:991px) { - .battery-info__image { - padding: 0; - } -} - -.battery-info__content { - color: #fff; -} - -.battery-info__content h2 { - font-size: 24px; - font-weight: 400; -} - -@media (min-width:1200px) { - .battery-info__content { - padding-top: 130px; - } -} - -@media (max-width:1199px) { - .battery-info__content { - padding-top: 60px; - } -} - -@media (max-width:991px) { - .battery-info__content { - padding: 50px; - } -} - -@media (max-width:767px) { - .battery-info__content { - padding: 15px; - background-color: #004a99; - -webkit-order: 1; - -ms-order: 1; - order: 1; - } -} - -.battery-info__image-block { - background-color: #d2d3d5; - background-position: center; - background-repeat: no-repeat; -} - -@media (min-width:1200px) { - .battery-info__image-block { - height: 570px; - } -} - -@media (max-width:1199px) { - .battery-info__image-block { - height: 450px; - } -} - -@media (max-width:767px) { - .battery-info__image-block { - height: 320px; - } -} - -.bluefoot_header_block { - height: 80vh; - min-height: 600px; - text-align: center; - position: relative; - color: white; -} - -@media (max-width:767px) { - .bluefoot_header_block { - margin-bottom: 0; - } -} - -.bluefoot_header_block.background { - width: 100%; - position: absolute; - overflow: hidden; -} - -.bluefoot_header_block.background .background-image { - background-size: cover; - background-position: center; - height: 100%; - -webkit-animation: scaleImage 5s ease-in-out; - animation: scaleImage 5s ease-in-out; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.bluefoot_header_block--content { - position: absolute; - width: 100%; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} - -.bluefoot_header_block--content h1 { - font-size: 7rem; - font-weight: bold; - letter-spacing: 5px; - text-transform: uppercase; - color: #ffffff; - text-shadow: 0 0 6rem rgba(0,0,0,0.7); - margin-bottom: 0; -} - -@media (max-width:991px) { - .bluefoot_header_block--content h1 { - font-size: 5rem; - } -} - -@media (max-width:767px) { - .bluefoot_header_block--content h1 { - font-size: 3.5rem; - letter-spacing: 2px; - } -} - -.bluefoot_header_block--content a { - margin-top: 15px; - letter-spacing: 0.9px; - padding: 12px 35px; - border: 0; -} - -.photo-cluster { - margin-bottom: 20px; -} - -@media (min-width:768px) { - .photo-cluster { - margin-bottom: 35px; - } -} - -@media (min-width:992px) { - .photo-cluster { - margin-bottom: 65px; - } -} - -@media (min-width:1200px) { - .photo-cluster { - margin-bottom: 95px; - } -} - -.photo-cluster__content { - display: flex; - position: relative; -} - -.photo-cluster__logo { - top: 0; - left: 0; - margin-bottom: -69px; -} - -.photo-cluster__column { - display: flex; - flex-direction: column; -} - -.photo-cluster__column > * { - margin-bottom: 30px; -} - -.photo-cluster__column--drop { - padding-top: 30px; -} - -.photo-cluster__column--lift { - padding-bottom: 30px; -} - -.photo-cluster__column--1 .photo-cluster__quote { - display: none; -} - -.photo-cluster__column--2 .image-5 { - display: none; -} - -.photo-cluster .content-block-info__title { - font-size: 24px; - font-weight: normal; - margin-bottom: 20px; -} - -.photo-cluster .content-block-info a { - font-size: 1rem; -} - -.photo-cluster__grow { - flex-grow: 1; -} - -.photo-cluster__offset { - width: 80%; -} - -.photo-cluster__right { - align-self: flex-end; -} - -.photo-cluster__quote { - display: flex; -} - -.photo-cluster__quote .image-3 { - margin-right: 30px; - width: 45%; - align-self: flex-start; -} - -.photo-cluster__quote p { - font-size: 1rem; - color: #7f7f7f; -} - -@media (max-width:1599px) { - .photo-cluster__logo { - margin-bottom: -59px; - } -} - -@media (max-width:1199px) { - .photo-cluster__logo { - margin-bottom: -56px; - } - - .photo-cluster__content { - display: block; - flex-wrap: wrap; - } - - .photo-cluster__column--2 .image-5 { - display: block; - width: 75%; - } - - .photo-cluster__column--3 { - display: none; - } - - .photo-cluster__column .photo-cluster__quote { - display: flex; - width: 71.42857143000001%; - margin-right: 0; - align-self: flex-end; - } - - .photo-cluster__quote { - width: 100%; - margin-right: 30px; - } -} - -@media (min-width:992px) and (max-width:1199px) { - .photo-cluster .content-block-info { - flex-basis: 308px; - } -} - -@media (max-width:991px) { - .photo-cluster__logo { - margin-bottom: -41px; - } - - .photo-cluster__column--2 { - padding-left: 10px; - } - - .photo-cluster__column--1 { - padding-right: 10px; - } - - .photo-cluster__column > * { - margin-bottom: 20px; - } - - .photo-cluster__column--drop { - padding-top: 20px; - } - - .photo-cluster__column--lift { - padding-bottom: 20px; - } -} - -@media (min-width:567px) and (max-width:767px) { - .photo-cluster__column--1 { - width: 41.66666667%; - margin-left: 8.33333333%; - } - - .photo-cluster__column--2 { - width: 41.66666667%; - margin-right: 8.33333333%; - } -} - -@media (max-width:767px) { - .photo-cluster__logo { - margin-bottom: -5.2%; - } - - .photo-cluster__column--2 { - padding-left: 5px; - } - - .photo-cluster__column--2 .image-5 { - display: none; - } - - .photo-cluster__column--1 { - padding-right: 5px; - } - - .photo-cluster__column > * { - margin-bottom: 10px; - } - - .photo-cluster__column--drop { - padding-top: 10px; - } - - .photo-cluster__column--lift { - padding-bottom: 10px; - } - - .photo-cluster__column .photo-cluster__quote { - flex-direction: column; - width: 80%; - } - - .photo-cluster__column .photo-cluster__quote .image-3 { - margin-right: 0; - align-self: initial; - width: auto; - } - - .photo-cluster .content-block-info__title { - margin-bottom: 10px; - font-size: 16px; - } -} - -.photo-cluster [class*=' image-'], -.photo-cluster [class^='image-'] { - background-size: cover; -} - -.photo-cluster .image-1 { - padding-bottom: calc(332/513 * 80%); -} - -.photo-cluster .image-2 { - padding-bottom: calc(532/641 * 100%); -} - -.photo-cluster .image-3 { - padding-bottom: calc(105/163 * 45%); -} - -@media (max-width:767px) { - .photo-cluster .image-3 { - padding-bottom: calc(105/163 * 90%); - } -} - -.photo-cluster .image-4 { - padding-bottom: 100%; -} - -.photo-cluster .image-5 { - padding-bottom: calc(729/419 * 100%); -} - -@media (max-width:1199px) { - .photo-cluster .image-5 { - padding-bottom: calc(571/419 * 75%); - } -} - -.usp-block h2 { - margin: 0 0 40px; - font-size: 48px; - font-weight: 700; -} - -@media (max-width:767px) { - .usp-block h2 { - font-size: 24px; - } -} - -.usp-block h4 { - font-size: 14px; - font-weight: 600; - margin: 20px 0 5px; -} - -@media (min-width:768px) { - .usp-block__items { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - } -} - -.usp-block__item { - position: relative; - text-align: center; - padding: 0 20px; - -webkit-flex: 1 0 1px; - -ms-flex: 1 0 1px; - flex: 1 0 1px; -} - -@media (min-width:768px) { - .usp-block__item:first-of-type { - padding-left: 0; - } - - .usp-block__item:last-of-type { - padding-right: 0; - } -} - -@media (max-width:767px) { - .usp-block__item { - margin-bottom: 30px; - } -} - -.usp-block__content span { - font-size: 14px; - color: #bababa; -} - -.usp-block__counter { - position: absolute; - top: 0; - left: calc(50% - 50px); - text-align: center; - width: 24px; - line-height: 24px; - background-color: #004a99; - color: #fff; - font-weight: 600; - font-size: 13px; - border-radius: 24px; -} - -.usp-block .ga-icon, -.usp-block .knowledge-base__most-viewed a { - font-size: 60px; -} - -.bluefoot_quotes_block .quote { - width: 25%; - height: 25vw; - float: left; -} - -@media (max-width:991px) { - .bluefoot_quotes_block .quote { - width: 50%; - height: 50vw; - } - - .bluefoot_quotes_block .quote:not(.quote--info):not(.quote--first) { - display: none; - } -} - -@media (max-width:767px) { - .bluefoot_quotes_block .quote { - width: 100%; - height: auto; - } -} - -.bluefoot_quotes_block .quote--info { - position: relative; -} - -.bluefoot_quotes_block .quote--info .bluefoot_quote--content h4 { - text-align: left; -} - -.bluefoot_quotes_block .quote--info .bluefoot_quote--content a { - margin-top: 20px; -} - -.bluefoot_quotes_block .quote--first { - width: 50%; - height: 50vw; -} - -@media (max-width:767px) { - .bluefoot_quotes_block .quote--first { - min-height: 170px; - width: 100%; - margin-bottom: 20px; - } -} - -.bluefoot_quotes_block .quote .bluefoot_quote { - position: relative; - -webkit-background-size: cover; - background-size: cover; - margin: 0; - height: 100%; -} - -.bluefoot_quotes_block .quote .bluefoot_quote--bg { - height: 100%; - width: 100%; - opacity: 0; - background-color: rgba(151,134,121,0.6); -} - -.bluefoot_quotes_block .quote .bluefoot_quote--bg:hover { - opacity: 1; -} - -.bluefoot_quotes_block .quote .bluefoot_quote--content { - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - -moz-transform: translateY(-50%); - -ms-transform: translateY(-50%); - -o-transform: translateY(-50%); - position: absolute; - margin-top: 50%; - padding: 0 12%; - text-align: center; -} - -@media (max-width:767px) { - .bluefoot_quotes_block .quote .bluefoot_quote--content { - transform: translateY(0); - -webkit-transform: translateY(0); - -moz-transform: translateY(0); - -ms-transform: translateY(0); - -o-transform: translateY(0); - margin-top: 0; - position: relative; - } -} - -.bluefoot_quotes_block .quote .bluefoot_quote--content h2 { - margin: 0 0 15px 0; - font-size: 36px; - font-weight: bold; - line-height: 0.9; -} - -.bluefoot_quotes_block--description { - font-weight: 300; - line-height: 1.53; - text-align: left; -} - -.bluefoot_quotes_block--author { - font-size: 18px; - margin-top: 1%; -} - -.quote { - margin: 120px auto; -} - -@media (max-width:767px) { - .quote { - margin: 80px auto; - padding: 0 20px; - } -} - -.quote h3 { - font-size: 40px; - font-weight: 700; - margin: 0; -} - -@media (max-width:991px) { - .quote h3 { - font-size: 32px; - } -} - -@media (max-width:767px) { - .quote h3 { - font-size: 24px; - } -} - -.quote p { - margin: 25px 0; - color: #7f7f7f; -} - -.quote__author h4 { - font-size: 24px; - font-weight: 700; - margin-top: 30px; -} - -.quote__author span { - font-size: 16px; - color: #7f7f7f; -} - -.quote__author-img { - width: 100%; -} - -@media (max-width:767px) { - .quote__author { - margin-bottom: 30px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - } - - .quote__author-img { - width: 40%; - } - - .quote__author-title { - margin-left: 20px; - } -} - -.text-cta-block { - padding: 60px 0 120px; -} - -.text-cta-block h1, -.text-cta-block h2, -.text-cta-block h3, -.text-cta-block h4 { - color: #000; - font-weight: 600; -} - -.text-cta-block p { - margin: 40px auto 0 auto; -} - -@media (min-width:1200px) { - .text-cta-block p { - width: 50%; - } -} - -.text-cta-block__buttons { - margin-top: 60px; -} - -.text-cta-block__buttons .btn-primary { - margin-right: 30px; -} - -@media (max-width:767px) { - .text-cta-block__buttons { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .text-cta-block__buttons .btn-primary { - margin: 0 15px 0 0; - } - - .text-cta-block__buttons .btn-grey { - background: none; - } -} - -.bluefoot_info_block--description { - display: block; - margin-bottom: 15px; -} - -.image-info-block { - margin-bottom: 50px; -} - -.bluefoot-row.full-width .image-info-block { - max-width: 768px; - margin: 0 auto 130px; -} - -@media (max-width:991px) { - .bluefoot-row.full-width .image-info-block { - margin-bottom: 60px; - } -} - -@media (max-width:991px) { - .image-info-block__content { - padding: 0 30px; - } -} - -.image-info-block__content .title { - color: #000; - font-weight: 600; - margin-bottom: 15px; - margin-top: 0; -} - -.image-info-block__content ul { - margin-bottom: 25px; -} - -.image-info-block__content ul li { - line-height: 23px; -} - -.image-info-block__content ul li a { - color: #004a99; -} - -.image-info-block__content ul li a:hover { - color: #000; - text-decoration: underline; -} - -@media (max-width:991px) { - .image-info-block__image { - padding: 0; - } -} - -.image-info-block__image img { - width: 100%; -} - -.image-info-block__image .video { - position: relative; - height: 0; - padding-bottom: 56.25%; -} - -.image-info-block__image .video iframe { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.hours-image-block .bg-image--cover { - height: 100%; - min-height: 422px; - background-position: center center; - background-size: cover; -} - -.hours-image-block .block-grey { - margin-bottom: 30px; - font-size: 1rem; - color: #7f7f7f; -} - -.hours-image-block .block-blue .arrow-link { - color: #fff; -} - -.hours-image-block .block-blue h4 { - margin-bottom: 20px; -} - -.hours-image-block.no-description .block-blue { - display: none; -} - -@media (min-width:992px) { - .hours-image-block.no-description .block-grey { - min-height: 422px; - margin-bottom: 0; - } -} - -@media (min-width:768px) and (max-width:991px) { - .hours-image-block__contact-blocks { - display: flex; - } - - .hours-image-block__contact-blocks .contact-block { - height: calc(100% - 30px); - } -} - -.hours-image-block .contact-block { - min-height: initial; -} - -.hours-image-block h4 { - margin-top: 0; - font-weight: normal; -} - -.hours-image-block table tbody { - color: #7f7f7f; -} - -.hours-image-block table tbody tr, -.hours-image-block table tbody td { - border: none; -} - -.hours-image-block table tbody td { - padding: 3px 10px 3px 0; -} - -.hours-map-block { - margin-bottom: 90px; -} - -.hours-map-block__info { - z-index: 1; -} - -@media (max-width:767px) { - .hours-map-block__info { - -webkit-order: 1; - -ms-order: 1; - order: 1; - } -} - -.hours-map-block__title { - font-size: 24px; - line-height: 1.17; - margin: 0 0 45px; - font-weight: normal; -} - -@media (max-width:767px) { - .hours-map-block__map { - margin-bottom: 20px; - order: 0; - } -} - -.hours-map-block .contact-block--contact .arrow-link { - color: #fff; -} - -.hours-map-block .contact-block--contact h4 { - margin-bottom: 20px; -} - -.hours-map-block .contact-block { - min-height: initial; - margin-bottom: 20px; -} - -.hours-map-block__contact-blocks h4 { - font-weight: normal; - font-size: 20px; -} - -.hours-map-block__contact-blocks .contact-block--address { - display: block; - position: relative; - color: #000; - background-color: #fff; - border: 1px solid #f2f2f2; -} - -.hours-map-block__contact-blocks .contact-block--address .arrow-link { - font-size: 20px; - margin: 10px 0; - display: inline-block; - font-weight: 500; -} - -.hours-map-block__contact-blocks .contact-block--address .arrow-link:after { - font-size: 9px; - font-weight: 500; -} - -.hours-map-block__contact-blocks .contact-block--address h5 { - font-size: 14px; - font-weight: 500; - margin: 0; -} - -.hours-map-block__contact-blocks .contact-block--address__label { - position: absolute; - top: 0; - right: 0; - line-height: 0.8; - letter-spacing: 1.3px; - font-size: 10px; - text-transform: uppercase; - padding: 13px; - font-weight: 600; -} - -.hours-map-block__contact-blocks .contact-block--address__label--blue { - background-color: #004a99; - color: #fff; -} - -.hours-map-block__contact-blocks .contact-block--address__label--white { - color: #000; - background-color: rgba(255,255,255,0.8); -} - -.hours-map-block__contact-blocks .contact-block--address__label--yellow { - background-color: #f0e082; -} - -.hours-map-block__contact-blocks .contact-block--hours { - font-size: 14px; - color: #7f7f7f; -} - -.hours-map-block__contact-blocks .contact-block--hours h4 { - margin: 0 0 18px; -} - -.hours-map-block__contact-blocks .contact-block--hours table tbody { - color: #7f7f7f; -} - -.hours-map-block__contact-blocks .contact-block--hours table tbody tr, -.hours-map-block__contact-blocks .contact-block--hours table tbody td { - border: none; -} - -.hours-map-block__contact-blocks .contact-block--hours table tbody td { - padding: 5px 10px 5px 0; -} - -.hours-map-block__contact-blocks .contact-block--contact h4 { - margin: 0; -} - -.hours-map-block__contact-blocks .contact-block--contact h3 { - margin: 20px 0 0; - font-size: 24px; - font-weight: 600; -} - -.hours-map-block__contact-blocks .contact-block--contact h3.email { - margin-top: 0; -} - -.hours-map-block__contact-blocks .contact-block--contact a { - margin: 10px 0 0; -} - -.hours-map-block #experience-center-map { - height: 700px; - overflow: visible; - overflow-anchor: none; - z-index: 2; -} - -.hours-map-block #experience-center-map .info-window { - min-height: 50px; - min-width: 160px; - max-width: 210px; - padding: 24px 5px 5px 0; - font-size: 14px; - font-family: 'ProximaNova',Helvetica,Arial,sans-serif; -} - -.hours-map-block #experience-center-map .info-window a { - font-weight: 400; - font-size: 20px; -} - -.hours-map-block #experience-center-map .info-window a:after { - font-weight: 400; - font-size: 9px; - margin-left: 9px; -} - -.hours-map-block #experience-center-map .label { - position: absolute; - top: -1px; - left: -1px; - background-color: #004a99; - font-weight: 600; - letter-spacing: 1.25px; - font-size: 10px; - padding: 8px 10px; - border-radius: 3px 0 0 0; -} - -.hours-map-block #experience-center-map .address { - margin-top: 7px; -} - -.hours-map-block #experience-center-map .additional { - margin-top: 18px; - color: #7f7f7f; -} - -@media (max-width:767px) { - .hours-map-block #experience-center-map { - height: 375px; - } -} - -.hours-map-block #experience-center-map .gmnoprint, -.hours-map-block #experience-center-map .gm-style-cc { - display: none; -} - -.hours-map-block #experience-center-map iframe + div { - border: none; -} - -.hours-map-block .experience-center-map__loader { - height: 100%; - background-color: #f2f2f2; - opacity: .3; - animation: pulse 1.5s infinite; -} - -@keyframes pulse { - 0% { - opacity: .3; - } - - 50% { - opacity: 1; - } - - 100% { - opacity: .3; - } -} - -.headlines { - padding-top: 0; - padding-bottom: 60px; -} - -.headlines .headline { - padding: 160px 0 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.headlines .headline.no-spacing { - padding-top: 0; -} - -.headlines .headline--small:first-child, -.headlines .headline--medium:first-child { - padding-top: 0; -} - -.headlines .headline--small { - padding: 130px 0 0; -} - -.bluefoot-row.full-width .headlines .headline--small { - max-width: 768px; -} - -@media (min-width:768px) { - .bluefoot-row.full-width .headlines .headline--small { - margin: 0 auto; - } -} - -@media (min-width:768px) { - .headlines .headline--small .headline__data { - width: 100%; - padding: 0; - } - - .headlines .headline--small .headline__image { - width: 270px; - padding: 0; - } - - .headlines .headline--small .headline__image-block { - width: 270px; - height: 270px; - } - - .headlines .headline--small .headline__subtitle { - font-size: 24px; - } -} - -@media (min-width:992px) { - .headlines .headline--small .headline__image { - margin-left: 130px; - } - - .headlines .headline--small:nth-child(even) .headline__image { - margin-left: 0; - } - - .headlines .headline--small:nth-child(even) .headline__data { - margin-left: 130px; - } -} - -@media (min-width:768px) { - .headlines .headline--medium .headline__image-block { - height: 300px; - } -} - -@media (min-width:1200px) { - .headlines .headline--medium .headline__image-block { - height: 370px; - } -} - -@media (min-width:1500px) { - .headlines .headline--medium .headline__image-block { - height: 500px; - } -} - -@media (max-width:767px) { - .headlines .headline { - display: block; - } -} - -@media (min-width:768px) { - .headlines .headline--left .headline__image { - -webkit-order: 1; - -ms-order: 1; - order: 1; - } - - .headlines .headline--left .headline__data { - -webkit-order: 2; - -ms-order: 2; - order: 2; - } -} - -.headlines .headline--image-auto:nth-child(even) .headline__image { - -webkit-order: 1; - -ms-order: 1; - order: 1; -} - -.headlines .headline--image-auto:nth-child(even) .headline__data { - -webkit-order: 2; - -ms-order: 2; - order: 2; -} - -@media (max-width:767px) { - .headlines .headline--image-auto:nth-child(even) .headline__image { - -webkit-order: 2; - -ms-order: 2; - order: 2; - } - - .headlines .headline--image-auto:nth-child(even) .headline__data { - -webkit-order: 1; - -ms-order: 1; - order: 1; - } -} - -.headlines .headline__title { - margin-top: 0; - color: #004a99; - font-size: 12px; - font-weight: 700; - text-transform: uppercase; -} - -.headlines .headline__image { - padding: 0; -} - -.headlines .headline__image img { - width: 100%; -} - -.headlines .headline__image-block { - height: 400px; - background-repeat: no-repeat; - background-size: cover; - background-position: center; -} - -@media (min-width:768px) and (max-width:991px) { - .headlines .headline__image-block { - height: 300px; - } -} - -@media (min-width:1200px) { - .headlines .headline__image-block { - height: 500px; - } -} - -.headlines .headline__subtitle { - margin: 25px 0 15px 0; - font-size: 48px; - font-weight: 700; - color: #000; -} - -.headlines .headline ul { - margin-bottom: 25px; -} - -@media (max-width:767px) { - .headlines { - padding-top: 0; - } - - .headlines .headline { - padding-top: 60px; - } - - .headlines .headline__subtitle { - font-size: 24px; - margin-bottom: 20px; - } - - .headlines .headline__image { - margin-top: 10px; - padding: 0; - } -} - -.product-carousel { - width: 100%; -} - -.product-carousel.product-carousel--rent { - margin: 0 0 45px; -} - -@media (min-width:768px) { - .product-carousel.product-carousel--rent { - margin-bottom: 60px; - } -} - -@media (min-width:992px) { - .product-carousel.product-carousel--rent { - margin-bottom: 90px; - } -} - -@media (min-width:1200px) { - .product-carousel.product-carousel--rent { - margin-bottom: 120px; - } -} - -.product-carousel__title { - font-size: 40px; - font-weight: 300; - margin: 0 0 30px; -} - -.product-carousel__description { - font-size: 14px; - color: #7f7f7f; -} - -.product-carousel__header { - display: flex; - align-items: flex-end; -} - -.product-carousel__header a.arrow-link { - color: #000; -} - -.product-carousel__collection { - margin-left: -45px; - margin-right: -45px; - height: 520px; -} - -@media (max-width:767px) { - .product-carousel__collection { - padding-top: 40px; - height: 224px; - } -} - -@media (max-width:767px) { - .product-carousel__collection .slick-list { - overflow: visible; - } -} - -.product-carousel__pagination { - font-size: 1rem; - color: #bababa; - margin-bottom: 60px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.product-carousel__pagination > span:first-of-type { - padding-right: 30px; - min-height: 17px; -} - -.product-carousel__pagination .current { - font-weight: 600; - color: #000; -} - -.product-carousel__pagination button.slick-arrow { - line-height: 12px; - font-weight: 700; - padding: 10px; - transition: all .3s; -} - -.product-carousel__pagination button.slick-arrow:hover { - background-color: #e8e8e8; - color: #000; -} - -.product-carousel__pagination button.slick-arrow:hover:before { - color: #000; -} - -.product-carousel__pagination button.slick-arrow:before { - font-size: 14px; - margin: 0; - transition: .3s; -} - -.product-carousel__pagination button.slick-arrow.slick-next { - margin: 0 0 0 24px; -} - -@media (max-width:480px) { - .product-carousel__pagination button.slick-arrow.slick-next { - margin: 0 0 0 10px; - } -} - -@media (max-width:480px) { - .product-carousel__pagination { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } -} - -@media (max-width:480px) { - .product-carousel__navigation { - margin-top: 15px; - text-align: center; - } -} - -.product-carousel__info { - position: absolute; - left: 50%; - transform: translateX(-50%); -} - -.product-carousel__info .title--background { - margin-top: 0; - margin-bottom: 0; -} - -.product-carousel__meta { - transition: opacity .25s ease; -} - -@media (max-width:767px) { - .product-carousel__meta { - width: calc(100% - 60px); - } -} - -.product-carousel__meta.fade-out { - opacity: 0; -} - -.product-carousel__item.slick-slide { - position: relative; - width: 760px; - height: 520px; -} - -@media (max-width:767px) { - .product-carousel__item.slick-slide { - height: 184px; - width: 260px; - } -} - -.product-carousel__item.slick-slide h1 { - position: absolute; - top: 0; - left: 0; -} - -@media (min-width:768px) { - .product-carousel__item.slick-slide img { - height: 100%; - } -} - -.product-carousel__product-btn { - color: #004a99; - font-weight: 700; - position: absolute; - bottom: 0; - right: 0; - opacity: 0; - transition: .3s; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.slick-current .product-carousel__product-btn { - opacity: 1; -} - -.product-carousel__product-btn .ga-icon, -.product-carousel__product-btn .knowledge-base__most-viewed a { - font-size: 12px; - margin-left: 20px; -} - -@media (max-width:767px) { - .product-carousel__product-btn { - position: relative; - margin-top: 20px; - padding: 0 10px; - } -} - -.product-carousel .slick-arrow { - background-color: transparent; - display: inline-block; -} - -.product-carousel .slick-arrow:before { - color: #e8e8e8; - font-size: 20px; -} - -.product-carousel .slick-arrow.slick-prev:before { - display: inline-block; - transform: rotate(180deg); - margin-right: 10px; -} - -.product-carousel .slick-arrow.slick-next:before { - float: right; - margin-left: 10px; -} - -.product-carousel__prices { - font-size: 20px; - font-weight: 600; -} - -.product-carousel__prices span:first-of-type { - font-size: 12px; - margin-bottom: 6px; - font-weight: normal; - color: #7f7f7f; - display: block; -} - -.product-carousel__prices .product-carousel__price { - display: inline-block; -} - -@media (min-width:768px) { - .product-carousel__prices .product-carousel__price { - text-align: right; - display: block; - } -} - -.product-carousel__prices .product-carousel__price:first-of-type { - margin-bottom: 30px; -} - -@media (max-width:767px) { - .product-carousel__prices .product-carousel__price:first-of-type { - margin-right: 30px; - } -} - -.page-layout-2columns-left-with-page-hierarchy .headlines, -.catalog-category-view .headlines { - width: 100%; -} - -@media (min-width:992px) { - .page-layout-2columns-left-with-page-hierarchy .headlines .title__wrapper, - .catalog-category-view .headlines .title__wrapper { - margin-left: 0; - } -} - -@media (min-width:768px) { - .page-layout-2columns-left-with-page-hierarchy .headlines .title__wrapper, - .catalog-category-view .headlines .title__wrapper { - padding-left: 0; - } -} - -.cms-service-contact #maincontent p { - color: #7f7f7f; -} - -.cms-service-contact #maincontent h1, -.cms-service-contact #maincontent h2, -.cms-service-contact #maincontent h3, -.cms-service-contact #maincontent h4 { - font-weight: 600; -} - -.cms-service-contact .page-heading { - margin-top: 30px; -} - -.contact-block { - display: flex; - flex-direction: column; - justify-content: flex-start; - color: white; - padding: 30px; - border-radius: 2px; - min-height: 300px; - width: 100%; -} - -.contact-block_dealerfinder { - padding: 0; -} - -.contact-block_social { - min-height: 143px; -} - -.contact-block p { - color: #7f7f7f; - margin-top: 19px; - margin-bottom: 0; -} - -.contact-block a.submit, -.contact-block_link { - color: #004a99; - margin-top: 20px; - font-weight: 600; - font-size: 1rem; - background-color: transparent; -} - -.contact-block a.submit:before, -.contact-block_link:before { - font-size: 10px; - line-height: 16px; - padding: 3px 0 0 8px; - float: right; -} - -.contact-block select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background: #fff url('../images/icons/chevron-down.svg') no-repeat; - background-position: center right 14px; -} - -.ie11 .contact-block select { - background: none; -} - -.contact-block table { - margin-bottom: 0; -} - -.contact-block.block-blue { - background-color: #004a99; -} - -.contact-block.block-blue p, -.contact-block.block-blue a:last-of-type { - color: #fff; -} - -.contact-block.block-brown { - background-color: #84776b; -} - -.contact-block.block-grey { - background-color: #f2f2f2; - color: #000; -} - -.contact-block.block-white { - background-color: #fff; -} - -.contact-block.block-transparent { - background-color: transparent; -} - -.contact-block_header { - font-size: 20px; -} - -.contact-block_footer { - margin-top: auto; - width: 100%; - align-self: flex-start; -} - -.contact-block_phonenumber { - font-size: 20px; - font-weight: 600; - line-height: 1.2; - margin-top: 15px; -} - -.contact-block_times { - font-size: 12px; - margin-top: 10px; -} - -.contact-block_times-color { - display: inline-block; - width: 8px; - height: 8px; - border-radius: 8px; - margin-right: 8px; -} - -.contact-block_times-color.open { - background-color: #83de25; -} - -.contact-block_times-color.closed { - background-color: #ff1001; -} - -.contact-block__dealerfinder { - color: #000; -} - -.contact-block__dealerfinder h2 { - margin-top: 0; -} - -.contact-block__dealerfinder p { - margin-top: 0; -} - -.contact-block__dealerfinder__description { - color: #7f7f7f; - font-size: 14px; -} - -.contact-block__dealerfinder .store__icon-holder { - padding-left: 0; -} - -.contact-block__dealerfinder .store__subtext--premium { - padding-left: 22px; -} - -.contact-block__dealerfinder .store__info { - margin-top: 4px; -} - -.contact-block__dealerfinder .store__link { - margin-top: 10px; -} - -.dealerfinder input[type="text"] { - font-size: 14px; - border: 1px solid #e8e8e8; - padding-left: 14px; - border-radius: 2px; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.dealerfinder__quantity { - margin-bottom: 5px; -} - -@media (min-width:768px) { - .dealerfinder__quantity { - text-align: right; - } -} - -.dealerfinder__quantity p { - margin-top: 0; - font-size: 14px; -} - -.dealerfinder__tabs { - width: 100%; - background: #fff; - list-style: none; - margin: 15px 0 20px 0; - z-index: 1; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.dealerfinder__tabs li { - -webkit-flex: 0 0 50%; - -ms-flex: 0 0 50%; - flex: 0 0 50%; -} - -.dealerfinder__tabs .ga-icon, -.dealerfinder__tabs .knowledge-base__most-viewed a { - font-size: 15px; - margin-right: 2px; -} - -.dealerfinder__tabs a { - font-size: 14px; - color: #bababa; - text-align: center; - display: block; - border-bottom: 1px solid #bababa; - padding: 10px 0; -} - -.dealerfinder__tabs a.active { - color: #000; - border-color: #000; -} - -.dealerfinder__tabs--fixed { - z-index: 100; - position: fixed; - background-color: #fff; - top: 14px; - left: 0; - width: 100%; - padding: 0 47px; - transition: all .25s ease-in-out; -} - -.dealerfinder__tabs--fixed.visible { - top: 106px; -} - -.topbar-active.minimize .dealerfinder__tabs--fixed { - transform: translate3d(0, -45px, 0); - -webkit-transform: translate3d(0, -45px, 0); - -moz-transform: translate3d(0, -45px, 0); - -ms-transform: translate3d(0, -45px, 0); - -o-transform: translate3d(0, -45px, 0); -} - -.dealerfinder__tabs--fixed ul { - margin-top: 5px; - margin-bottom: 0; -} - -@media (min-width:768px) { - .dealerfinder__results-container .row { - margin-top: 35px; - } -} - -.dealerfinder__results-wrapper { - margin-bottom: 10px; -} - -@media (min-width:1200px) { - .cms-page-view .dealerfinder__results-wrapper { - display: none; - } - - .cms-page-view .dealerfinder__results-wrapper.initialized { - height: 715px; - display: block; - border: 1px solid #f2f2f2; - overflow-y: scroll; - } -} - -.dealerfinder__results-wrapper .load-more { - border-top: 1px solid #f2f2f2; - background: none; - font-weight: 700; - width: 100%; - padding: 10px; - color: #000; -} - -.dealerfinder__results-wrapper .load-more .ga-icon, -.dealerfinder__results-wrapper .load-more .knowledge-base__most-viewed a { - float: none; - margin-left: 10px; - font-size: 8px; -} - -@media (min-width:1200px) { - .dealerfinder__column { - display: block; - } -} - -.dealerfinder__map-container { - position: relative; - width: 100%; - height: 520px; -} - -@media (min-width:768px) { - .dealerfinder__map-container { - height: 740px; - } -} - -.dealerfinder__map { - height: 100%; -} - -.dealerfinder__legend { - position: absolute; - top: 15px; - left: 15px; - background: #fff; - box-shadow: 0 10px 25px 0 rgba(0,0,0,0.15); - padding: 12px; - z-index: 1; -} - -.dealerfinder__legend ul { - list-style-type: none; - margin: 0; - font-size: 14px; -} - -.dealerfinder__legend li { - display: flex; - align-items: center; -} - -.dealerfinder__legend li:not(:last-child) { - margin-bottom: 5px; -} - -.dealerfinder__legend--item { - width: 22px; - height: 27px; - margin-right: 10px; - background-size: contain; - background-repeat: no-repeat; -} - -.dealerfinder__legend--ec { - background-image: url('../images/markers/marker-ec.png'); -} - -.dealerfinder__legend--store { - background-image: url('../images/markers/marker-store.png'); -} - -@media (max-width:767px) { - .dealerfinder__legend { - top: auto; - bottom: 15px; - } -} - -@media (max-width:767px) { - .dealerfinder__form-container .dealerfinder__input-wrap { - flex-basis: 100%; - } - - .dealerfinder__form-container .dealerfinder__search-button .ga-icon, - .dealerfinder__form-container .dealerfinder__search-button .knowledge-base__most-viewed a { - display: inline-block; - } -} - -.dealerfinder__noresults { - color: #7f7f7f; - font-size: 14px; -} - -.catalog-product-view .awards { - background-color: #f2f2f2; - padding: 120px 0; -} - -@media (max-width:767px) { - .awards { - padding: 40px 15px; - } -} - -.awards__header { - padding: 0 0 20px 0; - min-height: 90px; - line-height: 90px; -} - -@media (max-width:767px) { - .awards__header { - line-height: initial; - min-height: auto; - padding: 0; - } -} - -.awards__header a.arrow-link { - float: right; - line-height: 44px; - color: #000; -} - -@media (max-width:767px) { - .awards__header a.arrow-link { - float: left; - width: 100%; - line-height: initial; - margin: 10px 0 20px; - } -} - -.awards__items { - padding: 0; -} - -.awards__items .award__item { - display: block; - border-bottom: 1px solid rgba(186,186,186,0.4); - padding: 20px 0; -} - -.awards__items .award__item:first-of-type { - border-top: 1px solid rgba(186,186,186,0.4); -} - -.awards__items .award__inner { - text-align: left; - float: none; - margin: 0 auto; - padding: 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.awards__items .award__image { - min-width: 70px; - min-height: 50px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -@media (max-width:767px) { - .awards__items .award__image { - float: left; - } -} - -.awards__items .award__image img { - max-width: 70px; - max-height: 50px; - object-fit: contain; - margin: 0 auto; -} - -.awards__items .award__info { - width: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -@media (max-width:767px) { - .awards__items .award__info { - display: block; - } -} - -.awards__items .award__title { - width: 45%; - font-weight: 600; - font-size: 16px; -} - -@media (max-width:767px) { - .awards__items .award__title { - width: auto; - font-size: 14px; - } -} - -.awards__items .award__description { - width: 50%; - color: #7f7f7f; - font-size: 16px; -} - -@media (max-width:767px) { - .awards__items .award__description { - width: auto; - font-size: 14px; - } -} - -.awards__items .award__description p { - margin: 0; - font-size: 16px; -} - -.awards__items .award__description a { - font-size: 16px; - color: #7f7f7f; - border-bottom: 1px solid rgba(186,186,186,0.4); -} - -@media (max-width:767px) { - .awards__items .award__description a { - font-size: 14px; - } -} - -.awards__items .award__description a:hover { - color: #000; - border-color: #000; - text-decoration: none; -} - -.dealerfinder-widget { - color: #000; -} - -.dealerfinder-widget h5 { - font-size: 1rem; -} - -.dealerfinder-widget__title { - font-weight: bold; -} - -.dealerfinder-widget .dealerfinder__input-wrap { - position: relative; -} - -.dealerfinder-widget .dealerfinder__input[type="text"] { - width: 100%; - padding: 30px; - border: 1px solid #e8e8e8; - border-radius: 2px; - position: relative; -} - -@media (min-width:768px) { - .dealerfinder-widget .dealerfinder__input[type="text"] { - padding: 30px 75% 30px 25px; - } -} - -.dealerfinder-widget .dealerfinder__buttons { - margin: 15px 0; - z-index: 1; -} - -@media (min-width:768px) { - .dealerfinder-widget .dealerfinder__buttons { - position: absolute; - top: 50%; - right: 25px; - transform: translateY(-50%); - margin: 0; - } -} - -@media (max-width:480px) { - .dealerfinder-widget .dealerfinder__buttons { - display: flex; - flex-direction: column; - gap: 10px; - } -} - -.dealerfinder-widget .dealerfinder__my-location { - margin-right: 10px; -} - -@media (max-width:480px) { - .dealerfinder-widget .dealerfinder__my-location { - margin-right: 0; - } -} - -.dealerfinder-widget .dealerfinder__sort-container { - padding-bottom: 26px; -} - -@media (max-width:991px) { - .dealerfinder-widget .dealerfinder__sort-container { - padding-bottom: 20px; - } -} - -.dealerfinder-widget .dealerfinder__sort-container .check-stock { - display: flex; - align-items: center; - padding: 15px; - background: #f8f8f8; - border-radius: 5px; - gap: 32px; -} - -.dealerfinder-widget .dealerfinder__sort-container h3 { - font-size: 1rem; - font-weight: 400; - color: #bababa; - margin: 0; -} - -.dealerfinder-widget .dealerfinder__sort-container .switch { - position: relative; - display: inline-block; - width: 48px; - height: 24px; - margin: 0; -} - -.dealerfinder-widget .dealerfinder__sort-container .switch .slider { - background-color: #fff; - border: 1px solid #7f7f7f; - position: absolute; - cursor: pointer; - top: 0; - left: 0; - right: 0; - bottom: 0; - transition: .25s; - border-radius: 24px; -} - -.dealerfinder-widget .dealerfinder__sort-container .switch .slider:before { - border: 1px solid #fff; - background: #7f7f7f; - position: absolute; - content: ""; - height: 20px; - width: 20px; - left: 2px; - bottom: 1px; - transition: .25s; - border-radius: 50%; -} - -.dealerfinder-widget .dealerfinder__sort-container .switch input:checked + .slider { - background-color: #004a99; - border: 1px solid #004a99; -} - -.dealerfinder-widget .dealerfinder__sort-container .switch input:checked + .slider:before { - transform: translateX(22px); - border-color: #004a99; - background: #fff; -} - -.dealerfinder-widget .dealerfinder__sort-container .switch input:focus + .slider { - box-shadow: 0 0 1px #fff; -} - -.dealerfinder-widget .dealerfinder__sort-container .option-checkbox { - float: right; -} - -@media (max-width:991px) { - .dealerfinder-widget .dealerfinder__sort-container .option-checkbox { - margin-top: 15px; - float: left; - } -} - -.dealerfinder-widget .dealerfinder__sort-container .option-checkbox label { - font-size: 14px; -} - -.dealerfinder-widget .dealerfinder__sort-container .option-checkbox .checker { - float: right; - margin: 2px 0 0 10px; -} - -@media (max-width:991px) { - .dealerfinder-widget .dealerfinder__results { - border-top: 1px solid #f2f2f2; - padding-top: 20px; - } -} - -.dealerfinder-widget .dealerfinder__tabs-header { - margin-top: 20px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -@media (min-width:992px) { - .dealerfinder-widget .dealerfinder__tabs-header { - display: none; - } -} - -.dealerfinder-widget .dealerfinder__tabs-header .dealerfinder__quantity { - font-size: 14px; - color: #7f7f7f; -} - -.dealerfinder-widget .dealerfinder__tabs-header h5 { - margin: 0; -} - -.dealerfinder-widget .dealerfinder-filters { - margin-top: 15px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.dealerfinder-widget .dealerfinder-filters__list { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.dealerfinder-widget .dealerfinder-filters__list .tooltip-inner p { - color: #fff; -} - -@media (max-width:991px) { - .dealerfinder-widget .dealerfinder-filters { - display: none; - } -} - -.dealerfinder-widget .dealerfinder-filters h5 { - margin: 0 30px 0 0; - line-height: 30px; -} - -.dealerfinder-widget .dealerfinder-filters .filter { - font-size: 14px; - padding: 0 10px 0 8px; - height: 30px; - border: 1px solid #e8e8e8; - margin: 0 10px 10px 0; - border-radius: 2px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.dealerfinder-widget .dealerfinder-filters .filter .ga-icon, -.dealerfinder-widget .dealerfinder-filters .filter .knowledge-base__most-viewed a { - padding-right: 8px; -} - -.dealerfinder-widget .dealerfinder-filters .filter .ga-icon.icon-demo, -.dealerfinder-widget .dealerfinder-filters .filter .knowledge-base__most-viewed a.icon-demo { - font-size: 16px; -} - -.dealerfinder-widget .dealerfinder-filters .filter .ga-icon.icon-premium, -.dealerfinder-widget .dealerfinder-filters .filter .knowledge-base__most-viewed a.icon-premium { - font-size: 20px; -} - -.dealerfinder-widget .dealerfinder-filters .filter:hover { - cursor: pointer; -} - -.dealerfinder-widget .dealerfinder-filters input:checked + label { - border-color: #004a99; -} - -@media (min-width:992px) { - .contact-block.dealerfinder-widget { - padding: 0; - } -} - -.dealerfinder-widget__description p, -.dealerfinder-widget__intro p { - color: #7f7f7f; - margin-top: 0; -} - -.dealerfinder-widget__description p a, -.dealerfinder-widget__intro p a { - color: #7f7f7f; - text-decoration: underline; -} - -.dealerfinder-widget__description { - margin: 40px 0 15px; - max-width: 50%; -} - -@media (max-width:767px) { - .dealerfinder-widget__description p { - display: none; - } -} - -.dealerfinder-widget__intro p:not(:last-child) { - margin-bottom: 10px; -} - -@media (min-width:992px) { - .dealerfinder-widget .side-navigation { - display: none; - } -} - -.dealerfinder-widget .side-navigation__list-item .filter__title { - font-size: 14px; - padding-top: 2px; -} - -.dealerfinder-widget .side-navigation__list-item .filter__description { - font-size: 10px; - line-height: 15px; - color: #7f7f7f; - margin-top: 4px; -} - -.dealerfinder-widget .side-navigation__list-item .ga-icon, -.dealerfinder-widget .side-navigation__list-item .knowledge-base__most-viewed a { - width: 32px; - font-size: 14px; -} - -.dealerfinder-widget .side-navigation__list-item .ga-icon.icon-demo, -.dealerfinder-widget .side-navigation__list-item .knowledge-base__most-viewed a.icon-demo { - font-size: 20px; -} - -.dealerfinder-widget .side-navigation__list-item .ga-icon.icon-premium, -.dealerfinder-widget .side-navigation__list-item .knowledge-base__most-viewed a.icon-premium { - font-size: 28px; -} - -.dealerfinder-widget .icon-explanation-tooltip { - font-size: 12px; - color: #7f7f7f; - border-bottom: 1px solid #7f7f7f; - padding: 5px 0 4px 0; - margin-bottom: 10px; -} - -.dealerfinder-widget .icon-explanation-tooltip:hover { - border-color: #7f7f7f; -} - -#dealerfinder-modal .contact-block { - padding: 30px 0; -} - -@media (max-width:480px) { - #dealerfinder-modal .contact-block { - padding: 0 0 30px 0; - } -} - -.gm-style .gm-style-iw { - font-weight: 400; -} - -.gm-style .gm-style-iw-c { - border: 1px solid #e8e8e8; - padding-right: 1px; - overflow: visible; - border-radius: 3px; - box-shadow: none; -} - -.gm-style .gm-style-iw-d { - overflow: hidden; - padding: 0 10px 10px 0; -} - -.gm-style .gm-style-iw-d:before { - position: absolute; - content: ''; - background: linear-gradient(45deg, #fff 50%, transparent 51%, transparent 100%); - border-bottom: 1px solid #e8e8e8; - border-left: 1px solid #e8e8e8; - height: 10px; - width: 10px; - left: 50%; - bottom: -10px; - transform: translate(-50%, -50%) rotate(-45deg); - -webkit-transform: translate(-50%, -50%) rotate(-45deg); - -moz-transform: translate(-50%, -50%) rotate(-45deg); - -ms-transform: translate(-50%, -50%) rotate(-45deg); - -o-transform: translate(-50%, -50%) rotate(-45deg); -} - -.gm-style .gm-style-iw-t:after { - display: none; -} - -.gm-style .gm-ui-hover-effect { - top: 0; - right: 0; -} - -.faq-block { - padding: 50px 0 55px 0; -} - -@media (min-width:768px) { - .faq-block { - padding-bottom: 115px; - } -} - -.faq-block--product { - padding-bottom: 0; -} - -@media (min-width:768px) { - .faq-block--product { - padding-top: 120px; - } -} - -@media (min-width:1200px) { - .faq-block--product { - padding-top: 180px; - } -} - -.faq-block h2, -.faq-block h3 { - color: #000; -} - -.faq-block h2 { - font-size: 24px; - font-weight: 700; - max-width: 600px; - margin: 0 0 40px; -} - -@media (min-width:768px) { - .faq-block h2 { - font-size: 48px; - margin-bottom: 60px; - } -} - -.faq-block h3 { - font-size: 16px; - font-weight: 600; - margin: 0 0 10px; -} - -@media (min-width:768px) { - .faq-block h3 { - font-size: 18px; - margin-bottom: 35px; - } -} - -.faq-block__items { - border-bottom: 1px solid rgba(187,187,187,0.4); -} - -.faq-block__links { - margin-top: 40px; -} - -.faq-block__item { - border-top: 1px solid rgba(187,187,187,0.4); - padding: 25px 10px 0 0; -} - -@media (max-width:767px) { - .faq-block__item { - padding-bottom: 15px; - } -} - -@media (min-width:768px) { - .faq-block__item { - padding-top: 35px; - } -} - -.faq-block__item h3 { - cursor: pointer; - padding-left: 5px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.faq-block__item h3 .trigger-icon { - width: 16px; - height: 16px; - position: relative; - margin-right: 40px; - -webkit-flex: 0 0 16px; - -ms-flex: 0 0 16px; - flex: 0 0 16px; -} - -@media (max-width:767px) { - .faq-block__item h3 .trigger-icon { - margin-top: 5px; - } -} - -.faq-block__item h3 .trigger-icon:before, -.faq-block__item h3 .trigger-icon:after { - content: ''; - background: #000; - position: absolute; - transition: transform 300ms ease; -} - -.faq-block__item h3 .trigger-icon:before { - top: 0; - left: 50%; - width: 2px; - height: 100%; - margin-left: -1px; -} - -.faq-block__item h3 .trigger-icon:after { - top: 50%; - left: 0; - width: 100%; - height: 2px; - margin-top: -1px; -} - -.faq-block__item.active h3 .trigger-icon:before { - transform: rotate(90deg); - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); -} - -.faq-block__item.active h3 .trigger-icon:after { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); -} - -.faq-block__content { - padding-left: 60px; -} - -.faq-block__description { - margin-bottom: 15px; -} - -@media (min-width:768px) { - .faq-block__description { - margin-bottom: 40px; - } -} - -.sticky-anchors__description { - margin: 40px 0; -} - -.sticky-anchors__description ul { - list-style: none; - margin-left: 0; - font-size: 1rem; -} - -@media (min-width:768px) { - .sticky-anchors__description { - padding-left: 20px; - } -} - -@media (min-width:1200px) { - .sticky-anchors__description { - padding-left: 45px; - } -} - -.sticky-anchors__item:first-of-type h2 { - border-right: 1px solid #e8e8e8; -} - -@media (max-width:767px) { - .sticky-anchors__item:first-of-type h2 { - border-top: 0; - padding-top: 0; - border-right: 0; - } -} - -.sticky-anchors__item:first-of-type h3 { - border-right: 1px solid #e8e8e8; -} - -.sticky-anchors h2, -.sticky-anchors h3 { - font-weight: 700; -} - -.sticky-anchors h2:after, -.sticky-anchors h3:after { - display: inline-block; - font-size: 18px; - margin-left: 20px; - transition: all .25s ease-in-out; -} - -@media (max-width:767px) { - .sticky-anchors h2:after, - .sticky-anchors h3:after { - font-size: 12px; - } -} - -.sticky-anchors h2 { - font-size: 24px; - margin: 22px 0; - padding: 26px 45px; -} - -@media (max-width:1199px) { - .sticky-anchors h2 { - padding: 26px 20px; - font-size: 16px; - } -} - -@media (max-width:767px) { - .sticky-anchors h2 { - padding: 28px 0 0 0; - font-size: 14px; - border-top: 1px solid #e8e8e8; - } -} - -.sticky-anchors h3 { - font-size: 14px; - padding: 12px 0; - margin: 12px 0; -} - -.sticky-anchors h3:after { - font-size: 12px; - margin-left: 10px; -} - -.sticky-anchors a { - display: block; - border-bottom: 1px solid #e8e8e8; -} - -.sticky-anchors a:hover, -.sticky-anchors a.active { - color: #004a99; -} - -.sticky-anchors a.active h2:after, -.sticky-anchors a.active h3:after { - display: none; -} - -.sticky-anchors a.arrow-up h2:after, -.sticky-anchors a.arrow-up h3:after { - transform: rotate(180deg); -} - -.sticky-anchors .fixed-nav { - top: 0; - left: 0; - background-color: #f2f2f2; - border-bottom: 1px solid #e8e8e8; -} - -.sticky-anchors .fixed-nav a { - border-bottom: 0; -} - -.sticky-anchors .fixed-nav h2 { - margin: 11px 0; - padding: 13px 0; -} - -.cms-hierarchy__title { - font-size: 12px; -} - -.cms-hierarchy__title strong { - display: block; -} - -.cms-hierarchy .cms-menu { - border-top: 1px solid #e8e8e8; -} - -.cms-hierarchy ul { - list-style: none; - margin: 0; -} - -.cms-hierarchy ul > li strong { - font-weight: 400; - color: #004a99; -} - -.cms-hierarchy ul > li.parent > a { - display: none; -} - -.cms-hierarchy ul li:not(.parent) { - padding-bottom: 18px; -} - -.cms-hierarchy ul li ul li { - border-bottom: 1px solid #e8e8e8; - padding-top: 18px; -} - -.cms-hierarchy ul li ul li.parent a { - display: block; -} - -.cms-hierarchy ul li ul li ul { - padding-top: 7px; - padding-bottom: 13px; -} - -.cms-hierarchy ul li ul li ul li:not(.parent) { - border: 0; - padding: 5px 10px; -} - -@media (max-width:991px) { - .cms-hierarchy { - margin-bottom: 35px; - } - - .cms-hierarchy__title { - font-size: 14px; - color: #000; - background: #f2f2f2; - padding: 15px 40px 13px 15px; - } - - .cms-hierarchy__title strong:before { - font-size: 6px; - float: right; - margin-top: 6px; - } - - .cms-hierarchy ul { - display: none; - } - - .nav-open.cms-hierarchy ul { - display: block; - } - - .cms-hierarchy ul > li li { - font-size: 14px; - padding: 9px 0 9px 15px; - } -} - -@media (min-width:992px) { - .cms-hierarchy__title { - color: #004a99; - text-transform: uppercase; - letter-spacing: 1.5px; - margin-bottom: 25px; - } - - .cms-hierarchy__title strong:before { - display: none; - } -} - -.framesize-tool { - margin: 100px auto 10px auto; -} - -@media (max-width:767px) { - .framesize-tool { - margin-top: 50px; - } -} - -.framesize-tool form { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.framesize-tool .title { - font-weight: 600; -} - -@media (max-width:767px) { - .framesize-tool .title { - font-size: 24px; - } -} - -.framesize-tool .bodylength { - min-width: 200px; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; -} - -.framesize-tool .bodylength__item { - margin-right: 10px; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.framesize-tool label, -.framesize-tool .label { - color: #7f7f7f; - font-size: 12px; - display: block; - white-space: normal; - font-weight: 400; - text-transform: none; - padding: 0; - margin-bottom: 10px; -} - -.framesize-tool label:not(:first-child), -.framesize-tool .label:not(:first-child) { - margin-top: 35px; -} - -.framesize-tool label.error, -.framesize-tool .label.error { - color: #ee3a3a; - margin-top: 5px; -} - -.framesize-tool label.large, -.framesize-tool .label.large { - font-size: 14px; -} - -.framesize-tool label strong, -.framesize-tool .label strong { - color: #000; - text-transform: capitalize; - text-decoration: underline; -} - -.framesize-tool .input-text { - margin: 0; -} - -.framesize-tool button { - min-width: 190px; - padding: 9px 15px 8px 15px; - margin: 10px 10px 0 0; -} - -.framesize-tool p { - color: #7f7f7f; - margin-bottom: 38px; -} - -.framesize-tool__image { - margin-left: -12%; - text-align: right; -} - -@media (min-width:768px) { - .framesize-tool__form { - float: right; - } -} - -.framesize-tool__results { - margin-top: 42px; -} - -.framesize-tool__sizes-container { - height: 87px; - overflow: hidden; -} - -.framesize-tool__sizes-container.sizes-small { - height: 52px; -} - -.framesize-tool__sizes { - background: #f2f2f2; - padding: 18px; - overflow-x: scroll; - white-space: nowrap; - border-radius: 2px; -} - -.framesize-tool__sizes .framesize { - font-size: 16px; - color: #000; - font-weight: 700; - text-align: center; - width: 60px; - display: inline-block; - padding: 16px 0 15px 0; -} - -.framesize-tool__sizes .framesize.compatible { - background: #cae8c6; - border-radius: 2px; -} - -.sizes-small .framesize-tool__sizes { - padding: 11px 15px; -} - -.sizes-small .framesize-tool__sizes .framesize { - font-size: 12px; - padding: 8px 0 7px 0; -} - -@media (min-width:992px) { - .modal .framesize-tool__sizes { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - } - - .modal .framesize-tool__sizes .framesize { - width: auto; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - } -} - -.framesize-tool .no-framesizes { - display: block; - padding: 20px; - background-color: #f2f2f2; - color: #7f7f7f; -} - -.framesize-tool .show-bikes { - display: block; - margin-top: 30px; -} - -@media (min-width:768px) { - .framesize-tool .show-bikes { - float: right; - } -} - -.modal-body .framesize-tool .show-bikes { - display: none; -} - -.modal-body .framesize-tool { - margin: 0; - padding: 0 7.5px; -} - -.modal-body .framesize-tool .framesize-tool__image { - display: none; -} - -.modal-body .framesize-tool .framesize-tool__form { - margin-left: 0; - width: 100%; -} - -.framesize-tool .unit-toggle__wrapper { - margin: 0 10px 10px 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; -} - -.framesize-tool .unit-toggle__wrapper label { - margin: 0 5px; - display: inline-block; -} - -.framesize-tool .unit-toggle__label { - font-size: 12px; - color: #7f7f7f; -} - -.framesize-tool .unit-toggle__label.active { - color: #000; - font-weight: 600; -} - -.list-element_wrapper { - background-color: #f2f2f2; - padding-bottom: 80px; -} - -@media (max-width:767px) { - .list-element_wrapper { - padding-top: 0px; - padding-bottom: 50px; - } -} - -.list-element_wrapper .row-inner { - max-width: 1580px; - margin: 0 auto; - padding-left: 15px; - padding-right: 15px; -} - -.list-element_wrapper .row-inner h3 { - padding-top: 80px; - font-size: 40px; - font-weight: 600; - text-align: center; - max-width: 600px; - margin: 0px auto; -} - -@media (max-width:991px) { - .list-element_wrapper .row-inner h3 { - padding-top: 60px; - } -} - -@media (max-width:767px) { - .list-element_wrapper .row-inner h3 { - font-size: 28px; - } -} - -@media (max-width:1599px) { - .list-element_wrapper .row-inner { - max-width: 1170px; - } -} - -@media (max-width:1199px) { - .list-element_wrapper .row-inner { - max-width: 970px; - } -} - -@media (max-width:991px) { - .list-element_wrapper .row-inner { - max-width: 750px; - } -} - -@media (max-width:991px) { - .list-element_wrapper .row-inner .bluefoot-column-6:nth-child(2) { - margin-top: 40px; - } -} - -.list-element h4 { - font-size: 40px; - font-weight: 600; -} - -.list-element__title { - display: flex; - align-items: center; -} - -.list-element__title img { - max-width: 30px; -} - -.list-element__title h4 { - margin-left: 20px; -} - -@media (max-width:767px) { - .list-element__title h4 { - margin-left: 15px; - font-size: 24px; - } -} - -.list-element__list { - padding: 0; - margin-top: 30px; - margin-left: 27px; -} - -.list-element__list li { - list-style-image: url('../images/check.svg'); - font-weight: 600; - font-size: 18px; - margin-bottom: 20px; - padding-left: 20px; -} - -.list-element__list li:last-child { - margin-bottom: 0; -} - -.list-element__list li.negative { - list-style-image: url('../images/cross.svg'); -} - -.checkout-index-index .page-main { - padding: 0; -} - -#checkout select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - width: 100%; - height: 32px; - border-bottom: 1px solid #bababa; - background: #fff url('../images/icons/chevron-down.svg') no-repeat center right; - padding-right: 24px; - margin-top: 5px; - border-radius: 0; -} - -.ie11 #checkout select { - background: none; -} - -#checkout select[disabled=true] { - background-image: none; - cursor: not-allowed; -} - -#checkout .messages { - font-size: 14px; -} - -#checkout .messages .error { - color: #ee3a3a; -} - -#checkout .step-title { - font-weight: 600; - font-size: 24px; - margin: 40px 0 30px 0; -} - -#checkout .step-title--with-link { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -#checkout .step-title--with-link a { - font-size: 12px; - font-weight: 400; - color: #000; - border-bottom: 1px solid #7f7f7f; -} - -#checkout .step-title--with-link a:before { - font-size: 8px; - margin-right: 5px; - position: relative; - top: -1px; -} - -#checkout .step-error-message { - border: 1px solid #ee3a3a; - border-radius: 4px; - background-color: #f2f2f2; - margin-top: 30px; - padding: 18px 30px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -#checkout .step-error-message a { - display: block; - margin-top: 4px; -} - -#checkout .step-info { - font-size: 14px; - color: #7f7f7f; - margin-top: 30px; -} - -#checkout .step-user-info { - font-size: 14px; - color: #000; - margin-top: 30px; -} - -#checkout .step-user-info .label { - font-size: 10px; - font-weight: 600; - color: #004a99; - letter-spacing: 1.4px; - padding: 0; - margin-bottom: 7px; -} - -#checkout .step-user-info .ga-icon, -#checkout .step-user-info .knowledge-base__most-viewed a { - font-size: 12px; - margin-right: 3px; -} - -#checkout .opc-block-summary button { - width: 100%; - text-align: left; - transition: none; -} - -@media (max-width:767px) { - #checkout .opc-block-summary button { - top: 0; - } -} - -#checkout .opc-block-summary .items-in-cart:before, -#checkout .opc-block-summary .items-in-cart:after { - content: " "; - display: table; -} - -#checkout .opc-block-summary .items-in-cart:after { - clear: both; -} - -@media (max-width:767px) { - #checkout .opc-block-summary .items-in-cart { - display: none; - } -} - -#checkout #checkoutSteps { - margin-left: 0; -} - -#checkout #checkoutSteps li { - list-style: none; -} - -#checkout #checkoutSteps li:before { - display: none; -} - -#checkout #checkoutSteps .fieldset { - margin-bottom: 0; -} - -#checkout #checkoutSteps .field { - font-size: 14px; -} - -#checkout #checkoutSteps .field__password { - float: right; -} - -#checkout #checkoutSteps .field.street { - margin-top: 0; -} - -#checkout #checkoutSteps .field.street .field { - float: left; -} - -#checkout #checkoutSteps .field.street .housenumber, -#checkout #checkoutSteps .field.street .housenumber__addition { - width: 50%; -} - -#checkout #checkoutSteps .field.street .housenumber { - padding-right: 15px; -} - -#checkout #checkoutSteps .field.street .housenumber__addition { - padding-left: 15px; -} - -#checkout #checkoutSteps .field.billing__address { - width: 100%; -} - -@media (min-width:768px) { - #checkout #checkoutSteps .field.street .housenumber, - #checkout #checkoutSteps .field.street .housenumber__addition { - width: 25%; - } - - #checkout #checkoutSteps .field.street .housenumber { - padding-left: 15px; - } - - #checkout #checkoutSteps .field.billing__address { - width: 50%; - padding-right: 15px; - } -} - -.has-address-autocomplete #checkout #checkoutSteps .field.street .housenumber, -.has-address-autocomplete #checkout #checkoutSteps .field.street .housenumber__addition { - width: 50%; -} - -.has-address-autocomplete #checkout #checkoutSteps .field.street .housenumber { - padding-left: 0; -} - -.has-address-autocomplete #checkout #checkoutSteps .field.billing__address { - display: none; -} - -@media (min-width:768px) { - .has-address-autocomplete #checkout #checkoutSteps .field.street { - width: 50%; - } -} - -#checkout #checkoutSteps .actions-toolbar a { - text-align: left; -} - -#checkout #checkoutSteps .actions-toolbar .primary { - float: right; - margin-right: 0; -} - -@media (max-width:991px) { - #checkout #checkoutSteps .actions-toolbar .primary { - width: 100%; - float: none; - } -} - -#checkout #checkoutSteps .actions-toolbar .secondary { - margin: 5px 0 0; -} - -@media (max-width:991px) { - #checkout #checkoutSteps .actions-toolbar .secondary { - text-align: left; - float: none; - margin: 0 0 5px; - } -} - -#checkout #checkoutSteps .actions-toolbar .secondary a { - font-size: 12px; - font-weight: 400; - color: #7f7f7f; - text-decoration: underline; - border: 0; - padding: 0; -} - -#checkout .field-tooltip-content, -#checkout .note { - margin-top: 8px; - font-size: 14px; - color: #004a99; -} - -#checkout .radio-button { - margin: 10px 20px 0 0; - display: inline-block; -} - -#checkout .field-error { - font-size: 14px; - margin-top: 5px; - color: #ee3a3a; - font-weight: 600; -} - -@media (max-width:767px) { - #opc-sidebar { - background: #f2f2f2; - padding-bottom: 20px; - margin-top: 45px; - } - - .checkout-index-index #opc-sidebar { - background: none; - padding: 0 15px 20px 15px; - margin-top: 25px; - } -} - -.checkout-address-autocomplete { - padding: 9px 15px; - background-color: #f2f2f2; - display: flex; - justify-content: space-between; - align-items: center; -} - -.checkout-address-autocomplete.invalid-address { - color: #ee3a3a; -} - -.checkout-address-autocomplete .address__wrapper { - display: inline-block; -} - -.checkout-address-autocomplete a { - color: #004a99; - float: right; -} - -.cart-empty { - padding-top: 40px; -} - -.create-password__wrapper { - clear: both; - padding-top: 38px; -} - -.create-password__container { - border-top: 1px solid #e8e8e8; - border-bottom: 1px solid #e8e8e8; -} - -.create-password__container:before, -.create-password__container:after { - content: " "; - display: table; -} - -.create-password__container:after { - clear: both; -} - -.create-password__container .field { - padding-left: 0; - margin-bottom: 30px; -} - -.create-password .control, -.create-password .ga-icon, -.create-password .knowledge-base__most-viewed a { - display: inline-block; -} - -.create-password .ga-icon, -.create-password .knowledge-base__most-viewed a { - color: #5fd350; - font-size: 26px; - margin-left: 10px; -} - -.cart-footer__finance-rates .table-responsive { - margin: 0; -} - -@media (min-width:768px) { - .cart-footer__finance-rates { - margin-top: 40px; - padding-right: 50px; - width: 65%; - } -} - -@media (max-width:767px) { - .cart-footer__finance-rates { - background-color: #f2f2f2; - padding: 0 15px 20px; - } - - .cart-footer__finance-rates table { - display: none; - } - - .cart-footer__finance-rates .finance-rates { - border-width: 1px; - } - - .cart-footer__finance-rates .borrow-money { - background-color: #f2f2f2; - } -} - -@media (min-width:768px) { - .cart-footer > div { - display: inline-block; - } -} - -.home-delivery__wrapper { - margin-top: 20px; - font-size: 1rem; - line-height: 1.6; - color: #7f7f7f; -} - -#checkout .minicart-items { - margin-left: 0; -} - -#checkout .minicart-items-wrapper { - margin-bottom: 20px; -} - -#checkout .minicart-items li { - list-style: none; - margin-top: 28px; - padding-top: 28px; - border-top: 1px solid #e8e8e8; -} - -#checkout .minicart-items .product-image-container { - display: block; - width: auto; - height: auto; - float: left; -} - -@media (min-width:768px) { - #checkout .minicart-items .product-image-container { - float: none; - -webkit-flex: 0 0 40px; - -ms-flex: 0 0 40px; - flex: 0 0 40px; - } -} - -#checkout .minicart-items img { - height: 26px; - width: auto; - margin-right: 4px; -} - -#checkout .minicart-items thead th, -#checkout .minicart-items thead td { - line-height: 22px; -} - -@media (max-width:767px) { - #checkout .minicart-items thead { - width: 50%; - } -} - -#checkout .minicart-items .cart.table-wrapper { - border: none; - line-height: 1.43; -} - -#checkout .minicart-items .cart.table-wrapper .product-item-details th { - width: 70%; -} - -#checkout .minicart-items .cart.table-wrapper .product-item-details td { - width: 30%; -} - -@media (min-width:768px) { - #checkout .minicart-items .cart.table-wrapper .product-item-details thead th { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } -} - -#checkout .minicart-items .subtotal sub, -#checkout .minicart-items .minicart__total__amount sub { - font-size: 12px; - bottom: 0; -} - -#checkout .minicart-items .subtotal sub.monthly, -#checkout .minicart-items .minicart__total__amount sub.monthly { - font-size: 14px; - font-weight: 400; - color: #7f7f7f; -} - -#checkout .minicart-items .subtotal sub.tooltip-finance-rates, -#checkout .minicart-items .minicart__total__amount sub.tooltip-finance-rates { - cursor: pointer; -} - -#checkout .minicart-items .minicart__total__amount { - display: flex; - align-items: center; - justify-content: flex-end; - gap: 3px; -} - -#checkout .minicart__total { - font-weight: 600; - display: flex; - margin-top: 20px; - padding-top: 20px; - justify-content: space-between; - border-top: 1px solid #e8e8e8; -} - -#checkout .minicart__total__vat { - color: #7f7f7f; -} - -#checkout .minicart__total__small { - font-size: 12px; - display: flex; - justify-content: space-between; -} - -#checkout .minicart__total__amount { - font-weight: 600; -} - -#checkout #store-pickup .dealerfinder__sort-container h3 { - font-size: 1rem; -} - -#checkout #store-pickup .dealerfinder-widget { - padding: 0; -} - -#checkout #store-pickup .dealerfinder-widget .store__cta--reservation, -#checkout #store-pickup .dealerfinder-widget .contact-dealer, -#checkout #store-pickup .dealerfinder-widget .price-bar__distance, -#checkout #store-pickup .dealerfinder-widget .phone { - display: none; -} - -#checkout #store-pickup .dealerfinder-widget .store { - padding: 25px 0; -} - -#checkout #store-pickup .dealerfinder-widget .store__distance.has-stock { - position: relative; - top: auto; - right: auto; -} - -#checkout #store-pickup .dealerfinder-widget .store__distance.has-stock .ga-icon, -#checkout #store-pickup .dealerfinder-widget .store__distance.has-stock .knowledge-base__most-viewed a { - display: inline-block; -} - -#checkout #store-pickup .dealerfinder-widget .store__distance-time { - display: inline-block; -} - -#checkout #store-pickup .dealerfinder-widget .store .price-bar__stock { - max-width: none; -} - -@media (max-width:767px) { - #checkout #store-pickup .dealerfinder__buttons { - position: absolute; - top: 0; - right: 15px; - } -} - -#checkout #store-pickup .dealerfinder__my-location { - margin: 20px 0; - display: flex; - align-items: center; - justify-content: flex-start; -} - -#checkout #store-pickup .dealerfinder__my-location svg { - width: 20px; - height: 20px; -} - -@media (max-width:480px) { - #checkout #store-pickup .dealerfinder__my-location { - margin-left: 0; - margin-top: 15px; - justify-content: flex-start; - gap: 5px; - } - - #checkout #store-pickup .dealerfinder__my-location svg { - width: 20px; - height: 20px; - } -} - -#checkout #store-pickup .dealerfinder__my-location span { - margin-left: 5px; - font-size: 14px; - color: #004a99; -} - -#checkout #store-pickup .dealerfinder__search-button { - width: 50px; - height: 50px; - padding: 0; - text-align: center; -} - -#checkout #store-pickup .dealerfinder__search-button .ga-icon, -#checkout #store-pickup .dealerfinder__search-button .knowledge-base__most-viewed a { - margin-left: 0; - float: none; -} - -#checkout #store-pickup .dealerfinder__search-button.btn-is-loading:after, -#checkout #store-pickup .dealerfinder__search-button.wizard__loader:after { - float: none; -} - -#checkout #store-pickup .dealerfinder__search-button.btn-is-loading .ga-icon, -#checkout #store-pickup .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a { - display: none; -} - -@media (min-width:768px) { - #checkout .opc-block-summary { - min-height: 100%; - } -} - -#payment .payment-method { - margin-top: 34px; -} - -#payment .payment-method:last-of-type { - margin-bottom: 34px; -} - -#payment .payment-method .finance-period { - margin: 30px 0 40px; -} - -#payment .payment-method .finance-period__item:last-of-type { - border-bottom: 1px solid #e8e8e8; -} - -#payment .payment-method .finance-period__item label { - font-weight: 600; - font-size: 16px; - color: #000; - margin-bottom: 0; - text-transform: none; - letter-spacing: initial; - line-height: 80px; - border-top: 1px solid #e8e8e8; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -#payment .payment-method .finance-period__item label > span:first-of-type { - margin-right: 20px; -} - -#payment .payment-method .finance-period__item label span:last-of-type { - margin-left: auto; - font-size: 14px; -} - -#payment .payment-method .finance-period__item label span:last-of-type .metric { - font-size: 10px; -} - -#payment .payment-method-title { - margin-top: 0; -} - -#payment .payment-method-title label.label { - color: #000; - text-transform: none; - letter-spacing: initial; - font-size: 14px; - font-weight: normal; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -#payment .payment-method-title label.label.disabled { - color: rgba(0,0,0,0.1); -} - -#payment .payment-method-title label img { - padding-right: 10px; -} - -#payment .payment-method-form { - margin-top: 10px; -} - -#payment .consorsfinanz-icon { - margin-bottom: 10px; -} - -#payment .finance-icon { - background: url('../images/vwpfs_logo.png') no-repeat; - background-size: contain; - height: 24px; - width: 156px; - display: inline-block; - position: relative; - top: 6px; - margin-bottom: 10px; - vertical-align: bottom; -} - -#payment .payment-method-billing-address { - display: none; -} - -#payment .checkout-agreements-form { - font-size: 1rem; -} - -#payment .checkout-agreements-form .step-title { - margin-bottom: 28px; -} - -#payment .checkout-agreements-form .checkout-agreement { - line-height: 1.42857143; - margin-bottom: 16px; -} - -#payment .checkout-agreements-form .checkout-agreement__text { - color: #7f7f7f; - margin-left: 30px; -} - -#payment .checkout-agreements-form .checkout-agreement__text span { - text-decoration: underline; - cursor: pointer; -} - -#payment .checkout-agreements-form .checkout-agreement .checker { - margin-top: 1px; -} - -#payment .payment__bank ul { - z-index: 1000; -} - -@media (max-width:767px) { - #payment .payment__bank { - margin-top: 22px; - } -} - -#payment .payment__bank .adyen-checkout__dropdown__button { - padding-left: 0; - font-size: 14px; - border: none; - border-bottom: 1px solid rgba(0,0,0,0.1); - min-width: 200px; - background: #fff url('../images/icons/chevron-down.svg') no-repeat; - background-position: center right; - box-shadow: none; -} - -#payment .payment__bank .adyen-checkout__dropdown__button:after { - display: none; -} - -@media (max-width:767px) { - #payment .payment-method-title, - #payment .payment-method-content { - width: 100%; - display: inline-block; - } -} - -@media (min-width:768px) { - #payment .payment-method-content .label { - margin-top: 0; - } - - #payment .payment__bank { - display: inline-block; - margin-left: 30px; - } -} - -#payment .payment-method-description { - font-size: 14px; - line-height: 1.45; - color: #7f7f7f; -} - -#payment #iDealContainer .adyen-checkout__dropdown__button, -#payment .adyen-checkout__dropdown--large { - max-width: initial; -} - -#checkout .addresses .shipping-address-items { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -#checkout .addresses .shipping-address-item { - color: #7f7f7f; - line-height: 1.643; - -webkit-flex: 0 0 50%; - -ms-flex: 0 0 50%; - flex: 0 0 50%; -} - -@media (max-width:767px) { - #checkout .addresses .shipping-address-item { - -webkit-flex-basis: 100%; - -ms-flex-basis: 100%; - flex-basis: 100%; - } -} - -#checkout .addresses .shipping-address-item:not(:last-child) { - margin-bottom: 20px; -} - -#checkout .addresses .shipping-address-type { - font-weight: 600; - color: #000; - display: block; -} - -#checkout .addresses .edit-address-link { - margin-top: 5px; -} - -#co-shipping-method-form .shipping__method { - margin: 30px 0 20px; - font-size: 1rem; - color: #7f7f7f; -} - -#co-shipping-method-form #select-store { - width: 100%; -} - -.opc-progress-bar-indicator { - position: absolute; - left: 0; - width: 0; - height: 1px; - transition: width .25s ease; - background-color: #f2f2f2; - background-image: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#004a99)); - background-image: -webkit-linear-gradient(left, #f2f2f2, #004a99); - background-image: -moz-linear-gradient(left, #f2f2f2, #004a99); - background-image: -ms-linear-gradient(left, #f2f2f2, #004a99); - background-image: -o-linear-gradient(left, #f2f2f2, #004a99); -} - -@media (max-width:991px) { - .opc-progress-bar-steps { - width: 100%; - } - - .opc-progress-bar-steps ul { - display: none; - } - - .opc-progress-bar-indicator { - top: 114px; - } - - .minimize .opc-progress-bar-indicator { - top: 61px; - } -} - -@media (max-width:767px) { - .opc-progress-bar-indicator { - top: 107px; - } -} - -@media (min-width:992px) { - .opc-progress-bar { - text-align: center; - border-bottom: 1px solid #f2f2f2; - padding-top: 40px; - margin-bottom: 5px; - } - - .opc-progress-bar-steps { - display: inline-block; - padding-bottom: 15px; - position: relative; - } - - .opc-progress-bar-steps ul { - list-style: none; - margin: 0; - } - - .opc-progress-bar-steps ul li { - display: inline-block; - text-align: center; - min-width: 135px; - margin: 0 12px; - } - - .opc-progress-bar-item { - color: #bababa; - cursor: pointer; - } - - .opc-progress-bar-item._active { - color: #004a99; - } - - .opc-progress-bar-item._complete { - color: #000; - } - - .opc-progress-bar-indicator { - bottom: -1px; - } -} - -@media (min-width:1200px) { - .opc-progress-bar-steps li { - min-width: 170px; - margin: 0 15px; - } -} - -.finance-form-index .finance-close { - margin-top: 20px; -} - -.finance-form-index .opc-progress-bar { - counter-reset: section; - height: 125px; - margin: 0; - position: relative; -} - -.finance-form-index .opc-progress-bar:before { - background: rgba(0,0,0,0.05); - content: ''; - height: 2px; - left: 15px; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: calc(100% - 30px); - z-index: 0; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item { - display: inline-block; - float: left; - position: relative; - width: 15%; -} - -@media screen and (max-width:1199px) { - .finance-form-index .opc-progress-bar .opc-progress-bar-item { - width: 25%; - } -} - -@media screen and (max-width:991px) { - .finance-form-index .opc-progress-bar .opc-progress-bar-item { - width: 50%; - } - - .finance-form-index .opc-progress-bar .opc-progress-bar-item:last-of-type { - float: right; - } - - .finance-form-index .opc-progress-bar .opc-progress-bar-item:last-of-type > span { - text-align: right; - } - - .finance-form-index .opc-progress-bar .opc-progress-bar-item:last-of-type:after { - right: 0; - } -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item > span { - display: block; - font-weight: bold; - height: 125px; - position: relative; - opacity: 0.25; - text-transform: uppercase; - z-index: 30; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item:before { - background: transparent; - content: ''; - height: 2px; - left: 0; - position: absolute; - top: 50%; - transform: translateY(-50%); - width: 100%; - z-index: 10; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item:after { - background-color: #fff; - border: 1px solid #f2f2f2; - border-radius: 100%; - content: counter(section); - counter-increment: section; - display: block; - font-weight: 800; - height: 36px; - line-height: 36px; - position: absolute; - text-align: center; - top: 50%; - transform: translateY(-50%); - width: 36px; - z-index: 20; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item._active:after { - background: #004a99; - border: none; - color: #fff; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item._active > span { - opacity: 1; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item._complete { - cursor: pointer; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item._complete:before { - background: #004a99; -} - -@media screen and (max-width:991px) { - .finance-form-index .opc-progress-bar .opc-progress-bar-item._complete:before { - width: 200%; - } -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item._complete:after { - background: #004a99; - border: none; - color: #fff; - content: '\e003'; - font-family: 'Gazelle'; -} - -.finance-form-index .opc-progress-bar .opc-progress-bar-item._complete > span { - opacity: 0.25; -} - -.storepickup__selected__wrapper { - padding: 30px; - background-color: #f2f2f2; -} - -.storepickup__selected__header { - display: flex; - justify-content: space-between; -} - -.storepickup__selected p { - color: #7f7f7f; - margin-bottom: 0; -} - -.storepickup__selected .icon-info { - float: none; -} - -.storepickup__selected h5 { - margin-top: 0; - padding-right: 6px; - word-break: break-word; -} - -.storepickup__selected a { - float: right; - color: #004a99; - flex-shrink: 0; -} - -.premium-dealer-0 { - display: none; -} - -.premium-dealer-1:hover { - cursor: pointer; -} - -.premium-dealer-1 h5 { - color: #004a99; - margin-top: 0; - font-size: 14px; - text-transform: uppercase; -} - -.premium-dealer-1 p { - color: #000; - margin-bottom: 0; -} - -.popup-store .tag-content h5 { - margin-top: 0; -} - -.popup-store .tag-content p { - margin: 0; -} - -.search-sort { - display: inline-block; -} - -.search-sort select.form-control { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - padding-right: 24px; - background: url('../images/icons/chevron-down.svg') no-repeat center right; -} - -.search-sort-label { - display: inline-block; - font-size: 14px; - font-weight: 600; - margin-right: 10px; -} - -.search-toolbar { - justify-content: space-between; - flex-wrap: wrap; -} - -.storepickup-index-index .overlay-bg-checkout, -.checkout-index-index .overlay-bg-checkout { - display: none; -} - -.storepickup-index-index .overlay-bg-checkout img, -.checkout-index-index .overlay-bg-checkout img, -.storepickup-index-index .overlay-bg img, -.checkout-index-index .overlay-bg img, -.storepickup-index-index > .loading-mask, -.checkout-index-index > .loading-mask { - left: 50%; - position: fixed; - text-align: center; - top: 50%; - transform: translateY(-50%) translateX(-50%); -} - -.storepickup-index-index #checkout-loader, -.checkout-index-index #checkout-loader { - display: block; - left: 0; - position: absolute; - text-align: center; - top: 50%; - transform: translateY(-50%); - width: 100%; - z-index: 100; -} - -.modal-loader { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); -} - -.cart-stickybar { - display: none; - width: 100%; - background: #f2f2f2; - position: fixed; - bottom: 0; - left: 0; - z-index: 1000; - padding: 15px 0; - border-top: 1px solid #bababa; -} - -.cart-stickybar:before, -.cart-stickybar:after { - content: " "; - display: table; -} - -.cart-stickybar:after { - clear: both; -} - -.cart-stickybar__totals { - font-size: 12px; - float: left; -} - -.cart-stickybar__quantity-wrapper, -.cart-stickybar__price-wrapper { - margin-top: 5px; -} - -.cart-stickybar__quantity-wrapper { - color: #7f7f7f; -} - -.cart-stickybar__price-wrapper { - font-size: 14px; - font-weight: 600; - color: #000; -} - -.cart-stickybar__monthly-price { - font-size: 10px; - margin-left: 2px; -} - -.cart-stickybar__actions { - float: right; -} - -.cart-stickybar--contains-description-label { - font-weight: 300; -} - -@media (max-width:767px) { - .cart-stickybar__price-wrapper.margin-top { - margin-top: 15px; - } -} - -@media (min-width:768px) { - .cart-stickybar__totals { - font-size: 16px; - line-height: 45px; - } - - .cart-stickybar__quantity-wrapper, - .cart-stickybar__price-wrapper { - float: left; - margin-top: 0; - } - - .cart-stickybar__quantity-wrapper { - margin-right: 20px; - } - - .cart-stickybar__price-wrapper { - font-size: 16px; - } - - .cart-stickybar__actions { - width: calc(100%/3); - } -} - -@media (min-width:992px) { - .cart-stickybar__actions { - width: 25%; - } -} - -.checkout-success { - padding-top: 45px; -} - -.checkout-success h1, -.checkout-success h5 { - font-size: 24px; - font-weight: 600; - color: #000; -} - -.checkout-success h1 { - margin: 0 0 20px; -} - -.checkout-success h2 { - font-size: 100px; - font-weight: 600; - color: #e8e8e8; - line-height: 1; -} - -@media (max-width:767px) { - .checkout-success h2 { - font-size: 48px; - } -} - -.checkout-success h3 { - font-size: 20px; - font-weight: 400; -} - -.checkout-success h4 { - font-size: 24px; - font-weight: 600; - margin: 0; -} - -.checkout-success h5 { - margin: 0; -} - -@media (min-width:992px) { - .checkout-success h5 { - margin: 0 0 25px; - } -} - -.checkout-success p { - font-size: 1rem; - color: #7f7f7f; - margin-bottom: 10px; -} - -.checkout-success p:last-child { - margin-bottom: 0; -} - -.checkout-success p strong { - color: #000; -} - -.checkout-success .start-lease-order { - color: #fff; - margin-top: 30px; -} - -@media (min-width:768px) { - .checkout-success__products { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - } -} - -.checkout-success__products--multiple h2 { - font-size: 48px; -} - -.checkout-success__product { - position: relative; - margin: 25px 0 10px; -} - -.checkout-success__product h2 { - position: absolute; - top: -20px; - z-index: -1; - padding-right: 25px; -} - -@media (min-width:768px) { - .checkout-success__product { - padding-top: 30px; - margin-top: 10px; - -webkit-flex: 1 0 50%; - -ms-flex: 1 0 50%; - flex: 1 0 50%; - } - - .checkout-success__product h2 { - top: 0; - } -} - -.checkout-success__blocks { - margin-top: 30px; -} - -@media (max-width:991px) { - .checkout-success__sidebar { - margin-top: 30px; - -webkit-flex: 0 0 100%; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - -webkit-order: 2; - -ms-order: 2; - order: 2; - } -} - -.checkout-success__sidebar .contact-block { - min-height: 265px; - font-size: 1rem; - margin-bottom: 15px; -} - -.checkout-success__sidebar .contact-block_header { - margin-bottom: 10px; -} - -.checkout-success__block { - border: 1px solid #e8e8e8; - min-height: 265px; - padding: 25px 30px 30px 30px; - margin-bottom: 20px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - border-radius: 2px; -} - -.checkout-success__block h3 { - color: #000; - margin: 0 0 10px; -} - -.checkout-success__block--blue { - background: #004a99; -} - -.checkout-success__block--blue h3, -.checkout-success__block--blue p { - color: #fff; -} - -.checkout-success__block__header { - border-bottom: 1px solid #e8e8e8; -} - -.checkout-success__block__content { - padding: 25px 30px 30px 30px; -} - -.checkout-success__block__content p.address { - margin-bottom: 15px; -} - -.checkout-success__block-footer { - margin-top: auto; -} - -.checkout-success__telephone { - font-weight: 600; - display: block; - font-size: 24px; -} - -.checkout-success .checkout-summary { - font-size: 14px; -} - -@media (max-width:991px) { - .checkout-success .checkout-summary { - margin-top: 15px; - } -} - -.checkout-success .checkout-summary .icon-print { - font-size: 25px; - margin-left: 8px; -} - -.checkout-success .checkout-summary__title { - border-bottom: 1px solid #e8e8e8; - padding-bottom: 20px; - margin-bottom: 25px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.checkout-success .checkout-summary .table-wrapper { - border: 0; -} - -.checkout-success .checkout-summary .table-wrapper td { - color: #7f7f7f; - text-align: right; -} - -.checkout-success .checkout-summary .table-wrapper thead th, -.checkout-success .checkout-summary .table-wrapper .totals th, -.checkout-success .checkout-summary .table-wrapper thead td, -.checkout-success .checkout-summary .table-wrapper .totals td { - font-weight: 600; - color: #000; -} - -.checkout-success .checkout-summary .table-wrapper tr.totals { - font-size: 16px; - border-top: 1px solid #000; - padding-top: 10px; -} - -.checkout-success .checkout-summary .table-wrapper tr.totals th, -.checkout-success .checkout-summary .table-wrapper tr.totals td { - padding: 14px 0 5px; -} - -.checkout-success .checkout-summary .table-wrapper tr.small { - font-size: 12px; -} - -.checkout-success .checkout-summary .table-wrapper .item-options:first-child { - border-bottom: 1px solid #e8e8e8; - margin-bottom: 14px; -} - -.checkout-success__steps { - margin: 40px 0 5px 0; -} - -@media (min-width:768px) { - .checkout-success__steps { - margin: 65px 0 30px 0; - } -} - -@media (min-width:1200px) { - .checkout-success__steps { - margin-bottom: 50px; - } -} - -@media (max-width:767px) { - .checkout-step { - border-bottom: 1px solid #e8e8e8; - padding-bottom: 5px; - } -} - -@media (max-width:991px) { - .checkout-step { - padding-top: 15px; - } -} - -@media (min-width:768px) and (max-width:991px) { - .checkout-step { - padding-top: 20px; - } -} - -@media (min-width:1200px) { - .checkout-step { - padding-right: 20px; - } -} - -.checkout-step p { - line-height: 1.429; -} - -.checkout-step__header { - font-size: 20px; - color: #000; - margin-bottom: 10px; - position: relative; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.checkout-step__header:after { - font-size: 6px; - position: absolute; - right: 0; - bottom: 15px; -} - -@media (min-width:768px) { - .checkout-step__header:after { - display: none; - } -} - -.checkout-step__header img { - margin-right: 10px; -} - -.checkout-step__header strong { - font-size: 12px; - font-weight: 700; - color: #004a99; - text-transform: uppercase; - line-height: 1; - display: block; - margin: 5px 0; -} - -@media (max-width:767px) { - .checkout-step__content { - padding-bottom: 15px; - } -} - -@media (min-width:768px) { - .checkout-step__content { - display: block; - } -} - -.payment-method__group.disabled .payment-method__select__option { - opacity: 30%; -} - -.payment-method__group.disabled .payment-method__select__option:hover { - cursor: initial; - border-color: #e8e8e8; -} - -.payment-method__message { - color: #7f7f7f; - font-size: 14px; - font-style: italic; - padding: 10px 30px; -} - -.payment-method__message p { - font-size: inherit; -} - -.payment-method__select { - margin-top: 28px; -} - -@media (max-width:767px) { - .payment-method__select { - margin-top: 8px; - } -} - -.payment-method__select__option { - min-height: 90px; - border: 1px solid #e8e8e8; - border-radius: 3px; - font-weight: 600; - font-size: 18px; - padding: 20px 40px 20px 30px; - margin-top: 10px; - margin-bottom: 0; - transition: border-color .3s; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.payment-method__select__option:hover { - cursor: pointer; - border-color: #004a99; -} - -.payment-method__select__option .description { - display: block; - font-size: 14px; - font-weight: 400; - color: #7f7f7f; - margin-top: 5px; -} - -.payment-method__select__option i { - font-size: 30px; - padding-right: 20px; -} - -.payment-method__select__option i.icon-lease { - font-size: 16px; -} - -.payment-method__select__option .price { - margin-left: auto; - padding-left: 20px; - font-size: 14px; -} - -.payment-method__select__option .price .discount { - font-size: 12px; - font-weight: 300; - text-decoration: line-through; - color: #7f7f7f; - margin-right: 10px; -} - -.payment-method__select__option .monthly { - font-size: 10px; - line-height: 11px; - white-space: nowrap; - margin-left: 1px; -} - -.payment-method__select__option .tooltip-finance-rates { - padding-left: 4px; - bottom: 0; -} - -.payment-method__select input[type="radio"]:checked + label { - border-color: #004a99; -} - -.payment-method-options { - margin-top: 40px; -} - -@media (max-width:767px) { - .payment-method-options { - margin: 30px 0 15px; - } -} - -@media (min-width:768px) and (max-width:991px) { - .payment-method-options { - margin: 30px 0 25px; - } -} - -.payment-method__options__title { - color: #7f7f7f; - padding-bottom: 4px; - border-bottom: 1px solid #e8e8e8; -} - -.payment-method__options__title i { - color: #7f7f7f; - margin-left: 6px; -} - -.payment-method__options__list { - color: #e8e8e8; -} - -.payment-method__options__list li { - padding: 15px 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.payment-method__options__list li.is-active { - color: #7f7f7f; -} - -.payment-method__options__list li i { - font-size: 25px; - margin-right: 20px; - -webkit-flex: 0 0 30px; - -ms-flex: 0 0 30px; - flex: 0 0 30px; -} - -.payment-method__options__list li i.icon-lease { - font-size: 15px; -} - -.payment-method__options__list li span { - font-size: 14px; -} - -.icon-dealer { - font-size: 20px; -} - -.title--uppercase { - text-transform: uppercase; - font-weight: 600; - line-height: 1.4; - letter-spacing: 1.4px; - font-size: 14px; -} - -.cart-crosssell { - overflow: hidden; - margin-top: 45px; -} - -.cart-crosssell h3 { - font-size: 24px; - margin: 0; -} - -.cart-crosssell__header { - margin-bottom: 35px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.cart-crosssell__header a { - font-weight: 600; -} - -.cart-crosssell__header a:before { - font-size: 6px; - float: right; - margin: 6px 0 0 10px; -} - -.checkout-crosssell { - margin-top: 45px; - overflow: hidden; -} - -.checkout-crosssell h3 { - font-size: 24px; - font-weight: 700; - max-width: 370px; - margin-top: 0; -} - -.cms-home-bf .page-main { - overflow: hidden; -} - -.faq-page-title { - font-size: 40px; - font-weight: 700; - margin-bottom: 59px; -} - -.faq-mobile-back-button { - display: inline-block; - margin-top: 30px; - font-size: 11px; - cursor: pointer; -} - -.faq-mobile-back-button .ga-icon, -.faq-mobile-back-button .knowledge-base__most-viewed a { - font-size: 9px; - margin-right: 6px; -} - -.faq-sidebar { - z-index: 999; - user-select: none; -} - -.faq-sidebar--bottom { - position: relative; -} - -.faq-sidebar--fixed { - position: fixed; - width: calc(1570px / 4); - padding-right: 30px; -} - -@media (max-width:1599px) { - .faq-sidebar--fixed { - width: calc(1170px / 4); - } -} - -@media (max-width:1199px) { - .faq-sidebar--fixed { - width: calc(970px / 4); - } -} - -@media (max-width:991px) { - .faq-sidebar--fixed { - width: calc(750px / 3); - } -} - -.faq-sidebar .faq-sidebar__title { - height: 77px; -} - -.faq-sidebar .faq-sidebar__title h3 { - margin: 0; - font-weight: normal; - line-height: 78px; -} - -.faq-sidebar ul { - margin-left: 0; - list-style: none; -} - -.faq-sidebar .faq-sidebar__category { - font-size: 20px; - border-top: 1px solid #e8e8e8; - padding: 20px 0; -} - -.faq-sidebar .faq-sidebar__category--active .faq-sidebar__category__title { - color: #004a99; -} - -.faq-sidebar .faq-sidebar__category--toggled .faq-sidebar__category__chevron { - transform: rotate(180deg); -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__header { - cursor: pointer; - position: relative; -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__title { - font-size: 18px; -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon { - margin: 0 6px 0 10px; - font-size: 25px; - line-height: 1; - min-width: 30px; -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon.icon-leasing, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon.icon-lease { - font-size: 16px; -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon.icon-ebike--yes, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon.tile-icon[data-type="pim_productebike"].tile-icon--Y, -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon.tile-icon[data-type="pim_productebike"].tile-icon--ja { - font-size: 18px; -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__icon.icon-mail { - font-size: 22px; -} - -.faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron { - position: absolute; - font-size: 6px; - right: 0; - top: 10px; - transition: transform .25s cubic-bezier(.25, .1, .25, 1); -} - -.faq-sidebar .faq-sidebar__subcategories { - height: 0; - overflow: hidden; - transition: height .25s cubic-bezier(.25, .1, .25, 1); -} - -.faq-sidebar .faq-sidebar__subcategory { - cursor: pointer; - margin: 0 0 15px 52px; - font-size: 1rem; -} - -.faq-sidebar .faq-sidebar__subcategory--active { - color: #004a99; -} - -.faq-sidebar .faq-sidebar__subcategory:first-child { - margin-top: 15px; -} - -.faq-sidebar .faq-sidebar__subcategory:last-child { - margin-bottom: 0; -} - -.faq-component { - min-height: 100vh; -} - -.faq-items .faq-items__category-title { - border-bottom: 1px solid #e8e8e8; - line-height: 78px; - height: 78px; -} - -.faq-items .faq-items__category-title h3 { - display: inline-block; - margin: 0; - font-weight: normal; -} - -.faq-items .faq-items__category-title .ga-icon, -.faq-items .faq-items__category-title .knowledge-base__most-viewed a { - display: inline-block; - font-size: 30px; - padding: 0 10px; -} - -.faq-items .faq-items__subcategory { - border-bottom: 1px solid #e8e8e8; - margin-bottom: 45px; -} - -.faq-items .faq-items__subcategory-title { - margin: 28px 0 15px; - font-size: 12px; - color: #004a99; -} - -.faq-items .faq-item { - border-bottom: 1px solid #e8e8e8; -} - -.faq-items .faq-item:last-child { - border: none; -} - -.faq-items .faq-item--toggled .faq-item__header .ga-icon, -.faq-items .faq-item--toggled .faq-item__header .knowledge-base__most-viewed a { - transform: rotate(180deg); -} - -.faq-items .faq-item .faq-item__header { - cursor: pointer; - margin: 20px 0; - user-select: none; - position: relative; -} - -.faq-items .faq-item .faq-item__header h1, -.faq-items .faq-item .faq-item__header h4 { - display: inline-block; - margin: 0; - line-height: 24px; - font-weight: 400; - font-size: 16px; -} - -.faq-items .faq-item .faq-item__header .ga-icon, -.faq-items .faq-item .faq-item__header .knowledge-base__most-viewed a { - font-size: 5px; - position: relative; - top: -2px; - height: 20px; - line-height: 20px; - margin-left: 4px; - transform-origin: center; - transition: transform .25s cubic-bezier(.25, .1, .25, 1); -} - -.faq-items .faq-item .faq-item__content { - height: 0; - overflow: hidden; - transition: height .25s cubic-bezier(.25, .1, .25, 1); -} - -.faq-items .faq-item .faq-item__content p { - color: #7f7f7f; - margin: 0 0 20px; -} - -.faq-items .faq-item .faq-item__feedback { - color: #7f7f7f; - padding-bottom: 20px; -} - -.faq-items .faq-item .faq-item__feedback p { - margin-bottom: 20px; -} - -.faq-items .faq-item .faq-item__feedback .btn { - margin-right: 15px; -} - -.faq-items .faq-item .faq-item__feedback .btn.btn-feedback-no { - background: #f2f2f2; - color: black; - border-color: #f2f2f2; -} - -.faq-items .faq-item .faq-item__feedback .faq-item__feedback__response { - display: inline-block; - font-size: 12px; - font-weight: bold; - color: #004a99; - margin-top: 9px; - white-space: nowrap; -} - -.faq-items .faq-item .faq-item__feedback .faq-item__feedback__response a { - color: #004a99; - cursor: pointer; -} - -.faq-items .faq-item .faq-item__feedback .faq-item__feedback__response .ga-icon, -.faq-items .faq-item .faq-item__feedback .faq-item__feedback__response .knowledge-base__most-viewed a { - font-size: 9px; - margin-left: 5px; -} - -.faq-landing .faq-landing-categories { - display: -ms-flexbox; - display: flex; - flex-wrap: wrap; -} - -.faq-landing .faq-landing-categories__mobile-title { - font-weight: normal; - margin-bottom: 30px; -} - -.faq-landing .faq-landing-category { - height: 100%; - display: flex; - flex-direction: column; -} - -.faq-landing .faq-landing-category .faq-landing-category__header h4 { - font-size: 20px; - font-weight: 400; - margin: 0; -} - -.faq-landing .faq-landing-category .faq-landing-category__header h4 .ga-icon, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .knowledge-base__most-viewed a { - text-align: center; - font-size: 28px; - width: 40px; -} - -.faq-landing .faq-landing-category .faq-landing-category__header h4 .ga-icon.icon-leasing, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .ga-icon.icon-lease, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .knowledge-base__most-viewed a.icon-leasing { - font-size: 18px; -} - -.faq-landing .faq-landing-category .faq-landing-category__header h4 .ga-icon.icon-ebike--yes, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .knowledge-base__most-viewed a.icon-ebike--yes, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .ga-icon.tile-icon[data-type="pim_productebike"].tile-icon--Y, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .ga-icon.tile-icon[data-type="pim_productebike"].tile-icon--ja { - font-size: 20px; -} - -.faq-landing .faq-landing-category .faq-landing-category__header h4 .icon-chevron-right, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .side-navigation__apply, -.faq-landing .faq-landing-category .faq-landing-category__header h4 .knowledge-base__most-viewed a, -.faq-landing .faq-landing-category .faq-landing-category__header h4 #service-tile .btn { - display: none; - font-size: 8px; - width: 8px; - margin-left: 5px; - vertical-align: middle; -} - -@media (max-width:767px) { - .faq-landing .faq-landing-category .faq-landing-category__header h4 .icon-chevron-right, - .faq-landing .faq-landing-category .faq-landing-category__header h4 .side-navigation__apply, - .faq-landing .faq-landing-category .faq-landing-category__header h4 .knowledge-base__most-viewed a, - .faq-landing .faq-landing-category .faq-landing-category__header h4 #service-tile .btn { - display: inline-block; - } -} - -.faq-landing .faq-landing-category .faq-landing-category__items { - margin: 20px 0 30px 45px; -} - -.faq-landing .faq-landing-category .faq-landing-category__item { - margin-bottom: 15px; - font-size: 1rem; -} - -.faq-landing .faq-landing-category .faq-landing-category__item a { - color: #7f7f7f; -} - -.faq-landing .faq-landing-category .faq-landing-category__item a:hover { - color: black; -} - -.faq-landing .faq-landing-category .faq-landing-category__all-questions { - display: block; - font-size: 1rem; - color: #004a99; - margin: auto 0 58px 45px; - font-weight: 600; -} - -.faq-landing .faq-landing-category .faq-landing-category__all-questions .ga-icon, -.faq-landing .faq-landing-category .faq-landing-category__all-questions .knowledge-base__most-viewed a { - margin-left: 5px; - font-size: 11px; -} - -.faq-search { - position: relative; - margin: 20px 0 36px; -} - -.faq-search .ga-icon, -.faq-search .knowledge-base__most-viewed a { - position: absolute; - top: 7px; - font-size: 20px; -} - -.faq-search input { - padding: 12px 0 12px 40px; - border-bottom: 1px solid #7f7f7f; - width: 100%; - font-size: 1rem; - border-radius: 0; -} - -.faq-search__results { - position: absolute; - width: 100%; - background-color: #fff; - z-index: 1; - overflow-y: auto; -} - -.faq-search__results li { - list-style: none; - margin-bottom: 14px; -} - -.faq-search__content { - margin: 0 20px; -} - -.faq-search__header { - margin-top: 14px; - margin-bottom: 20px; - font-size: 12px; - font-weight: bold; - line-height: 1.17; - letter-spacing: 1.4px; - color: #004a99; - text-transform: uppercase; -} - -.faq-search--active { - z-index: 1050; - width: calc(100% + 40px); - left: -20px; - padding: 0 20px; - background: #fff; -} - -.faq-search--active .faq-search__results { - left: 0; -} - -body.faq-index-index .page-main, -body.faq-index-view .page-main { - padding: 0; -} - -@media (max-width:991px) { - .faq-page-title { - margin-bottom: 39px; - } -} - -@media (max-width:767px) { - .faq-page-title { - font-size: 24px; - margin-bottom: 0; - } - - .faq-search { - margin-bottom: 15px; - } - - .faq-items .faq-items__category-title { - font-size: 20px; - } - - .faq-items .faq-item .faq-item__header { - font-size: 14px; - margin: 10px 0; - } - - .faq-sidebar .faq-sidebar__subcategory--active { - color: inherit; - } - - .faq-landing .faq-landing-category { - padding: 20px 0; - border-top: 1px solid #e8e8e8; - } - - .faq-landing .faq-landing-category .faq-landing-category__header h4 { - font-size: 16px; - } -} - -#compare-overlay { - position: absolute; - top: 0; - left: 0; - width: 100%; - z-index: 900; - padding-bottom: 60px; -} - -@media (max-width:991px) { - #compare-overlay > .container { - width: 100%; - } -} - -#compare-overlay .title { - font-weight: 600; - font-size: 24px; - margin: 0; - line-height: 90px; - display: inline-block; -} - -@media (max-width:767px) { - #compare-overlay .title { - line-height: 58px; - font-size: 20px; - } -} - -#compare-overlay .table-caption { - line-height: 90px; -} - -@media (max-width:767px) { - #compare-overlay .table-caption { - line-height: 48px; - position: fixed; - top: 0; - left: 15px; - width: 100vw; - } - - #compare-overlay .table-caption.mobile-width { - min-width: 320px; - } -} - -#compare-overlay .table-caption .compare--header-container { - position: -webkit-sticky; - position: sticky; - right: 8px; - float: right; -} - -#compare-overlay .table-caption .compare--header-btn { - position: relative; - float: right; - font-size: 20px; - padding-left: 30px; -} - -#compare-overlay .table-caption .compare--header-btn:hover { - cursor: pointer; - color: #004a99; -} - -@media (max-width:767px) { - #compare-overlay .table-caption .compare--header-btn { - margin: 14px 0 -14px 12px; - padding-left: 0; - } -} - -#compare-overlay .table-caption .compare--header-btn span { - padding-left: 8px; - font-size: 15px; - vertical-align: middle; -} - -#compare-overlay .table-caption .compare--header-btn span.ga-icon, -#compare-overlay .table-caption .compare--header-btn span.knowledge-base__most-viewed a { - font-size: 20px; -} - -@media (max-width:767px) { - #compare-overlay .table-caption .compare--header-btn span { - padding-left: 0; - } - - #compare-overlay .table-caption .compare--header-btn span.ga-icon, - #compare-overlay .table-caption .compare--header-btn span.knowledge-base__most-viewed a { - position: absolute; - top: -18px; - left: 50%; - transform: translateX(-50%); - } - - #compare-overlay .table-caption .compare--header-btn span.compare--header-label { - font-size: 11px; - } -} - -#product-comparison, -.table-comparison { - min-width: 940px; -} - -#product-comparison .no-padding, -.table-comparison .no-padding { - padding: 0; -} - -@media (max-width:767px) { - #product-comparison, - .table-comparison { - min-width: 530px; - margin-top: 60px; - } - - #product-comparison.mobile-width, - .table-comparison.mobile-width { - min-width: 320px; - } -} - -#product-comparison .product-item, -.table-comparison .product-item { - margin-bottom: 0; - position: relative; -} - -#product-comparison .product-item-info:hover, -.table-comparison .product-item-info:hover { - transform: none; -} - -#product-comparison .product-item-remove, -.table-comparison .product-item-remove { - position: absolute; - top: 17px; - right: 17px; - cursor: pointer; -} - -#product-comparison .product-item-cta, -.table-comparison .product-item-cta { - width: 100%; - float: none; -} - -#product-comparison .product-item-cta .btn, -.table-comparison .product-item-cta .btn { - font-size: 11px; - padding: 10px; - line-height: 0.95; -} - -@media (max-width:991px) { - #product-comparison .product-item-info, - .table-comparison .product-item-info { - padding: 15px; - min-height: auto; - } - - #product-comparison .product-item-cta, - .table-comparison .product-item-cta { - margin-top: 10px; - } -} - -@media (min-width:768px) and (max-width:1199px) { - #product-comparison .product-item-cta .btn, - .table-comparison .product-item-cta .btn { - padding: 12px 10px; - } -} - -#product-comparison .thead.thead-top, -.table-comparison .thead.thead-top { - background: #f2f2f2; - margin-bottom: 40px; -} - -#product-comparison .thead.compare__category-header, -.table-comparison .thead.compare__category-header { - background: #fff; - border-bottom: 1px solid #f2f2f2; - top: 120px; - left: 0; - position: -webkit-sticky; - position: sticky; -} - -#product-comparison .thead.compare__category-header.differences, -.table-comparison .thead.compare__category-header.differences { - height: 0; - background: none; - border: none; - margin-top: 0; - z-index: 2; -} - -#product-comparison .thead.compare__category-header.differences .th, -.table-comparison .thead.compare__category-header.differences .th, -#product-comparison .thead.compare__category-header.differences .tr, -.table-comparison .thead.compare__category-header.differences .tr { - background: transparent; -} - -@media (max-width:767px) { - #product-comparison .thead.compare__category-header, - .table-comparison .thead.compare__category-header { - width: 100vw; - top: 120px; - } -} - -#product-comparison .thead-overlay, -.table-comparison .thead-overlay { - background: #f2f2f2; - height: 120px; - width: 100%; - top: 0; - margin-bottom: -120px; - position: -webkit-sticky; - position: sticky; - z-index: 2; - visibility: hidden; - opacity: 0; - overflow: hidden; - transition: opacity 200ms; -} - -@media (max-width:767px) { - #product-comparison .thead-overlay, - .table-comparison .thead-overlay { - height: 120px; - margin-bottom: -120px; - } -} - -#product-comparison .thead-overlay .tr, -.table-comparison .thead-overlay .tr { - height: 100%; -} - -#product-comparison .thead-overlay .tr .th, -.table-comparison .thead-overlay .tr .th { - padding: 20px; -} - -#product-comparison .thead-overlay.show, -.table-comparison .thead-overlay.show { - visibility: visible; - opacity: 1; -} - -#product-comparison .thead-overlay .product-item, -.table-comparison .thead-overlay .product-item { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -#product-comparison .thead-overlay .product-item-cta, -.table-comparison .thead-overlay .product-item-cta { - margin-top: 10px; -} - -#product-comparison .thead-overlay .product-item-cta .btn, -.table-comparison .thead-overlay .product-item-cta .btn { - width: 100%; -} - -#product-comparison .thead-overlay .product-item-info, -.table-comparison .thead-overlay .product-item-info { - padding: 0; -} - -#product-comparison .thead-overlay .product-item-details, -.table-comparison .thead-overlay .product-item-details { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; -} - -#product-comparison .thead-overlay .product-item-details .flex-start, -.table-comparison .thead-overlay .product-item-details .flex-start { - order: 2; - -webkit-align-self: center; - -ms-align-self: center; - align-self: center; -} - -#product-comparison .thead-overlay .product-item-photo, -.table-comparison .thead-overlay .product-item-photo { - order: 1; - -webkit-flex-shrink: 2.5; - -ms-flex-shrink: 2.5; - flex-shrink: 2.5; -} - -#product-comparison .thead-overlay .product-item-name, -.table-comparison .thead-overlay .product-item-name { - font-size: 12px; - margin-bottom: 2px; -} - -#product-comparison .thead-overlay .product-image-container, -.table-comparison .thead-overlay .product-image-container { - padding: 0; - margin-right: 10px; -} - -#product-comparison .thead-overlay .product-image-container .product-image-photo, -.table-comparison .thead-overlay .product-image-container .product-image-photo { - max-height: 40px; - width: auto; -} - -@media (max-width:767px) { - #product-comparison .thead-overlay .product-image-container, - .table-comparison .thead-overlay .product-image-container { - display: none; - } -} - -#product-comparison .thead-overlay .product-price-wrapper, -.table-comparison .thead-overlay .product-price-wrapper { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -#product-comparison .thead-overlay .product-price-wrapper .price-final_price, -.table-comparison .thead-overlay .product-price-wrapper .price-final_price { - font-size: 14px; - margin: 0 5px 0 0; -} - -@media (max-width:1599px) { - #product-comparison .thead-overlay .product-price-wrapper, - .table-comparison .thead-overlay .product-price-wrapper { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-align-items: flex-start; - -ms-align-items: flex-start; - align-items: flex-start; - } -} - -#product-comparison .thead .tr, -.table-comparison .thead .tr { - border-bottom: none; - background-color: #f2f2f2; -} - -#product-comparison .thead .th, -.table-comparison .thead .th { - background-color: #f2f2f2; - font-weight: normal; -} - -#product-comparison .tbody, -.table-comparison .tbody { - border: 1px solid #f2f2f2; - border-top: none; - margin-bottom: 35px; -} - -#product-comparison .tbody:last-of-type, -.table-comparison .tbody:last-of-type { - margin-bottom: 0; -} - -#product-comparison .tbody > .tr, -.table-comparison .tbody > .tr { - max-height: 300px; - line-height: 1.43; - border-bottom: none; - transition: all .3s; -} - -#product-comparison .tbody > .tr.hidden-attribute, -.table-comparison .tbody > .tr.hidden-attribute { - max-height: 0; - opacity: 0; -} - -@media (max-width:767px) { - #product-comparison .tbody > .tr.attribute_value, - .table-comparison .tbody > .tr.attribute_value { - background-color: #f2f2f2; - } -} - -@media (min-width:768px) { - #product-comparison .tbody > .tr:nth-of-type(2n):not(.compare__category-header), - .table-comparison .tbody > .tr:nth-of-type(2n):not(.compare__category-header) { - background-color: #f2f2f2; - } -} - -#product-comparison .tbody > .tr .ga-icon, -.table-comparison .tbody > .tr .ga-icon, -#product-comparison .tbody > .tr .knowledge-base__most-viewed a, -.table-comparison .tbody > .tr .knowledge-base__most-viewed a { - margin-left: 5px; -} - -#product-comparison .tbody > .tr .ga-icon.icon-check, -.table-comparison .tbody > .tr .ga-icon.icon-check, -#product-comparison .tbody > .tr .knowledge-base__most-viewed a.icon-check, -.table-comparison .tbody > .tr .knowledge-base__most-viewed a.icon-check { - margin-left: 0; - font-size: 10px; - color: #606060; -} - -#product-comparison .tbody .td, -.table-comparison .tbody .td, -#product-comparison .tbody .th, -.table-comparison .tbody .th { - font-size: 14px; - padding: 0; -} - -@media (max-width:767px) { - #product-comparison .tbody .td, - .table-comparison .tbody .td, - #product-comparison .tbody .th, - .table-comparison .tbody .th { - font-size: 12px; - -webkit-text-size-adjust: none; - } -} - -#product-comparison .tbody .td, -.table-comparison .tbody .td { - padding: 20px 0; -} - -@media (max-width:767px) { - #product-comparison .tbody .td, - .table-comparison .tbody .td { - padding: 14px 0; - } -} - -#product-comparison .tbody .td > span, -.table-comparison .tbody .td > span, -#product-comparison .tbody .td > div, -.table-comparison .tbody .td > div { - padding: 0 20px; -} - -#product-comparison .tbody .th.th-full-width, -.table-comparison .tbody .th.th-full-width { - padding: 20px 0; -} - -@media (max-width:767px) { - #product-comparison .tbody .th.th-full-width, - .table-comparison .tbody .th.th-full-width { - padding: 14px 0; - } -} - -#product-comparison .tbody .th.th-full-width > span, -.table-comparison .tbody .th.th-full-width > span { - left: 0; - right: 0; - position: -webkit-sticky; - position: sticky; -} - -#product-comparison .tr, -.table-comparison .tr { - display: flex; -} - -#product-comparison .tr .th, -.table-comparison .tr .th, -#product-comparison .tr .td, -.table-comparison .tr .td { - width: 25%; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -#product-comparison .tr .th .value, -.table-comparison .tr .th .value, -#product-comparison .tr .td .value, -.table-comparison .tr .td .value { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -@media (max-width:767px) { - #product-comparison .tr .th, - .table-comparison .tr .th, - #product-comparison .tr .td, - .table-comparison .tr .td { - width: 33.33333333%; - } -} - -#product-comparison .tr .th, -.table-comparison .tr .th { - flex-grow: 1; - top: 0; - position: relative; -} - -#product-comparison .tr .th-full-width, -.table-comparison .tr .th-full-width { - width: 100%; -} - -#product-comparison .tr .th > span, -.table-comparison .tr .th > span { - padding: 0 20px; -} - -@media (min-width:768px) { - #product-comparison .tr .th:not(:last-of-type), - .table-comparison .tr .th:not(:last-of-type) { - border-right: 1px solid rgba(0,0,0,0.1); - } -} - -#product-comparison .compare_parent-title, -.table-comparison .compare_parent-title { - display: block; - font-size: 24px; - font-weight: 600; - line-height: 40px; - padding: 0 20px; -} - -@media (max-width:767px) { - #product-comparison .compare_parent-title, - .table-comparison .compare_parent-title { - position: sticky; - left: 0; - width: 100vw; - } -} - -#product-comparison .compare__category-header, -.table-comparison .compare__category-header { - z-index: 1; -} - -#product-comparison .compare__category-header .attribute-header_title, -.table-comparison .compare__category-header .attribute-header_title { - color: #004a99; - font-weight: 600; - text-transform: uppercase; - letter-spacing: 1.5px; - font-size: 12px; -} - -@media (max-width:767px) { - #product-comparison .compare__category-header .attribute-header_title, - .table-comparison .compare__category-header .attribute-header_title { - font-size: 10px; - } -} - -#product-comparison .compare__category-header .tr, -.table-comparison .compare__category-header .tr { - line-height: 45px; -} - -#product-comparison .compare__category-header .th, -.table-comparison .compare__category-header .th { - background-color: #fff; -} - -#product-comparison .compare__category-header .all-specs, -.table-comparison .compare__category-header .all-specs { - position: absolute; - right: 0; -} - -#product-comparison .compare__category-header .all-specs label, -.table-comparison .compare__category-header .all-specs label { - color: #7f7f7f; - font-size: 14px; - cursor: pointer; -} - -@media (max-width:767px) { - #product-comparison .compare__category-header .all-specs label, - .table-comparison .compare__category-header .all-specs label { - font-size: 12px; - } -} - -#product-comparison .compare__category-header .all-specs label span, -.table-comparison .compare__category-header .all-specs label span { - float: right; - margin-left: 10px; -} - -#product-comparison .compare__category-header .all-specs input + label .checker, -.table-comparison .compare__category-header .all-specs input + label .checker { - margin: 14px 0 0 10px; -} - -#product-comparison .attribute-title, -.table-comparison .attribute-title { - font-weight: 600; -} - -#product-comparison .compare-product-variations, -.table-comparison .compare-product-variations { - margin-left: 0; -} - -#product-comparison .compare-product-variations-item, -.table-comparison .compare-product-variations-item { - margin-bottom: 20px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -#product-comparison .compare-product-variations-item .battery__text, -.table-comparison .compare-product-variations-item .battery__text { - background: none; -} - -#product-comparison .compare-product-variations-item .battery__text:before, -.table-comparison .compare-product-variations-item .battery__text:before { - margin-right: 0; -} - -#product-comparison .compare-product-variations-item:last-child, -.table-comparison .compare-product-variations-item:last-child { - margin-bottom: 0; -} - -#product-comparison .compare-product-variations-color, -.table-comparison .compare-product-variations-color { - display: inline-block; - width: 16px; - height: 16px; - border: 0; - border-radius: 16px; - margin: 0 20px -2px 0; -} - -#product-comparison .compare-product-variations-color[option-label="255,255,255"], -.table-comparison .compare-product-variations-color[option-label="255,255,255"] { - border: 1px solid #bababa; -} - -#product-comparison .compare-product-variations-label, -.table-comparison .compare-product-variations-label { - margin-left: 35px; - text-transform: capitalize; -} - -#compare-mail .close { - padding-right: 15px; -} - -#compare-mail .title { - font-size: 24px; - font-weight: 700; - border: 0; -} - -#compare-mail a#compare-mail-submit { - min-width: 210px; - height: auto; - margin-top: 10px; -} - -#compare-mail input[type="text"] { - margin-top: 6px; -} - -@media (max-width:767px) { - .cart-container .container { - padding: 0; - } -} - -.cart__header { - font-size: 24px; - font-weight: 600; - margin: 40px 0 18px; -} - -@media (max-width:767px) { - .cart__header { - border-bottom: 1px solid #e8e8e8; - padding-bottom: 15px; - margin: 15px 15px 0 15px; - } -} - -.cart.table-wrapper { - font-size: 1rem; -} - -.cart.table-wrapper .price-final_price { - margin: 0; -} - -.cart.table-wrapper .items { - border: none; - margin: 0; -} - -.cart.table-wrapper .items thead { - color: #7f7f7f; -} - -.cart.table-wrapper .items thead .col { - border: none; - font-weight: normal; -} - -.cart.table-wrapper .items thead tr th { - padding: 0 0 12px; -} - -.cart.table-wrapper .items tbody { - border: none; -} - -.cart.table-wrapper .items .icon-info { - cursor: pointer; -} - -.cart.table-wrapper .items .item-info { - border: none; -} - -.cart.table-wrapper .items .item-info .field { - margin-top: 0; -} - -.cart.table-wrapper .items .item-info .col { - border: 0; - border-top: 1px solid #e8e8e8; - padding: 42px 0 35px 0; -} - -.cart.table-wrapper .items .item-info .col.item { - padding-top: 0; -} - -.cart.table-wrapper .items .item-info .col.item:before, -.cart.table-wrapper .items .item-info .col.item:after { - content: " "; - display: table; -} - -.cart.table-wrapper .items .item-info .col.item:after { - clear: both; -} - -.cart.table-wrapper .items .item-info .col.description .qty-read-only input { - position: relative; - text-align: left; -} - -.cart.table-wrapper .items .product-item-photo img { - height: auto; - width: 100%; - margin-top: 25px; -} - -.cart.table-wrapper .item-info-top { - max-width: 320px; -} - -.cart.table-wrapper .item-info-top .actions-toolbar { - margin: 0; -} - -.cart.table-wrapper .item-info-top .actions-toolbar .product-item-name { - display: none; -} - -.cart.table-wrapper .item-info-top .actions-toolbar .action { - background-color: #f2f2f2; - width: 40%; - padding: 7px 0 6px 0; - text-align: center; - font-weight: 600; - display: inline-block; - transition: all 250ms; -} - -.cart.table-wrapper .item-info-top .actions-toolbar .action:hover, -.cart.table-wrapper .item-info-top .actions-toolbar .action:focus, -.cart.table-wrapper .item-info-top .actions-toolbar .action:active { - background-color: #e8e8e8; -} - -.cart.table-wrapper .product-item-details tr { - border-bottom: 0; -} - -.cart.table-wrapper .product-item-details th, -.cart.table-wrapper .product-item-details td { - padding: 0 0 14px; -} - -.cart.table-wrapper .product-item-details th { - font-weight: normal; - color: #7f7f7f; -} - -.cart.table-wrapper .product-item-details td { - font-weight: 600; -} - -.cart.table-wrapper .product-item-details .swatch-option.color { - height: 16px; - width: 16px; - min-width: 0; - cursor: default; - border-radius: 16px; - border: 1px solid rgba(0,0,0,0.2); -} - -.cart.table-wrapper .product-item-details .swatch-option.color.color-gloss { - position: relative; -} - -.cart.table-wrapper .product-item-details .swatch-option.color:hover { - outline: none; -} - -.cart.table-wrapper .product-item-details .item-options { - width: 100%; - margin: 0; -} - -.cart.table-wrapper .product-item-details .item-options--custom thead th, -.cart.table-wrapper .product-item-details .item-options--custom thead td { - font-size: 1rem; - font-weight: 600; - color: #000; -} - -.cart.table-wrapper .product-item-details .item-options--custom td { - color: #7f7f7f; - text-align: right; -} - -.cart.table-wrapper .product-item-details .item-options .price-final_price { - display: flex; - flex-wrap: wrap; - flex-direction: row; - justify-content: flex-end; -} - -.cart.table-wrapper .product-item-details .item-options .swatch-option { - position: relative; - height: 16px; - width: 16px; - transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - -moz-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - -o-transform: rotate(-45deg); -} - -.cart.table-wrapper .product-item-details .item-options .swatch-option--secondary { - position: absolute; - width: 16px; - height: 7px; - bottom: 0; - right: 0; - border-bottom-left-radius: 16px; - border-bottom-right-radius: 16px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.cart.table-wrapper .product-item-details .item-options .old-price { - margin-right: 0; -} - -.cart.table-wrapper .product-item-details .item-options .old-price strong { - font-weight: normal; - font-size: 14px; -} - -.cart.table-wrapper .product-item-details .item-options .special-price { - order: 1; - margin-left: 10px; -} - -.cart.table-wrapper .product-item-details .item-discount { - font-weight: 600; - color: #004a99; - margin-bottom: 14px; -} - -.cart.table-wrapper .product-item-details .item-discount__amount { - float: right; -} - -.cart.table-wrapper .product-item-details .product-item__row { - display: flex; - justify-content: space-between; -} - -.cart.table-wrapper .product-item-details .product-item__subtotal { - border-top: 1px solid #000; - padding-top: 18px; - margin-top: 5px; -} - -.cart.table-wrapper .product-item-details .product-item__subtotal--price, -.cart.table-wrapper .product-item-details .product-item__subtotal--title { - font-size: 1rem; - font-weight: 600; -} - -.cart.table-wrapper .product-item-details .product-item__subtotal--price { - float: right; - text-align: right; -} - -.cart.table-wrapper .product-item-details .product-item__subtotal--small { - font-size: 14px; -} - -.cart.table-wrapper .product-item-details .product-item__subtotal--vat { - color: #7f7f7f; - white-space: nowrap; - padding-right: 10px; -} - -.cart.table-wrapper .product-item-details .product-item__subtotal--contains-description-label { - font-weight: 300; -} - -.cart.table-wrapper .product-item-details .price-bar__price-label { - margin-bottom: 6px; - margin-top: 0; -} - -.cart.table-wrapper .product-item-details .price-bar__price-label.link { - text-decoration: underline; - cursor: pointer; - margin-bottom: 20px; -} - -.cart.table-wrapper .product-item-details .delivery-labels { - margin-top: 12px; -} - -.cart.table-wrapper .product-item-details .product-item-name { - display: block; - font-size: 16px; - margin-bottom: 9px; -} - -@media (min-width:768px) { - .cart.table-wrapper { - border-bottom: 1px solid #000; - } - - .cart.table-wrapper .items .item-info .col.description { - padding-right: 15px; - } - - .cart.table-wrapper .product-item-details th, - .cart.table-wrapper .product-item-details td { - width: 50%; - } -} - -@media (min-width:768px) and (max-width:991px) { - .cart.table-wrapper .items .product-item-photo img { - width: 75%; - } - - .cart.table-wrapper .item-info-top .actions-toolbar .action { - display: block; - min-width: 150px; - margin-bottom: 10px; - } -} - -@media (max-width:767px) { - .cart.table-wrapper .items { - width: 100%; - } - - .cart.table-wrapper .items > thead > tr, - .cart.table-wrapper .items > tbody > tr { - display: block; - width: 100%; - } - - .cart.table-wrapper .items > thead { - display: none; - } - - .cart.table-wrapper .items tbody .item-info .col { - display: block; - border: 0; - padding: 0 15px; - } - - .cart.table-wrapper .items tbody .item-info .col.description, - .cart.table-wrapper .items tbody .item-info .col.options { - padding-top: 0; - } - - .cart.table-wrapper .items tbody .item-info .col.options { - background: #f2f2f2; - padding-top: 10px; - } - - .cart.table-wrapper .items tbody .item-info .col.item .product-item-photo img { - margin: 0; - } - - .cart.table-wrapper .item-info-top { - padding-top: 15px; - } - - .cart.table-wrapper .item-info-top:before, - .cart.table-wrapper .item-info-top:after { - content: " "; - display: table; - } - - .cart.table-wrapper .item-info-top:after { - clear: both; - } - - .cart.table-wrapper .item-info-top .product-item-photo, - .cart.table-wrapper .item-info-top .actions-toolbar { - float: left; - } - - .cart.table-wrapper .item-info-top .product-item-photo { - width: 110px; - } - - .cart.table-wrapper .item-info-top .actions-toolbar { - padding: 10px 0 0 20px; - margin-top: 0; - } - - .cart.table-wrapper .item-info-top .actions-toolbar .product-item-name { - display: block; - margin-bottom: 7px; - } - - .cart.table-wrapper .item-info-top .actions-toolbar .action { - width: 100%; - padding-right: 30px; - padding-left: 30px; - } - - .cart.table-wrapper .item-info-top .actions-toolbar .action-delete { - display: none; - } - - .cart.table-wrapper .product-item-details .item-options { - margin: 5px 0 0; - } - - .cart.table-wrapper .product-item-details .item-options th { - width: 130px; - } - - .cart.table-wrapper .product-item-details .product-item__subtotal { - border-color: #bababa; - } - - .cart.table-wrapper .product-item-details .product-item-name { - display: none; - } -} - -.cart-summary { - padding-top: 40px; -} - -.cart-summary:before, -.cart-summary:after { - content: " "; - display: table; -} - -.cart-summary:after { - clear: both; -} - -.cart-summary .cart-totals .data.table.totals { - border: none; - margin: 0; -} - -.cart-summary .cart-totals .data.table.totals tr { - border: none; -} - -.cart-summary .cart-totals .data.table.totals tr.sub, -.cart-summary .cart-totals .data.table.totals tr.totals-tax { - display: none; -} - -.cart-summary .cart-totals .data.table.totals th, -.cart-summary .cart-totals .data.table.totals td { - font-size: 16px; - font-weight: 600; - padding: 0; -} - -.cart-summary .cart-totals .data.table.totals .mark { - background-color: transparent; - border: none; -} - -.cart-summary .cart-totals .data.table.totals .mark--tax { - color: #7f7f7f; - font-size: 14px; - font-weight: normal; -} - -.cart-summary .cart-totals .data.table.totals .amount { - text-align: right; -} - -.cart-summary .cart-totals .data.table.totals .amount--small { - font-size: 14px; -} - -.cart-summary .cart-totals .data.table.totals .amount--small .price-label { - font-weight: 600; -} - -.cart-summary .cart-totals .data.table.totals .amount--contains-description-label .price-label { - font-weight: 300; -} - -@media (max-width:767px) { - .cart-summary { - background: #f2f2f2; - border: 0; - padding: 0 15px 15px; - } - - .cart-summary .cart-totals .data.table.totals { - border-top: 1px solid #000; - } - - .cart-summary .cart-totals .data.table.totals th, - .cart-summary .cart-totals .data.table.totals td { - font-size: 1rem; - } - - .cart-summary .cart-totals .data.table.totals .totals th, - .cart-summary .cart-totals .data.table.totals .totals td { - padding-top: 15px; - } -} - -@media (min-width:768px) { - .cart-actions__wrapper { - width: calc(100%/3); - float: right; - } -} - -@media (min-width:992px) { - .cart-actions__wrapper { - width: 25%; - } -} - -.cart.main.actions:before, -.cart.main.actions:after { - content: " "; - display: table; -} - -.cart.main.actions:after { - clear: both; -} - -.cart.main.actions .action { - width: 100%; - text-align: left; -} - -@media (min-width:768px) { - .cart.main.actions { - margin-top: 15px; - } -} - -@media (max-width:767px) { - .cart.main.actions { - background: #f2f2f2; - padding: 0 15px 20px; - } -} - -.box-actions, -.actions-toolbar { - margin-top: 40px; -} - -.box-actions:before, -.actions-toolbar:before, -.box-actions:after, -.actions-toolbar:after { - content: " "; - display: table; -} - -.box-actions:after, -.actions-toolbar:after { - clear: both; -} - -@media screen and (max-width:767px) { - .box-actions, - .actions-toolbar { - display: block; - } -} - -.box-actions .primary, -.actions-toolbar .primary, -.box-actions .secondary, -.actions-toolbar .secondary { - display: block; - float: left; - margin-right: 4px; -} - -form .box-actions .primary, -form .actions-toolbar .primary, -form .box-actions .secondary, -form .actions-toolbar .secondary { - margin-right: 4px; -} - -@media screen and (max-width:767px) { - .box-actions .primary, - .actions-toolbar .primary, - .box-actions .secondary, - .actions-toolbar .secondary { - text-align: center; - width: 100%; - } -} - -.account #maincontent { - padding-top: 40px; -} - -.account #maincontent .columns { - margin-top: 40px; -} - -@media (max-width:767px) { - .account #maincontent .columns { - margin-top: 20px; - } -} - -.account #maincontent .main { - padding-top: 15px; -} - -.account .form-address-edit .street { - margin-top: 0; -} - -.account .form-address-edit .street .field { - width: 50%; - float: left; -} - -.account .form-address-edit .street .field.housenumber { - padding-right: 15px; -} - -.account .form-address-edit .street .field.housenumber-addition { - padding-left: 15px; -} - -.account .form-address-edit select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - width: 100%; - height: 32px; - border-bottom: 1px solid #bababa; - background: #fff url('../images/icons/chevron-down.svg') no-repeat center right; - padding-right: 24px; - margin-top: 5px; - border-radius: 0; -} - -.ie11 .account .form-address-edit select { - background: none; -} - -.account .actions-toolbar, -.account .box-actions { - margin-top: 60px; -} - -.account .account-nav-toggle { - font-size: 1.125rem; - background-color: transparent; - margin: 0 auto; - display: none; - text-align: center; - cursor: pointer; -} - -.account .account-nav-toggle .icon, -.account .account-nav-toggle .account .form-wishlist-items li .product-item-actions a { - display: inline-block; - margin-left: 4px; - transition: transform .4s ease-in-out; - transform: rotate(0deg); -} - -@media (max-width:480px) { - .account .account-nav-toggle { - display: block; - } -} - -@media (max-width:480px) { - .account .account-nav-list { - max-height: 0px; - opacity: 0; - overflow: hidden; - transform-origin: top center; - transition: overflow 0s 1s linear,padding .8s .4s ease-in-out,max-height .6s .4s ease-in-out,opacity .4s ease-in-out; - padding-top: 0; - } -} - -.account .account-nav-toggle-checkbox:checked ~ .account-nav-toggle .icon, -.account .account-nav-toggle-checkbox:checked ~ .account-nav-toggle .account .form-wishlist-items li .product-item-actions a { - transform: rotate(180deg); -} - -@media screen and (max-width:480px) { - .account .account-nav-toggle-checkbox:checked ~ .account-nav-list { - max-height: 999px; - opacity: 1; - overflow: visible; - transition: overflow 0s 0s linear,padding .8s ease-in-out,max-height .6s ease-in-out,opacity .4s .4s ease-in-out; - padding-top: 12px; - } -} - -.account .main:before, -.account .main:after { - content: " "; - display: table; -} - -.account .main:after { - clear: both; -} - -@media screen and (max-width:480px) { - .account .main { - float: none; - } -} - -.account .main h3 { - margin-top: 0; -} - -.account .main h2, -.account .main legend, -.account .main .block-title { - font-size: 24px; - font-weight: 600; - border: 0; - margin: 0 0 20px; -} - -.account .main h2 span, -.account .main legend span, -.account .main .block-title span, -.account .main h2 strong, -.account .main legend strong, -.account .main .block-title strong { - font-weight: 600; -} - -.account .main h2:not(:first-child) { - margin-top: 45px; -} - -.account .main .label { - padding-left: 0; -} - -.account .main .actions { - float: right; - margin: -34px 0 0; -} - -@media screen and (max-width:767px) { - .account .main .actions { - float: none; - margin: 0; - text-align: center; - } -} - -@media screen and (max-width:767px) { - .account .main .actions a { - display: block; - } -} - -.account .main .actions a.print { - margin-left: 16px; -} - -@media screen and (max-width:767px) { - .account .main .actions a.print { - margin: 0; - } -} - -.account .main .control { - position: relative; -} - -.account .main .block-addresses-list ol { - list-style: none; -} - -.account .main .block-content .box { - margin-bottom: 15px; -} - -.account .main .block-order-details-view .block-content { - display: flex; - flex-wrap: wrap; -} - -.account .main .block-dashboard-info, -.account .main .block-favorite-dealer { - margin-top: 45px; -} - -.account .main .block-favorite-dealer h2 { - margin-bottom: 30px; -} - -.account .main .pager { - margin: 0; -} - -.account .main .pager .toolbar-amount { - display: block; - float: left; - margin: 0; - line-height: 30px; -} - -.account .main .pager .limiter { - float: right; -} - -.account .main .table-wrapper table { - border: none; -} - -.account .main .table-wrapper table thead { - text-transform: uppercase; - color: #004a99; - font-size: 10px; - font-weight: bold; - letter-spacing: 1.4px; -} - -.account .main .table-wrapper table thead tr { - border-bottom: 1px solid #e8e8e8; -} - -.account .main .table-wrapper table td, -.account .main .table-wrapper table th { - border: none; - padding-left: 0; -} - -@media (max-width:1199px) { - .account .main .table-wrapper table td, - .account .main .table-wrapper table th { - min-width: auto; - } -} - -.account .main .table-wrapper table td ul.items-qty, -.account .main .table-wrapper table th ul.items-qty { - list-style: none; - margin: 0; -} - -.account .main .table-wrapper table td dl.item-options, -.account .main .table-wrapper table th dl.item-options { - display: block; - margin-bottom: 0; - width: 100%; -} - -.account .main .table-wrapper table td dl.item-options dt, -.account .main .table-wrapper table th dl.item-options dt, -.account .main .table-wrapper table td dl.item-options dd, -.account .main .table-wrapper table th dl.item-options dd { - width: 50%; - display: inline-block; - float: left; -} - -@media (max-width:992px) { - .account .main .table-wrapper table td dl.item-options dt, - .account .main .table-wrapper table th dl.item-options dt, - .account .main .table-wrapper table td dl.item-options dd, - .account .main .table-wrapper table th dl.item-options dd { - width: 100%; - float: none; - } -} - -.account .main .table-wrapper table td.actions, -.account .main .table-wrapper table th.actions { - margin: 0; - text-align: right; -} - -.account .main .table-wrapper table td.actions a, -.account .main .table-wrapper table th.actions a { - padding: 6px 10px; -} - -.account .main .table-wrapper table td.actions a span, -.account .main .table-wrapper table th.actions a span { - display: none; -} - -.account .main .table-wrapper table td.actions a:after, -.account .main .table-wrapper table th.actions a:after { - font-family: 'Gazelle'; -} - -.account .main .table-wrapper table td.actions a:hover:after, -.account .main .table-wrapper table th.actions a:hover:after { - color: #004a99; -} - -.account .main .table-wrapper table td.actions a.order, -.account .main .table-wrapper table th.actions a.order { - border: none; -} - -.account .main .table-wrapper table td.actions a.order:after, -.account .main .table-wrapper table th.actions a.order:after { - content: '\e014'; -} - -.account .main .table-wrapper table td.actions a.view:after, -.account .main .table-wrapper table th.actions a.view:after { - content: '\e021'; -} - -.account .main .table-wrapper table td a { - text-decoration: underline; -} - -.account .main .table-wrapper table.table-order-items { - margin-bottom: 0; -} - -.account .main .table-wrapper table .mark { - background-color: transparent; -} - -.account .main .table-wrapper table.bike-overview { - font-size: 14px; - margin: 0; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.account .main .table-wrapper table.bike-overview tr { - border: none; -} - -.account .main .table-wrapper table.bike-overview tr:nth-child(odd) { - background: none; -} - -.account .main .table-wrapper table.bike-overview tr td { - border: none; - font-weight: 600; - padding: 20px 0; -} - -.account .main .table-wrapper table.bike-overview tr td:first-of-type { - width: 54%; - font-weight: 400; -} - -.account .main .table-wrapper table.bike-overview .color { - width: 16px; - height: 16px; - display: block; - border-radius: 50%; - border: 1px solid rgba(0,0,0,0.2); -} - -.account .sidebar ol { - margin: 0; - list-style: none; -} - -.account .sidebar ul { - margin: 0; - border-bottom: 0; -} - -.account .sidebar ul li { - font-weight: 600; - padding: 14px 0 14px 0; -} - -.account .sidebar ul li:last-of-type { - padding-bottom: 34px; -} - -.account .sidebar ul li a, -.account .sidebar ul li strong { - display: inline-block; - padding: 0; - text-overflow: ellipsis; -} - -.account .sidebar ul li a:hover, -.account .sidebar ul li strong:hover { - background-color: transparent; - color: #004a99; -} - -.account .sidebar ul li a:focus, -.account .sidebar ul li strong:focus { - background: none; -} - -.account .sidebar ul li.current strong { - color: #004a99; - border-bottom: 2px solid #004a99; - padding-bottom: 3px; -} - -.account .sidebar .actions-toolbar { - width: 100%; -} - -@media screen and (max-width:991px) { - .account .sidebar .actions-toolbar .secondary, - .account .sidebar .actions-toolbar .primary { - width: 100%; - margin: 4px 0; - } -} - -.account .sidebar .actions-toolbar .secondary a, -.account .sidebar .actions-toolbar .primary a, -.account .sidebar .actions-toolbar .secondary button, -.account .sidebar .actions-toolbar .primary button { - width: 100%; -} - -.account .sidebar .block { - margin-top: 27px; -} - -.account .sidebar .block:first-child { - margin-top: 0; -} - -.account .sidebar .block-title { - color: #000; - font-weight: 300; - font-size: 1.5rem; - margin-bottom: 15px; -} - -.account .sidebar .block-title strong { - font-weight: 300; -} - -.account .sidebar .block-wishlist ol li .icon-cross { - position: absolute; - top: 0; - right: 16px; -} - -.account .form-wishlist-items li { - list-style: none; -} - -@media (max-width:1199px) { - .account .form-wishlist-items li { - margin-bottom: 30px; - } -} - -@media (max-width:767px) { - .account .form-wishlist-items li .box-tocart .field { - max-width: none; - width: 100%; - } -} - -.account .form-wishlist-items li:first-child { - margin: 0; -} - -@media (max-width:1199px) { - .account .form-wishlist-items li:first-child { - margin-bottom: 30px; - } -} - -.account .form-wishlist-items li:nth-child(even) { - clear: none; -} - -.account .form-wishlist-items li .product-item-name { - color: #000; - font-size: 1.75rem; - font-weight: 300; - left: 0; - position: absolute; - top: 0; -} - -@media (max-width:767px) { - .account .form-wishlist-items li .product-item-name { - padding-right: 100px; - } -} - -@media (max-width:480px) { - .account .form-wishlist-items li .product-item-name { - padding-right: 0px; - } -} - -.account .form-wishlist-items li .product-item-info { - padding: 0; -} - -.account .form-wishlist-items li .product-item-photo { - top: 32px; - padding: 16px 16px 16px 0; -} - -.account .form-wishlist-items li .product-item-photo img { - height: auto; - width: 100%; -} - -.account .form-wishlist-items li .product-item-actions { - position: absolute; - right: 16px; - top: 0; -} - -@media (max-width:480px) { - .account .form-wishlist-items li .product-item-actions { - padding: 0 16px; - position: relative; - right: 0; - } -} - -.account .form-wishlist-items li .product-item-actions a { - display: inline-block; -} - -@media (max-width:480px) { - .account .form-wishlist-items li .product-item-actions a { - border-radius: 100px; - display: inline-block; - margin-bottom: 8px; - width: 100%; - } -} - -.account .form-wishlist-items li .product-item-actions a span { - display: none; -} - -@media (max-width:480px) { - .account .form-wishlist-items li .product-item-actions a span { - display: block; - } -} - -.account .form-wishlist-items li .product-item-actions a.delete:before { - content: '\e024'; -} - -@media (max-width:480px) { - .account .form-wishlist-items li .product-item-actions a.delete:before { - display: none; - } -} - -.account .form-wishlist-items li .product-item-actions a.edit:before { - content: '\e002'; -} - -@media (max-width:480px) { - .account .form-wishlist-items li .product-item-actions a.edit:before { - display: none; - } -} - -.account .form-wishlist-items li .price-box { - margin-top: 48px; -} - -.customer-account-create h1, -.magento_invitation-customer_account-create h1, -.customer-account-create h3, -.magento_invitation-customer_account-create h3 { - font-weight: 700; -} - -.customer-account-create .form-create-account, -.magento_invitation-customer_account-create .form-create-account { - margin-top: 60px; -} - -@media (max-width:992px) { - .customer-account-create .form-create-account, - .magento_invitation-customer_account-create .form-create-account { - margin-top: 30px; - } -} - -.customer-account-create .form-create-account p, -.magento_invitation-customer_account-create .form-create-account p { - font-size: 14px; - color: #7f7f7f; -} - -.customer-account-create .form-create-account .fields, -.magento_invitation-customer_account-create .form-create-account .fields { - border-right: 1px solid #e8e8e8; -} - -.customer-account-create .form-create-account .fields .input-text, -.magento_invitation-customer_account-create .form-create-account .fields .input-text { - background: #fff; - border: 1px solid #e8e8e8; - height: 41px; - margin-top: 7px; - padding: 13px 17px; - border-radius: 2px; -} - -.customer-account-create .form-create-account .fields .input-text:focus, -.magento_invitation-customer_account-create .form-create-account .fields .input-text:focus { - padding-top: 13px; -} - -.customer-account-create .form-create-account .fields .field.field-select select, -.magento_invitation-customer_account-create .form-create-account .fields .field.field-select select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - width: 100%; - height: 41px; - border-bottom: 1px solid #bababa; - background: #fff url('../images/icons/chevron-down.svg') no-repeat center right; - padding-right: 24px; - margin-top: 5px; - border-radius: 0; -} - -.ie11 .customer-account-create .form-create-account .fields .field.field-select select, -.ie11 .magento_invitation-customer_account-create .form-create-account .fields .field.field-select select { - background: none; -} - -.customer-account-create .form-create-account .fields .field.housenumber, -.magento_invitation-customer_account-create .form-create-account .fields .field.housenumber, -.customer-account-create .form-create-account .fields .field.housenumber-addition, -.magento_invitation-customer_account-create .form-create-account .fields .field.housenumber-addition { - width: 50%; - float: left; -} - -.customer-account-create .form-create-account .fields .field.housenumber, -.magento_invitation-customer_account-create .form-create-account .fields .field.housenumber { - padding-right: 15px; -} - -.customer-account-create .form-create-account .fields .field.housenumber-addition, -.magento_invitation-customer_account-create .form-create-account .fields .field.housenumber-addition { - padding-left: 15px; -} - -@media (max-width:480px) { - .customer-account-create .form-create-account .fields .field-name-firstname, - .magento_invitation-customer_account-create .form-create-account .fields .field-name-firstname, - .customer-account-create .form-create-account .fields .field-name-lastname, - .magento_invitation-customer_account-create .form-create-account .fields .field-name-lastname { - width: 100%; - } - - .customer-account-create .form-create-account .fields .field label, - .magento_invitation-customer_account-create .form-create-account .fields .field label { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - } - - .customer-account-create .form-create-account .fields .field label .checker, - .magento_invitation-customer_account-create .form-create-account .fields .field label .checker { - -webkit-flex-shrink: 0; - -ms-flex-shrink: 0; - flex-shrink: 0; - } -} - -@media (max-width:992px) { - .customer-account-create .form-create-account .fields, - .magento_invitation-customer_account-create .form-create-account .fields { - border: 0; - } -} - -@media (min-width:992px) { - .customer-account-create .form-create-account .fields .mage-error, - .magento_invitation-customer_account-create .form-create-account .fields .mage-error { - white-space: nowrap; - } -} - -.customer-account-create .form-create-account .account-usps h3, -.magento_invitation-customer_account-create .form-create-account .account-usps h3 { - margin: 25px 0 30px 0; - font-weight: 400; -} - -.customer-account-create .form-create-account .account-usps ul, -.magento_invitation-customer_account-create .form-create-account .account-usps ul { - list-style: none; - color: #fff; - margin: 0 0 25px; - font-size: 1rem; - color: #606060; -} - -.customer-account-create .form-create-account .account-usps ul li, -.magento_invitation-customer_account-create .form-create-account .account-usps ul li { - display: inline-block; - margin: 0 30px 20px 0; -} - -.customer-account-create .form-create-account .account-usps ul li:before, -.magento_invitation-customer_account-create .form-create-account .account-usps ul li:before { - font-size: 22px; - margin-right: 15px; - position: relative; - top: -1px; -} - -.customer-account-create .form-create-account .account-usps ul li, -.magento_invitation-customer_account-create .form-create-account .account-usps ul li { - display: block; -} - -.customer-account-create .form-create-account .account-usps ul li:before, -.magento_invitation-customer_account-create .form-create-account .account-usps ul li:before { - margin-right: 15px; -} - -.customer-account-create .form-create-account .account-usps figure, -.magento_invitation-customer_account-create .form-create-account .account-usps figure { - margin-top: 80px; -} - -@media (max-width:991px) { - .customer-account-create .form-create-account .account-usps, - .magento_invitation-customer_account-create .form-create-account .account-usps { - margin-top: 60px; - } -} - -.customer-account-create .actions .primary, -.magento_invitation-customer_account-create .actions .primary { - margin-top: 40px; -} - -.customer-account-connect .modal-footer { - text-align: left; - margin-bottom: 0; -} - -.field-recaptcha { - margin-top: 20px; - font-size: 12px; - color: #7f7f7f; - max-width: 300px; -} - -.field-recaptcha .recaptcha-badge { - position: absolute; -} - -@media (min-width:768px) { - .navbar-collapse { - padding-left: 0; - padding-right: 0; - } -} - -@media (max-width:767px) { - .account-menu__wrapper { - position: fixed; - top: 106px; - left: 0; - right: 0; - padding: 0 15px; - background-color: #fff; - z-index: 1000; - border-bottom: 1px solid #e8e8e8; - transition: all .25s ease-in-out; - } - - .minimize .account-menu__wrapper { - transform: translate3d(0, -45px, 0); - -webkit-transform: translate3d(0, -45px, 0); - -moz-transform: translate3d(0, -45px, 0); - -ms-transform: translate3d(0, -45px, 0); - -o-transform: translate3d(0, -45px, 0); - } - - .account-menu__wrapper .ga-icon, - .account-menu__wrapper .knowledge-base__most-viewed a { - font-weight: 600; - font-size: 6px; - vertical-align: middle; - } - - .account-menu__wrapper .navbar-toggle { - font-weight: 600; - float: none; - } - - .account-menu__wrapper .navbar-toggle:not(.collapsed) .ga-icon, - .account-menu__wrapper .navbar-toggle:not(.collapsed) .knowledge-base__most-viewed a { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - } - - .account #maincontent { - padding-top: 70px; - } -} - -.customer-account-login #maincontent, -.customer-account-forgotpassword #maincontent { - padding-bottom: 40px; - padding-top: 40px; -} - -.customer-account-login form.password.forget, -.customer-account-forgotpassword form.password.forget { - max-width: 600px; -} - -.bikes__title { - position: relative; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.bikes__title h3 { - margin: 0; - font-weight: 600; -} - -.bikes__count { - color: #e8e8e8; - margin-left: 15px; -} - -.bikes__add.active { - position: absolute; - top: 5px; - right: 0; - z-index: 1050; -} - -.bikes__add .btn-add { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; -} - -.active.bikes__add .btn-add { - font-size: 12px; - color: #fff; -} - -.active.bikes__add .btn-add:after { - margin-left: 6px; - transform: rotate(90deg); - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); -} - -.bikes__add .ui-widget { - padding-top: 10px; -} - -.bikes__add .ui-widget-content { - font-family: 'ProximaNova',Helvetica,Arial,sans-serif; - background: none; - border: 0; -} - -.bikes__intro { - margin-bottom: 50px; -} - -.bikes__intro p { - color: #7f7f7f; -} - -.bikes__intro h3 { - font-weight: 600; - font-size: 24px; - margin: 0 0 16px; -} - -.bikes__items { - margin-top: 16px; -} - -.bike__wrapper-content { - padding: 60px 50px; - border-top: 1px solid #e8e8e8; -} - -.bike__wrapper-content--small { - padding: 30px 50px; -} - -.bike__wrapper-content--no-border { - border-top: none; -} - -.bike__wrapper-content--fill-right { - padding-right: 0; - padding-bottom: 40px; -} - -.bike__wrapper-content--specifications { - padding-top: 0; - padding-bottom: 5px; - border: 0; -} - -.bike__wrapper-content p { - color: #7f7f7f; - margin-bottom: 30px; -} - -.bike__wrapper-content .label { - font-size: 10px; - letter-spacing: 1.4px; - color: #f5a623; - padding-bottom: 10px; -} - -@media (max-width:767px) { - .bike__wrapper-content { - padding: 30px 20px; - } -} - -.bike__group { - margin-top: 20px; - border: 1px solid #e8e8e8; - border-radius: 3px; -} - -@media (max-width:767px) { - .bike__group { - border-width: 1px 0 0; - margin-top: 0; - } - - .bike__group:last-child { - border-bottom: 1px solid #e8e8e8; - } -} - -.bike__group-collapse { - cursor: pointer; - padding: 20px 50px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.bike__group-collapse > h3 { - width: 100%; - padding-right: 10px; - margin: 0; - position: relative; -} - -.bike__group-collapse > h3 .ga-icon, -.bike__group-collapse > h3 .knowledge-base__most-viewed a { - font-size: 10px; - line-height: 30px; - position: absolute; - right: 0; - top: 0; - transition: 0.1s; -} - -.bike__group-collapse > h3.active .ga-icon, -.bike__group-collapse > h3.active .knowledge-base__most-viewed a { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); -} - -.bike__group-collapse.active .bike__img { - display: none; -} - -.bike__group-collapse.active > h3 .ga-icon, -.bike__group-collapse.active > h3 .knowledge-base__most-viewed a { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); -} - -@media (max-width:767px) { - .bike__group-collapse { - padding: 20px; - } -} - -.bike__img-wrapper { - margin: 10px auto; -} - -.bike__img-wrapper img { - display: block; - width: 100%; - height: auto; -} - -.bike__img-wrapper.placeholder { - background-color: #f2f2f2; -} - -.bike__img-wrapper.placeholder img { - max-width: 300px; - margin: 0 auto; -} - -.bike__remove-link a { - font-weight: 600; - color: #004a99; -} - -.bike__remove-link .ga-icon, -.bike__remove-link .knowledge-base__most-viewed a { - position: relative; - top: -1px; - margin-left: 8px; -} - -.bike__crosssell h3 { - font-size: 24px; - max-width: 550px; - padding-right: 50px; - margin-bottom: 30px; -} - -.bike__crosssell .slick-slider { - overflow: hidden; -} - -@media (max-width:767px) { - .bike__crosssell .slick-slider { - margin: 0 -20px; - } -} - -@media (min-width:768px) { - .bike__crosssell .slick-arrow.slick-next { - right: 5px; - } -} - -.bike_img_wrapper { - margin: 36px auto 10px auto; - max-width: 530px; -} - -.bike_img_wrapper img, -.form-mybike-edit img { - display: block; - width: 100%; - height: auto; -} - -.form-mybike-edit .box:last-child { - margin-top: 30px; -} - -.form-mybike-edit .bikeimg img { - margin-top: 25px; -} - -.table-my-bikes caption { - display: none; -} - -.table-my-bikes tr:first-child td { - border-top: 0; -} - -.experience-center__image { - position: relative; - background-size: cover; - background-position: center center; - height: 172px; - transition: all .3s; -} - -.experience-center__image:hover { - transform: translateY(-4px); -} - -@media (min-width:768px) { - .experience-center__image { - height: 200px; - } -} - -@media (min-width:992px) { - .experience-center__image { - height: 172px; - } -} - -@media (min-width:1200px) { - .experience-center__image { - height: 220px; - } -} - -.experience-center__placeholder { - background-color: #004a99; - top: 0; - left: 0; - background-image: url('../images/Gazelle_Brand.svg'); - background-size: 80%; - background-repeat: no-repeat; - background-position: -160%; - display: flex; - justify-content: center; - align-items: center; -} - -.experience-center__placeholder span { - font-size: 20px; - color: #fff; - width: 70%; - text-align: center; -} - -.experience-center__label { - position: absolute; - bottom: 0; - right: 0; - line-height: 0.8; - letter-spacing: 1.3px; - font-size: 10px; - text-transform: uppercase; - padding: 13px; - font-weight: 600; -} - -.experience-center__label.blue { - background-color: #004a99; - color: #fff; -} - -.experience-center__label.white { - color: #000; - background-color: #e8e8e8; -} - -.experience-center__label.yellow { - background-color: #f0e082; -} - -.experience-center__address { - font-size: 1rem; - margin-bottom: 30px; -} - -.experience-center .arrow-link { - display: block; - color: #000; - font-size: 20px; - font-weight: normal; - margin-top: 18px; - margin-bottom: 8px; -} - -.experience-center__list { - margin-bottom: 80px; -} - -@media (max-width:991px) { - .experience-center__list { - margin-bottom: 18px; - } -} - -@media (max-width:767px) { - .experience-center__list { - margin-bottom: 8px; - } -} - -.experience-center__list h3 { - font-size: 24px; - font-weight: normal; - margin-top: 0; -} - -@media (max-width:767px) { - .experience-center__list h3 { - font-size: 20px; - } -} - -.experience-center__list p { - color: #7f7f7f; - margin-bottom: 0; -} - -.experience-center__list__header { - margin-bottom: 28px; -} - -.experience-center__list__items { - display: grid; - grid-template-columns: repeat(1, minmax(0, 1fr)); - gap: 30px; -} - -@media (min-width:768px) { - .experience-center__list__items { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } -} - -@media (min-width:992px) { - .experience-center__list__items { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } -} - -.exp-center { - padding: 25px; -} - -@media (min-width:768px) { - .exp-center { - padding: 35px; - } -} - -.exp-center .exp-center-header { - border-bottom: 1px solid rgba(0,0,0,0.05); -} - -.exp-center .exp-center-header:before, -.exp-center .exp-center-header:after { - content: " "; - display: table; -} - -.exp-center .exp-center-header:after { - clear: both; -} - -.exp-center .exp-center-title { - font-size: .9375rem; - border-bottom: 2px solid #004a99; - float: left; - font-weight: bold; - margin: 0 0 -1px 0; - padding-bottom: 10px; - text-transform: uppercase; -} - -.exp-center .exp-center-address { - margin-top: 25px; -} - -.exp-center .exp-center-address h5 { - font-size: 2.1875rem; - font-weight: 300; - margin: 0; -} - -.exp-center .exp-center-address p { - font-weight: 300; - line-height: 1.6em; - margin: 25px 0 0 0; -} - -.exp-center .exp-center-opening-hours { - margin-top: 25px; -} - -.exp-center .exp-center-opening-hours h5 { - font-size: 2.1875rem; - font-weight: 300; - margin: 0; -} - -.exp-center .exp-center-opening-hours table { - border: none; - margin: 25px 0 0 0; - width: 100%; -} - -.exp-center .exp-center-opening-hours table tr { - border: none; -} - -.exp-center .exp-center-opening-hours table tr th, -.exp-center .exp-center-opening-hours table tr td { - border: none; - font-weight: normal; - line-height: 1.6em; - padding: 0; -} - -.exp-center .exp-center-maps { - margin-top: 25px; -} - -.exp-center .exp-center-maps iframe { - border: none; - display: block; - height: 300px; - width: 100%; -} - -.not-found { - background-image: url('../images/not-found-background.png'); - background-position: right bottom; - background-repeat: no-repeat; - background-size: 60%; - min-height: 50vh; -} - -@media screen and (max-width:991px) { - .not-found { - background-image: none; - } -} - -.not-found h2 { - font-weight: 500; -} - -.not-found p { - margin-top: 25px; -} - -.not-found ul { - margin-bottom: 25px; - margin-top: 25px; -} - -.not-found ul li { - margin-bottom: 15px; -} - -.not-found ul li a { - font-weight: 800; -} - -.views-wrapper > .row { - margin-bottom: 50px; -} - -.storepickup-index-view .page-main { - padding: 0; -} - -.storepickup-index-view .page-wrapper .back-button { - padding-top: 30px; -} - -.storepickup-index-view .page-wrapper .breadcrumbs { - display: block; - position: static; - padding: 40px 0 0 0; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper { - margin-top: 25px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__title { - font-size: 40px; - font-weight: 700; - color: #000; - margin-top: 0; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder { - height: 30px; - background: #f2f2f2; - margin-bottom: 10px; - padding: 2px 10px; - border: 1px solid #f2f2f2; - font-size: 12px; - border-radius: 2px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder:not(:last-child) { - margin-right: 10px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder.premium { - background: #fff; - border-color: #e8e8e8; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder .ga-icon, -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder .knowledge-base__most-viewed a { - margin-right: 8px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder .icon-award { - font-size: 20px; -} - -@media (max-width:767px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__icons--holder { - margin-bottom: 20px; - } -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address { - color: #000; - margin-bottom: 25px; - font-size: 14px; -} - -@media (max-width:767px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address-line { - -webkit-flex: 0 0 100%; - -ms-flex: 0 0 100%; - flex: 0 0 100%; - -webkit-order: 1; - -ms-order: 1; - order: 1; - } -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .arrow-link { - font-size: 14px; - line-height: 22px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .arrow-link:hover { - text-decoration: none; -} - -@media (min-width:768px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .arrow-link { - margin-left: 20px; - } -} - -@media (max-width:767px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .arrow-link { - margin-top: 10px; - -webkit-order: 3; - -ms-order: 3; - order: 3; - } -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .store__distance { - margin-top: 10px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .store__distance .ga-icon, -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .store__distance .knowledge-base__most-viewed a { - margin-right: 10px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .store__distance-time { - margin-left: 5px; -} - -@media (min-width:768px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .store__distance { - margin: 0 0 0 20px; - } -} - -@media (max-width:767px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__address .store__distance { - margin-right: 10px; - -webkit-order: 2; - -ms-order: 2; - order: 2; - } -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__cta .btn-primary { - padding: 15px 20px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__cta .btn-primary .ga-icon, -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__cta .btn-primary .knowledge-base__most-viewed a { - margin-left: 30px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__contact--phone { - font-size: 24px; - font-weight: 600; - margin-top: 25px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__contact--email { - font-size: 14px; - font-weight: 600; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__contact--email .ga-icon, -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__contact--email .knowledge-base__most-viewed a { - font-size: 10px; - margin-left: 10px; -} - -.storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__contact--website { - margin-top: 65px; - color: #000; -} - -@media (max-width:1199px) { - .storepickup-index-view .page-wrapper .dealer-detail-page .dealer-wrapper__contact { - margin-top: 30px; - } -} - -.storepickup-index-view .page-wrapper .dealer-detail-content .bluefoot-row .row-inner { - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.xsitemap .xsitemap-categories, -.xsitemap .xsitemap-pages { - float: none; - display: inline-block; - vertical-align: top; - width: 33%; -} - -.page-layout-blog-post .page-wrapper { - position: relative; -} - -.page-layout-blog-post .page-wrapper .blog-related-stories { - margin-bottom: 50px; -} - -.page-layout-blog-post .page-wrapper .blog-related-stories h3 { - font-weight: bold; - margin-bottom: 20px; -} - -.page-layout-blog-post .page-wrapper .blog-related-stories h4 { - font-weight: bold; - color: #004a99; -} - -.page-layout-blog-post .page-wrapper .blog-related-stories .related-story-image { - height: 20vw; - background-size: cover; - background-position: center; -} - -.page-layout-blog-post .page-wrapper .blog-related-stories .related-story-content { - padding: 15px; - background-color: #f2f2f2; -} - -.page-layout-blog-post .page-wrapper .blog-related-stories .related-story-content .related-story--date { - color: #555; -} - -#blog-header-image { - position: relative; - height: 66vh; - overflow: hidden; - margin-bottom: 50px; -} - -.blog-content { - position: relative; - height: 100%; - margin-left: calc(280px); - margin-top: 50px; - z-index: 2; - background-color: #fff; -} - -@media (max-width:767px) { - .blog-content { - margin-left: 0; - } -} - -.blog-content .page-main { - margin: 0; - padding: 0; -} - -.blog-content .badge { - background-color: #004a99; -} - -@media (max-width:991px) { - .blog-content .row-inner .col-inner { - padding: 0 20px; - } -} - -@media (max-width:991px) { - .blog-content .blogs-container .blog-item { - padding: 0 20px; - margin: 25px -20px; - } -} - -@media (max-width:991px) { - .blog-content .blogs-container .blog-item .blog-item-image { - min-height: 250px; - } -} - -.blog-content #blog-page-navigation { - margin: 25px 0; - padding: 0; -} - -.blog-content .blog-date { - display: inline-block; - font-size: 1rem; - margin-right: 10px; - color: #7f7f7f; - font-weight: normal; -} - -.blog-content .blog-title { - margin-bottom: 0; -} - -.blog-content .blog-description { - margin-top: 15px; -} - -.blog-content .blog-image { - min-height: 250px; -} - -.blog-sidebar { - z-index: 3; - position: absolute; - background-color: #f2f2f2; - height: 100%; - width: 230px; - padding: 20px; -} - -@media (max-width:767px) { - .blog-sidebar { - position: relative; - width: calc(100% + 14px); - margin-left: -7.5px; - } -} - -@media (max-width:991px) { - .blog-sidebar { - padding: 0; - } -} - -.blog-sidebar ul { - margin: 15px 0 0 0; -} - -.blog-sidebar ul li { - list-style: none; - font-size: 1.2em; - margin: 8px 0; -} - -.blog-sidebar ul li a { - color: rgba(1,1,1,0.5); -} - -.blog-sidebar ul li a:hover { - color: #000; -} - -.blog-wrapper { - position: relative; - margin: 50px; -} - -.invitations { - margin-top: 40px; -} - -.invitations textarea { - height: 132px; -} - -.invitations .remaining_invites, -.invitations .table-caption { - font-size: 13px; - color: #a9a9a9; -} - -.invitations .table-wrapper { - overflow-x: auto; - margin-top: 10px; -} - -.invitations .table-wrapper .table-invitations th.actions, -.invitations .table-wrapper .table-invitations td.actions { - text-align: left; - width: 100%; -} - -.invitations .table-wrapper .table-invitations th.actions button, -.invitations .table-wrapper .table-invitations td.actions button { - position: relative; - color: #d0021b; - background: none; - padding-left: 20px; - transition: color .3s ease; -} - -.invitations .table-wrapper .table-invitations th.actions button .ga-icon, -.invitations .table-wrapper .table-invitations td.actions button .ga-icon, -.invitations .table-wrapper .table-invitations th.actions button .knowledge-base__most-viewed a, -.invitations .table-wrapper .table-invitations td.actions button .knowledge-base__most-viewed a { - position: absolute; - left: 0; - bottom: 1px; -} - -.invitations .table-wrapper .table-invitations th.actions button:hover, -.invitations .table-wrapper .table-invitations td.actions button:hover { - color: #004a99; -} - -#invitationForm .field.email { - margin-top: 0; -} - -#invitationForm .actions-toolbar { - margin-top: 0; -} - -#invitationForm #invitations-options { - width: 100%; -} - -#invitationForm #invitations-options .field.email { - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -#invitationForm #invitations-options button.remove { - position: absolute; - right: 10px; - top: 15px; - z-index: 200; - color: #bababa; -} - -#invitationForm #invitations-options button.remove:after { - font-weight: 600; -} - -#invitationForm #invitations-options button.remove:hover { - color: #000; -} - -#invitationForm .add-email { - display: flex; - position: relative; -} - -#invitationForm #add-email-button { - margin-top: 14px; -} - -#invitationForm .actions-toolbar .primary { - float: right; - margin-right: 0; - line-height: 1.2; -} - -#invitationForm .actions-toolbar .primary span { - font-size: 12px; - margin-left: 20px; -} - -#invitationForm .invitation-preview { - position: absolute; - font-size: 13px; - color: #a9a9a9; - bottom: 12px; - right: 12px; -} - -.remaining_invites { - font-size: 13px; - color: #a9a9a9; -} - -#invitation-preview-modal table { - margin-bottom: initial; -} - -#invitation-preview-modal table thead tr, -#invitation-preview-modal table thead th, -#invitation-preview-modal table thead td { - border-bottom: none; - padding: 0; -} - -#invitation-preview-modal table tbody tr, -#invitation-preview-modal table tbody td { - border: 0; - padding: 0; -} - -.page-layout-service-reviews .parallax-hero { - margin: 0; -} - -@media (min-width:1200px) { - .page-layout-service-reviews .parallax-hero__content p { - padding-right: 20px; - } -} - -@media (max-width:767px) { - .page-layout-service-reviews .parallax-hero__content p { - margin: 0; - } -} - -.page-layout-service-reviews .parallax-hero__mask { - bottom: 1px; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary { - color: #fff; - background: #0d4282; - padding: 25px 35px 40px 35px; - margin: 0; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary p, -.page-layout-service-reviews .service-reviews-summary .review-summary__top { - width: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary p { - margin: 0; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary img { - width: 77px; - height: 19px; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary__top { - margin-bottom: 10px; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary__stars:before { - color: #003062; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary__stars > span:before { - color: #fff; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary__score { - font-size: 40px; - color: #fff; - margin: 0; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary__score:after { - display: none; -} - -.page-layout-service-reviews .service-reviews-summary .review-summary__score em { - margin: 0 0 0 3px; -} - -@media (max-width:767px) { - .page-layout-service-reviews .service-reviews-summary .review-summary__stars-wrapper { - margin: 0; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - } -} - -@media (min-width:1200px) { - .page-layout-service-reviews .service-reviews-summary .review-summary { - max-width: 500px; - float: right; - padding: 40px 40px 45px 40px; - margin: -105px 50px 0 0; - position: relative; - z-index: 1; - } - - .page-layout-service-reviews .service-reviews-summary .review-summary__stars { - width: calc(100% - 15px); - } - - .page-layout-service-reviews .service-reviews-summary .review-summary__stars:before, - .page-layout-service-reviews .service-reviews-summary .review-summary__stars > span:before { - font-size: 33px; - letter-spacing: 15px; - } -} - -@media (min-width:768px) { - .page-layout-service-reviews .product-reviews { - padding: 115px 0; - min-height: 100vh; - } -} - -.page-layout-knowledge-base .page-main { - padding: 0; -} - -.knowledge-base h3 { - font-size: 32px; - margin-bottom: 30px; -} - -.knowledge-base h5 { - color: #004a99; - font-size: 12px; - letter-spacing: 1.7px; - margin: 0 0 18px 0; - text-transform: uppercase; -} - -.knowledge-base a { - font-size: 14px; - display: block; - color: #7f7f7f; -} - -.knowledge-base__most-viewed { - margin-bottom: 60px; -} - -.knowledge-base__most-viewed a { - background-color: #f2f2f2; - padding: 8px 18px 8px 10px; - margin-bottom: 10px; - min-height: 60px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.knowledge-base__most-viewed a:before { - margin-left: auto; - padding-left: 10px; - order: 2; - color: #000; - font-size: 10px; - font-weight: 600; - transition: transform .2s; - -webkit-transition: transform .2s; - -moz-transition: transform .2s; - -ms-transition: transform .2s; - -o-transition: transform .2s; -} - -.knowledge-base__most-viewed a:hover { - background-color: #e8e8e8; -} - -.knowledge-base__most-viewed a:hover:before { - transform: translateX(5px); -} - -.knowledge-base__most-viewed img { - width: 65px; - margin-right: 10px; -} - -.knowledge-base__pages a { - margin-bottom: 15px; -} - -.knowledge-base__pages a:hover { - color: #000; -} - -.knowledge-base__grid { - margin-top: 40px; -} - -@media (max-width:767px) { - .knowledge-base { - padding: 0 20px; - } - - .knowledge-base__category { - margin-top: 65px; - } - - .knowledge-base .page-main { - padding: 0; - } - - .knowledge-base h3 { - font-size: 20px; - } - - .knowledge-base h5 { - font-size: 12px; - } - - .knowledge-base__most-viewed { - margin-bottom: 30px; - } -} - -@media (min-width:768px) { - .knowledge-base__row { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex: 1; - -ms-flex: 1; - flex: 1; - } - - .knowledge-base__category, - .knowledge-base h3 { - width: calc(100%/3); - padding: 0 15px; - } -} - -@media (min-width:992px) { - .knowledge-base__category, - .knowledge-base h3 { - padding: 0 8% 0 0; - } -} - -.product-carousel { - margin: 25px 0; -} - -.product-carousel .carousel-indicators { - bottom: 13px; - display: block; - margin-bottom: 0; -} - -.product-carousel .carousel-indicators li { - background-color: rgba(0,0,0,0.2); - border: none; -} - -.product-carousel .carousel-indicators li.active { - background-color: #004a99; -} - -.product-carousel .carousel-inner .item .product-image { - height: 50vh; - position: relative; - text-align: center; -} - -@media screen and (max-width:991px) { - .product-carousel .carousel-inner .item .product-image { - height: 45vw; - } -} - -.product-carousel .carousel-inner .item .product-image img { - background-color: #fff; - height: auto; - max-height: 100%; - max-width: 100%; - width: auto; -} - -.product-carousel .carousel-inner .item .product-image img:first-of-type { - position: relative; - top: 50%; - transform: translateY(-50%); -} - -.product-carousel .carousel-inner .item .product-image .icon, -.product-carousel .carousel-inner .item .product-image .account .form-wishlist-items li .product-item-actions a { - left: 50%; - position: absolute; - top: 50%; - transform: translate(-50%, -50%); - z-index: 10; -} - -@media screen and (max-width:1199px) { - .product-carousel .carousel-inner .item .product-image .icon, - .product-carousel .carousel-inner .item .product-image .account .form-wishlist-items li .product-item-actions a { - display: none; - } -} - -.product-carousel .carousel-inner .item .product-image .icon:hover, -.product-carousel .carousel-inner .item .product-image .account .form-wishlist-items li .product-item-actions a:hover { - cursor: pointer; -} - -.product-carousel .carousel-inner .item .product-image.zoom .icon:before, -.product-carousel .carousel-inner .item .product-image.zoom .account .form-wishlist-items li .product-item-actions a:before { - content: '\e027'; - display: inline-block; - transform: rotate(90deg); -} - -.product-carousel .carousel-control { - width: 36px; -} - -@media screen and (max-width:991px) { - .product-carousel .carousel-control { - display: none; - } -} - -.product-carousel .carousel-control.left { - left: 0; - padding-right: 0; - right: auto; -} - -.product-carousel .carousel-control.right { - padding-right: 0; -} - -.product-carousel .carousel-control .icon, -.product-carousel .carousel-control .account .form-wishlist-items li .product-item-actions a { - color: #fff; -} - -.product-carousel .carousel-control .icon.unactive, -.product-carousel .carousel-control .account .form-wishlist-items li .product-item-actions a.unactive { - cursor: default; - opacity: .3; -} - -.pdp.page-main { - padding: 0; -} - -@media (max-width:991px) { - .stickybar-active .pdp.page-main { - margin-top: 31px; - } -} - -@media (max-width:991px) { - .pdp.container { - width: 100%; - } -} - -.pdp__header { - position: relative; - min-height: calc(100vh - 140px + 45px); - padding: 0; -} - -.topbar-active .pdp__header { - min-height: calc(100vh - 140px); -} - -.stickybar-active .pdp__header { - min-height: calc(100vh - 140px - 44px + 45px); -} - -.stickybar-active.topbar-active .pdp__header { - min-height: calc(100vh - 140px - 44px); -} - -.pdp__header h1 { - font-size: 24px; - font-weight: 600; -} - -@media (min-width:992px) { - .pdp__header h1 { - margin: -20px 0 0; - } -} - -.pdp__header .back-button { - margin-left: 20px; - font-size: 12px; - font-weight: 600; - position: relative; -} - -.pdp__header .back-button button, -.pdp__header .back-button a { - padding-left: 20px; -} - -.pdp__header .back-button button:before, -.pdp__header .back-button a:before { - position: absolute; - left: 0; - top: 2px; -} - -@media (min-width:768px) and (max-width:991px) { - .pdp__header__content { - padding-bottom: 60px; - } -} - -.pdp__header__image { - z-index: 1; -} - -@media (max-width:767px) { - .pdp__header__image { - width: 100%; - min-height: calc(100vw * .703125 + 40px); - margin-top: 40px; - padding: 0; - } -} - -.pdp__header__actions { - padding-top: 2%; -} - -@media (min-width:992px) { - .pdp__header__actions .product-cta-buttons { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - } - - .pdp__header__actions .product-cta-buttons .btn { - max-width: 300px; - } - - .pdp__header__actions .product-cta-buttons .btn:nth-child(2) { - margin-left: 15px; - } -} - -@media (min-width:1600px) { - .pdp__header__actions { - padding-top: 4%; - } -} - -.pdp__header__actions .icon-info { - cursor: pointer; - top: -10px; - position: relative; -} - -@media (max-width:991px) { - .pdp__header__actions .btn { - margin-bottom: 10px; - } -} - -.pdp__header__actions .configurable-tooltips { - position: absolute; -} - -.pdp__header .award { - height: 45px; -} - -.pdp__header--top { - position: absolute; - margin-left: 20px; - z-index: 3; -} - -.pdp__header--top h1 { - margin-top: 30px; -} - -@media (max-width:991px) { - .pdp__header--top h1 { - margin-top: 15px; - margin-bottom: 3px; - } -} - -.pdp__header .list, -.pdp__header .pdp__header__usps ul:not(.list--check) { - font-size: 1rem; -} - -.pdp__header .list li, -.pdp__header .pdp__header__usps ul:not(.list--check) li { - margin: 15px 0; -} - -@media (max-width:767px) { - .pdp__header .image-carousel__view { - min-height: calc(100vw * .703125); - } -} - -.pdp__header .image-carousel__view .slick-slide img, -.pdp__header .image-carousel__view .image-slider__slide img { - max-height: calc(75vh - 140px - 44px); - display: block; - margin: 0 auto; -} - -@media (max-width:767px) { - .pdp__header .image-carousel__view .slick-slide img, - .pdp__header .image-carousel__view .image-slider__slide img { - max-height: 100%; - width: 100%; - } -} - -.pdp__header .image-carousel__navigation, -.pdp__header .image-carousel__preview { - z-index: 2; -} - -@media (min-width:992px) { - .pdp__header .image-carousel__navigation, - .pdp__header .image-carousel__preview { - margin-top: 8%; - } -} - -@media (min-width:1600px) { - .pdp__header .image-carousel__navigation, - .pdp__header .image-carousel__preview { - margin-top: 10%; - } -} - -.pdp .columns { - padding-top: 20px; -} - -@media (max-width:991px) { - .pdp .columns { - padding-top: 10px; - } -} - -.pdp .section--fixed { - height: calc(43% - 76px); - bottom: 76px; -} - -.bg--grey { - background-color: #f2f2f2; -} - -.bg--full-width { - width: 100%; -} - -.pdp .pdp__info-block { - position: relative; - margin-top: 100px; -} - -@media (max-width:991px) { - .pdp .pdp__info-block { - margin-top: 40px; - } -} - -.pdp .pdp__info-block .rotatable__view { - background-color: #fff; - position: relative; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.pdp .pdp__info-block .rotatable__view.cursor { - cursor: url('../images/icons/360.svg') 25 25,move; -} - -.pdp .pdp__info-block .rotatable__view img { - position: absolute; - width: 100%; - pointer-events: none; - -webkit-user-drag: none; - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; -} - -.pdp .pdp__info-block .rotatable__view .single-image { - display: none; -} - -.pdp .pdp__info-block .rotatable__view .single-image.active { - display: block; -} - -.pdp .pdp__info-block .rotatable__view .rotationArrows { - z-index: 3; - display: block; - position: absolute; - bottom: -30px; - left: 0; - right: 0; - margin: 0 auto; - width: 140px; -} - -.pdp .pdp__info-block .rotatable__view .rotationArrows .icon-chevron, -.pdp .pdp__info-block .rotatable__view .rotationArrows .ga-icon, -.pdp .pdp__info-block .rotatable__view .rotationArrows .knowledge-base__most-viewed a { - font-size: 16px; - color: #004a99; - cursor: pointer; - background: #fff; - line-height: 64px; - width: 64px; - height: 64px; - text-align: center; - border-radius: 64px; - box-shadow: 0 10px 40px 0 rgba(0,0,0,0.15); - transition: all 300ms; - user-select: none; -} - -.pdp .pdp__info-block .rotatable__view .rotationArrows .icon-chevron:hover, -.pdp .pdp__info-block .rotatable__view .rotationArrows .ga-icon:hover, -.pdp .pdp__info-block .rotatable__view .rotationArrows .knowledge-base__most-viewed a:hover { - color: #fff; - background-color: #004a99; -} - -.pdp .pdp__info-block .rotatable__view .rotationArrows .icon-chevron-left, -.pdp .pdp__info-block .rotatable__view .rotationArrows .ga-icon-left { - float: left; -} - -.pdp .pdp__info-block .rotatable__view .rotationArrows .icon-chevron-right, -.pdp .pdp__info-block .rotatable__view .rotationArrows .ga-icon-right { - float: right; -} - -.pdp .pdp__info-block .rotatable__view figure { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; -} - -.pdp .pdp__info-block .rotatable__view-images, -.pdp .pdp__info-block .rotatable__view-images--singles { - height: 0; - padding-bottom: 70.67%; -} - -.pdp .pdp__info-block .rotatable__view-images--singles { - display: none; -} - -.pdp .pdp__info-block .rotatable__view-disk { - z-index: 2; - background: url('../images/oval-360.svg') no-repeat bottom center; - background-size: contain; - position: absolute; - bottom: 0; - width: 100%; - padding-bottom: 15.15%; - pointer-events: none; -} - -.pdp .pdp__info-block .rotatable__swatches { - margin-top: 30px; -} - -.pdp .pdp__info-block .rotatable__swatches h4 { - margin-bottom: 20px; -} - -.pdp .pdp__info-block .rotatable__swatches h5 { - color: #000; -} - -.pdp .pdp__info-block .rotatable__swatch { - width: 32px; - height: 32px; - margin-right: 22px; - display: inline-block; - border: 3px solid #fff; - border-radius: 32px; -} - -.pdp .pdp__info-block .rotatable__swatch:not(.active, :hover) { - box-shadow: none; - border-width: 2px; -} - -@media (max-width:767px) { - .pdp .pdp__info-block .rotatable { - margin-bottom: 130px; - z-index: 2; - -webkit-order: 2; - -ms-order: 2; - order: 2; - } - - .pdp .pdp__info-block .rotatable__row { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .pdp .pdp__info-block .rotatable__swatches { - position: absolute; - padding-top: 75%; - height: 0; - } -} - -@media (max-width:991px) { - .pdp .pdp__info-block__description { - margin-top: 80px; - } -} - -.pdp .pdp__info-block__description h3 { - max-width: 320px; - font-size: 40px; - font-weight: 700; -} - -@media (max-width:991px) { - .pdp .pdp__info-block__description h3 { - max-width: 100%; - } -} - -.pdp .pdp__info-block__description h4 { - font-size: 16px; - color: #000; - font-weight: 600; -} - -.pdp .pdp__info-block__description p { - color: #000; - font-size: 16px; -} - -.specifications { - overflow: hidden; - color: #000; - background: #f2f2f2; - padding: 20px 0 40px 0; - margin-top: 80px; -} - -@media (min-width:768px) { - .specifications { - padding: 75px 0 80px; - margin-top: 120px; - } -} - -@media (min-width:992px) { - .specifications { - margin-top: 180px; - } -} - -.specifications--list { - color: #333; - background: #fff; - padding: 0 0 85px; -} - -.specifications h3 { - font-size: 20px; - font-weight: 700; - line-height: 1; - margin: 0; -} - -.specifications ul { - list-style: none; - margin: 0; -} - -.specifications a { - color: #fff; -} - -.specifications__disclaimer { - margin-top: 20px; - color: #2f2f2f; -} - -.specifications__buttons.specifications__row { - margin-top: 20px; - border-bottom: 0; -} - -@media (min-width:768px) { - .specifications__buttons.specifications__row { - margin-top: 50px; - } -} - -.specifications__buttons.specifications__row .btn-white { - margin-left: 20px; - color: #000; - display: block; -} - -.specifications__buttons.specifications__row .btn-white.compare-full, -.specifications__buttons.specifications__row .btn-white.in-compare, -.specifications__buttons.specifications__row .btn-white:active, -.specifications__buttons.specifications__row .btn-white:focus { - background-color: #fff; - color: #bababa; - opacity: 0.6; -} - -.specifications__title { - font-size: 20px; - font-weight: 700; - margin-bottom: 67px; -} - -.specifications__title span { - display: block; -} - -.specifications__title--list { - font-size: 24px; - margin-bottom: 30px; -} - -.specifications__wrapper { - border-bottom: 1px solid #d9d9d9; - padding: 0; -} - -.specifications__wrapper:not([role="tablist"]) { - height: 100px; -} - -.specifications__wrapper--highlights { - padding: 0; -} - -.specifications__row { - width: 100%; - margin: 0; -} - -.specifications__row.active h3 { - cursor: pointer; -} - -.specifications__row.active h3 .trigger-icon:before { - transform: rotate(90deg); - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); -} - -.specifications__row.active h3 .trigger-icon:after { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); -} - -.specifications__row.active h3:hover { - color: #004a99; -} - -.specifications__row.active .specifications__group { - opacity: 1; -} - -.specifications__row:not(.active):not(.specifications__buttons) .col { - width: 100%; - cursor: pointer; -} - -.specifications__row:not(.active):not(.specifications__buttons):hover { - background-color: #e8e8e8; -} - -.specifications__row:not(.active):not(.specifications__buttons):hover h3 { - color: #004a99; -} - -.specifications__row:not(.active):not(.specifications__buttons):hover h3 .trigger-icon:before, -.specifications__row:not(.active):not(.specifications__buttons):hover h3 .trigger-icon:after { - background: #004a99; -} - -.specifications__row:not(.active):not(.specifications__buttons) .specifications__group { - opacity: 0; -} - -.specifications__group, -.specifications__group-title { - padding: 40px 0; -} - -.specifications__group-title h3 .trigger-icon { - width: 16px; - height: 16px; - position: relative; - float: left; - margin: 1px 20px 0 0; -} - -.specifications__group-title h3 .trigger-icon:before, -.specifications__group-title h3 .trigger-icon:after { - content: ''; - background: #000; - position: absolute; - transition: transform 300ms ease; -} - -.specifications__group-title h3 .trigger-icon:before { - top: 0; - left: 50%; - width: 2px; - height: 100%; - margin-left: -1px; -} - -.specifications__group-title h3 .trigger-icon:after { - top: 50%; - left: 0; - width: 100%; - height: 2px; - margin-top: -1px; -} - -.specifications__subgroup-title { - text-transform: uppercase; - padding: 0; - font-weight: 600; - color: #004a99; - font-size: 1rem; -} - -.specifications__item { - font-size: 1rem; - line-height: 1.6; - padding: 18px 0 17px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.specifications__item .ga-icon, -.specifications__item .knowledge-base__most-viewed a { - font-size: 12px; - color: #7f7f7f; - margin-left: 10px; - position: relative; - top: -2px; -} - -.specifications__list li { - border-bottom: 1px solid #e8e8e8; - padding: 35px 0; -} - -.specifications__list li:first-child { - border-top: 1px solid #e8e8e8; -} - -.specifications__list li strong { - font-size: 18px; - font-weight: 600; - display: block; - margin-bottom: 20px; -} - -@media (max-width:767px) { - .specifications__navigation h2 { - font-size: 24px; - line-height: 28px; - } - - .specifications__navigation li { - margin: 3px 0; - } - - .specifications__item { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } -} - -@media (min-width:768px) { - .specifications h3 { - font-size: 24px; - } - - .specifications__title { - font-size: 48px; - } - - .specifications__group-title h3 .trigger-icon { - margin: 3px 30px 0 0; - } - - .specifications__item strong, - .specifications__item span { - flex: 0 0 50%; - } -} - -@media (min-width:768px) and (max-width:991px) { - .specifications__navigation { - padding-bottom: 15px; - } - - .specifications__navigation h2 { - font-size: 48px; - line-height: 40px; - } - - .specifications__navigation li { - margin: 22px 0; - } -} - -@media (max-width:991px) { - .specifications__group { - padding-top: 0; - } - - .specifications__item { - border-bottom: 1px solid #d9d9d9; - } - - .specifications__item:first-child { - border-top: 1px solid #d9d9d9; - } - - .specifications__item:last-child { - border-bottom: 0; - } - - .specifications__item strong { - margin-bottom: 10px; - } -} - -@media (min-width:992px) { - .specifications--list { - padding: 80px 0 120px; - } - - .specifications__title { - margin: 0 0 85px 0; - } - - .specifications__title--list { - margin-bottom: 60px; - } - - .specifications__row, - .specifications .col { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - } - - .specifications__wrapper--highlights { - border-top: 1px solid #d9d9d9; - } - - .specifications .col { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .specifications__item { - padding-right: 115px; - } - - .specifications__item:first-child { - padding-top: 0; - } -} - -.borrow-money { - background-color: #fff; - background-image: url('../images/geldlenenkostgeld.svg'); - background-position: center; - background-repeat: no-repeat; - background-size: 70% 20px; - height: 38px; - border: 1px solid rgba(0,0,0,0.1); - border-bottom: 0; -} - -.borrow-money--block { - position: relative; - top: 6px; -} - -.price-rates-modal .payment-methods { - padding-top: 0; -} - -.price-rates-modal .modal-content { - min-height: 375px; -} - -.price-rates-modal .modal-content tr { - vertical-align: bottom; -} - -@media (min-width:992px) { - .price-rates-modal .modal-content { - width: 100%; - } -} - -.price-rates-modal .modal-content .modal-body .intro, -.price-rates-modal .modal-content .modal-body .outro { - margin-bottom: 20px; - padding-bottom: 20px; - border-bottom: 1px solid rgba(0,0,0,0.1); -} - -.price-rates-modal .modal-content .modal-body .intro p, -.price-rates-modal .modal-content .modal-body .outro p { - font-size: 1rem; -} - -.price-rates-modal .modal-content .modal-body .intro .usps-inline, -.price-rates-modal .modal-content .modal-body .outro .usps-inline, -.price-rates-modal .modal-content .modal-body .intro .list--check, -.price-rates-modal .modal-content .modal-body .outro .list--check { - color: #7f7f7f; - font-size: 1rem; -} - -@media (max-width:767px) { - .price-rates-modal .modal-content .modal-body .intro, - .price-rates-modal .modal-content .modal-body .outro { - margin-top: 20px; - } -} - -.price-rates-modal .modal-content .modal-body .outro { - margin-top: 20px; - padding-top: 20px; - margin-bottom: 0; - padding-bottom: 0; - border-top: 1px solid rgba(0,0,0,0.1); - border-bottom: none; -} - -.price-rates-modal .modal-content .modal-header { - padding-top: 0px; -} - -@media (max-width:767px) { - .price-rates-modal .modal-content .modal-header { - padding-top: 60px; - } -} - -.price-rates-modal .modal-content .modal-header .modal-menu { - width: 100%; - border-bottom: 1px solid rgba(0,0,0,0.1); - margin: 0; - height: 70px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-trigger { - cursor: pointer; -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible { - list-style: none; - float: left; -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible:hover, -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible[aria-expanded='true'] { - border-bottom: 2px solid #004a99; -} - -@media (max-width:767px) { - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible:hover, - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible[aria-expanded='true'] { - border-bottom: 1px solid rgba(0,0,0,0.1); - } -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a { - font-size: 1rem; - font-weight: 700; - padding: 0 30px; - display: block; - height: 50px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -@media (min-width:768px) { - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a { - height: 70px; - } -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a > span { - font-weight: 400; - margin-left: 15px; -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a > span span { - display: block; - font-size: 12px; -} - -.price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a > span span.from-label { - font-size: 10px; - color: #bababa; - text-transform: lowercase; - margin-top: -10px; -} - -@media (max-width:767px) { - .price-rates-modal .modal-content .modal-header .modal-menu { - width: 100%; - border-bottom: 0px solid rgba(0,0,0,0.1); - margin: 0; - height: auto; - display: block; - } - - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible { - float: left; - width: 100%; - border-bottom: 1px solid rgba(0,0,0,0.1); - } - - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible:hover { - border-bottom: 1px solid rgba(0,0,0,0.1); - } - - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible__icon { - float: right; - margin-left: 20px; - font-size: 8px; - line-height: 50px; - transition: transform .2s ease-in-out; - } - - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible[aria-expanded='true'] .method-modal-collapsible__icon { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - } - - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a { - padding: 0; - } - - .price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible a span { - margin-left: auto; - } -} - -@media (min-width:480px) { - .price-rates-modal .modal-content .modal-header .close { - position: absolute; - right: 30px; - top: 15px; - margin: 0; - } -} - -.price-rates-modal .finance-rates .finance-costs__table, -.price-rates-modal .finance-rates .finance-costs-table { - margin-top: 40px; -} - -.price-rates-modal .finance-rates .finance-costs__table h3, -.price-rates-modal .finance-rates .finance-costs-table h3 { - font-weight: 700; - font-size: 14px; - color: #000; -} - -.price-rates-modal .finance-rates .finance-costs__periods { - margin-bottom: 40px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.price-rates-modal .finance-rates .finance-costs__periods .btn-period { - border: 1px solid #e8e8e8; - font-size: 12px; - margin-right: 10px; - border-radius: 3px; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.price-rates-modal .finance-rates .finance-costs__periods .btn-period:first-child { - margin-right: 0px; -} - -.price-rates-modal .finance-rates .finance-costs__periods .btn-period:hover, -.price-rates-modal .finance-rates .finance-costs__periods .btn-period.active { - border-color: #004a99; - box-shadow: none; -} - -@media (max-width:480px) { - .price-rates-modal .finance-rates .finance-costs__periods .btn-period { - font-size: 10px; - padding: 12px 5px; - } -} - -@media (min-width:768px) { - .price-rates-modal .finance-rates .finance-costs__periods .btn-period { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - } - - .price-rates-modal .finance-rates .finance-costs__periods .btn-period .rate { - margin-left: auto; - } -} - -.finance-rates .table-responsive { - border: 1px solid rgba(0,0,0,0.1); -} - -.finance-rates .table-responsive table { - font-size: 12px; - width: 100%; - margin-bottom: 0; - color: #7f7f7f; -} - -.finance-rates .table-responsive table th { - font-weight: 400; - border-right: 1px solid rgba(0,0,0,0.1); -} - -.finance-rates .table-responsive table th:last-child { - border-right: 0; -} - -.finance-rates .table-responsive table tbody tr { - border-bottom: 0; -} - -.price-rates-modal .finance-rates .table-responsive table tbody tr { - transition: color 300ms ease; -} - -.price-rates-modal .finance-rates .table-responsive table tbody tr.active { - color: #000; - font-weight: 700; -} - -.finance-rates .table-responsive table tbody tr td { - white-space: nowrap; -} - -.out-of-stock__container { - padding-top: 10px; - padding-bottom: 10px; -} - -.out-of-stock__text { - font-size: 14px; - color: #7f7f7f; - margin-bottom: 4px; -} - -.out-of-stock--btn .ga-icon.icon-mail, -.out-of-stock--btn .knowledge-base__most-viewed a.icon-mail { - float: left; - margin-left: 0; - font-size: 20px; - margin-right: 8px; - margin-top: -2px; -} - -.block-stock-notifications .product-color { - display: inline-block; - border-radius: 50%; - width: 20px; - height: 20px; - border: 1px solid #f2f2f2; -} - -@media (max-width:767px) { - .block-stock-notifications .box-product { - padding: 0; - } -} - -.block-stock-notifications .box-product-content { - padding: 30px; - background-color: #fff; - border: 1px solid #f2f2f2; - margin-bottom: 30px; -} - -.block-stock-notifications .box-product h4 { - font-size: 14px; - font-weight: normal; - margin-bottom: 10px; -} - -.block-stock-notifications .box-product img { - margin: 0 auto 30px auto; -} - -.ie11 .block-stock-notifications .box-product img { - min-height: 100%; -} - -.block-stock-notifications .box-product-actions { - margin-top: 35px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.block-stock-notifications .box-product-actions a { - width: calc(50% - 5px); - font-size: 11px; - padding: 10px 12px; -} - -@media (max-width:991px) { - .block-stock-notifications .box-product-actions { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .block-stock-notifications .box-product-actions a { - width: 100%; - } - - .block-stock-notifications .box-product-actions a:not(:last-of-type) { - margin-bottom: 10px; - } -} - -.block-stock-notifications .box-product-columns { - display: flex; - flex-direction: column; -} - -.battery-compare__title h2 { - font-size: 24px; - font-weight: 700; -} - -@media (max-width:767px) { - .battery-compare .table-responsive { - border: 0; - } -} - -.battery-compare__table.table { - table-layout: fixed; -} - -.battery-compare__table.table tr { - border: 0; -} - -.battery-compare__table.table tr td { - border: 0; - padding: 10px 15px; - font-size: 1rem; - vertical-align: top; -} - -.battery-compare__table.table tr td:not(.battery__text) { - color: #7f7f7f; -} - -.battery-compare__table.table tr td.battery__text { - font-weight: 600; - font-size: 16px; - background-color: transparent; -} - -@media (max-width:767px) { - .battery-compare__table.table tr td.battery__text { - font-size: 12px; - } -} - -.battery-compare__table.table tr td.type-battery_level { - color: #000; - font-weight: 700; -} - -.battery-compare__table.table tr td:first-child { - font-weight: 600; - padding-left: 0; - color: #000; -} - -@media (max-width:767px) { - .battery-compare__table.table tr td:nth-child(3) { - padding-left: 0; - } -} - -@media (max-width:767px) { - .battery-compare__table.table tr td { - padding: 40px 5px 20px; - font-size: 12px; - } - - .battery-compare__table.table tr td:not(.attribute-title) { - white-space: normal; - width: 120px; - } -} - -@media (max-width:1199px) { - .battery-compare__table.table tr.load-more-mobile { - display: none; - } - - .battery-compare__table.table tr.load-more-mobile.active { - display: table-row; - } - - .battery-compare__table.table tr.load-more-mobile.active td { - background-color: #fff; - } -} - -@media (max-width:767px) { - .battery-compare__table.table tr { - border-bottom: 1px solid #f2f2f2; - } - - .battery-compare__table.table tr .attribute-title { - padding: 0; - left: 0; - width: 0; - position: -webkit-sticky; - position: -moz-sticky; - position: -ms-sticky; - position: -o-sticky; - position: sticky; - } - - .battery-compare__table.table tr .attribute-title__mobile, - .battery-compare__table.table tr .attribute-title strong { - position: absolute; - left: 0; - top: 15px; - color: #000; - font-weight: 600; - white-space: nowrap; - } -} - -.battery-compare__load-more-container { - margin-bottom: 140px; -} - -.battery-compare__load-more { - cursor: pointer; - margin: 0 auto; - font-weight: 700; - display: table; -} - -@media (max-width:767px) { - .battery-compare__load-more { - margin-top: 30px; - } -} - -.battery-compare__load-more span { - font-size: 7px; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: -ms-inline-flex; - display: inline-flex; -} - -.battery-compare__load-more span:before { - margin-bottom: 5px; -} - -.product-stickybar { - width: 100%; - background: #fff; - z-index: 1010; -} - -.product-stickybar.fixed { - display: block; - top: 0; - bottom: auto; - position: fixed; -} - -.has-lightbox .product-stickybar { - display: none; -} - -.product-stickybar__container { - position: relative; - animation: slideIn .25s; -} - -.fixed .product-stickybar__container { - border-top: 0; -} - -@keyframes slideIn { - from { - transform: translateY(-65px); - } - - to { - transform: translateY(0); - } -} - -.product-stickybar__title { - font-size: 20px; - font-weight: 600; - color: #000; -} - -.product-stickybar__nav-wrapper, -.product-stickybar__nav { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.product-stickybar__nav-toggle a { - font-size: 14px; - font-weight: 600; -} - -.product-stickybar__nav-toggle a:before { - font-size: 6px; - float: right; - margin: 7px 0 0 6px; -} - -.product-stickybar__nav { - list-style: none; - margin: 0; -} - -.product-stickybar__nav a { - font-weight: 600; -} - -.product-stickybar__nav a:not(.btn):hover, -.product-stickybar__nav a:not(.btn).active { - color: #004a99; -} - -.product-stickybar__nav--buttons li { - min-width: 170px; -} - -.product-stickybar__nav--buttons li:first-child { - margin-left: 0; -} - -@media (max-width:991px) { - .product-stickybar { - display: none; - } - - .product-stickybar.fixed { - border-bottom: 1px solid #f2f2f2; - } - - .product-stickybar__title-wrapper { - padding: 28px 15px; - } - - .nav-open .product-stickybar__nav-wrapper { - border-top: 1px solid #f2f2f2; - padding: 5px 15px 10px 15px; - } - - .product-stickybar__nav--collapsed { - display: none; - font-size: 16px; - align-items: start; - flex-direction: column; - } - - .nav-open .product-stickybar__nav--collapsed { - display: block; - } - - .product-stickybar__nav--collapsed li { - margin: 20px 0; - } - - .product-stickybar__nav--buttons { - position: absolute; - top: 15px; - right: 15px; - } - - .product-stickybar__nav--buttons li { - min-width: 145px; - } -} - -@media (min-width:992px) { - .product-stickybar { - background: #fff; - position: absolute; - right: 0; - left: 0; - bottom: 0; - } - - .product-stickybar.fixed { - border-bottom: 1px solid #e8e8e8; - } - - .product-stickybar__container { - padding: 15px 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .product-stickybar__nav-wrapper { - min-height: 45px; - } - - .product-stickybar__nav li { - margin-right: 25px; - } - - .product-stickybar__nav li:last-child { - margin-right: 0; - } - - .product-stickybar__nav--buttons { - width: 0; - display: block; - position: relative; - right: -50vw; - transition: all 750ms; - -webkit-order: 1; - -ms-order: 1; - order: 1; - } - - .product-stickybar__nav--buttons li { - margin-right: 0; - } - - .product-stickybar__nav--buttons li:first-child { - margin-left: 25px; - } - - .fixed .product-stickybar__nav--buttons { - width: auto; - right: 0; - } -} - -@media (min-width:1200px) { - .product-stickybar__nav li { - margin-right: 45px; - } - - .product-stickybar__nav--buttons li:first-child { - margin-left: 45px; - } -} - -#gazelle-pdp-stickybar { - margin-top: 120px; - transition: margin .2s linear,top .2s linear; - will-change: margin,top; - z-index: 1000; -} - -.topbar-active.minimize.gazelle-pdp #gazelle-pdp-stickybar { - margin-top: 0; -} - -.has-lightbox #gazelle-pdp-stickybar { - display: none; -} - -@media (max-width:991px) { - #gazelle-pdp-stickybar { - margin-top: 111px; - } -} - -@media (max-width:767px) { - #gazelle-pdp-stickybar { - margin-top: 107px; - } -} - -.adblock-detector__wrapper { - padding-bottom: 30px; -} - -.adblock-detector__message { - display: block; - position: absolute; - top: calc(75px); - left: 0; - width: 100%; - padding: 10px 0; - text-align: center; - background: #004a99; - color: #fff; - z-index: 900; -} - -.topbar-active .adblock-detector__message { - top: 120px; -} - -@media (max-width:991px) { - .adblock-detector__message { - top: 107px; - } -} - -.product-reviews { - font-size: 1rem; - padding: 80px 0; -} - -.product-reviews h2, -.product-reviews h3 { - color: #000; - margin: 0; -} - -.product-reviews p:last-of-type { - margin-bottom: 0; -} - -.product-reviews__title p { - margin-top: 5px; -} - -.product-reviews__title p a { - color: #bababa; - text-decoration: none; -} - -.product-reviews__title img { - width: 51px; - height: 14px; - margin-left: 5px; - position: relative; - top: -2px; -} - -.product-reviews__header { - margin: 35px 0 37px 0; -} - -.product-reviews__more { - font-size: 14px; - font-weight: 600; - color: #000; - text-align: center; - margin-top: 20px; -} - -.product-reviews__more span:before { - font-size: 6px; - float: right; - margin: 6px 0 0 6px; -} - -@media (max-width:767px) { - .product-reviews__title { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } -} - -@media (min-width:768px) { - .product-reviews { - padding: 175px 0; - } - - .product-reviews h3 { - margin-top: 45px; - } - - .product-reviews__title img { - width: 91px; - height: 23px; - margin-left: 3px; - } -} - -.review-summary { - margin-right: 25px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.review-summary__stars { - white-space: nowrap; - position: relative; - top: -1px; - width: calc(100% - 5px); -} - -.review-summary__stars > span { - display: block; - overflow: hidden; - position: absolute; - top: 0; - left: 0; -} - -.review-summary__stars:before, -.review-summary__stars > span:before { - content: '\e92e' '\e92e' '\e92e' '\e92e' '\e92e'; - font-size: 19px; - letter-spacing: 5px; -} - -.review-summary__stars:before { - color: #e8e8e8; -} - -.review-summary__stars > span:before { - color: #ffdf75; -} - -.review-summary__stars--small { - width: 75px; -} - -.review-summary__stars--small:before, -.review-summary__stars--small > span:before { - font-size: 11px; - letter-spacing: 4px; -} - -.review-summary__stars--large { - width: 257px; -} - -.review-summary__stars--large:before, -.review-summary__stars--large > span:before { - font-size: 28px; - letter-spacing: 25px; -} - -.review-summary__tooltip { - position: relative; - line-height: 22px; -} - -.review-summary__tooltip .tooltip-content { - background: #fff; - max-width: 360px; - min-width: 210px; - padding: 12px 16px; - z-index: 100; - display: none; - position: absolute; - text-align: left; - color: #333; - line-height: 1.4; - border: 1px solid #bbb; - margin-bottom: 5px; - bottom: 100%; - left: 0; -} - -.review-summary__tooltip .tooltip-content:after, -.review-summary__tooltip .tooltip-content:before { - border: solid transparent; - content: ''; - height: 0; - position: absolute; - width: 0; -} - -.review-summary__tooltip .tooltip-content:after { - border-width: 5px; - border-color: transparent; -} - -.review-summary__tooltip .tooltip-content:before { - border-width: 6px; - border-color: transparent; -} - -.review-summary__tooltip .tooltip-content:after, -.review-summary__tooltip .tooltip-content:before { - top: 100%; -} - -.review-summary__tooltip .tooltip-content:after { - border-top-color: #fff; - left: 15px; - margin-left: -5px; -} - -.review-summary__tooltip .tooltip-content:before { - border-top-color: #bbb; - left: 15px; - margin-left: -6px; -} - -.review-summary__tooltip .tooltip-toggle { - cursor: help; -} - -.review-summary__tooltip .tooltip-toggle:hover + .tooltip-content, -.review-summary__tooltip .tooltip-toggle:focus + .tooltip-content, -.review-summary__tooltip:hover .tooltip-content { - display: block; -} - -.review-summary__tooltip .tooltip-toggle { - color: #7f7f7f; -} - -.review-summary__tooltip .tooltip-content { - margin-bottom: 8px; -} - -@media (max-width:767px) { - .review-summary__tooltip .tooltip-content { - left: auto; - right: 0; - } - - .review-summary__tooltip .tooltip-content:after { - left: auto; - right: 60px; - } -} - -.review-summary__tooltip:before { - color: #7f7f7f; - background-color: #f2f2f2; - font-size: 6px; - width: 18px; - height: 18px; - line-height: 18px; - text-align: center; - position: relative; - display: inline-block; - margin: 0 6px; - top: -1px; - border-radius: 18px; -} - -.review-summary__verified { - margin-left: 10px; -} - -@media (max-width:767px) { - .review-summary__verified { - margin-bottom: 15px; - } -} - -.review-summary__score, -.review-summary__count { - font-weight: 600; - color: #000; -} - -.review-summary__score { - font-size: 32px; - margin-right: 15px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.review-summary__score:after { - content: '\2022'; - font-size: 16px; - color: #000; -} - -.review-summary__score em { - font-size: 24px; - font-style: normal; - color: #bababa; - margin: 0 15px 0 10px; -} - -.review-summary__count--small { - font-size: 12px; - font-weight: 400; - color: #333; -} - -@media (max-width:767px) { - .review-summary__stars-wrapper { - margin-bottom: 15px; - } -} - -@media (min-width:768px) { - .review-summary__score { - margin-left: 35px; - } -} - -@media (min-width:992px) { - .review-summary__stars--large { - width: 238px; - } - - .review-summary__stars--large:before, - .review-summary__stars--large > span:before { - font-size: 33px; - letter-spacing: 15px; - } -} - -.product-review { - border-bottom: 1px solid rgba(186,186,186,0.4); - padding: 37px 0; -} - -.product-review:first-child { - border-top: 1px solid rgba(186,186,186,0.4); -} - -.product-review__header { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.product-review__header p { - font-size: 16px; - color: #000; -} - -.product-review__header span { - color: #7f7f7f; -} - -.product-review__meta { - color: #e8e8e8; - margin: 7px 0 20px 0; -} - -.product-review__meta strong { - font-weight: 600; - color: #bababa; -} - -.product-review__body { - margin-top: 13px; -} - -.product-review-reply { - width: 100%; - margin: 40px 0 0; -} - -@media (max-width:767px) { - .product-review-reply { - margin-top: 20px; - } -} - -.product-review-reply__wrapper { - background-color: #f2f2f2; - padding: 30px; - border-left: 2px solid #004a99; -} - -.product-review-reply__header { - padding-bottom: 18px; -} - -@media (min-width:768px) { - .product-review-reply__header { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } -} - -.product-review-reply__header p { - font-size: 16px; - color: #000; -} - -.product-review-reply__header span { - color: #7f7f7f; - display: block; -} - -@media (max-width:767px) { - .product-review-reply__header span { - margin-top: 8px; - } -} - -@media (min-width:1200px) { - .product-review-reply p { - padding-right: 100px; - } -} - -@media (min-width:768px) { - .product-review__meta strong { - font-weight: 400; - color: #7f7f7f; - } -} - -@media (min-width:1200px) { - .product-review__meta { - margin-bottom: 25px; - } - - .product-review__body { - padding-right: 100px; - } -} - -footer .service-reviews { - background-color: #fff; - border-top: 1px solid #f2f2f2; -} - -footer .service-reviews__header { - margin: 28px 0; -} - -footer .service-reviews .review-summary__score { - font-size: 16px; - margin: 0 28px 0 20px; -} - -footer .service-reviews .review-summary__score em { - font-size: 14px; - margin: 0 28px 0 6px; -} - -@media (max-width:767px) { - footer .service-reviews .review-summary__score { - margin-right: 0; - } - - footer .service-reviews .review-summary__score em { - margin-right: 0; - } - - footer .service-reviews .review-summary__score:after { - display: none; - } -} - -footer .service-reviews .review-summary__count { - font-size: 1rem; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -@media (max-width:767px) { - footer .service-reviews .review-summary__count { - width: 100%; - margin-top: 20px; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - } -} - -footer .service-reviews .review-summary__stars-wrapper { - margin-bottom: 0; - -webkit-flex: none; - -ms-flex: none; - flex: none; -} - -@media (max-width:767px) { - footer .service-reviews .review-summary { - margin-right: 0; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - } -} - -footer .service-reviews img { - height: 19px; - margin: 1px 0 4px 6px; -} - -.accessory-lookup__wrapper { - margin-bottom: 155px; -} - -.accessory-lookup__form { - padding-top: 40px; -} - -.accessory-lookup__description p { - color: #a9a9a9; -} - -.accessory-lookup__description p:first-child { - font-size: 24px; - font-weight: 700; - color: #333; - line-height: 1.083; - text-transform: none; - letter-spacing: 0; - margin-bottom: 5px; -} - -.accessory-lookup__description .icon-info { - font-size: 14px; - margin: 0; - top: -10px; -} - -.accessory-lookup__result p, -.accessory-lookup__result span { - font-size: 24px; - line-height: 1.167; -} - -.accessory-lookup__result span { - color: #e8e8e8; - font-weight: 700; - display: block; -} - -.accessory-lookup__result span.valid { - color: #004a99; -} - -.accessory-lookup__result a { - text-decoration: underline; - display: block; - margin-top: 5px; -} - -.accessory-lookup__placeholder { - background: #e8e8e8; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -@media (max-width:991px) { - .accessory-lookup__wrapper { - background: #f2f2f2; - } - - .accessory-lookup__placeholder { - position: relative; - margin: 40px 0 -95px; - } -} - -@media (min-width:992px) { - .accessory-lookup { - border: 2px solid #e8e8e8; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - border-radius: 6px; - } - - .accessory-lookup__wrapper { - margin-bottom: 90px; - } - - .accessory-lookup__form { - width: 59.82905983%; - padding: 80px 80px 80px 50px; - } - - .accessory-lookup__description p { - margin-bottom: 35px; - } - - .accessory-lookup__description p:first-child { - margin-bottom: 10px; - } - - .accessory-lookup__result span { - font-size: 48px; - } - - .accessory-lookup__placeholder { - width: 40.17094017%; - background: #f2f2f2; - margin-left: auto; - } -} - -@media (min-width:1200px) { - .accessory-lookup__form { - min-height: 360px; - padding-right: 80px; - padding-left: 100px; - } -} - -.lookup-placeholder { - position: relative; -} - -.lookup-placeholder img { - max-width: 360px; -} - -.lookup-placeholder img.loading { - opacity: 0.1; -} - -.lookup-placeholder img.invisible { - opacity: 0; -} - -.lookup-placeholder img.product-image { - transition: opacity 300ms ease-in-out; -} - -.lookup-placeholder img.accessory-image { - max-width: 120px; - position: absolute; - bottom: 20px; - right: 40px; -} - -.lookup-placeholder__overlay { - font-size: 20px; - font-weight: 600; - width: 150px; - height: 150px; - background: #fff; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - -webkit-transform: translate(-50%, -50%); - -moz-transform: translate(-50%, -50%); - -ms-transform: translate(-50%, -50%); - -o-transform: translate(-50%, -50%); - border-radius: 50%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.lookup-placeholder__overlay .loading-text { - padding-right: 20px; -} - -.lookup-placeholder__overlay .loading-text:after { - content: '\2026'; - display: inline-block; - width: 0; - overflow: hidden; - vertical-align: bottom; - position: absolute; - margin-right: 20px; - -webkit-animation: ellipsis steps(4, end) 1400ms infinite; - -o-animation: ellipsis steps(4, end) 1400ms infinite; - animation: ellipsis steps(4, end) 1400ms infinite; - -webkit-animation: ellipsis steps(4, end) 1400ms infinite 300ms 0 ease; - -moz-animation: ellipsis steps(4, end) 1400ms infinite 300ms 0 ease; - -ms-animation: ellipsis steps(4, end) 1400ms infinite 300ms 0 ease; - animation: ellipsis steps(4, end) 1400ms infinite 300ms 0 ease; -} - -@keyframes ellipsis { - to { - width: 20px; - } -} - -.lookup-placeholder__overlay .state--valid { - width: 72px; - height: 49px; -} - -.lookup-placeholder__overlay .state--invalid { - width: 44px; - height: 44px; -} - -@media (min-width:992px) { - .page-products .page-main { - padding: 0; - } -} - -.page-products .sidebar-main, -.page-products .columns .column.main { - display: inline-block; -} - -.page-products .sidebar-main { - vertical-align: top; -} - -.page-products .product-items { - display: flex; - flex-wrap: wrap; -} - -.page-products .product-amount-number { - font-size: 14px; - color: #7f7f7f; -} - -.page-products #btn-pop-load-more { - font-size: 1rem; - margin-bottom: 20px; - text-align: center; -} - -.page-products #btn-pop-load-more .icon-arrow-down { - float: none; - margin-left: 5px; -} - -.page-products #btn-pop-load-more .icon-arrow-down:after { - border: none; -} - -.page-products .toolbar { - display: flex; - background-color: #fff; -} - -.page-products .toolbar.fixed { - padding: 0 25px; - align-items: center; -} - -@media (max-width:991px) { - .page-products .toolbar.fixed { - transition: transform .25s ease-in-out; - position: absolute; - left: 0; - right: 0; - bottom: 0; - z-index: -1; - height: 54px; - } - - .page-products .toolbar.fixed.open { - transform: translateY(53px); - -webkit-transform: translateY(53px); - -moz-transform: translateY(53px); - -ms-transform: translateY(53px); - -o-transform: translateY(53px); - } -} - -@media (min-width:992px) { - .page-products .toolbar.fixed { - display: none; - } -} - -.page-products .toolbar.fixed p { - margin-bottom: 0; -} - -.page-products .toolbar > div { - flex-grow: 1; -} - -.page-products .toolbar-buttons { - text-align: right; - font-size: 14px; - font-weight: bold; -} - -.page-products .toolbar-buttons > div { - display: inline-block; -} - -.page-products .toolbar-buttons select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - direction: rtl; - margin-left: 10px; - padding-right: 24px; - background: #fff url('../images/icons/chevron-down.svg') no-repeat; - background-position: center right; -} - -.ie11 .page-products .toolbar-buttons select { - background: none; -} - -.page-products .toolbar-buttons .toggle-filter span { - margin-left: 4px; -} - -@media (min-width:992px) { - .page-products .toolbar-buttons .toggle-filter { - display: none; - } -} - -.page-products .toolbar .action.sorter-action { - display: none; -} - -.page-products .toolbar .sorter-label { - margin-left: 32px; - font-weight: normal; - color: #7f7f7f; -} - -@media (max-width:767px) { - .page-products .toolbar .sorter-label { - display: none; - } -} - -.page-products .active-filters { - margin-bottom: 10px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - -.page-products .active-filters__item { - background-color: #f2f2f2; - padding: 0 0 0 10px; - margin: 0 16px 10px 0; - line-height: 28px; - border-radius: 2px; -} - -.page-products .active-filters .value { - font-weight: 600; -} - -.page-products .active-filters .remove:after { - cursor: pointer; - content: '×'; - font-size: 23px; - vertical-align: middle; - margin-left: 5px; - padding-right: 10px; - display: inline-block; -} - -.page-products .active-filters .remove:hover:after { - color: #7f7f7f; -} - -.loading-mask { - z-index: 3000; - background-color: rgba(255,255,255,0.5); -} - -.loading-mask .loader { - left: 50%; - top: 50%; - width: 100px; - height: 58px; - position: absolute; - background: url('../images/loader/bike-frame.svg') no-repeat center center; - background-size: contain; - transform: translateY(-50%) translateX(-50%); - -webkit-transform: translateY(-50%) translateX(-50%); - -moz-transform: translateY(-50%) translateX(-50%); - -ms-transform: translateY(-50%) translateX(-50%); - -o-transform: translateY(-50%) translateX(-50%); -} - -.loading-mask .loader:before { - left: -16px; - -webkit-animation: loading-wheel .5s linear 0s forwards infinite; - -o-animation: loading-wheel .5s linear 0s forwards infinite; - animation: loading-wheel .5s linear 0s forwards infinite; - -webkit-animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; - -moz-animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; - -ms-animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; - animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; -} - -.loading-mask .loader:after { - left: 64px; - -webkit-animation: loading-wheel .5s linear 0s forwards infinite; - -o-animation: loading-wheel .5s linear 0s forwards infinite; - animation: loading-wheel .5s linear 0s forwards infinite; - -webkit-animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; - -moz-animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; - -ms-animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; - animation: loading-wheel .5s linear 0s forwards infinite 300ms 0 ease; -} - -.loading-mask .loader:before, -.loading-mask .loader:after { - top: 31px; - position: absolute; - content: ''; - width: 52px; - height: 52px; - background: url('../images/loader/bike-wheel.svg') no-repeat center center; - background-size: contain; -} - -.loading-mask .loader img { - display: none; -} - -@keyframes loading-wheel { - 0% { - transform: rotate(0deg); - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -ms-transform: rotate(0deg); - -o-transform: rotate(0deg); - } - - 50% { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - } - - 100% { - transform: rotate(360deg); - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -ms-transform: rotate(360deg); - -o-transform: rotate(360deg); - } -} - -.smartfit-onlinesizing { - position: relative; - z-index: 2070; -} - -.filter-options h5 { - font-size: 12px; - text-transform: uppercase; - color: #004a99; - padding: 30px 0; - letter-spacing: 1.5px; - margin: 0; - border-top: 1px solid #f2f2f2; -} - -.filter-options h5 i { - color: #7f7f7f; - font-size: 14px; - margin-left: 5px; - margin-top: -4px; -} - -.filter-options .option-tile { - width: calc(100%/3 - 10px); - padding-bottom: calc(100%/3 - 10px); - margin-right: 10px; - margin-bottom: 26px; - height: 0; - font-size: 10px; - text-align: center; - position: relative; - display: inline-block; - background-color: #f2f2f2; - color: black; - border-radius: 2px; - transition: background-color .2s; -} - -@media (min-width:992px) { - .filter-options .option-tile { - font-size: 14px; - } -} - -@media (min-width:1600px) { - .filter-options .option-tile { - width: calc(100%/3 - 10px * 2); - padding-bottom: calc(100%/3 - 10px * 2); - } -} - -.filter-options .option-tile--label { - text-transform: capitalize; - position: absolute; - top: 65%; - width: 100%; -} - -.filter-options__more-button { - display: block; - color: #004a99; - font-weight: 600; - font-size: 12px; - margin-bottom: 28px; -} - -.filter-options__more-button:hover, -.filter-options__more-button:active, -.filter-options__more-button:focus { - color: #004a99; -} - -.filter-options__more-button .icon-chevron-down, -.filter-options__more-button .page-footer .footer-links h4, -.filter-options__more-button .cms-hierarchy__title strong, -.filter-options__more-button .cart-crosssell__header a.active, -.filter-options__more-button .faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron, -.filter-options__more-button .product-stickybar__nav-toggle a, -.filter-options__more-button .product-reviews__more span, -.filter-options__more-button .virtual-category button.content-collapse, -.filter-options__more-button .account .order-item__title--collapsible { - font-size: 6px; - margin-left: 4px; - vertical-align: middle; - display: inline-block; - transform: rotate(180deg); -} - -.filter-options .filter-options__count { - font-size: 10px; - font-weight: 600; - color: #bababa; -} - -.filter-options label.option-tile { - cursor: pointer; -} - -.filter-options input[type=checkbox]:checked + label.option-tile { - background-color: #004a99; - color: white; -} - -.filter-options input[type=checkbox]:checked + label.option-tile .filter-options__count { - color: #fff; -} - -.filter-options .option-checkbox { - margin-bottom: 28px; - font-size: 16px; - transition: all .4s; -} - -.filter-options .option-checkbox input[type=checkbox] + label .checker { - float: right; - min-width: 16px; -} - -.filter-options .option-checkbox .filter-options__count { - padding-left: 4px; -} - -.filter-options .option-checkbox--label { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.filter-options .option-checkbox--wrapper { - padding-right: 18px; -} - -.filter-options .option-checkbox--wrapper:after { - content: attr(data-count); - font-size: 10px; - font-weight: 600; - color: #bababa; - position: absolute; - padding-left: 6px; -} - -.filter-options .item-hide .option-checkbox:nth-child(1n + 7) { - height: 0; - overflow: hidden; - margin-bottom: 0; -} - -.filter-options .item-hide .option-checkbox:nth-child(1n + 7) .option-checkbox--wrapper:after { - display: none; -} - -.filter-options .item-hide .icon-chevron-down, -.filter-options .item-hide .page-footer .footer-links h4, -.filter-options .item-hide .cms-hierarchy__title strong, -.filter-options .item-hide .cart-crosssell__header a.active, -.filter-options .item-hide .faq-sidebar .faq-sidebar__category .faq-sidebar__category__chevron, -.filter-options .item-hide .product-stickybar__nav-toggle a, -.filter-options .item-hide .product-reviews__more span, -.filter-options .item-hide .virtual-category button.content-collapse, -.filter-options .item-hide .account .order-item__title--collapsible { - transform: rotate(0); -} - -.filter-options .option-slider { - margin: 7px 7px 16px 7px; -} - -.filter-options .option-slider > a { - width: 16px; - height: 16px; - margin-left: -8px; - margin-top: -8px; - top: initial; - border: 1px solid #0d4282; -} - -.filter-options .option-slider > a:before { - content: " "; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - border: 2px solid #fff; - border-radius: 16px; -} - -.filter-options .option-slider .ui-slider-range { - top: -1px; -} - -.filter-options .slider-container { - color: #000; - font-size: 14px; - font-weight: 600; - display: inline-block; - margin-bottom: 28px; - background-color: #fff; - border: 1px solid rgba(0,0,0,0.1); - padding: 4px; - border-radius: 2px; -} - -.filter-options .slider-container > input { - min-width: 30px; -} - -.filter-options .slider-container > input.slider-value.float-left { - float: left; -} - -.filter-options .slider-container > label { - font-weight: 600; - padding-right: 2px; - padding-left: 2px; -} - -.tile-icon { - position: absolute; - margin-top: 25%; - left: 50%; - font-size: 26px; - transform: translateX(-50%); - background-position: center; -} - -.tile-icon:before { - top: 20%; -} - -@media (min-width:1600px) { - .tile-icon[data-type='pim_itemgenderframe'].tile-icon { - width: 100%; - height: 28px; - } -} - -@media (min-width:1600px) { - .tile-icon[data-type='pim_ebikeenginelocation'].tile-icon { - width: 100%; - height: 28px; - } -} - -.tile-icon[data-type="pim_productebike"].tile-icon--Y, -.tile-icon[data-type="pim_productebike"].tile-icon--ja { - margin-top: 13%; -} - -.tile-icon[data-type="pim_productebike"].tile-icon--N, -.tile-icon[data-type="pim_productebike"].tile-icon--nee { - margin-top: 13%; -} - -.tile-icon[data-type="pim_productseatingposition"] { - width: 100%; - height: 62%; - margin-top: 7%; -} - -.tile-icon[data-type="outlet_enabled"].tile-icon { - margin-top: 16%; - font-size: 32px; -} - -@media (max-width:991px) { - .tile-icon[data-type="outlet_enabled"].tile-icon { - font-size: 30px; - margin-top: 10%; - } -} - -@media (max-width:767px) { - .tile-icon[data-type="outlet_enabled"].tile-icon { - font-size: 28px; - margin-top: 14%; - } -} - -.filter-content { - position: relative; -} - -.filter-content h3 { - font-size: 24px; - font-weight: 600; - margin-top: 0; -} - -@media (min-width:992px) { - .filter-content h3 { - display: inline-block; - } -} - -@media (max-width:991px) { - .filter-content h3 { - margin-bottom: 2px; - } -} - -.filter-content .bike-filter__form-clear, -.filter-content .bike-filter__clear-current { - font-size: 12px; - font-weight: 400; - line-height: 32px; - background-color: transparent; - color: #7f7f7f; -} - -@media (min-width:992px) { - .filter-content .bike-filter__form-clear, - .filter-content .bike-filter__clear-current { - float: right; - } -} - -.filter-content .bike-filter__form-clear span, -.filter-content .bike-filter__clear-current span { - float: left; -} - -.filter-content .bike-filter__form-clear:before, -.filter-content .bike-filter__clear-current:before { - font-size: 7px; - line-height: 8px; - margin-left: 8px; -} - -.filter-content .bike-filter__clear-current { - line-height: initial; - float: right; -} - -.filter-content .bike-filter__clear-current.item-hide { - display: none; -} - -.filter-content .bike-filter__close { - position: absolute; - top: 3px; - right: 0; -} - -.filter-content .bike-filter__close .icon-cross { - font-size: 14px; -} - -@media (min-width:992px) { - .filter-content .bike-filter__close { - display: none; - } -} - -.bike-filter__apply { - position: sticky; - bottom: 0; - margin-left: -15px; - padding: 0 15px; - z-index: 2; - background-color: #004a99; - line-height: 59px; - width: calc(100% + 30px); - color: white; - font-weight: bold; - font-size: 14px; -} - -@media (min-width:992px) { - .bike-filter__apply { - display: none; - } -} - -.js-filters-collapse { - display: none; -} - -@media (max-width:991px) { - .page-with-filter .sidebar { - position: fixed; - background-color: #fff; - left: -300px; - top: 0; - z-index: 1150; - padding-top: 30px; - overflow-y: scroll; - -webkit-overflow-scrolling: touch; - height: 100%; - min-width: 250px; - max-width: 300px; - transition: transform .5s ease-in-out; - } - - .page-with-filter .sidebar.open { - transform: translateX(300px); - } -} - -.show-more-filters-container .bike-filter__form-clear--bottom { - display: block; - width: 100%; - border-top: 1px solid #f2f2f2; - margin: 20px 0; - padding: 5px 0 15px 0; -} - -.show-more-filters-container #show-more-filters { - text-align: center; -} - -.product-item { - margin-bottom: 30px; -} - -.products .product-item { - list-style: none; -} - -@media (max-width:991px) and (min-width:480px) { - .products .product-item { - width: calc(50% - 1px); - } -} - -.product-item-info { - display: flex; - flex-direction: column; - position: relative; - background-color: #f2f2f2; - border-radius: 5px; - padding: 30px; - height: 100%; - transition: transform .2s; -} - -@media (max-width:991px) and (min-width:480px) { - .product-item-info { - min-height: 440px; - } -} - -.product-item-info .product-image-container { - display: block; - overflow: hidden; - height: auto; -} - -@media (min-width:1600px) { - .thead-overlay .product-item-info .product-image-container { - padding: 25px; - } -} - -.product-item-info .product-image-container .product-image-wrapper { - height: 100%; - display: block; -} - -.product-item-info .product-image-container .product-image-wrapper .product-image-helper { - height: 100%; - display: inline-block; - vertical-align: middle; -} - -.product-item-info .product-image-container .product-image-wrapper img { - width: 100%; - vertical-align: middle; -} - -.product-item-info h2 { - font-size: 20px; - font-weight: bold; - margin: 0 0 10px 0; - max-height: 40px; - width: 100%; - overflow: hidden; -} - -.product-item-info .actions-primary { - width: 100%; - margin-top: auto; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; -} - -.product-item-info .actions-primary .btn { - text-align: center; -} - -.product-item-info .actions-primary .btn.btn-outline--grey:hover, -.product-item-info .actions-primary .btn.btn-outline--grey:active, -.product-item-info .actions-primary .btn.btn-outline--grey:focus { - background-color: #fff; -} - -@media (min-width:1200px) { - .product-item-info:hover { - transform: translateY(-5px); - } -} - -.product-item-info--blue { - background-color: #004a99; - color: #fff; -} - -.product-item-info--cyan { - background-color: #558093; - color: #fff; -} - -.product-item-info .product-item-details { - display: flex; - flex-direction: column; - justify-content: space-between; - height: 100%; -} - -.ie11 .product-item-info .product-item-details { - display: block; -} - -.product-item-name { - font-size: 1rem; - line-height: 1.6; -} - -.product-item__price-info strong { - font-weight: 600; -} - -.product-item__price-info .tooltip-finance-rates { - padding-left: 3px; - position: absolute; - cursor: pointer; -} - -.product-item__price-info .old-price { - font-weight: normal; - font-size: 14px; -} - -.product-item__price-info .old-price strong { - color: #7f7f7f; -} - -.product-item__price-info .special-price { - float: left; - margin-right: 10px; -} - -.product-item__price-info .price-info-description { - float: left; - font-size: 14px; - margin: 3px 5px 0 0; -} - -.product-item .price-final_price { - font-size: 1rem; - margin-top: 8px; - margin-bottom: 1px; -} - -.product-item .monthly-price { - font-size: 12px; - color: #7f7f7f; -} - -.product-item .monthly-price .description { - position: relative; -} - -.product-item--marketing-label { - position: absolute; - top: 30px; - right: 31px; - letter-spacing: 1px; - font-size: 9px; - font-weight: 600; - text-overflow: ellipsis; - white-space: nowrap; - max-width: 200px; - overflow: hidden; - background-color: #fff; - border-top-left-radius: 6px; - border-top-right-radius: 6px; - color: #004a99; - text-transform: uppercase; - transform: rotate(-90deg); - padding: 10px; - text-align: right; - transform-origin: 100% 0; -} - -.product-item .product-item-cta { - display: inline-block; - margin-top: 20px; - -webkit-flex: 1 1 0; - -ms-flex: 1 1 0; - flex: 1 1 0; -} - -.product-item .product-item-cta:nth-child(2) { - padding-left: 5px; -} - -.product-item .product-item-cta a { - width: 100%; - display: inline-block; -} - -.product-item .product-item-cta:first-child { - float: right; -} - -.product-item .swatch-attribute .swatch-option { - margin: 0; -} - -.product-item .swatch-attribute .swatch-option.disabled:after { - background: none; -} - -.product-item .swatch-attribute .swatch-option.selected, -.product-item .swatch-attribute .swatch-option.text { - outline: none; - border: none; -} - -.product-item .swatch-attribute .swatch-option.text { - padding: 0; -} - -.product-item .swatch-attribute.pim_primarycolorrgb { - height: 22px; - overflow: hidden; -} - -.product-item .swatch-attribute.pim_primarycolorrgb .swatch-option.double { - position: relative; - height: 20px; - width: 20px; - transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - -moz-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - -o-transform: rotate(-45deg); -} - -.product-item .swatch-attribute.pim_primarycolorrgb .swatch-option.double.selected .swatch-option--secondary, -.product-item .swatch-attribute.pim_primarycolorrgb .swatch-option.double.color:hover .swatch-option--secondary { - width: 14px; - height: 7px; - bottom: 2px; - right: 2px; -} - -.product-item .swatch-attribute.pim_primarycolorrgb .swatch-option.double .swatch-option--secondary { - position: absolute; - width: 20px; - height: 10px; - bottom: 0; - right: 0; - border-bottom-left-radius: 16px; - border-bottom-right-radius: 16px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.product-item .pim_secondarycolorrgb { - display: none; -} - -.product-item .pim_itemcolorcodeonergb, -.product-item .pim_primarycolorrgb { - height: 18px; - overflow: hidden; - margin-top: 20px; -} - -.product-item .pim_itemcolorcodeonergb .swatch-option, -.product-item .pim_primarycolorrgb .swatch-option { - height: 16px; - width: 16px; - border: none; - min-width: 0; - border-radius: 16px; - margin-right: 8px; -} - -.product-item .pim_itemcolorcodeonergb .swatch-option.color:hover, -.product-item .pim_primarycolorrgb .swatch-option.color:hover { - outline: none; -} - -.product-item .pim_itemcolorcodeonergb .swatch-option.selected, -.product-item .pim_primarycolorrgb .swatch-option.selected, -.product-item .pim_itemcolorcodeonergb .swatch-option.color:hover, -.product-item .pim_primarycolorrgb .swatch-option.color:hover { - border: 1px solid #000; -} - -.product-item .pim_itemcolorcodeonergb .swatch-option.selected:before, -.product-item .pim_primarycolorrgb .swatch-option.selected:before, -.product-item .pim_itemcolorcodeonergb .swatch-option.color:hover:before, -.product-item .pim_primarycolorrgb .swatch-option.color:hover:before { - content: " "; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - border: 2px solid #fff; - border-radius: 16px; -} - -.product-item .pim_itemcolorcodeonergb .swatch-option[option-label="255,255,255"], -.product-item .pim_primarycolorrgb .swatch-option[option-label="255,255,255"] { - border: 1px solid #bababa; -} - -.product-item .pim_itemcolorcodeonergb .swatch-option[option-label="255,255,255"].selected, -.product-item .pim_primarycolorrgb .swatch-option[option-label="255,255,255"].selected, -.product-item .pim_itemcolorcodeonergb .swatch-option[option-label="255,255,255"]:hover, -.product-item .pim_primarycolorrgb .swatch-option[option-label="255,255,255"]:hover { - border: 1px solid #000; -} - -.product-item .pim_itemgenderframe { - margin-top: 0; - border-bottom: 1px solid #bbb; -} - -.product-item .pim_itemgenderframe .swatch-attribute-options { - margin-bottom: -1px; -} - -.product-item .pim_itemgenderframe .swatch-option { - height: 32px; - width: 33.33333333%; -} - -.product-item .pim_itemgenderframe .swatch-option.text { - background-color: transparent; -} - -.product-item .pim_itemgenderframe .swatch-option.selected { - border-bottom: 1px solid #000; -} - -.swatch-attribute .swatch-attribute-options { - margin-top: 0; -} - -@media not all and (min-resolution:.001dpcm) { - @supports (-webkit-appearance:none) and (not (stroke-color:transparent)) { - .product-item-info { - display: block; - } - } - - @supports (-webkit-appearance:none) { - ol.products.product-items:before, - ol.products.product-items:after { - content: normal; - } - } -} - -.pop-placeholder .toolbar-placeholder { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.pop-placeholder .toolbar-placeholder > div { - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.pop-placeholder .toolbar-placeholder span { - display: inline-block; - width: 100px; - height: 17px; - background-image: none; - background-color: #f2f2f2; - opacity: .3; - border-radius: 10px; - -webkit-animation: popTilesPulse 1.5s infinite; - -o-animation: popTilesPulse 1.5s infinite; - animation: popTilesPulse 1.5s infinite; - -webkit-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -moz-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -ms-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - animation: popTilesPulse 1.5s infinite 300ms 0 ease; -} - -.pop-placeholder .product-item { - height: 388px; -} - -@media (max-width:1199px) { - .pop-placeholder .product-item { - height: 412px; - } -} - -@media (max-width:991px) { - .pop-placeholder .product-item { - height: 440px; - } -} - -@media (max-width:480px) { - .pop-placeholder .product-item { - height: 501px; - } -} - -.pop-placeholder .product-item .product-item-info.gradient { - opacity: .3; - background-size: 800px; - position: relative; - -webkit-animation: popTilesPulse 1.5s infinite; - -o-animation: popTilesPulse 1.5s infinite; - animation: popTilesPulse 1.5s infinite; - -webkit-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -moz-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -ms-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - animation: popTilesPulse 1.5s infinite 300ms 0 ease; -} - -.pop-placeholder .load-more { - height: 60px; - margin-bottom: 20px; - opacity: .3; - background-color: #f2f2f2; - -webkit-animation: popTilesPulse 1.5s infinite; - -o-animation: popTilesPulse 1.5s infinite; - animation: popTilesPulse 1.5s infinite; - -webkit-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -moz-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -ms-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - animation: popTilesPulse 1.5s infinite 300ms 0 ease; -} - -.pop-placeholder h5 span { - font-size: 10px; -} - -.pop-placeholder .filter-options__more-button { - font-size: 8px; -} - -.pop-placeholder .filter-options__more-button .ga-icon, -.pop-placeholder .filter-options__more-button .knowledge-base__most-viewed a { - display: none; -} - -.pop-placeholder h5 span, -.pop-placeholder .filter-options__more-button span { - background-color: #004a99; - color: transparent; - opacity: .2; - border-radius: 10px; - -webkit-animation: popFiltersPulse 1.5s infinite; - -o-animation: popFiltersPulse 1.5s infinite; - animation: popFiltersPulse 1.5s infinite; - -webkit-animation: popFiltersPulse 1.5s infinite 300ms 0 ease; - -moz-animation: popFiltersPulse 1.5s infinite 300ms 0 ease; - -ms-animation: popFiltersPulse 1.5s infinite 300ms 0 ease; - animation: popFiltersPulse 1.5s infinite 300ms 0 ease; -} - -.pop-placeholder .option-tile { - color: transparent; - -webkit-animation: popTilesPulse 1.5s infinite; - -o-animation: popTilesPulse 1.5s infinite; - animation: popTilesPulse 1.5s infinite; - -webkit-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -moz-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -ms-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - animation: popTilesPulse 1.5s infinite 300ms 0 ease; -} - -.pop-placeholder .tile-icon { - display: none; -} - -.pop-placeholder .option-checkbox .checker { - background-color: #f2f2f2; - border: none; -} - -.pop-placeholder .option-checkbox label { - color: transparent; - background-color: #f2f2f2; - border-radius: 10px; - opacity: .3; - -webkit-animation: popTilesPulse 1.5s infinite; - -o-animation: popTilesPulse 1.5s infinite; - animation: popTilesPulse 1.5s infinite; - -webkit-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -moz-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - -ms-animation: popTilesPulse 1.5s infinite 300ms 0 ease; - animation: popTilesPulse 1.5s infinite 300ms 0 ease; -} - -@keyframes popTilesPulse { - 0% { - opacity: .3; - } - - 50% { - opacity: 1; - } - - 100% { - opacity: .3; - } -} - -@keyframes popFiltersPulse { - 0% { - opacity: .2; - } - - 50% { - opacity: .6; - } - - 100% { - opacity: .2; - } -} - -#service-tile .bluefoot-buttons { - align-self: flex-end; - margin-top: auto; -} - -#service-tile .btn { - background: #0d4282; - color: #fff; - font-weight: bold; - font-size: 1rem; - text-align: left; - opacity: 1; - padding: 20px 0 0 16px; - height: 60px; - width: 100%; -} - -#service-tile .btn:before { - padding: 3px 16px 0 0; - float: right; -} - -#service-tile .btn:hover { - background: #003062; -} - -.service-tile-content { - line-height: 1.71; - display: flex; - height: 100%; -} - -.service-tile-content p { - opacity: 0.6; -} - -.service-tile-content .row-inner { - height: 100%; -} - -.service-tile-content .bluefoot-structural { - padding: 0; - margin: 0; - width: 100%; - height: 100%; -} - -.service-tile-content .bluefoot-structural > .col-inner { - height: 100%; - display: flex; - flex-direction: column; - justify-content: space-between; -} - -.service-tile-content .bluefoot-textarea { - max-height: 206px; - overflow: hidden; -} - -.service-tile-content .bluefoot-buttons { - text-align: left; - margin-bottom: 0; -} - -.service-tile-content .bluefoot-buttons .btn { - width: 100%; - text-align: left; - margin-bottom: 0; -} - -.virtual-category_inner { - margin-bottom: 24px; - border-bottom: 1px solid #f2f2f2; -} - -.virtual-category h1 { - font-size: 40px; - font-weight: bold; - line-height: 1; - padding: 0; - margin: 0 0 17px 0; -} - -.virtual-category #content-short-description { - font-size: 14px; - color: #7f7f7f; - line-height: 1.71; - margin: 0 0 30px 0; -} - -.virtual-category #content-short-description p:last-of-type { - margin-bottom: 0; -} - -@media (max-width:1199px) { - .virtual-category #content-short-description { - overflow: hidden; - max-height: 70px; - } - - .virtual-category #content-short-description p { - display: -webkit-box; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - } - - .virtual-category #content-short-description.expanded { - overflow: visible; - max-height: none; - } - - .virtual-category #content-short-description.expanded p { - -webkit-line-clamp: initial; - } -} - -@media (min-width:1200px) { - .virtual-category #content-short-description { - display: block; - } -} - -.virtual-category button.content-collapse { - margin-bottom: 28px; - font-size: 14px; - background: transparent; - font-weight: bold; - color: #004a99; -} - -.virtual-category button.content-collapse:before { - float: right; - font-size: 7px; - font-weight: bold; - line-height: 2.5; - margin-left: 10px; -} - -.virtual-category button.content-collapse.less:before { - transform: rotate(180deg); - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); -} - -@media (min-width:1200px) { - .virtual-category button.content-collapse { - display: none; - } -} - -.no-results { - text-align: center; - padding-top: 64px; -} - -.no-results div { - margin-bottom: 16px; -} - -.no-results button { - margin-top: 16px; -} - -.no-results .up-side-down { - transform: rotate(190deg); -} - -.no-results .icon-bike:before { - font-size: 60px; - color: #004a99; -} - -.account-dashboard__order-history { - margin-bottom: 30px; -} - -.account-dashboard .row .col-md-6 { - margin-bottom: 30px; -} - -.account-dashboard .row .col-md-6 .bluefoot-row, -.account-dashboard .row .col-md-6 .bluefoot-buttons, -.account-dashboard .row .col-md-6 .bluefoot-entity, -.account-dashboard .row .col-md-6 .bluefoot-column { - margin: 0; -} - -.account-dashboard .row .col-md-6 .bluefoot-column { - padding: 0; -} - -@media (min-width:992px) { - .account-dashboard .row { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } -} - -.account-dashboard-block { - border: 1px solid #e8e8e8; - padding: 35px; -} - -@media (min-width:768px) { - .account-dashboard-block { - height: 100%; - } -} - -.account-dashboard-block--blue { - color: #fff; - background: #004a99; - border: 0; -} - -@media (max-width:767px) { - .account-dashboard-block--blue { - margin-top: 30px; - } -} - -.account-dashboard-block--blue p { - opacity: 0.6; - margin-bottom: 30px; -} - -.account-dashboard-block--blue .btn { - background-color: #0d4282; -} - -.account-dashboard-block--blue .btn:hover { - background: #003062; -} - -.account-dashboard-block--blue-slate { - color: #fff; - background: #588294; -} - -.account-dashboard-block__title { - border-bottom: 1px solid #e8e8e8; - padding-bottom: 30px; - margin-bottom: 25px; -} - -.account-dashboard-block__redeem img { - max-width: none; - width: calc(100% + 70px); - margin: -35px -35px 20px; -} - -.account-dashboard-block h4 { - font-weight: 700; - margin: 0 0 15px; -} - -.account-dashboard-block address { - margin: 0; -} - -.account-dashboard-block .box-actions { - margin-top: 20px; -} - -@media (min-width:768px) { - .account-dashboard-block .box-actions { - margin-top: 30px; - } -} - -.account .order-history h2 { - margin-bottom: 40px; -} - -.account .order-history__list:not(:first-of-type) { - margin-top: 60px; -} - -.account .order-history__list h3 { - font-size: 14px; - font-weight: 400; - color: #a9a9a9; - margin: 0; -} - -.account .order-item { - border: 1px solid #e8e8e8; - margin-top: 20px; - border-radius: 3px; -} - -.account .order-item--product { - border-right: 0; - border-bottom: 0; - border-left: 0; - margin-top: 0; - border-radius: 0; -} - -.account .order-item__title { - min-height: 80px; - padding: 25px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -@media (min-width:992px) { - .account .order-item__title { - padding: 25px 50px; - } -} - -.account .order-item__title strong { - font-weight: 600; - color: #333; -} - -.account .order-item__title span { - margin-left: auto; -} - -.account .order-item__title span strong { - margin-left: 5px; -} - -.account .order-item__title span.price { - color: #bababa; - margin-left: 30px; -} - -.account .order-item__title img { - max-height: 55px; - margin-right: 15px; -} - -@media (min-width:992px) { - .account .order-item__title img { - margin-right: 20px; - } -} - -.account .order-item__title--collapsible { - cursor: pointer; - position: relative; -} - -.account .order-item__title--collapsible:before { - font-size: 6px; - position: absolute; - top: 50%; - right: 40px; - transform: translateY(-50%); - -webkit-transform: translateY(-50%); - -moz-transform: translateY(-50%); - -ms-transform: translateY(-50%); - -o-transform: translateY(-50%); -} - -@media (min-width:992px) { - .account .order-item__title--collapsible:before { - right: 50px; - } -} - -.account .order-item__title--order { - padding: 12px 55px 12px 10px; -} - -@media (min-width:992px) { - .account .order-item__title--order { - padding: 12px 45px; - } -} - -.account .order-item__content--product { - padding: 0 50px 15px 15px; -} - -.account .order-item__statuses { - padding: 0 30px 35px 30px; -} - -@media (min-width:992px) { - .account .order-item__statuses { - padding: 10px 50px 35px 50px; - } -} - -.account .order-item__statuses ul { - list-style: none; - margin: 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.account .order-item__statuses ul li { - line-height: 1.3; - position: relative; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; -} - -.account .order-item__statuses ul li span { - font-size: 13px; - color: #a9a9a9; - display: block; -} - -.account .order-item__statuses ul li span:first-child { - font-size: 14px; - color: #333; -} - -.account .order-item__statuses ul li:before { - content: ''; - width: 12px; - height: 12px; - background: #fff; - border: 1px solid #bababa; - outline: 5px solid #fff; - position: absolute; - top: 5px; - left: -7px; - z-index: 1; - border-radius: 50%; -} - -.account .order-item__statuses ul li.complete, -.account .order-item__statuses ul li.active { - border-color: #004a99; -} - -.account .order-item__statuses ul li.complete:before, -.account .order-item__statuses ul li.active:before { - background: #004a99; - border-color: #004a99; - outline: none; -} - -.account .order-item__statuses ul li.active span:first-child { - font-size: 20px; - font-weight: 600; - color: #004a99; -} - -.account .order-item__statuses ul li:last-child:before { - width: 20px; - height: 20px; -} - -@media (max-width:991px) { - .account .order-item__statuses ul { - padding-left: 10px; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-flex-direction: column-reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; - } - - .account .order-item__statuses ul li { - border-left: 1px solid #bababa; - padding: 0 0 30px 25px; - } - - .account .order-item__statuses ul li:first-child { - border: 0; - padding-bottom: 0; - } - - .account .order-item__statuses ul li:first-child:before { - top: 0; - left: -5px; - } - - .account .order-item__statuses ul li:not(:first-child) { - min-height: 65px; - } - - .account .order-item__statuses ul li:last-child:before { - top: 0; - left: -11px; - } - - .account .order-item__statuses ul li.remaining:after { - content: ''; - width: 1px; - height: 100%; - background: linear-gradient(to bottom, #bababa 54%, #004a99); - position: absolute; - bottom: 0; - left: -1px; - } - - .account .order-item__statuses ul li.remaining ~ .remaining:after { - display: none; - } -} - -@media (min-width:992px) { - .account .order-item__statuses ul li { - border-top: 1px solid #bababa; - padding-top: 17px; - } - - .account .order-item__statuses ul li:before { - outline: 11px solid #fff; - top: -7px; - left: 0; - } - - .account .order-item__statuses ul li:last-child { - border: 0; - padding-top: 19px; - -webkit-flex: 0 0 60px; - -ms-flex: 0 0 60px; - flex: 0 0 60px; - } - - .account .order-item__statuses ul li:last-child:before { - top: -9px; - } - - .account .order-item__statuses ul li:not(:last-child) { - padding-right: 10px; - } - - .account .order-item__statuses ul li:not(:last-child).active:after { - content: ''; - width: 100%; - height: 1px; - background: linear-gradient(to left, #bababa 60%, #004a99); - position: absolute; - top: -1px; - left: 0; - } -} - -.account .order-item__options { - width: 100%; - margin: 0; -} - -.account .order-item__options tr { - border: 0; -} - -.account .order-item__options tr th, -.account .order-item__options tr td { - width: 50%; - padding: 20px 0; -} - -.account .order-item__options tr th { - font-weight: 400; - padding-right: 20px; -} - -@media (max-width:768px) { - .account .order-item__options tr th { - padding-left: 15px; - } -} - -.account .order-item__options tr td { - font-weight: 600; -} - -.account .order-item__options .swatch-option { - position: relative; - height: 16px; - width: 16px; - min-width: auto; - margin: 0; - cursor: default; - border: 1px solid rgba(0,0,0,0.2); - border-radius: 100%; - transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - -moz-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - -o-transform: rotate(-45deg); -} - -.account .order-item__options .swatch-option:hover { - outline: none; - border: 1px solid rgba(0,0,0,0.2); -} - -.account .order-item__options .swatch-option--secondary { - position: absolute; - width: 16px; - height: 7px; - bottom: 0; - right: 0; - border-radius: 0 0 16px 16px; -} - -.account .order-item__details { - background: #fafafa; - border-top: 1px solid #e8e8e8; - padding: 35px 30px; -} - -@media (min-width:992px) { - .account .order-item__details { - padding-right: 50px; - padding-left: 50px; - } -} - -.account .order-item__details p { - margin-bottom: 10px; -} - -.account .order-item__details strong { - display: block; - margin-bottom: 5px; -} - -.account .order-item__details address { - margin: 0; -} - -.account .order-item__details .arrow-link { - font-size: 12px; -} - -@media (max-width:991px) { - .account .order-item__details .col:not(:last-child) { - margin-bottom: 30px; - } -} - -.account .order-item__cta { - padding: 0 25px 30px 25px; -} - -@media (min-width:768px) { - .account .order-item__cta { - padding: 0 50px 35px 50px; - } -} - -.account .order-item__cta .box-actions { - margin: 0; -} - -.account .order-item__cta .box-actions .primary { - text-align: left; -} - -.bike-registry__modal-content p { - margin-bottom: 0; -} - -.bike-registry__icon-wrapper { - text-align: center; - margin-bottom: 32px; -} - -.bike-registry__icon-wrapper .icon-check { - background: #5FD350; - color: #fff; - padding: 10px 7px; - border-radius: 100%; -} - -.bike-registry__icon-error { - color: #fff; - border-radius: 100%; - background: #E9682D; - font-size: 33px; - font-weight: bold; - padding: 0px 16px; -} - -.bike-registry__title { - font-size: 24px; - font-weight: 700; - margin: 0 0 16px; - max-width: 80%; -} - -.bike-registry__title--center { - margin: 0 auto 16px; - text-align: center; -} - -.bike-registry__description--center { - text-align: center; -} - -.bike-registry__label { - margin-bottom: 17px; -} - -.bike-registry__input-group { - margin-bottom: 40px; -} - -.bike-registry__input-field { - position: relative; -} - -.bike-registry__input-field input { - margin-top: 0; -} - -.bike-registry__input-field input.success { - border-color: #5fd350; -} - -.bike-registry__input-field input.error { - border-color: #ee3a3a; -} - -.bike-registry__input-fields { - position: relative; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.bike-registry__input-fields.success input { - border-color: #5fd350; - background: #fff; -} - -.bike-registry__input-fields.success .icon-check { - display: block; -} - -.bike-registry__input-fields.error input { - border-color: #ee3a3a; -} - -.bike-registry__prefix { - width: 55px; - height: 75px; - font-size: 40px; - border: 1px solid #d9d9d9; - border-radius: 10px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -.bike-registry__field { - font-size: 40px; - text-align: center; - height: 75px; - width: 55px; - border: 1px solid #d9d9d9; - border-radius: 10px; - -moz-appearance: textfield; -} - -.bike-registry__field::placeholder { - color: #e8e8e8; -} - -.bike-registry__field::-webkit-outer-spin-button, -.bike-registry__field::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; -} - -.bike-registry__purchase-date { - background: url('../images/icons/calender-blue.svg') no-repeat center right; -} - -.bike-registry__purchase-date::-webkit-inner-spin-button, -.bike-registry__purchase-date::-webkit-calendar-picker-indicator { - opacity: 0; -} - -.bike-registry__check-icon { - display: none; - position: absolute; - top: -15px; - right: -15px; - background: #5fd350; - border-radius: 100%; - font-size: 10px; - color: #fff; - padding: 9px 7px; - z-index: 101; -} - -.bike-registry__check-icon.success { - display: block; -} - -.bike-registry__submit { - border: 1px solid #004a99; -} - -.bike-registry__submit.success { - border-color: #e8e8e8; - color: #5fd350; - background: #fff; -} - -.bike-registry__submit.success .ga-icon:before, -.bike-registry__submit.success .knowledge-base__most-viewed a:before { - content: "\e936"; -} - -.bike-registry__submit.success:hover, -.bike-registry__submit.success:focus, -.bike-registry__submit.success:active { - background: #fff; - color: #5fd350; -} - -.bike-registry__submit.success:before, -.bike-registry__submit.success:after { - display: none; -} - -.bike-registry__buttons { - display: flex; - gap: 32px; - margin-top: 32px; -} - -.bike-registry__buttons .btn { - width: 100%; -} - -.bike-registry__buttons--center { - justify-content: center; -} - -.bike-registry__buttons--center .btn { - width: auto; -} - -@media (max-width:767px) { - .bike-registry__buttons { - flex-direction: column; - gap: 16px; - margin-top: 16px; - } -} - -.bike-registry__message--gift { - display: none; -} - -.bike-registry__message--gift p { - color: #5fd350; -} - -.bike-registry__gift-form p { - margin-bottom: 0; -} - -.bike-registry__gift-form input[type="text"] { - font-size: 16px; -} - -.bike-registry .tooltip p { - color: #fff; -} - -.bike-registry .modal-header { - padding: 0; -} - -.bike-registry .modal-content .close { - margin: 0; - position: absolute; - top: 15px; - right: 25px; - z-index: 2060; -} - -@media (max-width:767px) { - .bike-registry__prefix, - .bike-registry__field { - width: 100%; - border-radius: 0; - height: 58px; - font-size: 24px; - } - - .bike-registry__prefix:not(:first-child) { - border-left-width: 0; - border-right-width: 0; - } - - .bike-registry__field:not(:last-of-type) { - border-right-width: 0; - } -} - -@media (max-width:480px) { - .bike-registry__prefix, - .bike-registry__field { - height: 41px; - font-size: 14px; - } -} - -.bikewizard-index-index { - background: #f2f2f2; -} - -.bikewizard-index-index .page-main { - padding: 0; -} - -.wizard__wrapper { - font-size: 14px; - margin-top: 30px; - min-height: 621px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.wizard__wrapper .previous { - margin-right: auto; - font-size: 18px; - font-weight: 600; -} - -.wizard__wrapper .previous:before { - display: inline-block; - margin-right: 20px; - font-size: 16px; - padding: 15px 18px; - background: #fff; - border-radius: 100%; - transition: .3s; - -webkit-transition: .3s; - -moz-transition: .3s; - -ms-transition: .3s; - -o-transition: .3s; -} - -.wizard__wrapper h2 { - font-weight: 600; - font-size: 40px; - margin: 0 0 10px; -} - -.wizard__breadcrumbs { - margin-bottom: 30px; -} - -.wizard__breadcrumbs .breadcrumbs { - font-weight: normal; - margin-left: 0; -} - -.wizard__breadcrumbs .breadcrumbs li:not(:last-child):after { - padding: 0 5px; -} - -.wizard__breadcrumbs .breadcrumbs li span { - color: #7f7f7f; -} - -.wizard__title { - float: none; - margin: 0 auto; -} - -.wizard__title h1 { - text-transform: uppercase; - color: #004a99; - font-size: 14px; - margin: 0 0 20px; -} - -.wizard__step { - margin-bottom: auto; -} - -.wizard__step p { - color: #a9a9a9; - line-height: 1.4; - margin-bottom: 40px; - padding-top: 8px; - max-width: 650px; -} - -.wizard__step-wrapper { - margin: 0 auto; - float: none; -} - -.wizard__step-modal-btn { - position: absolute; - top: 0; - right: 0; - padding: 10px; - border-radius: 3px; - border: 1px solid #e8e8e8; - background: #fff; -} - -.wizard__step-modal-btn .ga-icon, -.wizard__step-modal-btn .knowledge-base__most-viewed a { - margin-right: 5px; -} - -.wizard__step-modal p { - margin-bottom: 25px; -} - -.wizard__step-modal p:last-child { - margin-bottom: 0; -} - -.wizard__tooltip { - position: relative; -} - -.wizard__tooltip .tooltip-content { - background: #fff; - max-width: 360px; - min-width: 210px; - padding: 12px 16px; - z-index: 100; - display: none; - position: absolute; - text-align: left; - color: #333; - line-height: 1.4; - border: 1px solid #bbb; - margin-bottom: 5px; - bottom: 100%; - left: 0; -} - -.wizard__tooltip .tooltip-content:after, -.wizard__tooltip .tooltip-content:before { - border: solid transparent; - content: ''; - height: 0; - position: absolute; - width: 0; -} - -.wizard__tooltip .tooltip-content:after { - border-width: 5px; - border-color: transparent; -} - -.wizard__tooltip .tooltip-content:before { - border-width: 6px; - border-color: transparent; -} - -.wizard__tooltip .tooltip-content:after, -.wizard__tooltip .tooltip-content:before { - top: 100%; -} - -.wizard__tooltip .tooltip-content:after { - border-top-color: #fff; - left: 15px; - margin-left: -5px; -} - -.wizard__tooltip .tooltip-content:before { - border-top-color: #bbb; - left: 15px; - margin-left: -6px; -} - -.wizard__tooltip .tooltip-toggle { - cursor: help; -} - -.wizard__tooltip .tooltip-toggle:hover + .tooltip-content, -.wizard__tooltip .tooltip-toggle:focus + .tooltip-content, -.wizard__tooltip:hover .tooltip-content { - display: block; -} - -.wizard__tooltip .icon-info { - font-size: 15px; - color: #7f7f7f; - vertical-align: top; - margin-left: 5px; -} - -.wizard__options { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -.wizard__options-results { - display: none; - position: absolute; - top: -15px; - font-size: 12px; - color: #fff; - background: #5b8351; - padding: 9px 45px 9px 15px; - border-radius: 16.5px; - right: -15px; -} - -.wizard__options-label { - background-color: white; - box-shadow: 0px 0px 0px 1px #e8e8e8; - min-height: 60px; - height: 340px; - font-size: 24px; - font-weight: 600; - cursor: pointer; - margin-bottom: 10px; - padding: 15px 20px; - position: relative; - text-align: center; - border-radius: 4px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-grow: 1; - -ms-flex-grow: 1; - flex-grow: 1; - -webkit-flex-basis: 0; - -ms-flex-basis: 0; - flex-basis: 0; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: space-between; - -ms-justify-content: space-between; - justify-content: space-between; - transition: .3s; - -webkit-transition: .3s; - -moz-transition: .3s; - -ms-transition: .3s; - -o-transition: .3s; -} - -.wizard__options-label span { - z-index: 2; -} - -.wizard__options-label span.price { - color: #bababa; -} - -.wizard__options-label span.ga-icon, -.wizard__options-label span.knowledge-base__most-viewed a { - position: absolute; - top: 0; - right: 0; - background: #5b8451; - border-radius: 100%; - border: 2px solid rgba(0,0,0,0.2); - font-size: 9px; - color: #fff; - padding: 9px 7px; -} - -.wizard__options-label.has-bg { - background-size: cover; - background-repeat: no-repeat; - background-position: center center; - min-height: 140px; - padding: 15px 20px 60px; - color: #fff; - -webkit-align-items: flex-end; - -ms-align-items: flex-end; - align-items: flex-end; -} - -.wizard__options-label.has-bg .gradient { - position: absolute; - width: 100%; - height: 100%; - bottom: 0; - background-image: linear-gradient(to bottom, rgba(0,0,0,0) 60%, #000 100%); - border-radius: 4px; -} - -.wizard__options.vertical { - flex-direction: column; -} - -.wizard__options input:checked + .wizard__options-label { - box-shadow: 0 0 0 5px #5b8451; -} - -.wizard__options input:checked + .wizard__options-label--inactive { - box-shadow: 0 0 0 5px #bababa; -} - -.wizard__options input:checked + .wizard__options-label--inactive .wizard__options-results { - background: #bababa; - padding: 9px 15px; -} - -.wizard__options input:checked + .wizard__options-label .wizard__options-results { - display: block; -} - -.wizard__footer-wrapper { - margin: 0 auto; - float: none; -} - -.wizard__footer-actions { - margin-top: 20px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; -} - -.wizard__footer-actions .skip { - margin-right: 20px; -} - -.wizard__footer-results { - font-size: 14px; - font-weight: 600; - text-align: right; -} - -.wizard__footer-results span { - font-weight: 400; - color: #bababa; -} - -.wizard__progress-bar { - position: absolute; - left: 0; - top: 106px; - width: 0; - height: 2px; - transition: width .25s ease; - background-color: #f2f2f2; - background-image: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#004a99)); - background-image: -webkit-linear-gradient(left, #f2f2f2, #004a99); - background-image: -moz-linear-gradient(left, #f2f2f2, #004a99); - background-image: -ms-linear-gradient(left, #f2f2f2, #004a99); - background-image: -o-linear-gradient(left, #f2f2f2, #004a99); -} - -.minimize .wizard__progress-bar { - top: 61px; -} - -.wizard__loader { - position: relative; - height: 13px; -} - -.wizard__loader:after { - content: ''; - border-left-color: #000; -} - -.small.wizard__loader:after { - top: -1px; -} - -@media (max-width:767px) { - .bikewizard-index-index.topbar-active header .navbar { - margin-top: -45px; - } - - .bikewizard-index-index .dropdown-container { - top: 60px; - } - - .bikewizard-index-index .page-header { - height: 60px; - } - - .bikewizard-index-index .page-main { - margin-top: 0px; - } - - .wizard__wrapper { - min-height: auto; - margin: 30px 0 90px; - } - - .wizard__wrapper h2 { - font-size: 24px; - margin-bottom: 15px; - } - - .wizard__wrapper .previous { - font-size: 14px; - } - - .wizard__wrapper .previous:before { - margin-right: 10px; - font-size: 12px; - padding: 8px 10px; - } - - .wizard__step { - margin: 0; - } - - .wizard__step p { - margin-bottom: 20px; - } - - .wizard__step-modal-btn { - top: auto; - right: auto; - bottom: -26px; - padding: 7px 13px; - z-index: 2; - } - - .wizard__step-modal-btn .ga-icon, - .wizard__step-modal-btn .knowledge-base__most-viewed a { - margin-right: 10px; - } - - .wizard__step-modal-btn .text { - display: inline-block; - } - - .wizard__options { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .wizard__options-results { - font-size: 10px; - top: -10px; - right: -5px; - padding: 8px 35px 8px 8px; - } - - .wizard__options label { - font-size: 16px; - padding: 20px 30px; - min-height: 85px; - margin-bottom: 15px; - } - - .wizard__options label.has-bg { - background-position: left; - background-size: contain; - color: #000; - min-height: 85px; - padding: 15px 20px 15px 110px; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .wizard__options label.has-bg .gradient { - display: none; - } - - .wizard__options label span.ga-icon, - .wizard__options label span.knowledge-base__most-viewed a { - font-size: 6px; - top: -1px; - } - - .wizard__options input:checked + .wizard__options-label { - box-shadow: 0 0 0 2px #5b8451; - } - - .wizard__options input:checked + .wizard__options-label--inactive { - box-shadow: 0 0 0 2px #bababa; - } - - .wizard__progress-bar { - top: 61px; - } - - .wizard__footer-actions { - position: fixed; - bottom: 0; - right: 0; - left: 0; - padding: 10px 15px; - background: #f2f2f2; - border-top: 1px solid #d9d9d9; - } - - .wizard__footer-actions .skip { - display: none; - } -} - -@media (min-width:768px) { - .wizard__wrapper .previous:hover:before { - transform: translateX(-5px); - } - - .wizard__options:not(.vertical) label { - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; - } - - .wizard__options:not(.vertical) label:not(:last-of-type) { - margin-right: 30px; - } - - .wizard__options:not(.vertical) label:hover { - box-shadow: 0 0 0 5px #5b8451; - } -} - -@media (min-width:1200px) { - .wizard__wrapper { - min-height: 605px; - } -} - -@media (min-width:1200px) and (max-height:768px) { - .wizard__wrapper { - min-height: 560px; - } -} - -@media (min-width:1600px) { - .wizard__wrapper { - min-height: 660px; - } -} - -.configurator__swatches { - z-index: 2; -} - -.configurator__header { - position: absolute; - top: 100px; - left: 0; - padding-top: 12px; - z-index: 4; - background-color: #fff; -} - -.configurator__header.summary { - z-index: 5; -} - -.configurator__wrapper table { - margin-bottom: 0; -} - -.configurator__wrapper table tbody select { - border: 1px solid #e8e8e8; - padding: 7px; -} - -.configurator__wrapper table tbody label { - border: 1px solid #e8e8e8; - padding: 7px; - display: inline-block; - margin-right: 5px; - cursor: pointer; - border-radius: 2px; -} - -.configurator__wrapper table tbody label.active { - border-color: #004a99; - color: #004a99; -} - -.configurator__wrapper table tbody input + label { - background-color: #fff; - position: relative; -} - -.configurator__wrapper table tbody input + label .tooltip-content { - background: #fff; - max-width: 360px; - min-width: 210px; - padding: 12px 16px; - z-index: 100; - display: none; - position: absolute; - text-align: left; - color: #333; - line-height: 1.4; - border: 1px solid #bbb; - margin-bottom: 5px; - bottom: 100%; - left: 0; -} - -.configurator__wrapper table tbody input + label .tooltip-content:after, -.configurator__wrapper table tbody input + label .tooltip-content:before { - border: solid transparent; - content: ''; - height: 0; - position: absolute; - width: 0; -} - -.configurator__wrapper table tbody input + label .tooltip-content:after { - border-width: 5px; - border-color: transparent; -} - -.configurator__wrapper table tbody input + label .tooltip-content:before { - border-width: 6px; - border-color: transparent; -} - -.configurator__wrapper table tbody input + label .tooltip-content:after, -.configurator__wrapper table tbody input + label .tooltip-content:before { - top: 100%; -} - -.configurator__wrapper table tbody input + label .tooltip-content:after { - border-top-color: #fff; - left: 15px; - margin-left: -5px; -} - -.configurator__wrapper table tbody input + label .tooltip-content:before { - border-top-color: #bbb; - left: 15px; - margin-left: -6px; -} - -.configurator__wrapper table tbody input + label .tooltip-toggle { - cursor: help; -} - -.configurator__wrapper table tbody input + label .tooltip-toggle:hover + .tooltip-content, -.configurator__wrapper table tbody input + label .tooltip-toggle:focus + .tooltip-content, -.configurator__wrapper table tbody input + label:hover .tooltip-content { - display: block; -} - -.configurator__wrapper table tbody input + label span { - display: block; -} - -.configurator__wrapper table tbody input:disabled + label .tooltip-content { - right: 0; - left: initial; -} - -.configurator__wrapper table tbody input:disabled + label .tooltip-content:after { - left: initial; - margin-left: initial; - right: 10px; -} - -.configurator__wrapper table tbody input:disabled + label span { - opacity: .5; -} - -.configurator__wrapper table tbody tr, -.configurator__wrapper table tbody td { - border: none; -} - -.configurator__wrapper table tbody td { - padding: 0 0 23px 0; -} - -.configurator__wrapper table tbody td:first-of-type { - font-weight: 600; - word-break: normal; - padding-right: 20px; -} - -.configurator__wrapper table tbody td.highlight { - color: #ff1001; -} - -.configurator__wrapper .swatch__wrapper { - position: relative; - transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - -moz-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - -o-transform: rotate(-45deg); -} - -.configurator__wrapper .swatch__color { - width: 16px; - height: 16px; - border: 1px solid rgba(0,0,0,0.2); - position: relative; - border-radius: 16px; -} - -.configurator__wrapper .swatch__color--secondary { - position: absolute; - bottom: 0; - height: 8px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.configurator__wrapper .color-gloss:before { - display: block; - content: ''; - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - background-image: linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0)); - border-radius: 50%; -} - -.configurator__summary-button { - font-weight: 600; - display: inline-block; - padding: 8px 0; - font-size: 12px; - float: right; -} - -.configurator__summary-button button { - background: none; -} - -.configurator__summary-button button::before { - margin: 2px 0 0 6px; - display: block; - line-height: 11px; - float: right; - transform: rotate(-90deg); - -webkit-transform: rotate(-90deg); - -moz-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - -o-transform: rotate(-90deg); -} - -.bikeconfigurator .backdrop { - background-color: rgba(0,0,0,0.2); - position: fixed; - width: 100%; - height: 100%; - left: 0; - top: 0; - z-index: 4; -} - -@media (max-width:767px) { - .configurator__header { - top: 0; - } - - .bikeconfigurator-price-bar.overview { - padding-bottom: 20px; - } - - .bikeconfigurator-price-bar:not(.overview) .price-bar__price-wrapper .price-bar__price-label { - display: none; - } -} - -@media (max-width:991px) { - .configurator__container { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - } - - .configurator__image { - background-color: #fff; - height: 75%; - margin-top: 44px; - z-index: 3; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-justify-content: flex-end; - -ms-justify-content: flex-end; - justify-content: flex-end; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .configurator__image img { - max-height: 120%; - margin-bottom: -30px; - } - - .configurator__image:before { - content: ''; - background: #fff; - left: 0; - position: absolute; - width: 150vw; - height: 100%; - border-bottom: 30px solid #f2f2f2; - transform: translateX(-50vw); - -webkit-transform: translateX(-50vw); - -moz-transform: translateX(-50vw); - -ms-transform: translateX(-50vw); - -o-transform: translateX(-50vw); - } - - .configurator__image:after { - content: ''; - display: block; - width: 100vw; - height: 50px; - position: absolute; - bottom: -50px; - pointer-events: none; - background: #f2f2f2; - background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(rgba(241,240,238,0))); - background: -webkit-linear-gradient(top, #f2f2f2, rgba(241,240,238,0)); - background: -moz-linear-gradient(top, #f2f2f2, rgba(241,240,238,0)); - background: -ms-linear-gradient(top, #f2f2f2, rgba(241,240,238,0)); - background: -o-linear-gradient(top, #f2f2f2, rgba(241,240,238,0)); - } - - .configurator__swatches { - overflow-y: scroll; - padding-top: 50px; - margin-bottom: 88px; - } - - .configurator__wrapper { - padding-bottom: 50px; - } - - .configurator__summary { - background-color: #fff; - } - - .configurator__summary table { - width: 100%; - } - - .configurator__summary table td:first-of-type { - font-weight: 600; - border: none; - } - - .configurator__summary table td:nth-of-type(2) { - text-align: right; - color: #7f7f7f; - } - - .configurator__summary table tr { - border: none; - } - - .bikeconfigurator-price-bar { - position: fixed; - bottom: 0; - } - - .bikeconfigurator-price-bar.overview { - z-index: 4; - } -} - -@media (min-width:992px) { - .configurator__header { - top: 114px; - } - - .configurator__summary-button { - display: none; - } - - .configurator__wrapper { - min-height: 300px; - } - - .configurator__container { - padding-top: 30px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - } - - .configurator__swatches { - margin-left: auto; - } - - .configurator__image { - height: 100%; - } -} - -@media (min-width:1200px) { - .configurator__header { - display: none; - } -} - -@media (min-width:768px) and (max-width:991px) { - .configurator__swatches { - padding-bottom: 120px; - } - - .configurator__image { - min-height: 300px; - } - - .configurator__image:before { - border-bottom: 50px solid #f2f2f2; - } -} - -@media (max-width:480px) { - .configurator__image { - max-height: 200px; - } - - .configurator__image img { - margin-bottom: -20px; - } -} - -#upsells-modal .modal-content { - padding-top: 15px; - padding-bottom: 15px; -} - -#upsells-modal .modal-content .close { - position: absolute; - top: 15px; - right: 20px; - margin: 0; -} - -#upsells-modal .modal-header { - padding: 12px 15px 38px 0; - border-bottom: 1px solid #e8e8e8; -} - -#upsells-modal .modal-body { - padding-left: 0; - padding-right: 0; -} - -#upsells-modal .upsells__body h3 { - font-weight: 600; - font-size: 18px; - margin-top: 20px; - margin-bottom: 10px; -} - -#upsells-modal .upsells__header { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; -} - -#upsells-modal .upsells__title { - font-size: 1.75rem; - font-weight: 600; - width: 100%; - margin: 0 0 20px; -} - -#upsells-modal .upsells__image { - width: 140px; - margin-right: 40px; -} - -#upsells-modal .upsells__info { - padding-right: 20px; -} - -#upsells-modal .upsells__info h3 { - font-weight: 400; - font-size: 24px; - margin-top: 0; - margin-bottom: 10px; -} - -#upsells-modal .upsells__info span { - font-weight: 600; - font-size: 20px; -} - -#upsells-modal .upsells__products .product-card { - width: 270px; -} - -#upsells-modal .upsells__products .slick-slider { - padding-bottom: 45px; -} - -#upsells-modal .upsells__products .slick-slider--no-padding-bottom { - padding-bottom: 0px; -} - -#upsells-modal .upsells__products .slick-slider .slick-list { - margin-right: -45px; -} - -#upsells-modal .upsells__products .slick-track { - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -#upsells-modal .upsells__products .slick-slide { - height: auto; -} - -#upsells-modal .upsells__products .slick-slide > div { - height: 100%; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; -} - -#upsells-modal .upsells__pagination { - pointer-events: none; - color: #7f7f7f; - font-size: 12px; - position: absolute; - text-align: center; - width: 100%; - bottom: 16px; -} - -#upsells-modal .upsells__buttons { - width: 33%; - max-width: 190px; - margin-left: auto; -} - -#upsells-modal .upsells__btn { - display: block; - width: 100%; - margin-bottom: 10px; -} - -#upsells-modal .slick-arrow { - width: 14px; - position: absolute; - bottom: 0; - font-size: 0; - overflow: hidden; -} - -#upsells-modal .slick-arrow:before { - color: #000; - font-size: 16px; -} - -#upsells-modal .slick-arrow.slick-next { - right: 0; -} - -#upsells-modal .slick-arrow.slick-prev { - transform: rotate(180deg); -} - -@media (max-width:991px) { - #upsells-modal .upsells__products .slick-slider .slick-list { - margin-right: -29px; - } -} - -@media (max-width:767px) { - #upsells-modal .modal-header { - padding: 30px 0 0 0; - } - - #upsells-modal .upsells__header h3 { - font-size: 18px; - } - - #upsells-modal .upsells__buttons { - width: 100%; - max-width: initial; - margin: 25px 0; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - #upsells-modal .upsells__btn { - max-width: 220px; - flex-grow: 1; - width: initial; - margin-right: 10px; - } - - #upsells-modal .upsells__btn:first-of-type { - order: 1; - } - - #upsells-modal .upsells__info span { - font-size: 14px; - } - - #upsells-modal .upsells__image { - width: 115px; - margin-right: 25px; - } - - #upsells-modal .upsells__products .slick-slider .slick-list { - margin-right: -16px; - } -} - -.product-card { - border: 1px solid #e8e8e8; - border-radius: 2px; - padding: 29px; - margin-right: 20px; - font-size: 14px; - min-width: 200px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -.product-card__name { - margin-bottom: 8px; - font-size: 1rem; -} - -.product-card__price { - margin-bottom: 4px; -} - -.product-card__price .old-price, -.product-card__price .old-price strong { - font-size: 12px; - font-weight: 400; -} - -.product-card__price .special-price { - float: left; - margin-right: 10px; -} - -.product-card__monthly { - font-size: 11px; - color: #7f7f7f; -} - -.product-card__view { - margin-top: 10px; - min-height: 33px; - display: -webkit-flex; - display: -ms-flexbox; - display: -ms-flex; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.product-card__view[disabled], -.product-card__view[disabled]:hover { - opacity: 1; - background-color: #a9a9a9; -} - -.product-card__image { - height: 230px; - display: flex; - -webkit-align-items: center; - -ms-align-items: center; - align-items: center; - -webkit-justify-content: center; - -ms-justify-content: center; - justify-content: center; -} - -.product-card__image img { - max-height: 100%; -} - -.product-card__attributes { - margin-top: auto; -} - -.color-swatch { - display: inline-block; - padding: 7px; - border-radius: 2px; - border: 1px solid #e8e8e8; - margin-right: 5px; - cursor: pointer; -} - -.color-swatch--selected { - border: 1px solid #004a99; -} - -.color-swatch__wrapper { - position: relative; - transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - -moz-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - -o-transform: rotate(-45deg); -} - -.color-swatch__color { - display: block; - width: 16px; - height: 16px; - border: 1px solid rgba(0,0,0,0.2); - position: relative; - border-radius: 16px; -} - -.color-swatch__color--secondary { - position: absolute; - bottom: 0; - height: 8px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -body .__react_component_tooltip { - pointer-events: initial; - background-color: #84776b; - padding: 20px; - width: 200px; -} - -body .__react_component_tooltip.show { - opacity: 1; -} - -body .__react_component_tooltip p { - margin-bottom: 0; - line-height: 1.4; - font-size: 12px; -} - -body .__react_component_tooltip a { - color: #fff; - text-decoration: underline; - font-weight: 600; - cursor: pointer; -} - -body .__react_component_tooltip.place-top:after { - border-top-color: #84776b; -} - -body .__react_component_tooltip.place-left:after { - border-left-color: #84776b; -} - -body .__react_component_tooltip .dismiss { - cursor: pointer; -} - -body .__react_component_tooltip .dismiss:before { - position: absolute; - top: 10px; - right: 5px; - color: #fff; -} - -body[class] { - line-height: initial; -} - -.search-wrapper[class] { - position: absolute; - right: 50px; - transition: all 300ms linear; - z-index: 2; -} - -.search-wrapper[class].open { - width: calc(100% - 100px - 342px); - height: 75px; - margin-top: 0; -} - -.minimize .search-wrapper[class].open { - height: 60px; -} - -.search-wrapper[class].open .pon-search-bar { - border-bottom: 1px solid #e0e0e0; -} - -.search-wrapper[class].open .pon-search-bar__search-icon { - width: auto; - pointer-events: none; - flex-direction: row; -} - -.search-wrapper[class].open .pon-search-bar__close-button[class] { - display: flex; - opacity: 1; - pointer-events: auto; -} - -.search-wrapper[class].open .pon-search-bar > input { - display: block; - border-radius: 0; - background: #fff; -} - -@media (min-width:768px) { - .minimize .search-wrapper[class].open { - margin-top: 0; - } -} - -.search-wrapper[class] .pon-search-bar { - height: 100%; -} - -.search-wrapper[class] .pon-search-bar__open-button-text { - font-size: 11px; - margin-top: 2px; - color: #333; -} - -.search-wrapper[class] .pon-search-bar__search-icon { - position: absolute; - transition: left 300ms; - width: 100%; -} - -.search-wrapper[class] .pon-search-bar__close-button[class] { - display: none; - transition: opacity 300ms; - opacity: 0; - pointer-events: none; -} - -.search-wrapper[class] .pon-search-bar > input { - display: none; - background: #f2f2f2; - border-radius: 18px; - height: 100%; -} - -.search-wrapper[class] .pon-search-bar .vue-icon-search { - margin-bottom: 3px; -} - -@media (min-width:768px) { - .search-wrapper[class] { - width: 120px; - height: 34px; - margin-top: 22px; - } - - .minimize .search-wrapper[class] { - margin-top: 13px; - } - - .search-wrapper[class] .vue-icon-search { - font-size: 18px; - } - - .search-wrapper[class] .pon-search-bar > input { - display: block; - } - - .search-wrapper[class] .pon-search-bar__open-button[class] { - display: none; - } -} - -@media (max-width:991px) { - .search-wrapper[class] { - margin-top: 13px; - } - - .search-wrapper[class].open[class] { - height: 60px; - } -} - -@media (max-width:1199px) { - .search-wrapper[class].open { - width: calc(100% - 100px - 171px); - } -} - -@media (max-width:767px) { - .search-wrapper[class] { - display: flex; - float: right; - height: 100%; - margin-top: 0; - right: 18px; - align-items: center; - } - - .search-wrapper[class].open { - width: 100%; - } - - .search-wrapper[class].open .pon-search-bar { - height: 100%; - } - - .search-wrapper[class].open .pon-search-bar__search-icon { - display: flex; - } - - .search-wrapper[class].open .pon-search-bar__open-button { - display: none; - } - - .search-wrapper[class] .pon-search-bar { - height: auto; - } - - .search-wrapper[class] .pon-search-bar__search-icon[class] { - display: none; - } - - .search-wrapper[class] .pon-search-bar__open-button:hover, - .search-wrapper[class] .pon-search-bar__open-button:hover .pon-search-bar__open-button-text { - color: #004a99; - } -} - -.results-wrapper { - position: absolute; - top: 120px; - left: 391px; - right: 50px; - overflow-y: auto; - max-height: calc(100vh - 107px); - z-index: 4; - box-shadow: 0 10px 10px rgba(0,0,0,0.2); -} - -@media (max-width:1199px) { - .results-wrapper { - left: 221px; - } -} - -.minimize .results-wrapper { - top: 105px; -} - -@media (min-width:768px) { - .results-wrapper { - max-height: 75vh; - } -} - -@media (max-width:991px) { - .results-wrapper { - top: 60px; - } - - .minimize .results-wrapper { - top: 60px; - max-height: calc(100vh - 60px); - } -} - -@media (max-width:767px) { - .results-wrapper { - left: 0; - right: 0; - } -} - -.navbar .navbar-collapse .navbar-nav .menu-toggles[class] { - margin-right: 0; -} - -@media (max-width:767px) { - .navbar .navigation .navbar-nav[class] { - width: auto; - } - - .navbar .navbar-collapse .navbar-nav.navbar-right[class][class] { - margin-right: 35px; - } -} - -@media (max-width:991px) { - .navbar .navigation { - position: relative; - min-height: 60px; - } - - .navbar .navbar-collapse .navbar-nav.navbar-right[class] { - margin-right: 150px; - } -} - -body:not(.website-nl):not(.website-de) .icon-cart, -body:not(.website-nl):not(.website-de) .item.minicart, -body:not(.website-nl):not(.website-de) .price-box.price-lowest_price, -body:not(.website-nl):not(.website-de) .monthly-price-block, -body:not(.website-nl):not(.website-de) .order-bike, -body:not(.website-nl):not(.website-de) .icon-buy { - display: none; -} - -[data-use-parallax] { - opacity: 0; -} - -@media (max-width:767px) { - [data-use-parallax] { - transform: none; - } -} - -@font-face { - font-family: 'bluefoot-icons'; - src: url('../fonts/bluefoot/bluefoot.eot'); - src: url('../fonts/bluefoot/bluefoot.eot?#iefix') format('embedded-opentype'),url('../fonts/bluefoot/bluefoot.woff') format('woff'),url('../fonts/bluefoot/bluefoot.ttf') format('truetype'),url('../fonts/bluefoot/bluefoot.svg#bluefoot') format('svg'); - font-weight: normal; - font-style: normal; -} - -.bluefoot-full-width { - float: left; - width: 100%; -} - -.bluefoot-wrapper { - width: 100%; - max-width: 1260px; - margin: 0 auto; - box-sizing: border-box; - padding-left: 15px; - padding-right: 15px; -} - -.bluefoot-entity { - box-sizing: border-box; - margin-bottom: 15px; -} - -.bluefoot-align-left { - text-align: left; -} - -.bluefoot-align-right { - text-align: right; -} - -.bluefoot-align-center { - text-align: center; -} - -.bluefoot-align-center img { - margin-left: auto; - margin-right: auto; -} - -.page-layout-full-width .page-main { - max-width: 100%; - width: 100%; - padding-left: 0; - padding-right: 0; -} - -@media all and (min-width:1500px) { - .bluefoot-wrapper { - max-width: 1440px; - } -} - -.bluefoot-mobile-only { - display: none; -} - -@media all and (max-width:770px) { - .bluefoot-mobile-only { - display: block; - } - - .bluefoot-mobile-hidden { - display: none; - } -} - -.bluefoot-icons { - font-family: 'bluefoot-icons'; -} - -.transition { - transition: .5s; - -o-transition: .5s; - -ms-transition: .5s; - -moz-transition: .5s; - -webkit-transition: .5s; -} - -.bluefoot-column { - float: left; - padding: 0 7.5px; - box-sizing: border-box; - min-height: 1px; -} - -.bluefoot-column.right { - float: right; -} - -.bluefoot-column.bluefoot-no-padding { - padding: 0; -} - -.bluefoot-column-12 { - width: 100%; -} - -.bluefoot-column-11 { - width: 91.66666667%; -} - -.bluefoot-column-10 { - width: 83.33333333%; -} - -.bluefoot-column-9 { - width: 75%; -} - -.bluefoot-column-8 { - width: 66.66666667%; -} - -.bluefoot-column-7 { - width: 58.33333333%; -} - -.bluefoot-column-6 { - width: 50%; -} - -.bluefoot-column-5 { - width: 41.66666667%; -} - -.bluefoot-column-4 { - width: 33.33333333%; -} - -.bluefoot-column-3 { - width: 25%; -} - -.bluefoot-column-2 { - width: 16.66666667%; -} - -.bluefoot-column-1 { - width: 8.33333333%; -} - -@media all and (max-width:990px) { - .bluefoot-column-12 { - width: 100%; - } - - .bluefoot-column-12.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-11 { - width: 100%; - } - - .bluefoot-column-11.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-10 { - width: 100%; - } - - .bluefoot-column-10.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-9 { - width: 100%; - } - - .bluefoot-column-9.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-8 { - width: 100%; - } - - .bluefoot-column-8.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-7 { - width: 100%; - } - - .bluefoot-column-7.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-6 { - width: 100%; - } - - .bluefoot-column-6.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-5 { - width: 50%; - } - - .bluefoot-column-4 { - width: 50%; - } - - .bluefoot-column-3 { - width: 50%; - } - - .bluefoot-column-2 { - width: 50%; - } - - .bluefoot-column-1 { - width: 50%; - } -} - -@media all and (max-width:770px) { - .bluefoot-column-12 { - width: 100%; - } - - .bluefoot-column-12.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-11 { - width: 100%; - } - - .bluefoot-column-11.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-10 { - width: 100%; - } - - .bluefoot-column-10.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-9 { - width: 100%; - } - - .bluefoot-column-9.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-8 { - width: 100%; - } - - .bluefoot-column-8.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-7 { - width: 100%; - } - - .bluefoot-column-7.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-6 { - width: 100%; - } - - .bluefoot-column-6.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-5 { - width: 100%; - } - - .bluefoot-column-5.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-4 { - width: 100%; - } - - .bluefoot-column-4.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-3 { - width: 100%; - } - - .bluefoot-column-3.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-2 { - width: 100%; - } - - .bluefoot-column-2.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column-1 { - width: 100%; - } - - .bluefoot-column-1.bluefoot-fixed-height-item { - height: auto; - } - - .bluefoot-column { - padding: 0; - } -} - -.bluefoot-row { - margin-left: -7.5px; - margin-right: -7.5px; - box-sizing: border-box; -} - -.bluefoot-row.with-media-background, -.bluefoot-row.bluefoot-wrapper-row { - margin-left: 0; - margin-right: 0; -} - -.bluefoot-row:before, -.bluefoot-row:after { - content: ''; - display: table; -} - -.bluefoot-row:after { - clear: both; -} - -.col-main .bluefoot-row > .bluefoot-entity { - padding-left: 7.5px; - padding-right: 7.5px; -} - -.col-main .bluefoot-row > .bluefoot-entity.no-padding { - padding-left: 0; - padding-right: 0; - box-sizing: border-box; -} - -.bluefoot-hr { - margin: 15px auto; - max-width: 100%; - width: 100%; - border-width: 1px; - border: none; - border-top: solid; -} - -.bluefoot-spacer { - height: 15px; -} - -.bluefoot-image a { - width: auto; - display: inline-block; -} - -.bluefoot-image img { - max-width: 100%; - display: block; -} - -.bluefoot-image figcaption { - text-align: center; - margin-top: 15px; -} - -.bluefoot-video { - width: 100%; -} - -.bluefoot-video iframe { - height: 500px; - width: 100%; - max-width: 100%; - border: none; -} - -.bluefoot-driver { - font-size: 0; -} - -.bluefoot-driver a { - width: auto; - display: inline-block; - position: relative; -} - -.bluefoot-driver img { - max-width: 100%; - display: block; -} - -.bluefoot-driver:hover .bluefoot-driver-text { - background: rgba(0,0,0,0.6); -} - -.bluefoot-driver-text { - position: absolute; - z-index: 10; - display: block; - bottom: 0; - left: 0; - right: 0; - padding: 15px; - background: black; - background: rgba(0,0,0,0.4); - text-align: center; - font-size: 18px; - color: white; - transition: .5s; - -o-transition: .5s; - -ms-transition: .5s; - -moz-transition: .5s; - -webkit-transition: .5s; -} - -.bluefoot-slider { - float: left; - width: 100%; - background: url('images/loading_36x36.gif') center 15px no-repeat; - min-height: 66px; -} - -.bluefoot-slider.bluefoot-slider-with-dots { - margin-bottom: 50px; -} - -.bluefoot-slider.slick-visible { - background: none; - min-height: 0; -} - -.bluefoot-slider.slick-visible .bluefoot-advanced-slide, -.bluefoot-slider.slick-visible .bluefoot-slide, -.bluefoot-slider.slick-visible .slick-arrow, -.bluefoot-slider.slick-visible .slick-dots { - opacity: 1; - visibility: visible; -} - -.bluefoot-slider img { - max-width: 100%; - margin: 0 auto; -} - -.bluefoot-slider .slick-arrow { - position: absolute; - top: 50%; - width: 40px; - height: 40px; - line-height: 40px; - margin-top: -20px; - border: none; - z-index: 10; - padding: 0; - font-family: 'bluefoot-icons'; - font-size: 14px; - transition: .5s; - -o-transition: .5s; - -ms-transition: .5s; - -moz-transition: .5s; - -webkit-transition: .5s; - opacity: 0; -} - -.bluefoot-slider .slick-arrow:focus { - outline: none; -} - -.bluefoot-slider .slick-arrow span { - width: 40px; - padding: 0; -} - -.bluefoot-slider .slick-next { - right: 0; -} - -.bluefoot-slider .slick-prev { - left: 0; -} - -.bluefoot-slider .slick-dots { - list-style: none; - transition: .5s; - -o-transition: .5s; - -ms-transition: .5s; - -moz-transition: .5s; - -webkit-transition: .5s; - opacity: 0; - padding: 0; - text-align: center; - margin: 15px 0; - width: 100%; - position: absolute; - left: 0; - bottom: -50px; -} - -.bluefoot-slider .slick-dots li { - display: inline-block; - margin: 0 7.5px; -} - -.bluefoot-slider .slick-dots li button { - text-indent: -9999px; - height: 15px; - line-height: 15px; - width: 15px; - padding: 0; - border-radius: 50%; - border: none; - background: #ddd; -} - -.bluefoot-slider .slick-dots li button:focus { - outline: none; -} - -.bluefoot-slider .slick-dots li button:hover { - background: #39c; -} - -.bluefoot-slider .slick-dots li.slick-active button { - background: #39c; -} - -.bluefoot-advanced-slide, -.bluefoot-slide { - margin-bottom: 0; - opacity: 0; - visibility: hidden; - transition: .5s; - -o-transition: .5s; - -ms-transition: .5s; - -moz-transition: .5s; - -webkit-transition: .5s; -} - -.bluefoot-advanced-slide.hidden-on-load, -.bluefoot-slide.hidden-on-load { - display: none; -} - -.bluefoot-advanced-slide { - background-size: cover; - background-repeat: no-repeat; - background-position: center center; -} - -.bluefoot-advanced-slide.bluefoot-slide-with-link { - cursor: pointer; -} - -.bluefoot-advanced-slide .bluefoot-advanced-slide-content { - margin: 30px; - padding: 30px; - display: inline-block; - width: 40%; - text-align: center; -} - -.bluefoot-advanced-slide .bluefoot-advanced-slide-content.bluefoot-with-overlay { - background: rgba(0,0,0,0.9); -} - -.bluefoot-advanced-slide .bluefoot-advanced-slide-content.bluefoot-with-overlay h2, -.bluefoot-advanced-slide .bluefoot-advanced-slide-content.bluefoot-with-overlay h3, -.bluefoot-advanced-slide .bluefoot-advanced-slide-content.bluefoot-with-overlay h4, -.bluefoot-advanced-slide .bluefoot-advanced-slide-content.bluefoot-with-overlay p, -.bluefoot-advanced-slide .bluefoot-advanced-slide-content.bluefoot-with-overlay li { - color: white; -} - -.columns .column.main { - max-width: 100%; -} - -@media all and (max-width:990px) { - .bluefoot-advanced-slide { - text-align: center; - } - - .bluefoot-advanced-slide .bluefoot-wrapper { - padding: 0; - } - - .bluefoot-advanced-slide .bluefoot-advanced-slide-content { - width: 60%; - margin-left: 20%; - margin-right: 20%; - box-sizing: border-box; - } -} - -@media all and (max-width:770px) { - .bluefoot-advanced-slide .bluefoot-advanced-slide-content { - width: 80%; - margin-left: 10%; - margin-right: 10%; - padding: 15px; - } -} - -.bluefoot-product { - background: none; -} - -.bluefoot-product li.item, -.bluefoot-product .item li { - list-style: none; - margin-left: 0; - width: 100%; -} - -.bluefoot-product li.item .product-image img, -.bluefoot-product .item li .product-image img { - max-width: 100%; - height: auto; -} - -.bluefoot-product ul.add-to-links { - padding-left: 0; -} - -.bluefoot-product.products-grid { - margin: 0; - padding: 0; - width: auto; -} - -.bluefoot-product.products-grid .item { - margin: 0 0 15px; -} - -.bluefoot-product.products-grid .item .actions { - display: block; -} - -.bluefoot-product.products-list { - margin: 0; - padding: 0; - width: auto; -} - -.bluefoot-product-single .products .product { - width: 100%; - padding-left: 0; -} - -.bluefoot-product-list li.item, -.bluefoot-product-list .item li { - list-style: none; - margin-left: 0; -} - -.bluefoot-product-list li.item .product-image img, -.bluefoot-product-list .item li .product-image img { - max-width: 100%; - height: auto; -} - -.bluefoot-product-list ul.add-to-links { - padding-left: 0; -} - -.bluefoot-product-list.products-grid { - margin: 0; - padding: 0; - width: auto; -} - -.bluefoot-product-list.products-grid .item .actions { - display: block; -} - -.bluefoot-newsletter.block .actions .button { - float: left; -} - -.bluefoot-newsletter.block .block-title { - border-top: none; -} - -.bluefoot-newsletter .input-container { - position: relative; -} - -.bluefoot-newsletter .input-container .actions { - position: absolute; - right: 0; - top: 0; -} - -.bluefoot-newsletter .input-container .actions .button { - border-right: none; - border-top: none; - border-bottom: none; -} - -.bluefoot-accordion .bluefoot-accordion-link, -.bluefoot-accordion h4.bluefoot-accordion-link { - cursor: pointer; - margin: 0; - padding: 15px 0; - box-sizing: border-box; - line-height: 1.4em; -} - -.bluefoot-accordion .bluefoot-accordion-link:after, -.bluefoot-accordion h4.bluefoot-accordion-link:after { - content: '+'; - font-family: 'bluefoot-icons'; - float: right; - font-size: 1.4em; - width: 20px; -} - -.bluefoot-accordion .bluefoot-accordion-inner { - box-sizing: border-box; - padding: 15px 0; - border-top: 1px solid #ededed; -} - -.bluefoot-accordion-item { - border-bottom: 1px solid #ededed; - margin: 0; -} - -.bluefoot-accordion-item.active .bluefoot-accordion-link:after { - content: '-'; -} - -.bluefoot-tabs .bluefoot-accordion-link { - cursor: pointer; - margin-bottom: 0; - padding: 15px; - box-sizing: border-box; - line-height: 1.4em; - border-bottom: 1px solid #ededed; -} - -.bluefoot-tabs .bluefoot-accordion-link:after { - content: '+'; - font-family: 'bluefoot-icons'; - float: right; - font-size: 1.4em; -} - -.bluefoot-tabs .bluefoot-tabs-navigation { - border-bottom: 1px solid #ededed; - margin: 0; - padding: 0; -} - -.bluefoot-tabs .bluefoot-tabs-navigation li { - float: left; - margin: 0; - padding: 0; - list-style: none; -} - -.bluefoot-tab { - height: 40px; - line-height: 40px; - border: 1px solid #ededed; - border-bottom: none; - border-right: none; - background: #f6f6f6; - padding: 0 15px; - display: block; - cursor: pointer; - position: relative; -} - -.bluefoot-tab:after { - content: ''; - left: 0; - right: 0; - bottom: -1px; - border-bottom: 1px solid #fff; - position: absolute; - display: none; -} - -.bluefoot-tab.last { - border-right: 1px solid #ededed; -} - -.bluefoot-tab.active, -.bluefoot-tab:hover { - background: white; -} - -.bluefoot-tab.active:after { - display: block; -} - -.bluefoot-tab-inner { - padding: 15px 0; - box-sizing: border-box; -} - -.bluefoot-tab-content { - display: none; -} - -.bluefoot-tab-content.active { - display: block; -} - -@media all and (min-width:771px) { - .bluefoot-tab-inner { - display: block; - } -} - -@media all and (max-width:770px) { - .bluefoot-tab-content { - display: block; - } - - .bluefoot-tab-inner { - padding: 15px; - display: none; - } -} - -.bluefoot-map-container { - width: 100%; - height: 300px; -} - -.bluefoot-map { - max-width: 100%; - width: 100%; - height: 100%; -} - -.bluefoot-search-form .form-search { - position: relative; - padding: 0; -} - -.bluefoot-search-form label { - display: none; -} - -.bluefoot-search-form input[type="search"], -.bluefoot-search-form input[type="text"] { - width: 100%; - height: 40px; - padding-right: 40px; -} - -.bluefoot-search-form .search-button { - position: absolute; - top: 1px; - right: 1px; - width: 38px; - height: 38px; - padding: 0; - border: 0; - background: none; - color: #999999; - font-size: 20px; - transition: .5s; - -o-transition: .5s; - -ms-transition: .5s; - -moz-transition: .5s; - -webkit-transition: .5s; -} - -.bluefoot-search-form .search-button:before { - content: 's'; - text-transform: none; - font-family: 'bluefoot-icons'; - text-align: center; - width: 40px; - height: 40px; - line-height: 40px; -} - -.bluefoot-search-form .search-button:hover { - color: black; -} - -.bluefoot-code { - text-align: left; - font-family: Consolas,"Liberation Mono",Menlo,Courier,monospace; - font-size: 13px; - tab-size: 8; - line-height: 1.4em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.bluefoot-code pre { - padding: 0; - border: none; - background: none; -} - -.bluefoot-code code { - padding: 15px; - box-sizing: border-box; -} - -.bluefoot-app .col2-right-layout .col-right .block-title { - border: 0; -} - -.bluefoot-content-view-latest .bluefoot-content-latest-item { - padding: 9px; -} - -.bluefoot-content-view-latest .bluefoot-published-date { - font-size: 12px; - font-weight: 600; - margin: 5px 0 0; -} - -.bluefoot-content-view-latest .bluefoot-excerpt { - margin: 5px 0 0; -} - -.bluefoot-content-view-latest .bluefoot-latest-title { - margin: 0; -} - -@media screen and (max-width:770px) { - .bluefoot-app .col2-right-layout .col-right { - float: left; - width: 100%; - } -} - -.bluefoot-app img, -.bluefoot-content-list img, -.bluefoot-app iframe, -.bluefoot-content-list iframe { - max-width: 100%; -} - -.bluefoot-app .bluefoot-content-list-page-title h1, -.bluefoot-content-list .bluefoot-content-list-page-title h1 { - border-bottom: none; -} - -.bluefoot-content-summary { - float: left; - width: 100%; -} - -.bluefoot-content-list-page-description { - margin-bottom: 15px; - padding-bottom: 15px; - border-bottom: 1px solid #ededed; -} - -.bluefoot-app .pager { - margin-bottom: 0; - width: 100%; -} - -.bluefoot-app .pager ol { - margin-bottom: 0; -} - -.bluefoot-app .pager li { - list-style: none; - margin-left: 0; -} - -.bluefoot-content-list-item { - border-bottom: 1px solid #ededed; - padding-bottom: 15px; - margin-bottom: 15px; -} - -.bluefoot-content-list-item .bluefoot-published-date { - font-size: 12px; - font-weight: 600; - margin-bottom: 0; -} - -.bluefoot-content-list-item.last { - padding-bottom: 0; - border-bottom: none; -} - -.bluefoot-no-content p { - font-weight: bold; -} - -.bluefoot-content-grid-item .bluefoot-published-date { - font-size: 12px; - font-weight: 600; - margin-bottom: 0; -} - -.bluefoot-content-list-type-item { - border-bottom: 1px solid #ededed; - padding-bottom: 15px; - margin-bottom: 15px; - float: left; - width: 100%; -} - -.bluefoot-content-list-type-item.last { - padding-bottom: 0; - border-bottom: none; -} - -.bluefoot-content-view img, -.bluefoot-content-view iframe { - max-width: 100%; -} - -.bluefoot-content-view .bluefoot-content-view-page-title h1 { - border-bottom: none; -} - -.bluefoot-content-view-share { - min-height: 40px; - margin-bottom: 15px; -} - -.bluefoot-content-featured-image { - margin-bottom: 15px; - display: block; -} - -.bluefoot-content-view-taxonomies { - margin-top: 15px; - padding-top: 15px; - border-top: 1px solid #ededed; -} - -.bluefoot-content-view-taxonomies .bluefoot-content-view-taxonomy-list { - list-style: none; - padding-left: 0; -} - -.bluefoot-content-view-taxonomies .bluefoot-content-view-taxonomy-list li { - display: inline; - margin-left: 0; -} - -.bluefoot-content-view-taxonomies .bluefoot-content-view-taxonomy-list li.bluefoot-list-divider { - margin: 0 7.5px; - opacity: 0.5; -} - -.bluefoot-content-view-comments { - padding-top: 15px; - border-top: 1px solid #ededed; -} - -.webforms { - margin-bottom: 1.5rem; -} - -.webforms .field { - box-sizing: border-box; - padding-left: 1rem; - padding-right: 1rem; -} - -.webforms .fieldset { - box-sizing: border-box; - padding-left: 1rem; - padding-right: 1rem; -} - -.webforms .actions-toolbar { - box-sizing: border-box; - padding-left: 2rem; - padding-right: 2rem; - clear: both; -} - -.webforms .inline-elements .choice { - display: inline-flex; -} - -.webforms-success-text { - margin-bottom: 2rem; -} - -div.starry { - width: auto; - margin: -4px 0 10px 0; - padding: 5px; - width: auto; -} - -div.standard_star { - background-repeat: no-repeat; - cursor: pointer; - float: left; - display: inline; - background-image: url(../images/stars.gif); -} - -div.feedback { - border: 1px solid #ddd; - padding: 5px 3px 3px; - display: inline; -} - -.customer-dob .dob-month, -.customer-dob .dob-day, -.customer-dob .dob-year { - float: left; - width: 8.5rem; -} - -.customer-dob input.input-text { - display: block; - width: 7.4rem; -} - -.customer-dob label { - font-size: 10px; - font-weight: normal; - color: #888; -} - -.customer-dob .dob-day, -.customer-dob .dob-month { - width: 6rem; -} - -.customer-dob .dob-day input.input-text, -.customer-dob .dob-month input.input-text { - width: 4.6rem; -} - -.customer-dob .dob-year { - width: 14rem; -} - -.customer-dob .dob-year input.input-text { - width: 13.4rem; -} - -.ot-content { - text-align: left; -} - -.tooltip-icon { - background-image: url('../images/tooltip.png'); - background-size: 1.5rem 1.5rem; - width: 1.5rem; - height: 1.5rem; - cursor: pointer; - display: inline-block; - vertical-align: middle; - margin: 0 0 0.2rem 0.5rem; -} - -.webforms figcaption { - padding: 5px 0; - margin: 5px; -} - -.webforms-description-text { - margin-bottom: 4rem; -} - -.webforms-fields-comment { - font-size: 90%; - clear: both; - margin-top: 1rem; -} - -.please-wait { - padding-top: 0.5rem; -} - -.please-wait .loading-indicator { - background: #fff url(../images/ajax-loader-big.gif) no-repeat; - background-size: 1.8rem; - display: inline-block; - width: 1.8rem; - height: 1.8rem; - vertical-align: bottom; - margin-bottom: 0.2rem; -} - -.recaptcha2 { - clear: both; - box-sizing: border-box; - padding: 0 2rem 2rem 0; - width: 100%; - float: left; -} - -.validation-advice { - margin-top: 0.7rem; - font-size: 1.2rem; - color: #e02b27; - clear: both; -} - -input.validation-failed, -textarea.validation-failed { - border-color: #ed8380; -} - -.webforms-customer-account-form { - margin-top: 3rem; - border: 1px solid #eee; - padding: 2rem; -} - -.webforms-customer-account-message { - background: rgba(255, 212, 96, 0.26); - padding: 3rem; -} - -.block-webforms-form .actions-toolbar { - margin: 17px 0; -} - -.webforms-results-block { - padding-bottom: 10px; - margin-bottom: 10px; - border-bottom: 1px dotted #cccccc; - float: left; - width: 100%; - clear: both; -} - -.webforms-results-field { - margin-bottom: 5px; - width: 100%; -} - -.webforms-results-label { - font-weight: bold; - width: 100%; -} - -.webforms-results-value { - padding: 5px 0; -} - -.webforms-results-value .webforms-image { - float: left; - margin-right: 2rem; -} - -.stars { - padding: 0 5px; - width: 80px; - display: inline; - float: left; -} - -.stars-bar { - list-style: none; - margin: 0px; - padding: 0px; - height: 16px; - position: relative; - background: url(../images/results_stars.png) top left repeat-x; -} - -.stars-bar li { - padding: 0px; - margin: 0px; - float: left; -} - -.stars-bar li.stars-value { - background: url(../images/results_stars.png) left bottom; - position: absolute; - height: 16px; - display: block; - z-index: 1; -} - -.webforms-rating-summary { - margin-bottom: 15px; -} - -.webforms-results-table .col.id { - width: 15%; -} - -.autocomplete-suggestions { - text-align: left; - cursor: default; - border: 1px solid #ccc; - border-top: 0; - background: #fff; - box-shadow: -1px 1px 3px rgba(0, 0, 0, .1); - position: absolute; - display: none; - z-index: 9999; - max-height: 254px; - overflow: hidden; - overflow-y: auto; - box-sizing: border-box; -} - -.autocomplete-suggestion { - position: relative; - padding: 0 .6em; - line-height: 23px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - font-size: 1.02em; - color: #333; -} - -.autocomplete-suggestion b { - font-weight: normal; - color: #1f8dd6; -} - -.autocomplete-suggestion.selected { - background: #f0f0f0; -} - -.file-preview { - list-style: none; - padding: 0; - margin: 0; -} - -.file-preview h3 { - font-size: 12px; -} - -.file-preview li { - margin: 0; - padding: 10px 0; - margin: 0; - overflow: auto; - position: relative; -} - -.file-preview li img { - border: solid 1px #999; - border-radius: 3px; - padding: 3px; - margin: 0 10px 0 0; - display: block; - float: left; -} - -.file-cancel { - margin-top: 1rem; - cursor: pointer; -} - -.file-progress { - font-size: 90%; - color: #777; -} - -.webforms-datepicker { - margin-bottom: 1rem; -} - -.webforms-calendar { - position: relative; - width: 20rem; - display: inline-block; - margin-right: .5rem; - margin-bottom: .5rem; -} - -.webforms-calendar .ui-datepicker-trigger { - margin-left: -3.2rem; - height: 2.8rem; - position: absolute; - top: .4rem; - right: .5rem; -} - -.webforms-time { - display: inline-block; -} - -.webforms-time .hours, -.webforms-time .minutes { - display: inline; - width: 6rem; -} - -.multiselect { - height: auto; - background-image: none; -} - -@font-face { - font-family: 'luma-icons'; - src: url(fonts/Luma-Icons.woff); - font-display: swap; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger { - background-image: none; - background: none; - -moz-box-sizing: content-box; - border: 0; - box-shadow: none; - line-height: inherit; - margin: 0; - padding: 0; - text-shadow: none; - font-weight: 400; - display: block; - text-decoration: none; - display: inline-block; - margin-top: -4px; - vertical-align: middle; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:focus, -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:active { - background: none; - border: none; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:hover { - background: none; - border: none; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger.disabled, -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger[disabled], -fieldset[disabled] .webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger { - cursor: not-allowed; - pointer-events: none; - opacity: 0.5; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger > span { - border: 0; - clip: rect(0, 0, 0, 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:before { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-size: 23px; - line-height: 23px; - color: #7d7d7d; - content: '\e612'; - font-family: 'luma-icons'; - vertical-align: middle; - display: inline-block; - font-weight: normal; - overflow: hidden; - speak: none; - text-align: center; -} - -.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:focus { - box-shadow: none; - outline: 0; -} - -.drop-zone { - padding: 2rem .7rem; - color: #777; - border: .2rem dashed #ddd; - border-radius: .4rem; - opacity: .9; - cursor: pointer; -} - -.drop-zone-preview-container { - margin-bottom: 10px; -} - -.drop-zone:hover { - background-color: #f5f5f5; -} - -.drop-zone-label { - display: inline-block; - vertical-align: top; -} - -.icon-paperclip { - color: rgb(240, 120, 0); - fill: rgb(240, 120, 0); -} - -.icon-paperclip svg { - transform: rotate(45deg) scaleX(-1); -} - -.text-center { - text-align: center; -} - -.drop-zone-preview { - background: #f8f8f8; - border: .09167rem solid #dadada; - border-radius: .33333rem; - color: #999; - padding: 5px; - margin-bottom: 5px; - line-height: inherit; - position: relative; -} - -.drop-zone-attachment { - overflow: auto; - height: auto; - z-index: 2; - width: 100%; - position: relative; -} - -.drop-zone-preview-icon-file { - padding-right: .66667rem; - float: left; -} - -.drop-zone-preview-icon-file svg path {} - -.drop-zone-preview-file { - width: 70%; - float: left; -} - -.drop-zone-preview-filename { - max-width: 62%; - color: #333; - overflow: hidden; - text-overflow: ellipsis; - word-wrap: normal; - white-space: nowrap; - float: left; - vertical-align: top; -} - -.drop-zone-preview-filename-end { - color: #333; -} - -.drop-zone-preview-size, -.drop-zone-error { - clear: left; - float: left; -} - -.drop-zone-error { - color: red; -} - -.drop-zone-preview-icon-close { - position: absolute; - top: 50%; - right: .41667rem; - margin-top: -2.2rem; - padding-top: 1rem; - border: 0; - cursor: pointer; - float: right; -} - -.drop-zone-preview-icon-close svg { - fill: #999; -} - -.drop-zone-progress, -.drop-zone-progress-success { - position: absolute; - border-radius: .33333rem; - background-color: #00ff08; - opacity: .1; - height: 100%; - z-index: 1; - top: 0; - left: 0; - display: block; -} - -.drop-zone-progress-success { - opacity: 0; -} - -.webforms .webforms-gdpr { - padding-left: 2rem; - padding-right: 2rem; - box-sizing: border-box; - float: left; -} - -.webforms .webforms-gdpr-checkbox { - margin-top: 1.5rem; - margin-bottom: 2rem; - padding-left: 0; -} - -.webforms-popup { - position: relative; - background: #FFF; - padding: 2rem; - margin: 2rem auto; - box-sizing: border-box; - border-radius: .7rem; -} - -@media screen and (min-width: 20em) { - .webforms-popup { - width: 100%; - } -} - -@media screen and (min-width: 48em) { - .webforms-popup { - width: 90%; - } -} - -@media screen and (min-width: 64em) { - .webforms-popup { - width: 80%; - } -} - -.webforms-result-action { - display: block; - background: #f5f5f5; - text-align: center; - padding: .3rem .1rem; - margin: .5rem .1rem; - white-space: nowrap; - color: #888; - text-decoration: none; -} - -.webforms-result-action:hover { - text-decoration: none; - color: white; - background: #8bc53f; -} - -.result-action-delete { - border-color: red; -} - -.result-action-delete:hover { - background: red; -} - -.webforms-file-pool { - display: table; - margin-bottom: 10px; -} - -.webforms-file-pool-selectall { - margin-bottom: 5px; -} - -.webforms-file-pool-selectall label { - font: bold 10px/16px Arial, Helvetica, sans-serif; - text-transform: uppercase; - color: #888; - float: none; - margin-left: 5px; -} - -.webforms-file-cell { - float: left; - flex: 1; - height: auto; - text-align: center; - font: bold 9px/16px Arial, Helvetica, sans-serif; - text-transform: uppercase; - color: #888; - display: table-cell; -} - -.webforms-file-cell p label { - color: #888; -} - -.webforms-file-cell p { - padding-top: 5px; - margin-left: -10px; - float: left; - clear: both; - width: 100%; -} - -.webforms-file-cell label { - float: none; - margin-left: 5px; -} - -.webforms-file-link { - display: block; - border-radius: 5px; - float: left; - margin-right: 10px; - height: auto; - box-shadow: 0 0 3px rgba(0,0,0,0.6); - background: #f5f5f5; - max-width: 200px; - padding: 5px 10px; -} - -.webforms-file-link:hover { - box-shadow: 0 0 7px rgba(0,0,0,0.6); - background: white; - color: #888; -} - -.webforms-file-link figure p { - margin: 10px 0 5px 0; -} - -.webforms-file-link figure img { - background: white; -} - -.webforms-file-link-name { - display: inline; - max-width: 60%; - overflow: hidden; - text-overflow: ellipsis; - word-wrap: normal; - white-space: nowrap; - float: left; -} - -.webforms-file-link-name-end { - display: inline; -} - -.webforms-file-delete-checkbox { - vertical-align: baseline; -} - -@media screen and (min-width: 20em) { - .wf-sm-row { - clear: left; - } - - .wf-sm-1, - .wf-sm-1-1, - .wf-sm-1-2, - .wf-sm-1-3, - .wf-sm-2-3, - .wf-sm-1-4, - .wf-sm-3-4, - .wf-sm-1-6, - .wf-sm-1-5, - .wf-sm-2-5, - .wf-sm-3-5, - .wf-sm-4-5, - .wf-sm-5-6, - .wf-sm-1-12, - .wf-sm-2-12, - .wf-sm-3-12, - .wf-sm-4-12, - .wf-sm-5-12, - .wf-sm-6-12, - .wf-sm-7-12, - .wf-sm-8-12, - .wf-sm-9-12, - .wf-sm-10-12, - .wf-sm-11-12, - .wf-sm-12-12 { - display: inline-block; - *display: inline; - zoom: 1; - letter-spacing: normal; - word-spacing: normal; - vertical-align: top; - text-rendering: auto; - float: left; - } - - .wf-sm-1-12 { - width: 8.3333%; - *width: 8.3023%; - } - - .wf-sm-1-6, - .wf-sm-2-12 { - width: 16.6667%; - *width: 16.6357%; - } - - .wf-sm-1-5 { - width: 20%; - } - - .wf-sm-1-4, - .wf-sm-3-12 { - width: 25%; - *width: 24.9690%; - } - - .wf-sm-1-3, - .wf-sm-4-12 { - width: 33.3333%; - *width: 33.3023%; - } - - .wf-sm-2-5 { - width: 40%; - } - - .wf-sm-5-12 { - width: 41.6667%; - *width: 41.6357%; - } - - .wf-sm-1-2, - .wf-sm-6-12 { - width: 50%; - *width: 49.9690%; - } - - .wf-sm-7-12 { - width: 58.3333%; - *width: 58.3023%; - } - - .wf-sm-3-5 { - width: 60%; - } - - .wf-sm-2-3, - .wf-sm-8-12 { - width: 66.6667%; - *width: 66.6357%; - } - - .wf-sm-3-4, - .wf-sm-9-12 { - width: 75%; - *width: 74.9690%; - } - - .wf-sm-4-5 { - width: 80%; - } - - .wf-sm-5-6, - .wf-sm-10-12 { - width: 83.3333%; - *width: 83.3023%; - } - - .wf-sm-11-12 { - width: 91.6667%; - *width: 91.6357%; - } - - .wf-sm-1, - .wf-sm-1-1, - .wf-sm-12-12 { - width: 100%; - } -} - -@media screen and (min-width: 48em) { - .wf-md-row { - clear: left; - } - - .wf-sm-row { - clear: unset; - } - - .wf-md-1, - .wf-md-1-1, - .wf-md-1-2, - .wf-md-1-3, - .wf-md-2-3, - .wf-md-1-4, - .wf-md-3-4, - .wf-md-1-6, - .wf-md-1-5, - .wf-md-2-5, - .wf-md-3-5, - .wf-md-4-5, - .wf-md-5-6, - .wf-md-1-12, - .wf-md-2-12, - .wf-md-3-12, - .wf-md-4-12, - .wf-md-5-12, - .wf-md-6-12, - .wf-md-7-12, - .wf-md-8-12, - .wf-md-9-12, - .wf-md-10-12, - .wf-md-11-12, - .wf-md-12-12 { - display: inline-block; - *display: inline; - zoom: 1; - letter-spacing: normal; - word-spacing: normal; - vertical-align: top; - text-rendering: auto; - float: left; - } - - .wf-md-1-12 { - width: 8.3333%; - *width: 8.3023%; - } - - .wf-md-1-6, - .wf-md-2-12 { - width: 16.6667%; - *width: 16.6357%; - } - - .wf-md-1-5 { - width: 20%; - } - - .wf-md-1-4, - .wf-md-3-12 { - width: 25%; - *width: 24.9690%; - } - - .wf-md-1-3, - .wf-md-4-12 { - width: 33.3333%; - *width: 33.3023%; - } - - .wf-md-2-5 { - width: 40%; - } - - .wf-md-5-12 { - width: 41.6667%; - *width: 41.6357%; - } - - .wf-md-1-2, - .wf-md-6-12 { - width: 50%; - *width: 49.9690%; - } - - .wf-md-7-12 { - width: 58.3333%; - *width: 58.3023%; - } - - .wf-md-3-5 { - width: 60%; - } - - .wf-md-2-3, - .wf-md-8-12 { - width: 66.6667%; - *width: 66.6357%; - } - - .wf-md-3-4, - .wf-md-9-12 { - width: 75%; - *width: 74.9690%; - } - - .wf-md-4-5 { - width: 80%; - } - - .wf-md-5-6, - .wf-md-10-12 { - width: 83.3333%; - *width: 83.3023%; - } - - .wf-md-11-12 { - width: 91.6667%; - *width: 91.6357%; - } - - .wf-md-1, - .wf-md-1-1, - .wf-md-12-12 { - width: 100%; - } -} - -@media screen and (min-width: 64em) { - .wf-lg-row { - clear: left; - } - - .wf-md-row, - .wf-sm-row { - clear: unset; - } - - .wf-lg-1, - .wf-lg-1-1, - .wf-lg-1-2, - .wf-lg-1-3, - .wf-lg-2-3, - .wf-lg-1-4, - .wf-lg-3-4, - .wf-lg-1-5, - .wf-lg-2-5, - .wf-lg-3-5, - .wf-lg-4-5, - .wf-lg-1-6, - .wf-lg-5-6, - .wf-lg-1-12, - .wf-lg-2-12, - .wf-lg-3-12, - .wf-lg-4-12, - .wf-lg-5-12, - .wf-lg-6-12, - .wf-lg-7-12, - .wf-lg-8-12, - .wf-lg-9-12, - .wf-lg-10-12, - .wf-lg-11-12, - .wf-lg-12-12 { - display: inline-block; - *display: inline; - zoom: 1; - letter-spacing: normal; - word-spacing: normal; - vertical-align: top; - text-rendering: auto; - float: left; - } - - .wf-lg-1-12 { - width: 8.3333%; - *width: 8.3023%; - } - - .wf-lg-1-6, - .wf-lg-2-12 { - width: 16.6667%; - *width: 16.6357%; - } - - .wf-lg-1-5 { - width: 20%; - } - - .wf-lg-1-4, - .wf-lg-3-12 { - width: 25%; - *width: 24.9690%; - } - - .wf-lg-1-3, - .wf-lg-4-12 { - width: 33.3333%; - *width: 33.3023%; - } - - .wf-lg-2-5 { - width: 40%; - } - - .wf-lg-5-12 { - width: 41.6667%; - *width: 41.6357%; - } - - .wf-lg-1-2, - .wf-lg-6-12 { - width: 50%; - *width: 49.9690%; - } - - .wf-lg-7-12 { - width: 58.3333%; - *width: 58.3023%; - } - - .wf-lg-3-5 { - width: 60%; - } - - .wf-lg-2-3, - .wf-lg-8-12 { - width: 66.6667%; - *width: 66.6357%; - } - - .wf-lg-3-4, - .wf-lg-9-12 { - width: 75%; - *width: 74.9690%; - } - - .wf-lg-4-5 { - width: 80%; - } - - .wf-lg-5-6, - .wf-lg-10-12 { - width: 83.3333%; - *width: 83.3023%; - } - - .wf-lg-11-12 { - width: 91.6667%; - *width: 91.6357%; - } - - .wf-lg-1, - .wf-lg-1-1, - .wf-lg-12-12 { - width: 100%; - } -} - -.opentip-container, -.opentip-container * { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -.opentip-container { - position: absolute; - max-width: 300px; - z-index: 100; - -webkit-transition: -webkit-transform 1s ease-in-out; - -moz-transition: -moz-transform 1s ease-in-out; - -o-transition: -o-transform 1s ease-in-out; - -ms-transition: -ms-transform 1s ease-in-out; - transition: transform 1s ease-in-out; - pointer-events: none; - -webkit-transform: translateX(0) translateY(0); - -moz-transform: translateX(0) translateY(0); - -o-transform: translateX(0) translateY(0); - -ms-transform: translateX(0) translateY(0); - transform: translateX(0) translateY(0); -} - -.opentip-container.ot-fixed.ot-hidden.stem-top.stem-center, -.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-center, -.opentip-container.ot-fixed.ot-hiding.stem-top.stem-center { - -webkit-transform: translateY(-5px); - -moz-transform: translateY(-5px); - -o-transform: translateY(-5px); - -ms-transform: translateY(-5px); - transform: translateY(-5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-top.stem-right, -.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-right, -.opentip-container.ot-fixed.ot-hiding.stem-top.stem-right { - -webkit-transform: translateY(-5px) translateX(5px); - -moz-transform: translateY(-5px) translateX(5px); - -o-transform: translateY(-5px) translateX(5px); - -ms-transform: translateY(-5px) translateX(5px); - transform: translateY(-5px) translateX(5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-middle.stem-right, -.opentip-container.ot-fixed.ot-going-to-show.stem-middle.stem-right, -.opentip-container.ot-fixed.ot-hiding.stem-middle.stem-right { - -webkit-transform: translateX(5px); - -moz-transform: translateX(5px); - -o-transform: translateX(5px); - -ms-transform: translateX(5px); - transform: translateX(5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-right, -.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-right, -.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-right { - -webkit-transform: translateY(5px) translateX(5px); - -moz-transform: translateY(5px) translateX(5px); - -o-transform: translateY(5px) translateX(5px); - -ms-transform: translateY(5px) translateX(5px); - transform: translateY(5px) translateX(5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-center, -.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-center, -.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-center { - -webkit-transform: translateY(5px); - -moz-transform: translateY(5px); - -o-transform: translateY(5px); - -ms-transform: translateY(5px); - transform: translateY(5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-left, -.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-left, -.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-left { - -webkit-transform: translateY(5px) translateX(-5px); - -moz-transform: translateY(5px) translateX(-5px); - -o-transform: translateY(5px) translateX(-5px); - -ms-transform: translateY(5px) translateX(-5px); - transform: translateY(5px) translateX(-5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-middle.stem-left, -.opentip-container.ot-fixed.ot-going-to-show.stem-middle.stem-left, -.opentip-container.ot-fixed.ot-hiding.stem-middle.stem-left { - -webkit-transform: translateX(-5px); - -moz-transform: translateX(-5px); - -o-transform: translateX(-5px); - -ms-transform: translateX(-5px); - transform: translateX(-5px); -} - -.opentip-container.ot-fixed.ot-hidden.stem-top.stem-left, -.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-left, -.opentip-container.ot-fixed.ot-hiding.stem-top.stem-left { - -webkit-transform: translateY(-5px) translateX(-5px); - -moz-transform: translateY(-5px) translateX(-5px); - -o-transform: translateY(-5px) translateX(-5px); - -ms-transform: translateY(-5px) translateX(-5px); - transform: translateY(-5px) translateX(-5px); -} - -.opentip-container.ot-fixed .opentip { - pointer-events: auto; -} - -.opentip-container.ot-hidden { - display: none; -} - -.opentip-container .opentip { - position: relative; - font-size: 13px; - line-height: 120%; - padding: 9px 14px; - color: #4f4b47; - text-shadow: -1px -1px 0px rgba(255,255,255,0.2); -} - -.opentip-container .opentip .header { - margin: 0; - padding: 0; -} - -.opentip-container .opentip .ot-close { - pointer-events: auto; - display: block; - position: absolute; - top: -12px; - left: 60px; - color: rgba(0,0,0,0.5); - background: rgba(0,0,0,0); - text-decoration: none; -} - -.opentip-container .opentip .ot-close span { - display: none; -} - -.opentip-container .opentip .ot-loading-indicator { - display: none; -} - -.opentip-container.ot-loading .ot-loading-indicator { - width: 30px; - height: 30px; - font-size: 30px; - line-height: 30px; - font-weight: bold; - display: block; -} - -.opentip-container.ot-loading .ot-loading-indicator span { - display: block; - -webkit-animation: otloading 2s linear infinite; - -moz-animation: otloading 2s linear infinite; - -o-animation: otloading 2s linear infinite; - -ms-animation: otloading 2s linear infinite; - animation: otloading 2s linear infinite; - text-align: center; -} - -.opentip-container.style-dark .opentip, -.opentip-container.style-alert .opentip { - color: #f8f8f8; - text-shadow: 1px 1px 0px rgba(0,0,0,0.2); -} - -.opentip-container.style-glass .opentip { - padding: 15px 25px; - color: #317cc5; - text-shadow: 1px 1px 8px rgba(0,94,153,0.3); -} - -.opentip-container.ot-hide-effect-fade { - -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out; - -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out; - -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out; - -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out; - transition: transform 0.5s ease-in-out, opacity 1s ease-in-out; - opacity: 1; - -ms-filter: none; - filter: none; -} - -.opentip-container.ot-hide-effect-fade.ot-hiding { - opacity: 0; - filter: alpha(opacity=0); - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -} - -.opentip-container.ot-show-effect-appear.ot-going-to-show, -.opentip-container.ot-show-effect-appear.ot-showing { - -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out; - -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out; - -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out; - -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out; - transition: transform 0.5s ease-in-out, opacity 1s ease-in-out; -} - -.opentip-container.ot-show-effect-appear.ot-going-to-show { - opacity: 0; - filter: alpha(opacity=0); - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -} - -.opentip-container.ot-show-effect-appear.ot-showing { - opacity: 1; - -ms-filter: none; - filter: none; -} - -.opentip-container.ot-show-effect-appear.ot-visible { - opacity: 1; - -ms-filter: none; - filter: none; -} - -@-moz-keyframes otloading { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -o-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -o-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-webkit-keyframes otloading { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -o-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -o-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-o-keyframes otloading { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -o-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -o-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@-ms-keyframes otloading { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -o-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -o-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes otloading { - 0% { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -o-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - -moz-transform: rotate(360deg); - -o-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.colpick { - position: absolute; - box-sizing: content-box; - width: 346px; - height: 170px; - overflow: hidden; - display: none; - font-family: Arial, Helvetica, sans-serif; - direction: ltr; - background: #ebebeb; - border: 1px solid #bbb; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; - z-index: 100000; -} - -.colpick .colpick_color { - position: absolute; - left: 7px; - top: 7px; - width: 156px; - height: 156px; - overflow: hidden; - outline: 1px solid #aaa; - cursor: crosshair; -} - -.colpick .colpick_color_overlay1 { - position: absolute; - left: 0; - top: 0; - width: 156px; - height: 156px; - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')"; - background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); - background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); - background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); - background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); - background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); - background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff'); -} - -.colpick .colpick_color_overlay2 { - position: absolute; - left: 0; - top: 0; - width: 156px; - height: 156px; - -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')"; - background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1))); - background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); - background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); - background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); - background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); -} - -.colpick .colpick_selector_outer { - background: none; - position: absolute; - width: 11px; - height: 11px; - margin: -6px 0 0 -6px; - border: 1px solid black; - border-radius: 50%; -} - -.colpick .colpick_selector_inner { - position: absolute; - width: 9px; - height: 9px; - border: 1px solid white; - border-radius: 50%; -} - -.colpick .colpick_hue { - position: absolute; - top: 6px; - left: 175px; - width: 19px; - height: 156px; - border: 1px solid #aaa; - cursor: n-resize; -} - -.colpick .colpick_hue_arrs { - position: absolute; - left: -8px; - width: 35px; - height: 7px; - margin: -7px 0 0 0; -} - -.colpick .colpick_hue_larr { - position: absolute; - width: 0; - height: 0; - border-top: 6px solid transparent; - border-bottom: 6px solid transparent; - border-left: 7px solid #858585; -} - -.colpick .colpick_hue_rarr { - position: absolute; - right: 0; - width: 0; - height: 0; - border-top: 6px solid transparent; - border-bottom: 6px solid transparent; - border-right: 7px solid #858585; -} - -.colpick .colpick_new_color { - position: absolute; - left: 207px; - top: 6px; - width: 60px; - height: 27px; - background: #f00; - border: 1px solid #8f8f8f; -} - -.colpick .colpick_current_color { - position: absolute; - left: 277px; - top: 6px; - width: 60px; - height: 27px; - background: #f00; - border: 1px solid #8f8f8f; -} - -.colpick .colpick_field, -.colpick .colpick_hex_field { - position: absolute; - height: 20px; - width: 60px; - overflow: hidden; - background: #f3f3f3; - color: #b8b8b8; - font-size: 12px; - border: 1px solid #bdbdbd; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} - -.colpick .colpick_rgb_r { - top: 40px; - left: 207px; -} - -.colpick .colpick_rgb_g { - top: 67px; - left: 207px; -} - -.colpick .colpick_rgb_b { - top: 94px; - left: 207px; -} - -.colpick .colpick_hsb_h { - top: 40px; - left: 277px; -} - -.colpick .colpick_hsb_s { - top: 67px; - left: 277px; -} - -.colpick .colpick_hsb_b { - top: 94px; - left: 277px; -} - -.colpick .colpick_hex_field { - width: 68px; - left: 207px; - top: 121px; -} - -.colpick .colpick_focus { - border-color: #999; -} - -.colpick .colpick_field_letter { - position: absolute; - width: 12px; - height: 20px; - line-height: 20px; - padding-left: 4px; - background: #efefef; - border-right: 1px solid #bdbdbd; - font-weight: bold; - color: #777; -} - -.colpick .colpick_field input, -.colpick .colpick_hex_field input { - position: absolute; - right: 11px; - margin: 0; - padding: 0; - height: 20px; - line-height: 20px; - background: transparent; - border: none; - font-size: 12px; - font-family: Arial, Helvetica, sans-serif; - color: #555; - text-align: right; - outline: none; -} - -.colpick .colpick_hex_field input { - right: 4px; -} - -.colpick .colpick_field_arrs { - position: absolute; - top: 0; - right: 0; - width: 9px; - height: 21px; - cursor: n-resize; -} - -.colpick .colpick_field_uarr { - position: absolute; - top: 5px; - width: 0; - height: 0; - border-left: 4px solid transparent; - border-right: 4px solid transparent; - border-bottom: 4px solid #959595; -} - -.colpick .colpick_field_darr { - position: absolute; - bottom: 5px; - width: 0; - height: 0; - border-left: 4px solid transparent; - border-right: 4px solid transparent; - border-top: 4px solid #959595; -} - -.colpick .colpick_submit { - position: absolute; - left: 207px; - top: 149px; - width: 130px; - height: 22px; - line-height: 22px; - background: #efefef; - text-align: center; - color: #555; - font-size: 12px; - font-weight: bold; - border: 1px solid #bdbdbd; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} - -.colpick .colpick_submit:hover { - background: #f3f3f3; - border-color: #999; - cursor: pointer; -} - -.colpick.colpick_full_ns .colpick_submit, -.colpick.colpick_full_ns .colpick_current_color { - display: none; -} - -.colpick.colpick_full_ns .colpick_new_color { - width: 130px; - height: 25px; -} - -.colpick.colpick_full_ns .colpick_rgb_r, -.colpick.colpick_full_ns .colpick_hsb_h { - top: 42px; -} - -.colpick.colpick_full_ns .colpick_rgb_g, -.colpick.colpick_full_ns .colpick_hsb_s { - top: 73px; -} - -.colpick.colpick_full_ns .colpick_rgb_b, -.colpick.colpick_full_ns .colpick_hsb_b { - top: 104px; -} - -.colpick.colpick_full_ns .colpick_hex_field { - top: 135px; -} - -.colpick.colpick_rgbhex .colpick_hsb_h, -.colpick.colpick_rgbhex .colpick_hsb_s, -.colpick.colpick_rgbhex .colpick_hsb_b { - display: none; -} - -.colpick.colpick_rgbhex { - width: 282px; -} - -.colpick.colpick_rgbhex .colpick_field, -.colpick.colpick_rgbhex .colpick_submit { - width: 68px; -} - -.colpick.colpick_rgbhex .colpick_new_color { - width: 34px; - border-right: none; -} - -.colpick.colpick_rgbhex .colpick_current_color { - width: 34px; - left: 240px; - border-left: none; -} - -.colpick.colpick_rgbhex_ns .colpick_submit, -.colpick.colpick_rgbhex_ns .colpick_current_color { - display: none; -} - -.colpick.colpick_rgbhex_ns .colpick_new_color { - width: 68px; - border: 1px solid #8f8f8f; -} - -.colpick.colpick_rgbhex_ns .colpick_rgb_r { - top: 42px; -} - -.colpick.colpick_rgbhex_ns .colpick_rgb_g { - top: 73px; -} - -.colpick.colpick_rgbhex_ns .colpick_rgb_b { - top: 104px; -} - -.colpick.colpick_rgbhex_ns .colpick_hex_field { - top: 135px; -} - -.colpick.colpick_hex .colpick_hsb_h, -.colpick.colpick_hex .colpick_hsb_s, -.colpick.colpick_hex .colpick_hsb_b, -.colpick.colpick_hex .colpick_rgb_r, -.colpick.colpick_hex .colpick_rgb_g, -.colpick.colpick_hex .colpick_rgb_b { - display: none; -} - -.colpick.colpick_hex { - width: 206px; - height: 201px; -} - -.colpick.colpick_hex .colpick_hex_field { - width: 72px; - height: 25px; - top: 168px; - left: 80px; -} - -.colpick.colpick_hex .colpick_hex_field div, -.colpick.colpick_hex .colpick_hex_field input { - height: 25px; - line-height: 25px; -} - -.colpick.colpick_hex .colpick_new_color { - left: 9px; - top: 168px; - width: 30px; - border-right: none; -} - -.colpick.colpick_hex .colpick_current_color { - left: 39px; - top: 168px; - width: 30px; - border-left: none; -} - -.colpick.colpick_hex .colpick_submit { - left: 164px; - top: 168px; - width: 30px; - height: 25px; - line-height: 25px; -} - -.colpick.colpick_hex_ns .colpick_submit, -.colpick.colpick_hex_ns .colpick_current_color { - display: none; -} - -.colpick.colpick_hex_ns .colpick_hex_field { - width: 80px; -} - -.colpick.colpick_hex_ns .colpick_new_color { - width: 60px; - border: 1px solid #8f8f8f; -} - -.colpick.colpick_dark { - background: #161616; - border-color: #2a2a2a; -} - -.colpick.colpick_dark .colpick_color { - outline-color: #333; -} - -.colpick.colpick_dark .colpick_hue { - border-color: #555; -} - -.colpick.colpick_dark .colpick_field, -.colpick.colpick_dark .colpick_hex_field { - background: #101010; - border-color: #2d2d2d; -} - -.colpick.colpick_dark .colpick_field_letter { - background: #131313; - border-color: #2d2d2d; - color: #696969; -} - -.colpick.colpick_dark .colpick_field input, -.colpick.colpick_dark .colpick_hex_field input { - color: #7a7a7a; -} - -.colpick.colpick_dark .colpick_field_uarr { - border-bottom-color: #696969; -} - -.colpick.colpick_dark .colpick_field_darr { - border-top-color: #696969; -} - -.colpick.colpick_dark .colpick_focus { - border-color: #444; -} - -.colpick.colpick_dark .colpick_submit { - background: #131313; - border-color: #2d2d2d; - color: #7a7a7a; -} - -.colpick.colpick_dark .colpick_submit:hover { - background-color: #101010; - border-color: #444; -} - -.type-colorpicker input { - cursor: pointer; -} - -.mfp-bg { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1042; - overflow: hidden; - position: fixed; - background: #0b0b0b; - opacity: 0.8; -} - -.mfp-wrap { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1043; - position: fixed; - outline: none; - -webkit-backface-visibility: hidden; -} - -.mfp-container { - text-align: center; - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - padding: 0 8px; - box-sizing: border-box; -} - -.mfp-container:before { - content: ''; - display: inline-block; - height: 100%; - vertical-align: middle; -} - -.mfp-align-top .mfp-container:before { - display: none; -} - -.mfp-content { - position: relative; - display: inline-block; - vertical-align: middle; - margin: 0 auto; - text-align: left; - z-index: 1045; -} - -.mfp-inline-holder .mfp-content, -.mfp-ajax-holder .mfp-content { - width: 100%; - cursor: auto; -} - -.mfp-ajax-cur { - cursor: progress; -} - -.mfp-zoom-out-cur, -.mfp-zoom-out-cur .mfp-image-holder .mfp-close { - cursor: -moz-zoom-out; - cursor: -webkit-zoom-out; - cursor: zoom-out; -} - -.mfp-zoom { - cursor: pointer; - cursor: -webkit-zoom-in; - cursor: -moz-zoom-in; - cursor: zoom-in; -} - -.mfp-auto-cursor .mfp-content { - cursor: auto; -} - -.mfp-close, -.mfp-arrow, -.mfp-preloader, -.mfp-counter { - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; -} - -.mfp-loading.mfp-figure { - display: none; -} - -.mfp-hide { - display: none; -} - -.mfp-preloader { - color: #CCC; - position: absolute; - top: 50%; - width: auto; - text-align: center; - margin-top: -0.8em; - left: 8px; - right: 8px; - z-index: 1044; -} - -.mfp-preloader a { - color: #CCC; -} - -.mfp-preloader a:hover { - color: #FFF; -} - -.mfp-s-ready .mfp-preloader { - display: none; -} - -.mfp-s-error .mfp-content { - display: none; -} - -button.mfp-close, -button.mfp-arrow { - overflow: visible; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - display: block; - outline: none; - padding: 0; - z-index: 1046; - box-shadow: none; - touch-action: manipulation; -} - -button::-moz-focus-inner { - padding: 0; - border: 0; -} - -.mfp-close { - width: 44px; - height: 44px; - line-height: 44px; - position: absolute; - right: 0; - top: 0; - text-decoration: none; - text-align: center; - opacity: 0.65; - padding: 0 0 18px 10px; - color: #FFF; - font-style: normal; - font-size: 28px; - font-family: Arial, Baskerville, monospace; -} - -.mfp-close:hover, -.mfp-close:focus { - opacity: 1; -} - -.mfp-close:active { - top: 1px; -} - -.mfp-close-btn-in .mfp-close { - color: #333; -} - -.mfp-image-holder .mfp-close, -.mfp-iframe-holder .mfp-close { - color: #FFF; - right: -6px; - text-align: right; - padding-right: 6px; - width: 100%; -} - -.mfp-counter { - position: absolute; - top: 0; - right: 0; - color: #CCC; - font-size: 12px; - line-height: 18px; - white-space: nowrap; -} - -.mfp-arrow { - position: absolute; - opacity: 0.65; - margin: 0; - top: 50%; - margin-top: -55px; - padding: 0; - width: 90px; - height: 110px; - -webkit-tap-highlight-color: transparent; -} - -.mfp-arrow:active { - margin-top: -54px; -} - -.mfp-arrow:hover, -.mfp-arrow:focus { - opacity: 1; -} - -.mfp-arrow:before, -.mfp-arrow:after { - content: ''; - display: block; - width: 0; - height: 0; - position: absolute; - left: 0; - top: 0; - margin-top: 35px; - margin-left: 35px; - border: medium inset transparent; -} - -.mfp-arrow:after { - border-top-width: 13px; - border-bottom-width: 13px; - top: 8px; -} - -.mfp-arrow:before { - border-top-width: 21px; - border-bottom-width: 21px; - opacity: 0.7; -} - -.mfp-arrow-left { - left: 0; -} - -.mfp-arrow-left:after { - border-right: 17px solid #FFF; - margin-left: 31px; -} - -.mfp-arrow-left:before { - margin-left: 25px; - border-right: 27px solid #3F3F3F; -} - -.mfp-arrow-right { - right: 0; -} - -.mfp-arrow-right:after { - border-left: 17px solid #FFF; - margin-left: 39px; -} - -.mfp-arrow-right:before { - border-left: 27px solid #3F3F3F; -} - -.mfp-iframe-holder { - padding-top: 40px; - padding-bottom: 40px; -} - -.mfp-iframe-holder .mfp-content { - line-height: 0; - width: 100%; - max-width: 900px; -} - -.mfp-iframe-holder .mfp-close { - top: -40px; -} - -.mfp-iframe-scaler { - width: 100%; - height: 0; - overflow: hidden; - padding-top: 56.25%; -} - -.mfp-iframe-scaler iframe { - position: absolute; - display: block; - top: 0; - left: 0; - width: 100%; - height: 100%; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #000; -} - -img.mfp-img { - width: auto; - max-width: 100%; - height: auto; - display: block; - line-height: 0; - box-sizing: border-box; - padding: 40px 0 40px; - margin: 0 auto; -} - -.mfp-figure { - line-height: 0; -} - -.mfp-figure:after { - content: ''; - position: absolute; - left: 0; - top: 40px; - bottom: 40px; - display: block; - right: 0; - width: auto; - height: auto; - z-index: -1; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); - background: #444; -} - -.mfp-figure small { - color: #BDBDBD; - display: block; - font-size: 12px; - line-height: 14px; -} - -.mfp-figure figure { - margin: 0; -} - -.mfp-bottom-bar { - margin-top: -36px; - position: absolute; - top: 100%; - left: 0; - width: 100%; - cursor: auto; -} - -.mfp-title { - text-align: left; - line-height: 18px; - color: #F3F3F3; - word-wrap: break-word; - padding-right: 36px; -} - -.mfp-image-holder .mfp-content { - max-width: 100%; -} - -.mfp-gallery .mfp-image-holder .mfp-figure { - cursor: pointer; -} - -@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { - .mfp-img-mobile .mfp-image-holder { - padding-left: 0; - padding-right: 0; - } - - .mfp-img-mobile img.mfp-img { - padding: 0; - } - - .mfp-img-mobile .mfp-figure:after { - top: 0; - bottom: 0; - } - - .mfp-img-mobile .mfp-figure small { - display: inline; - margin-left: 5px; - } - - .mfp-img-mobile .mfp-bottom-bar { - background: rgba(0, 0, 0, 0.6); - bottom: 0; - margin: 0; - top: auto; - padding: 3px 5px; - position: fixed; - box-sizing: border-box; - } - - .mfp-img-mobile .mfp-bottom-bar:empty { - padding: 0; - } - - .mfp-img-mobile .mfp-counter { - right: 5px; - top: 3px; - } - - .mfp-img-mobile .mfp-close { - top: 0; - right: 0; - width: 35px; - height: 35px; - line-height: 35px; - background: rgba(0, 0, 0, 0.6); - position: fixed; - text-align: center; - padding: 0; - } -} - -@media all and (max-width: 900px) { - .mfp-arrow { - -webkit-transform: scale(0.75); - transform: scale(0.75); - } - - .mfp-arrow-left { - -webkit-transform-origin: 0; - transform-origin: 0; - } - - .mfp-arrow-right { - -webkit-transform-origin: 100%; - transform-origin: 100%; - } - - .mfp-container { - padding-left: 6px; - padding-right: 6px; - } -} - -@media (min-width: 991px) { - .page-main .col-inner .widget-contenthtml, - .page-main .col-inner .widget-html { - opacity: 1; - transform: translate(0, 0); - } -} - -*, -:before, -:after { - box-sizing: border-box; - border-width: 0; - border-style: solid; - border-color: #e5e7eb; -} - -:before, -:after { - --tw-content: ""; -} - -html { - line-height: 1.5; - -webkit-text-size-adjust: 100%; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - font-family: ProximaNova,Helvetica,Arial,sans-serif; -} - -body { - margin: 0; - line-height: inherit; -} - -hr { - height: 0; - color: inherit; - border-top-width: 1px; -} - -abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -a { - color: inherit; - text-decoration: inherit; -} - -b, -strong { - font-weight: bolder; -} - -code, -kbd, -samp, -pre { - font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace; - font-size: 1em; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -table { - text-indent: 0; - border-color: inherit; - border-collapse: collapse; -} - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - font-size: 100%; - font-weight: inherit; - line-height: inherit; - color: inherit; - margin: 0; - padding: 0; -} - -button, -select { - text-transform: none; -} - -button, -[type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; -} - -:-moz-focusring { - outline: auto; -} - -:-moz-ui-invalid { - box-shadow: none; -} - -progress { - vertical-align: baseline; -} - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -summary { - display: list-item; -} - -fieldset { - margin: 0; - padding: 0; -} - -legend { - padding: 0; -} - -ol, -ul, -menu { - list-style: none; - margin: 0; - padding: 0; -} - -textarea { - resize: vertical; -} - -input::-moz-placeholder, -textarea::-moz-placeholder { - opacity: 1; - color: #9ca3af; -} - -input::placeholder, -textarea::placeholder { - opacity: 1; - color: #9ca3af; -} - -button, -[role=button] { - cursor: pointer; -} - -:disabled { - cursor: default; -} - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; - vertical-align: middle; -} - -img, -video { - max-width: 100%; - height: auto; -} - -[hidden] { - display: none; -} - -@font-face { - font-family: vue-icons; - src: url(data:application/vnd.ms-fontobject;base64,rAUAABAFAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAA7bhTfwAAAAAAAAAAAAAAAAAAAAAAAAoAaQBjAG8AbgBzAAAADgBSAGUAZwB1AGwAYQByAAAAFgBWAGUAcgBzAGkAbwBuACAAMQAuADAAAAAKAGkAYwBvAG4AcwAAAAAAAAEAAAALAIAAAwAwT1MvMg8SBZkAAAC8AAAAYGNtYXAXRtKoAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZhO/sNgAAAF4AAABZGhlYWQiKTcZAAAC3AAAADZoaGVhB94EAwAAAxQAAAAkaG10eAq8AHEAAAM4AAAAGGxvY2EA2gCeAAADUAAAAA5tYXhwAAoASgAAA2AAAAAgbmFtZW+uahYAAAOAAAABbnBvc3QAAwAAAAAE8AAAACAAAwNeAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpEQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6RH//f//AAAAAAAg6RD//f//AAH/4xb0AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAB7/3AQcA6IAHAA5AEcAACUiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjIgcOAQcGFRQXHgEXFjMlJjQ3NjIfARYUBwYiJwHUWlBQdyIjIyJ3UFBaW1BQdyIjIyJ3UFBbT0VEZx4dHR5nREVPTkVFZh4eHh5mRUVOATYJCQgZCegJCQgZCToiI3ZPUFpaUE92IyIiI3ZPUFpaUE92IyI8Hh1mRUROTkRFZh0eHh1mRUROTkRFZh0eTQkYCQkJ5gkZCQkJAAABAFMAEwItA20AEwAACQEmNDc2MhcBFhQHAQYiJyY0NwEBpf6uExMTNRIBgBMT/oATNRITEwFSAb8BVBM1EhMT/n8TNRL+gRMTEzUSAVIAAAEAAAABAAB/U7jtXw889QALBAAAAAAA33b5TwAAAADfdvlPAAD/3AQcA6IAAAAIAAIAAAAAAAAAAQAAA8D/wAAABDwAAAAABBwAAQAAAAAAAAAAAAAAAAAAAAYEAAAAAAAAAAAAAAAAAAAABDwAHgKAAFMAAAAAAAoAFAAeAIoAsgAAAAEAAAAGAEgAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAFAAAAAQAAAAAAAgAHAJwAAQAAAAAAAwAFAH4AAQAAAAAABAAFALEAAQAAAAAABQALAF0AAQAAAAAABgAFAI0AAQAAAAAACgAaAA8AAwABBAkAAQAKAAUAAwABBAkAAgAOAKMAAwABBAkAAwAKAIMAAwABBAkABAAKALYAAwABBAkABQAWAGgAAwABBAkABgAKAJIAAwABBAkACgA0AClpY29ucwBpAGMAbwBuAHNGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29ucwBpAGMAbwBuAHNpY29ucwBpAGMAbwBuAHNSZWd1bGFyAFIAZQBnAHUAbABhAHJpY29ucwBpAGMAbwBuAHMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA); - src: url(data:application/vnd.ms-fontobject;base64,rAUAABAFAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAA7bhTfwAAAAAAAAAAAAAAAAAAAAAAAAoAaQBjAG8AbgBzAAAADgBSAGUAZwB1AGwAYQByAAAAFgBWAGUAcgBzAGkAbwBuACAAMQAuADAAAAAKAGkAYwBvAG4AcwAAAAAAAAEAAAALAIAAAwAwT1MvMg8SBZkAAAC8AAAAYGNtYXAXRtKoAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZhO/sNgAAAF4AAABZGhlYWQiKTcZAAAC3AAAADZoaGVhB94EAwAAAxQAAAAkaG10eAq8AHEAAAM4AAAAGGxvY2EA2gCeAAADUAAAAA5tYXhwAAoASgAAA2AAAAAgbmFtZW+uahYAAAOAAAABbnBvc3QAAwAAAAAE8AAAACAAAwNeAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpEQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6RH//f//AAAAAAAg6RD//f//AAH/4xb0AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAB7/3AQcA6IAHAA5AEcAACUiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjIgcOAQcGFRQXHgEXFjMlJjQ3NjIfARYUBwYiJwHUWlBQdyIjIyJ3UFBaW1BQdyIjIyJ3UFBbT0VEZx4dHR5nREVPTkVFZh4eHh5mRUVOATYJCQgZCegJCQgZCToiI3ZPUFpaUE92IyIiI3ZPUFpaUE92IyI8Hh1mRUROTkRFZh0eHh1mRUROTkRFZh0eTQkYCQkJ5gkZCQkJAAABAFMAEwItA20AEwAACQEmNDc2MhcBFhQHAQYiJyY0NwEBpf6uExMTNRIBgBMT/oATNRITEwFSAb8BVBM1EhMT/n8TNRL+gRMTEzUSAVIAAAEAAAABAAB/U7jtXw889QALBAAAAAAA33b5TwAAAADfdvlPAAD/3AQcA6IAAAAIAAIAAAAAAAAAAQAAA8D/wAAABDwAAAAABBwAAQAAAAAAAAAAAAAAAAAAAAYEAAAAAAAAAAAAAAAAAAAABDwAHgKAAFMAAAAAAAoAFAAeAIoAsgAAAAEAAAAGAEgAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAFAAAAAQAAAAAAAgAHAJwAAQAAAAAAAwAFAH4AAQAAAAAABAAFALEAAQAAAAAABQALAF0AAQAAAAAABgAFAI0AAQAAAAAACgAaAA8AAwABBAkAAQAKAAUAAwABBAkAAgAOAKMAAwABBAkAAwAKAIMAAwABBAkABAAKALYAAwABBAkABQAWAGgAAwABBAkABgAKAJIAAwABBAkACgA0AClpY29ucwBpAGMAbwBuAHNGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29ucwBpAGMAbwBuAHNpY29ucwBpAGMAbwBuAHNSZWd1bGFyAFIAZQBnAHUAbABhAHJpY29ucwBpAGMAbwBuAHMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("embedded-opentype"),url(icons.woff2) format("woff2"),url(data:font/ttf;base64,AAEAAAALAIAAAwAwT1MvMg8SBZkAAAC8AAAAYGNtYXAXRtKoAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZhO/sNgAAAF4AAABZGhlYWQiKTcZAAAC3AAAADZoaGVhB94EAwAAAxQAAAAkaG10eAq8AHEAAAM4AAAAGGxvY2EA2gCeAAADUAAAAA5tYXhwAAoASgAAA2AAAAAgbmFtZW+uahYAAAOAAAABbnBvc3QAAwAAAAAE8AAAACAAAwNeAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpEQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6RH//f//AAAAAAAg6RD//f//AAH/4xb0AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAB7/3AQcA6IAHAA5AEcAACUiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjIgcOAQcGFRQXHgEXFjMlJjQ3NjIfARYUBwYiJwHUWlBQdyIjIyJ3UFBaW1BQdyIjIyJ3UFBbT0VEZx4dHR5nREVPTkVFZh4eHh5mRUVOATYJCQgZCegJCQgZCToiI3ZPUFpaUE92IyIiI3ZPUFpaUE92IyI8Hh1mRUROTkRFZh0eHh1mRUROTkRFZh0eTQkYCQkJ5gkZCQkJAAABAFMAEwItA20AEwAACQEmNDc2MhcBFhQHAQYiJyY0NwEBpf6uExMTNRIBgBMT/oATNRITEwFSAb8BVBM1EhMT/n8TNRL+gRMTEzUSAVIAAAEAAAABAAB/U7jtXw889QALBAAAAAAA33b5TwAAAADfdvlPAAD/3AQcA6IAAAAIAAIAAAAAAAAAAQAAA8D/wAAABDwAAAAABBwAAQAAAAAAAAAAAAAAAAAAAAYEAAAAAAAAAAAAAAAAAAAABDwAHgKAAFMAAAAAAAoAFAAeAIoAsgAAAAEAAAAGAEgAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAFAAAAAQAAAAAAAgAHAJwAAQAAAAAAAwAFAH4AAQAAAAAABAAFALEAAQAAAAAABQALAF0AAQAAAAAABgAFAI0AAQAAAAAACgAaAA8AAwABBAkAAQAKAAUAAwABBAkAAgAOAKMAAwABBAkAAwAKAIMAAwABBAkABAAKALYAAwABBAkABQAWAGgAAwABBAkABgAKAJIAAwABBAkACgA0AClpY29ucwBpAGMAbwBuAHNGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29ucwBpAGMAbwBuAHNpY29ucwBpAGMAbwBuAHNSZWd1bGFyAFIAZQBnAHUAbABhAHJpY29ucwBpAGMAbwBuAHMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"),url(data:font/woff;base64,d09GRgABAAAAAAVcAAsAAAAABRAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIFmWNtYXAAAAFoAAAAVAAAAFQXRtKoZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAWQAAAFkE7+w2GhlYWQAAAMoAAAANgAAADYiKTcZaGhlYQAAA2AAAAAkAAAAJAfeBANobXR4AAADhAAAABgAAAAYCrwAcWxvY2EAAAOcAAAADgAAAA4A2gCebWF4cAAAA6wAAAAgAAAAIAAKAEpuYW1lAAADzAAAAW4AAAFub65qFnBvc3QAAAU8AAAAIAAAACAAAwAAAAMDXgGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6REDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkR//3//wAAAAAAIOkQ//3//wAB/+MW9AADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAwAe/9wEHAOiABwAOQBHAAAlIicuAScmNTQ3PgE3NjMyFx4BFxYVFAcOAQcGIzUyNz4BNzY1NCcuAScmIyIHDgEHBhUUFx4BFxYzJSY0NzYyHwEWFAcGIicB1FpQUHciIyMid1BQWltQUHciIyMid1BQW09FRGceHR0eZ0RFT05FRWYeHh4eZkVFTgE2CQkIGQnoCQkIGQk6IiN2T1BaWlBPdiMiIiN2T1BaWlBPdiMiPB4dZkVETk5ERWYdHh4dZkVETk5ERWYdHk0JGAkJCeYJGQkJCQAAAQBTABMCLQNtABMAAAkBJjQ3NjIXARYUBwEGIicmNDcBAaX+rhMTEzUSAYATE/6AEzUSExMBUgG/AVQTNRITE/5/EzUS/oETExM1EgFSAAABAAAAAQAAf1O47V8PPPUACwQAAAAAAN92+U8AAAAA33b5TwAA/9wEHAOiAAAACAACAAAAAAAAAAEAAAPA/8AAAAQ8AAAAAAQcAAEAAAAAAAAAAAAAAAAAAAAGBAAAAAAAAAAAAAAAAAAAAAQ8AB4CgABTAAAAAAAKABQAHgCKALIAAAABAAAABgBIAAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABQAAAAEAAAAAAAIABwCcAAEAAAAAAAMABQB+AAEAAAAAAAQABQCxAAEAAAAAAAUACwBdAAEAAAAAAAYABQCNAAEAAAAAAAoAGgAPAAMAAQQJAAEACgAFAAMAAQQJAAIADgCjAAMAAQQJAAMACgCDAAMAAQQJAAQACgC2AAMAAQQJAAUAFgBoAAMAAQQJAAYACgCSAAMAAQQJAAoANAApaWNvbnMAaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwaWNvbnMAaQBjAG8AbgBzaWNvbnMAaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByaWNvbnMAaQBjAG8AbgBzAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff"),url(/icons.svg) format("svg"); - font-weight: 400; - font-style: normal; - font-display: block; -} - -[class^=vue-icon-], -[class*=" vue-icon-"] { - font-family: vue-icons,sans-serif; - speak: never; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.vue-icon-search:before { - content: "\e910"; -} - -.vue-icon-chevron-right:before { - content: "\e911"; -} - -#pon-vue-search * { - box-sizing: border-box; -} - -.pon-color { - border: 2px solid #bbb; - border-radius: 100%; - display: inline-flex; - padding: 0; - justify-content: center; - align-items: flex-end; - position: relative; - box-sizing: content-box; - width: 1.5em; - height: 1.5em; -} - -.pon-color-multi--secondary, -.secondary-as-primary { - width: 1.5em; - height: .75em; - border-radius: 0 0 .75em .75em; -} - -.pon-color:hover, -.pon-color.active { - box-shadow: 0 0 0 1px #000; - border: 2px solid #fff; - cursor: pointer; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.pon-color-multi { - transform: rotate(-45deg); -} - -.pon-color.disabled { - transform: rotate(-45deg); - pointer-events: none; - opacity: .4; -} - -.pon-color.disabled > span { - border-top: 1px solid black; -} - -.pon-loader[data-v-e453d4f8] { - display: inline-block; - position: relative; - width: 80px; - height: 80px; -} - -.pon-loader div[data-v-e453d4f8] { - transform-origin: 40px 40px; - animation: loader-e453d4f8 1.2s linear infinite; -} - -.pon-loader div[data-v-e453d4f8]:after { - content: " "; - display: block; - position: absolute; - top: 12px; - left: 37px; - width: 6px; - height: 15px; - border-radius: 20%; - background: #949391; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(1) { - transform: rotate(0); - animation-delay: -1.1s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(2) { - transform: rotate(30deg); - animation-delay: -1s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(3) { - transform: rotate(60deg); - animation-delay: -.9s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(4) { - transform: rotate(90deg); - animation-delay: -.8s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(5) { - transform: rotate(120deg); - animation-delay: -.7s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(6) { - transform: rotate(150deg); - animation-delay: -.6s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(7) { - transform: rotate(180deg); - animation-delay: -.5s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(8) { - transform: rotate(210deg); - animation-delay: -.4s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(9) { - transform: rotate(240deg); - animation-delay: -.3s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(10) { - transform: rotate(270deg); - animation-delay: -.2s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(11) { - transform: rotate(300deg); - animation-delay: -.1s; -} - -.pon-loader div[data-v-e453d4f8]:nth-child(12) { - transform: rotate(330deg); - animation-delay: 0s; -} - -@keyframes loader-e453d4f8 { - 0% { - opacity: 1; - } - - to { - opacity: 0; - } -} - -.pon-btn[data-v-0c0c2890] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: none; - display: inline-block; - position: relative; - text-decoration: none; - border-radius: 4px; - padding: 12px 20px; - font-family: inherit; - font-size: 16px; - font-weight: 700; - color: #000; - background-color: #f2f2f2; - cursor: pointer; - transition: all .2s ease-in-out; -} - -.pon-btn[data-v-0c0c2890]:hover { - background-color: #e8e8e8; -} - -.pon-btn[data-v-0c0c2890]:disabled { - background-color: #a6c0db; - cursor: not-allowed; -} - -.pon-btn.pon-btn--primary[data-v-0c0c2890] { - color: #fff; - background-color: #004a99; -} - -.pon-btn.pon-btn.pon-btn--primary[data-v-0c0c2890]:hover { - background-color: #0d4282; -} - -.pon-btn.pon-btn--white[data-v-0c0c2890] { - background-color: #fff; -} - -.pon-btn.pon-btn.pon-btn--white[data-v-0c0c2890]:hover { - background-color: #e8e8e8; -} - -.pon-btn.pon-btn--small[data-v-0c0c2890] { - padding: 8px 20px; - font-size: 14px; -} - -.pon-btn.pon-btn--tiny[data-v-0c0c2890] { - padding: 7px 10px; - font-size: 14px; -} - -.pon-btn.has-icon[data-v-0c0c2890] { - padding: 12px 64px 12px 20px; -} - -.pon-btn.has-icon.pon-btn--small[data-v-0c0c2890] { - padding: 8px 64px 8px 20px; -} - -.pon-btn.pon-btn.has-icon.pon-btn--tiny[data-v-0c0c2890] { - padding: 7px 20px 7px 10px; -} - -.pon-icon[data-v-0c0c2890] { - position: absolute; - transform: translateY(-50%); - top: 50%; - right: 20px; -} - -.pon-icon--loading[data-v-0c0c2890] { - color: #fff; - width: 16px; - height: 16px; - animation: spin-0c0c2890 1s linear infinite; - transform: rotate(0) translateY(-50%); - transform-origin: top; -} - -.pon-btn.pon-btn--primary.has-icon .pon-icon[data-v-0c0c2890] { - fill: #fff; -} - -.pon-btn.pon-btn--primary.has-icon .pon-icon--loading[data-v-0c0c2890] { - fill: none; -} - -.pon-btn.has-icon.pon-btn--small .pon-icon[data-v-0c0c2890]:not(.pon-icon--loading) { - transform: translateY(-50%) scale(.9); -} - -.pon-btn.has-icon.pon-btn--tiny .pon-icon--loading[data-v-0c0c2890] { - width: 10px; - height: 10px; - right: 5px; -} - -.pon-btn.has-icon.pon-btn--tiny .pon-icon[data-v-0c0c2890]:not(.pon-icon--loading) { - right: 2px; - transform: translateY(-50%) scale(.75); -} - -@keyframes spin-0c0c2890 { - to { - transform: rotate(360deg) translateY(-50%); - } -} - -.pon-star-rating[data-v-508d3140] { - display: flex; - flex-direction: column; -} - -.pon-star-rating__wrapper[data-v-508d3140] { - display: flex; - flex-direction: row; -} - -.pon-star-rating__scores-score--max[data-v-508d3140] { - color: #7f7f7f; -} - -.pon-star-rating__stars[data-v-508d3140] { - align-self: center; - display: flex; - overflow: hidden; - justify-content: space-between; -} - -.pon-star-rating__star[data-v-508d3140] { - display: inline-block; -} - -.pon-star-rating__overlay[data-v-508d3140] { - position: absolute; - top: 0; - left: 0; - white-space: nowrap; - overflow: hidden; -} - -.pon-star-rating__count[data-v-508d3140] { - color: #7f7f7f; - margin-left: .5rem; - white-space: nowrap; - align-self: center; -} - -.pon-star-rating__trustpilot-wrapper[data-v-508d3140] { - display: flex; - flex-direction: row; - align-items: flex-end; - line-height: 1; -} - -.pon-star-rating__truspilot-link[data-v-508d3140] { - display: flex; - align-items: flex-end; -} - -.pon-star-rating__trustpilot-poweredby[data-v-508d3140] { - font-size: 9px; - color: #7f7f7f; - margin-right: .25rem; -} - -.pon-star-rating__trustpilot-reviews[data-v-508d3140] { - font-weight: 700; - font-size: 9px; - margin-left: .25rem; -} - -.pon-star-rating__trustpilot-logo--small[data-v-508d3140] { - height: 15px; -} - -.pon-star-rating__trustpilot-logo--medium[data-v-508d3140] { - height: 32px; -} - -.pon-star-rating__trustpilot-logo--large[data-v-508d3140] { - height: 64px; -} - -.pon-progress-bar { - width: 100%; -} - -.pon-progress-bar__bg { - height: 10px; - width: 100%; - border-radius: 10px; - background: #f2f2f2; -} - -.pon-progress-bar__fill { - height: 100%; - border-radius: 10px; -} - -.pon-swatch[data-v-100ffa3a] { - border: 2px solid #bbb; - border-radius: 100%; - display: inline-flex; - padding: 0; - justify-content: center; - align-items: flex-end; - position: relative; - box-sizing: content-box; -} - -.pon-swatch--small[data-v-100ffa3a] { - width: 16px; - height: 16px; -} - -.pon-swatch--medium[data-v-100ffa3a] { - width: 20px; - height: 20px; -} - -.pon-swatch[data-v-100ffa3a]:not(:last-child) { - margin-right: 9px; -} - -.pon-swatch-multi--secondary[data-v-100ffa3a] { - width: 20px; - height: 10px; - border-radius: 0 0 19px 19px; -} - -.pon-swatch-multi--secondary-small[data-v-100ffa3a] { - width: 16px; - height: 8px; - border-radius: 0 0 19px 19px; -} - -.pon-swatch[data-v-100ffa3a]:hover, -.pon-swatch.active[data-v-100ffa3a] { - box-shadow: 0 0 0 1px #000; - border: 2px solid #fff; - cursor: pointer; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -.pon-swatch:hover .pon-swatch-multi--secondary[data-v-100ffa3a], -.pon-swatch.active .pon-swatch-multi--secondary[data-v-100ffa3a] { - height: 10px; -} - -.pon-swatch:hover .pon-swatch-multi--secondary-small[data-v-100ffa3a], -.pon-swatch.active .pon-swatch-multi--secondary-small[data-v-100ffa3a] { - height: 8px; -} - -.pon-swatch-wrapper[data-v-100ffa3a] { - display: flex; - align-content: center; - align-items: center; -} - -.pon-swatch-multi[data-v-100ffa3a] { - transform: rotate(-45deg); -} - -.pon-accordion__header-wrapper { - display: flex; - align-items: center; - align-content: center; - width: 100%; - height: 28px; -} - -.hover:hover > .pon-accordion__header-wrapper > *:before, -.hover:hover > .pon-accordion__header-wrapper > *:after { - background: #004a99; -} - -.hover:hover > .pon-accordion__header-wrapper > * { - color: #004a99; -} - -.pon-accordion__header { - position: relative; - display: flex; - cursor: pointer; - justify-content: space-between; - flex-direction: column; - place-items: flex-start; -} - -.pon-accordion__header-open { - padding-top: 40px; -} - -.pon-accordion__header-closed { - padding: 40px 0; -} - -.pon-accordion__body { - overflow: hidden; - transition: .15s ease-out; - padding: 10px; - width: 100%; - cursor: pointer; -} - -.plus-minus-toggle { - cursor: pointer; - position: relative; - width: 16px; - margin-right: 23px; - margin-bottom: 4px; -} - -.plus-minus-toggle:before, -.plus-minus-toggle:after { - background: #000; - content: ""; - height: 2px; - left: 0; - position: absolute; - top: 0; - width: 18px; - transition: transform .3s ease; -} - -.plus-minus-toggle:after { - transform-origin: center; -} - -.plus-minus-toggle.collapsed:after { - transform: rotate(90deg); -} - -.plus-minus-toggle.collapsed:before { - transform: rotate(180deg); -} - -.pon-usp-wrapper[data-v-064428f0] { - display: flex; - flex-direction: column; - align-items: center; - max-width: 270px; -} - -.pon-usp-image[data-v-064428f0] { - background-size: 100%; - background-repeat: no-repeat; - background-position: center; - width: 58.3%; -} - -.pon-usp-description[data-v-064428f0] { - text-align: center; -} - -.pon-tooltip-hover[data-v-11b51276] { - cursor: pointer; -} - -.pon-frame { - width: 100px; - height: 35px; - display: flex; - justify-content: center; - align-items: center; - border-bottom: 3px solid lightgrey; -} - -.pon-frame:hover, -.pon-frame.active { - border-color: #000; - cursor: pointer; -} - -.pon-frame.disabled { - pointer-events: none; - opacity: .4; -} - -.pon-expandable-image { - position: relative; -} - -.pon-expandable-image.expanded { - position: fixed; - z-index: 999999; - width: 100%; - height: 100%; - background-color: #000; - top: 0; - left: 0; -} - -.pon-expandable-image.expanded > img { - width: 100%; - height: 100%; -} - -.pon-expandable-image-close-button { - position: fixed; - visibility: hidden; - top: 40px; - right: -100%; - color: #fff; - cursor: pointer; - transition: .2s ease-in; -} - -.pon-expandable-image-close-icon:before, -.pon-expandable-image-close-icon:after { - position: absolute; - top: 0; - left: 10px; - content: ""; - height: 18px; - width: 2px; - background-color: #fff; -} - -.pon-expandable-image-close-icon:before { - transform: rotate(45deg); -} - -.pon-expandable-image-close-icon:after { - transform: rotate(-45deg); -} - -.pon-expandable-image-close-button.is-shown { - visibility: visible; - transition: .7s ease-out; - right: 40px; - opacity: 1; -} - -:root { - --badge-style1-color: #f85a13; - --badge-style2-color: #d20000; - --badge-style3-color: #588294; - --badge-style4-color: #008000; -} - -.pon-badge { - font-size: 16px; - font-family: Proxima Nova,sans-serif; - font-weight: 700; - position: relative; - display: inline-block; - text-transform: uppercase; - border: 1px solid black; - background: white; - border-left: 0; - border-top-right-radius: .125em; - border-bottom-right-radius: .125em; - padding: .5em .5em .5em .625em; - margin-left: .5em; - box-sizing: border-box; - margin-right: .5em; -} - -.pon-badge span { - font-size: .875em; -} - -.pon-badge:before { - position: absolute; - top: -1px; - left: -.5em; - height: 100%; - width: .5em; - content: ""; - background: var(--badge-style1-color); - border: 1px solid var(--badge-style1-color); - border-left: 0; - border-right: 0; - border-top-left-radius: .125em; - border-bottom-left-radius: .125em; - box-sizing: initial; -} - -.pon-badge.style2:before { - background: var(--badge-style2-color); - border-color: var(--badge-style2-color); -} - -.pon-badge.style3:before { - background: var(--badge-style3-color); - border-color: var(--badge-style3-color); -} - -.pon-badge.style4:before { - background: var(--badge-style4-color); - border-color: var(--badge-style4-color); -} - -.pon-breadcrumbs { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; - align-items: flex-start; - list-style: none; - margin: 0; - padding: 0; -} - -.pon-breadcrumbs li { - display: flex; - align-items: center; -} - -.pon-breadcrumbs li + li:before { - content: var(--breadcrumb-separator); -} - -.pon-breadcrumbs li a, -.pon-breadcrumbs li span { - padding: 0 8px; -} - -.pon-breadcrumbs li:first-child a, -.pon-breadcrumbs li:first-child span { - padding-left: 0; -} - -.pon-gallery[data-v-3f2ef3ae] { - display: grid; - grid-template: repeat(2,auto)/repeat(2,auto); - gap: 30px; -} - -.pon-gallery__img[data-v-3f2ef3ae] { - width: 100%; -} - -.pon-color-select { - display: flex; - align-content: center; - align-items: center; -} - -.pon-color-select > *:not(:last-child) { - margin-right: 9px; -} - -.pon-color-wrapper.has-tooltip { - position: relative; -} - -.pon-color-wrapper.has-tooltip:before { - pointer-events: none; - opacity: 0; - transition: .3s opacity ease-in-out; - content: attr(data-label-tooltip); - position: absolute; - top: -212%; - left: 50%; - background: #f2f2f2; - border-radius: 2px; - padding: 12px 24px; - transform: translate(-50%); - white-space: nowrap; - z-index: 9000; - text-transform: capitalize; -} - -.pon-color-wrapper.has-tooltip:hover:before { - visibility: visible; - opacity: 1; -} - -.pon-color-wrapper.has-tooltip:after { - pointer-events: none; - opacity: 0; - transition: .3s opacity ease-in-out; - content: ""; - width: 0; - height: 0; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #f2f2f2; - position: absolute; - left: 50%; - transform: translate(-50%); - top: -54%; - z-index: 9000; -} - -.pon-color-wrapper.has-tooltip:hover:after { - visibility: visible; - opacity: 1; -} - -.pon-color__label { - font-size: 14px; - display: inline-block; - margin-top: 10px; - text-transform: capitalize; -} - -.pon-modal * { - box-sizing: border-box; -} - -.pon-modal__wrapper { - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - padding: 5%; - display: flex; - justify-content: center; - align-items: center; - z-index: 10; -} - -.pon-modal__backdrop { - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: #00000050; -} - -.pon-modal { - border-radius: 5px; - background: #fff; - box-shadow: 0 3px 9px #00000050; - overflow-x: auto; - overflow-y: auto; - display: flex; - flex-direction: column; - width: 100%; - max-width: 780px; - max-height: 100vh; - margin: 5% auto; - z-index: 11; -} - -.pon-modal__header { - position: relative; - justify-content: space-between; - min-height: 50px; - padding: 30px; - display: flex; -} - -.pon-modal__body { - position: relative; - padding: 10px 30px 30px; -} - -.pon-modal__button--close { - position: absolute; - top: 30px; - right: 30px; - border: none; - cursor: pointer; - background: transparent; - width: 16px; - height: 16px; -} - -.pon-modal__button--close .close-icon:before, -.pon-modal__button--close .close-icon:after { - position: absolute; - top: 0; - left: 8px; - content: ""; - height: 16px; - width: 1px; - background-color: #000; -} - -.pon-modal__button--close .close-icon:before { - transform: rotate(45deg); -} - -.pon-modal__button--close .close-icon:after { - transform: rotate(-45deg); -} - -.pon-modal-fade-enter-active .pon-modal, -.pon-modal-fade-leave-active .pon-modal, -.pon-modal-fade-enter-active, -.pon-modal-fade-leave-active { - transition: all .3s; -} - -.pon-modal-fade-enter-from, -.pon-modal-fade-leave-to { - opacity: 0; -} - -.pon-modal-fade-enter-from .pon-modal, -.pon-modal-fade-leave-to .pon-modal { - transform: translateY(-20px); -} - -ul[data-v-52b3bb00] { - display: flex; - padding: 0 0 20px; - margin: 0; -} - -li[data-v-52b3bb00] { - list-style: none; - display: block; - padding: 5px; - cursor: pointer; - border-bottom: 2px solid lightgrey; -} - -li[data-v-52b3bb00]:hover, -.active[data-v-52b3bb00] { - border-color: #000; -} - -.pon-product-tile { - border: 1px solid #7f7f7f; - border-radius: 10px; - padding: 40px; -} - -.pon-product-tile.horizontal { - display: flex; -} - -.pon-product-tile img { - width: 100%; -} - -.pon-product-tile .productImage { - position: relative; -} - -.pon-product-tile .pon-badge { - position: relative; - font-size: 12px; - margin-top: 18px; -} - -@media (min-width: 540px) { - .pon-product-tile .pon-badge { - position: absolute; - top: 18px; - margin-top: 0; - } -} - -.pon-product-tile .pon-frame-select { - margin-bottom: 20px; -} - -.pon-product-tile.horizontal .productInfo { - width: 70%; - display: flex; - flex-direction: column; - justify-content: space-between; -} - -.pon-product-tile .pon-btn { - margin-right: 10px; -} - -.pon-product-tile .pon-color-select { - margin-bottom: 50px; -} - -.pon-product-tile .productButtons { - display: flex; -} - -.pon-three-sixty { - max-width: 1280px; - position: relative; -} - -.pon-three-sixty__rotatable, -.pon-three-sixty__single { - height: 0; - padding-bottom: 70.67%; - position: relative; -} - -.pon-three-sixty__rotatable img { - position: absolute; - width: 100%; -} - -.pon-three-sixty__single img { - position: absolute; - max-height: calc(100% - 50px); - left: 0; - right: 0; - margin: 0 auto; -} - -.pon-three-sixty__rotatable { - cursor: url(/360.svg),auto; -} - -.pon-three-sixty__single { - padding-top: 50px; -} - -.pon-three-sixty__oval { - position: absolute; - bottom: 0; - width: 100%; - padding-bottom: 15.15%; - pointer-events: none; - background-image: url(/oval-360.svg); - background-repeat: no-repeat; - background-size: contain; - background-position: center bottom; -} - -.pon-three-sixty__rotation-arrows { - z-index: 9; - position: absolute; - bottom: -18px; - left: 0; - right: 0; - margin: 0 auto; - width: 90px; - display: flex; - justify-content: space-between; -} - -.pon-three-sixty__rotation-arrows button { - background: #fff; - width: 40px; - height: 40px; - text-align: center; - border-radius: 64px; - box-shadow: 0 10px 40px #bbb; - border: none; - cursor: pointer; - transition: all .2s ease-in-out; -} - -.pon-three-sixty__rotation-arrows button:hover { - background: #004a99; -} - -.pon-three-sixty__rotation-arrows svg { - display: inline-block; - fill: #004a99; - width: 15px; -} - -.pon-three-sixty__rotation-arrows .previous svg { - transform: rotate(180deg); -} - -.pon-three-sixty__rotation-arrows button:hover svg { - fill: #fff; -} - -.pon-advanced-rating { - display: flex; - align-items: center; -} - -.pon-advanced-rating > :not(:first-child) { - margin-left: 10px; -} - -.pon-advanced-rating__star-number { - font-size: 18px; -} - -.pon-advanced-rating__reviews { - width: 100%; - color: #7f7f7f; - font-size: 14px; -} - -.pon-frame-select { - display: flex; - flex-direction: row; -} - -.pon-prices__label[data-v-fba3307e] { - margin-right: 5px; - color: #7f7f7f; -} - -.pon-prices__base[data-v-fba3307e] { - color: #7f7f7f; - text-decoration: line-through; - margin-right: 5px; -} - -.pon-prices__final[data-v-fba3307e] { - font-weight: 700; -} - -.tw-absolute { - position: absolute; -} - -.tw-relative { - position: relative; -} - -.-tw-bottom-\[35px\] { - bottom: -35px; -} - -.tw-right-0 { - right: 0px; -} - -.tw-order-1 { - order: 1; -} - -.tw-order-2 { - order: 2; -} - -.tw-order-3 { - order: 3; -} - -.tw-col-span-2 { - grid-column: span 2 / span 2; -} - -.tw-row-span-2 { - grid-row: span 2 / span 2; -} - -.tw-row-span-3 { - grid-row: span 3 / span 3; -} - -.tw-m-0 { - margin: 0; -} - -.tw-mx-auto { - margin-left: auto; - margin-right: auto; -} - -.tw-my-4 { - margin-top: 1rem; - margin-bottom: 1rem; -} - -.tw-mb-0 { - margin-bottom: 0; -} - -.tw-mb-1 { - margin-bottom: .25rem; -} - -.tw-mb-4 { - margin-bottom: 1rem; -} - -.tw-mb-7 { - margin-bottom: 1.75rem; -} - -.tw-mb-\[10px\] { - margin-bottom: 10px; -} - -.tw-ml-auto { - margin-left: auto; -} - -.tw-mt-0 { - margin-top: 0; -} - -.tw-mt-4 { - margin-top: 1rem; -} - -.tw-block { - display: block; -} - -.tw-flex { - display: flex; -} - -.tw-inline-flex { - display: inline-flex; -} - -.tw-grid { - display: grid; -} - -.tw-h-\[150px\] { - height: 150px; -} - -.tw-h-\[18px\] { - height: 18px; -} - -.tw-h-\[9px\] { - height: 9px; -} - -.tw-min-h-screen { - min-height: 100vh; -} - -.tw-w-\[150px\] { - width: 150px; -} - -.tw-w-\[18px\] { - width: 18px; -} - -.tw-w-full { - width: 100%; -} - -.tw-min-w-\[225px\] { - min-width: 225px; -} - -.tw-max-w-\[125px\] { - max-width: 125px; -} - -.tw-grow { - flex-grow: 1; -} - -.tw-rotate-90 { - --tw-rotate: 90deg; - transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} - -.tw-cursor-pointer { - cursor: pointer; -} - -.tw-cursor-text { - cursor: text; -} - -.tw-grid-flow-col { - grid-auto-flow: column; -} - -.tw-grid-rows-1 { - grid-template-rows: repeat(1,minmax(0,1fr)); -} - -.tw-flex-row { - flex-direction: row; -} - -.tw-flex-col { - flex-direction: column; -} - -.tw-flex-wrap { - flex-wrap: wrap; -} - -.tw-items-center { - align-items: center; -} - -.tw-justify-end { - justify-content: flex-end; -} - -.tw-justify-center { - justify-content: center; -} - -.tw-justify-between { - justify-content: space-between; -} - -.tw-gap-4 { - gap: 1rem; -} - -.tw-gap-7 { - gap: 1.75rem; -} - -.tw-gap-\[30px\] { - gap: 30px; -} - -.tw-space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(.5rem * var(--tw-space-y-reverse)); -} - -.tw-self-end { - align-self: flex-end; -} - -.tw-rounded-\[3px\] { - border-radius: 3px; -} - -.tw-border { - border-width: 1px; -} - -.tw-border-grey { - --tw-border-opacity: 1; - border-color: rgb(242 242 242 / var(--tw-border-opacity)); -} - -.tw-bg-transparent { - background-color: transparent; -} - -.tw-bg-white { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} - -.tw-fill-blue { - fill: #004a99; -} - -.tw-object-cover { - -o-object-fit: cover; - object-fit: cover; -} - -.tw-object-right { - -o-object-position: right; - object-position: right; -} - -.tw-p-0 { - padding: 0; -} - -.tw-p-3 { - padding: .75rem; -} - -.tw-p-4 { - padding: 1rem; -} - -.tw-py-\[6\.5px\] { - padding-top: 6.5px; - padding-bottom: 6.5px; -} - -.tw-pb-0 { - padding-bottom: 0; -} - -.tw-pb-12 { - padding-bottom: 3rem; -} - -.tw-pl-0 { - padding-left: 0; -} - -.tw-pl-2 { - padding-left: .5rem; -} - -.tw-pl-\[10px\] { - padding-left: 10px; -} - -.tw-pl-\[40px\] { - padding-left: 40px; -} - -.tw-pr-0 { - padding-right: 0; -} - -.tw-pr-12 { - padding-right: 3rem; -} - -.tw-pr-9 { - padding-right: 2.25rem; -} - -.tw-pr-\[10px\] { - padding-right: 10px; -} - -.tw-pt-0 { - padding-top: 0; -} - -.tw-text-\[24px\] { - font-size: 24px; -} - -.tw-text-base { - font-size: 16px; -} - -.tw-text-medium { - font-size: 18px; -} - -.tw-text-sm { - font-size: 12px; -} - -.tw-text-tiny { - font-size: 14px; -} - -.tw-text-xs { - font-size: 10px; -} - -.tw-font-bold { - font-weight: 700; -} - -.tw-font-normal { - font-weight: 400; -} - -.tw-uppercase { - text-transform: uppercase; -} - -.tw-tracking-\[0\.6px\] { - letter-spacing: .6px; -} - -.tw-text-blue { - --tw-text-opacity: 1; - color: rgb(0 74 153 / var(--tw-text-opacity)); -} - -.tw-underline { - text-decoration-line: underline; -} - -.tw-shadow-none { - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow); -} - -.hover\:tw-bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} - -@media (min-width: 480px) { - .xs\:tw-mx-0 { - margin-left: 0; - margin-right: 0; - } - - .xs\:tw-mb-6 { - margin-bottom: 1.5rem; - } - - .xs\:tw-mt-4 { - margin-top: 1rem; - } - - .xs\:tw-block { - display: block; - } - - .xs\:tw-flex { - display: flex; - } - - .xs\:tw-h-\[175px\] { - height: 175px; - } - - .xs\:tw-h-full { - height: 100%; - } - - .xs\:tw-min-h-0 { - min-height: 0px; - } - - .xs\:tw-w-auto { - width: auto; - } - - .xs\:tw-min-w-0 { - min-width: 0px; - } - - .xs\:tw-max-w-\[150px\] { - max-width: 150px; - } - - .xs\:tw-max-w-\[225px\] { - max-width: 225px; - } - - .xs\:tw-justify-start { - justify-content: flex-start; - } - - .xs\:tw-gap-8 { - gap: 2rem; - } - - .xs\:tw-px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; - } - - .xs\:tw-py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; - } - - .xs\:tw-text-sm { - font-size: 12px; - } -} - -@media (min-width: 970px) { - .md\:tw-inline-flex { - display: inline-flex; - } - - .md\:tw-min-w-\[225px\] { - min-width: 225px; - } - - .md\:tw-flex-row { - flex-direction: row; - } - - .md\:tw-gap-8 { - gap: 2rem; - } - - .md\:before\:tw-hidden:before { - content: var(--tw-content); - display: none; - } -} - -@media (max-width: 505px) { - .mobile\:tw-mb-0 { - margin-bottom: 0; - } - - .mobile\:tw-mt-0 { - margin-top: 0; - } - - .mobile\:tw-grid { - display: grid; - } - - .mobile\:tw-w-full { - width: 100%; - } - - .mobile\:tw-flex-col { - flex-direction: column; - } - - .mobile\:tw-pb-0 { - padding-bottom: 0; - } - - .mobile\:tw-pt-0 { - padding-top: 0; - } -} - -.pon-search-bar { - width: 100%; - height: 100%; - display: flex; -} - -.pon-search-bar > input { - width: 100%; - margin-top: 0; - border-radius: 0; -} - -.pon-search-bar > input:focus { - outline: none; -} - -.pon-search-bar__search-icon { - position: absolute; - height: 100%; -} - -.pon-search-bar__close-button { - width: 25px; -} - -.pon-search-bar__close-icon { - position: relative; - width: 14px; - height: 14px; -} - -.pon-search-bar__close-icon:before, -.pon-search-bar__close-icon:after { - position: absolute; - top: -1px; - right: 6px; - content: ""; - height: 18px; - width: 2px; - background-color: #000; - transform: rotate(-45deg); -} - -.pon-search-bar__close-icon:before { - transform: rotate(45deg); -} - -.pon-search-bar__results ul li a:before { - content: ""; - position: absolute; - right: 0; - top: 20%; - background: url(/fi-arrow-right.svg) no-repeat; - flex-shrink: 0; - width: 18px; - height: 18px; -} - -@media (max-width: 505px) { - .pon-search-bar__results .search-tile-product { - display: grid; - } -} - -.pon-search-bar__results .search-tile-product .productImage img { - margin-top: 0; - margin-bottom: 0; - padding: 0; -} - -@media (max-width: 505px) { - .pon-search-bar__results .search-tile-product .productImage img { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; - } -} - -.pon-search-bar__results .pon-product-tile { - border-radius: 5px; - display: grid; - flex-direction: column; - justify-content: space-between; -} - -.pon-search-bar__results .pon-product-tile > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} - -.pon-search-bar__results .pon-product-tile { - border-radius: 3px; - --tw-border-opacity: 1; - border-color: rgb(242 242 242 / var(--tw-border-opacity)); -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile { - display: flex; - justify-content: flex-start; - } -} - -.pon-search-bar__results .pon-product-tile { - grid-auto-flow: column; - grid-template-rows: repeat(1,minmax(0,1fr)); - align-items: center; - gap: 1rem; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile { - align-items: baseline; - } -} - -.pon-search-bar__results .pon-product-tile { - min-width: 225px; - padding: .75rem; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile { - max-width: 225px; - padding: 1rem; - } -} - -.pon-search-bar__results .pon-product-tile .productHeader { - order: 2; - grid-column: span 2 / span 2; -} - -.pon-search-bar__results .pon-product-tile .productHeader > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(.5rem * var(--tw-space-y-reverse)); -} - -.pon-search-bar__results .pon-product-tile .productHeader h5 { - margin: 0; - font-size: 10px; - font-weight: 700; - text-transform: uppercase; - letter-spacing: .6px; - --tw-text-opacity: 1; - color: rgb(0 74 153 / var(--tw-text-opacity)); -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile .productHeader h5 { - font-size: 12px; - } -} - -.pon-search-bar__results .pon-product-tile .productHeader h3 { - margin: 0; - font-size: 16px; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile .productHeader h3 { - font-size: 18px; - } -} - -.pon-search-bar__results .pon-product-tile .productHeader h3 em { - font-weight: 400; - font-style: normal; -} - -.pon-search-bar__results .pon-product-tile .productImage { - order: 1; - grid-row: span 3 / span 3; - margin-top: 0; - display: block; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile .productImage { - min-width: 0px; - } -} - -.pon-search-bar__results .pon-product-tile .productImage { - width: 150px; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile .productImage { - width: auto; - } -} - -.pon-search-bar__results .pon-product-tile .productFooter { - order: 3; - grid-column: span 2 / span 2; - grid-row: span 2 / span 2; - margin-top: 0; - display: flex; - flex-grow: 1; - flex-direction: column; - justify-content: flex-end; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile .productFooter { - margin-top: 1rem; - } -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-color-select { - pointer-events: none; - margin-bottom: 1rem; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-product-tile .productFooter .pon-color-select { - margin-bottom: 1.5rem; - } -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-color-select .pon-color { - height: 18px; - width: 18px; - border-style: none; -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-color-select .pon-color.active { - border-style: none; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow); -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-color-select .pon-color-multi--secondary { - height: 9px; - width: 18px; -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-btn { - --tw-bg-opacity: 1 ; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); - padding: 0; - padding-right: 3rem; - font-size: 14px; - --tw-text-opacity: 1 ; - color: rgb(0 74 153 / var(--tw-text-opacity)); -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-btn:hover { - --tw-bg-opacity: 1 ; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} - -.pon-search-bar__results .pon-product-tile .productFooter .pon-btn .pon-icon { - fill: #004a99; -} - -.pon-search-bar__results .pon-product-tile .pon-badge { - top: 0; - font-size: 10px; -} - -.pon-search-bar__results .pon-prices__regular { - font-size: 12px; -} - -@media (min-width: 480px) { - .pon-search-bar__results .pon-prices__regular { - font-size: 14px; - } -} - -.pon-search-bar__results-none ul { - display: flex; - flex-direction: column; - row-gap: 15px; -} - -.pon-search-bar__results-none ul li { - display: flex; - align-items: center; - -moz-column-gap: 24px; - column-gap: 24px; - padding-left: 36px; -} - -.pon-search-bar__results-none ul li a { - --tw-text-opacity: 1; - color: rgb(0 74 153 / var(--tw-text-opacity)); - text-decoration-line: underline; -} - -.pon-search-bar__results-none ul li:before { - content: ""; - position: absolute; - left: 0; - background: url(/arrow-right.svg) no-repeat; - flex-shrink: 0; - width: 18px; - height: 18px; -} - -.pon-search-bar__results ul { - display: flex; - flex-direction: column; - row-gap: 15px; -} - -.pon-search-bar__results ul li { - display: flex; - align-items: center; - -moz-column-gap: 24px; - column-gap: 24px; - position: relative; - padding-right: 36px; -} - -.pon-search-bar__results ul li a em { - font-weight: 400; - font-style: normal; -} - -.pon-search-bar__results__show-more { - position: relative; - cursor: pointer; - padding-right: 36px; -} \ No newline at end of file diff --git a/src/__fixtures__/gazelle-20231008.json b/src/__fixtures__/gazelle-20231008.json deleted file mode 100644 index bb685304..00000000 --- a/src/__fixtures__/gazelle-20231008.json +++ /dev/null @@ -1,90524 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 29224, - "linesOfCode": 45124, - "size": 846671, - "complexity": 97704, - "comments": { - "total": 4, - "size": 1678 - }, - "embeddedContent": { - "size": { - "total": 7559, - "ratio": 0.00892790706189299 - }, - "types": { - "total": 4, - "totalUnique": 3, - "uniquenessRatio": 0.75, - "unique": { - "application/vnd.ms-fontobject": { - "count": 2, - "size": 3956 - }, - "font/ttf": { - "count": 1, - "size": 1749 - }, - "font/woff": { - "count": 1, - "size": 1854 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 9, - "totalUnique": 9, - "unique": [ - { - "font-family": "'Glyphicons Halflings'", - "src": "url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')" - }, - { - "font-family": "'ProximaNova'", - "font-weight": "400", - "font-display": "swap", - "src": "url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.eot?iefix') format('eot'),url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.woff') format('woff'),url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.ttf') format('truetype'),url('../fonts/proximanova/regular/ProximaNova-Reg-webfont.svg#ProximaNova-Reg-webfont') format('svg')" - }, - { - "font-family": "'ProximaNova'", - "font-weight": "300", - "font-display": "swap", - "src": "url('../fonts/proximanova/light/ProximaNova-Light-webfont.eot?iefix') format('eot'),url('../fonts/proximanova/light/ProximaNova-Light-webfont.woff') format('woff'),url('../fonts/proximanova/light/ProximaNova-Light-webfont.ttf') format('truetype'),url('../fonts/proximanova/light/ProximaNova-Light-webfont.svg#ProximaNova-Light-webfont') format('svg')" - }, - { - "font-family": "'ProximaNova'", - "font-weight": "700", - "font-display": "swap", - "src": "url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.eot?iefix') format('eot'),url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.woff') format('woff'),url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.ttf') format('truetype'),url('../fonts/proximanova/bold/ProximaNova-Bold-webfont.svg#ProximaNova-Bold-webfont') format('svg')" - }, - { - "font-family": "'Gazelle'", - "font-weight": "400", - "font-display": "swap", - "src": "url('../fonts/gazelle/pon-gazelle.eot?iefix') format('eot'),url('../fonts/gazelle/pon-gazelle.woff') format('woff'),url('../fonts/gazelle/pon-gazelle.ttf') format('truetype'),url('../fonts/gazelle/pon-gazelle.svg#pon-gazelle') format('svg')" - }, - { - "font-family": "'ga-icon'", - "font-weight": "400", - "font-display": "swap", - "src": "url('../fonts/gazelle-icons/icons.eot?iefix') format('eot'),url('../fonts/gazelle-icons/icons.woff') format('woff'),url('../fonts/gazelle-icons/icons.woff2') format('woff2'),url('../fonts/gazelle-icons/icons.ttf') format('truetype'),url('../fonts/gazelle-icons/icons.svg#icons') format('svg')" - }, - { - "font-family": "'bluefoot-icons'", - "src": "url('../fonts/bluefoot/bluefoot.eot?#iefix') format('embedded-opentype'),url('../fonts/bluefoot/bluefoot.woff') format('woff'),url('../fonts/bluefoot/bluefoot.ttf') format('truetype'),url('../fonts/bluefoot/bluefoot.svg#bluefoot') format('svg')", - "font-weight": "normal", - "font-style": "normal" - }, - { - "font-family": "'luma-icons'", - "src": "url(fonts/Luma-Icons.woff)", - "font-display": "swap" - }, - { - "font-family": "vue-icons", - "src": "url(data:application/vnd.ms-fontobject;base64,rAUAABAFAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAA7bhTfwAAAAAAAAAAAAAAAAAAAAAAAAoAaQBjAG8AbgBzAAAADgBSAGUAZwB1AGwAYQByAAAAFgBWAGUAcgBzAGkAbwBuACAAMQAuADAAAAAKAGkAYwBvAG4AcwAAAAAAAAEAAAALAIAAAwAwT1MvMg8SBZkAAAC8AAAAYGNtYXAXRtKoAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZhO/sNgAAAF4AAABZGhlYWQiKTcZAAAC3AAAADZoaGVhB94EAwAAAxQAAAAkaG10eAq8AHEAAAM4AAAAGGxvY2EA2gCeAAADUAAAAA5tYXhwAAoASgAAA2AAAAAgbmFtZW+uahYAAAOAAAABbnBvc3QAAwAAAAAE8AAAACAAAwNeAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpEQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6RH//f//AAAAAAAg6RD//f//AAH/4xb0AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAB7/3AQcA6IAHAA5AEcAACUiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjIgcOAQcGFRQXHgEXFjMlJjQ3NjIfARYUBwYiJwHUWlBQdyIjIyJ3UFBaW1BQdyIjIyJ3UFBbT0VEZx4dHR5nREVPTkVFZh4eHh5mRUVOATYJCQgZCegJCQgZCToiI3ZPUFpaUE92IyIiI3ZPUFpaUE92IyI8Hh1mRUROTkRFZh0eHh1mRUROTkRFZh0eTQkYCQkJ5gkZCQkJAAABAFMAEwItA20AEwAACQEmNDc2MhcBFhQHAQYiJyY0NwEBpf6uExMTNRIBgBMT/oATNRITEwFSAb8BVBM1EhMT/n8TNRL+gRMTEzUSAVIAAAEAAAABAAB/U7jtXw889QALBAAAAAAA33b5TwAAAADfdvlPAAD/3AQcA6IAAAAIAAIAAAAAAAAAAQAAA8D/wAAABDwAAAAABBwAAQAAAAAAAAAAAAAAAAAAAAYEAAAAAAAAAAAAAAAAAAAABDwAHgKAAFMAAAAAAAoAFAAeAIoAsgAAAAEAAAAGAEgAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAFAAAAAQAAAAAAAgAHAJwAAQAAAAAAAwAFAH4AAQAAAAAABAAFALEAAQAAAAAABQALAF0AAQAAAAAABgAFAI0AAQAAAAAACgAaAA8AAwABBAkAAQAKAAUAAwABBAkAAgAOAKMAAwABBAkAAwAKAIMAAwABBAkABAAKALYAAwABBAkABQAWAGgAAwABBAkABgAKAJIAAwABBAkACgA0AClpY29ucwBpAGMAbwBuAHNGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29ucwBpAGMAbwBuAHNpY29ucwBpAGMAbwBuAHNSZWd1bGFyAFIAZQBnAHUAbABhAHJpY29ucwBpAGMAbwBuAHMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format(\"embedded-opentype\"),url(icons.woff2) format(\"woff2\"),url(data:font/ttf;base64,AAEAAAALAIAAAwAwT1MvMg8SBZkAAAC8AAAAYGNtYXAXRtKoAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZhO/sNgAAAF4AAABZGhlYWQiKTcZAAAC3AAAADZoaGVhB94EAwAAAxQAAAAkaG10eAq8AHEAAAM4AAAAGGxvY2EA2gCeAAADUAAAAA5tYXhwAAoASgAAA2AAAAAgbmFtZW+uahYAAAOAAAABbnBvc3QAAwAAAAAE8AAAACAAAwNeAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpEQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6RH//f//AAAAAAAg6RD//f//AAH/4xb0AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAB7/3AQcA6IAHAA5AEcAACUiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjIgcOAQcGFRQXHgEXFjMlJjQ3NjIfARYUBwYiJwHUWlBQdyIjIyJ3UFBaW1BQdyIjIyJ3UFBbT0VEZx4dHR5nREVPTkVFZh4eHh5mRUVOATYJCQgZCegJCQgZCToiI3ZPUFpaUE92IyIiI3ZPUFpaUE92IyI8Hh1mRUROTkRFZh0eHh1mRUROTkRFZh0eTQkYCQkJ5gkZCQkJAAABAFMAEwItA20AEwAACQEmNDc2MhcBFhQHAQYiJyY0NwEBpf6uExMTNRIBgBMT/oATNRITEwFSAb8BVBM1EhMT/n8TNRL+gRMTEzUSAVIAAAEAAAABAAB/U7jtXw889QALBAAAAAAA33b5TwAAAADfdvlPAAD/3AQcA6IAAAAIAAIAAAAAAAAAAQAAA8D/wAAABDwAAAAABBwAAQAAAAAAAAAAAAAAAAAAAAYEAAAAAAAAAAAAAAAAAAAABDwAHgKAAFMAAAAAAAoAFAAeAIoAsgAAAAEAAAAGAEgAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAFAAAAAQAAAAAAAgAHAJwAAQAAAAAAAwAFAH4AAQAAAAAABAAFALEAAQAAAAAABQALAF0AAQAAAAAABgAFAI0AAQAAAAAACgAaAA8AAwABBAkAAQAKAAUAAwABBAkAAgAOAKMAAwABBAkAAwAKAIMAAwABBAkABAAKALYAAwABBAkABQAWAGgAAwABBAkABgAKAJIAAwABBAkACgA0AClpY29ucwBpAGMAbwBuAHNGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29ucwBpAGMAbwBuAHNpY29ucwBpAGMAbwBuAHNSZWd1bGFyAFIAZQBnAHUAbABhAHJpY29ucwBpAGMAbwBuAHMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format(\"truetype\"),url(data:font/woff;base64,d09GRgABAAAAAAVcAAsAAAAABRAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIFmWNtYXAAAAFoAAAAVAAAAFQXRtKoZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAWQAAAFkE7+w2GhlYWQAAAMoAAAANgAAADYiKTcZaGhlYQAAA2AAAAAkAAAAJAfeBANobXR4AAADhAAAABgAAAAYCrwAcWxvY2EAAAOcAAAADgAAAA4A2gCebWF4cAAAA6wAAAAgAAAAIAAKAEpuYW1lAAADzAAAAW4AAAFub65qFnBvc3QAAAU8AAAAIAAAACAAAwAAAAMDXgGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6REDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkR//3//wAAAAAAIOkQ//3//wAB/+MW9AADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAwAe/9wEHAOiABwAOQBHAAAlIicuAScmNTQ3PgE3NjMyFx4BFxYVFAcOAQcGIzUyNz4BNzY1NCcuAScmIyIHDgEHBhUUFx4BFxYzJSY0NzYyHwEWFAcGIicB1FpQUHciIyMid1BQWltQUHciIyMid1BQW09FRGceHR0eZ0RFT05FRWYeHh4eZkVFTgE2CQkIGQnoCQkIGQk6IiN2T1BaWlBPdiMiIiN2T1BaWlBPdiMiPB4dZkVETk5ERWYdHh4dZkVETk5ERWYdHk0JGAkJCeYJGQkJCQAAAQBTABMCLQNtABMAAAkBJjQ3NjIXARYUBwEGIicmNDcBAaX+rhMTEzUSAYATE/6AEzUSExMBUgG/AVQTNRITE/5/EzUS/oETExM1EgFSAAABAAAAAQAAf1O47V8PPPUACwQAAAAAAN92+U8AAAAA33b5TwAA/9wEHAOiAAAACAACAAAAAAAAAAEAAAPA/8AAAAQ8AAAAAAQcAAEAAAAAAAAAAAAAAAAAAAAGBAAAAAAAAAAAAAAAAAAAAAQ8AB4CgABTAAAAAAAKABQAHgCKALIAAAABAAAABgBIAAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABQAAAAEAAAAAAAIABwCcAAEAAAAAAAMABQB+AAEAAAAAAAQABQCxAAEAAAAAAAUACwBdAAEAAAAAAAYABQCNAAEAAAAAAAoAGgAPAAMAAQQJAAEACgAFAAMAAQQJAAIADgCjAAMAAQQJAAMACgCDAAMAAQQJAAQACgC2AAMAAQQJAAUAFgBoAAMAAQQJAAYACgCSAAMAAQQJAAoANAApaWNvbnMAaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwaWNvbnMAaQBjAG8AbgBzaWNvbnMAaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByaWNvbnMAaQBjAG8AbgBzAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format(\"woff\"),url(/icons.svg) format(\"svg\")", - "font-weight": "400", - "font-style": "normal", - "font-display": "block" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 891, - "totalUnique": 55, - "unique": { - "print": 8, - "(min-width:768px)": 132, - "(min-width:992px)": 92, - "(min-width:1200px)": 46, - "screen and (max-width:767px)": 22, - "screen and (-webkit-min-device-pixel-ratio:0)": 1, - "(max-device-width:480px) and (orientation:landscape)": 1, - "(max-width:767px)": 255, - "screen and (min-width:768px)": 17, - "all and (transform-3d),(-webkit-transform-3d)": 1, - "(min-width:768px) and (max-width:991px)": 20, - "(min-width:992px) and (max-width:1199px)": 7, - "(min-width:1600px)": 15, - "(min-width:1500px)": 2, - "(min-width:1200px) and (max-width:1599px)": 1, - "(max-width:991px)": 101, - "screen and (max-width:991px)": 25, - "(min-width:991px)": 1, - "screen and (max-width:992px)": 8, - "screen and (min-width:992px)": 10, - "(min-width:480px)": 6, - "(max-width:480px)": 30, - "screen and (max-width:1199px)": 4, - "screen and (min-width:1200px)": 1, - "screen and (min-width:1500px)": 2, - "screen and (max-width:480px)": 3, - "(max-width:1199px)": 22, - "(min-width:768px) and (max-width:1599px)": 1, - "(max-width:767px) and (orientation:landscape)": 2, - "screen and (min-width:768px) and (max-width:991px)": 1, - "(max-width:1599px)": 6, - "(max-width:992px)": 4, - "screen and (-ms-high-contrast:active),(-ms-high-contrast:none)": 2, - "(max-width:767px),(orientation:portrait)": 1, - "(min-width:567px) and (max-width:767px)": 1, - "(min-width:768px) and (max-width:1199px)": 1, - "(max-width:991px) and (min-width:480px)": 2, - "not all and (min-resolution:.001dpcm)": 1, - "(max-width:768px)": 1, - "(min-width:1200px) and (max-height:768px)": 1, - "all and (min-width:1500px)": 1, - "all and (max-width:770px)": 4, - "all and (max-width:990px)": 2, - "all and (min-width:771px)": 1, - "screen and (max-width:770px)": 1, - "screen and (min-width: 20em)": 2, - "screen and (min-width: 48em)": 2, - "screen and (min-width: 64em)": 2, - "screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px)": 1, - "all and (max-width: 900px)": 1, - "(min-width: 991px)": 1, - "(min-width: 540px)": 1, - "(min-width: 480px)": 11, - "(min-width: 970px)": 1, - "(max-width: 505px)": 3 - }, - "uniquenessRatio": 0.06172839506172839, - "browserhacks": { - "total": 4, - "totalUnique": 3, - "unique": { - "screen and (-webkit-min-device-pixel-ratio:0)": 1, - "screen and (-ms-high-contrast:active),(-ms-high-contrast:none)": 2, - "not all and (min-resolution:.001dpcm)": 1 - }, - "uniquenessRatio": 0.75 - } - }, - "charset": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "supports": { - "total": 3, - "totalUnique": 3, - "unique": { - "(-webkit-overflow-scrolling: touch)": 1, - "(-webkit-appearance:none) and (not (stroke-color:transparent))": 1, - "(-webkit-appearance:none)": 1 - }, - "uniquenessRatio": 1, - "browserhacks": { - "total": 2, - "totalUnique": 2, - "unique": { - "(-webkit-appearance:none) and (not (stroke-color:transparent))": 1, - "(-webkit-appearance:none)": 1 - }, - "uniquenessRatio": 1 - } - }, - "keyframes": { - "total": 26, - "totalUnique": 26, - "unique": { - "@-webkit-keyframes progress-bar-stripes": 1, - "@-o-keyframes progress-bar-stripes": 1, - "@keyframes progress-bar-stripes": 1, - "@-webkit-keyframes scaleImage": 1, - "@keyframes scaleImage": 1, - "@keyframes btn-spinner": 1, - "@keyframes animateFlashMessageDuration": 1, - "@keyframes search-spinner": 1, - "@keyframes hide-notification": 1, - "@keyframes hide-notification-to-top": 1, - "@keyframes slide-out": 1, - "@keyframes slide-in": 1, - "@keyframes show-information": 1, - "@keyframes pulse": 1, - "@keyframes slideIn": 1, - "@keyframes ellipsis": 1, - "@keyframes loading-wheel": 1, - "@keyframes popTilesPulse": 1, - "@keyframes popFiltersPulse": 1, - "@-moz-keyframes otloading": 1, - "@-webkit-keyframes otloading": 1, - "@-o-keyframes otloading": 1, - "@-ms-keyframes otloading": 1, - "@keyframes otloading": 1, - "@keyframes loader-e453d4f8": 1, - "@keyframes spin-0c0c2890": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 7, - "totalUnique": 7, - "unique": { - "@-webkit-keyframes progress-bar-stripes": 1, - "@-o-keyframes progress-bar-stripes": 1, - "@-webkit-keyframes scaleImage": 1, - "@-moz-keyframes otloading": 1, - "@-webkit-keyframes otloading": 1, - "@-o-keyframes otloading": 1, - "@-ms-keyframes otloading": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.2692307692307692 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 931, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0139634801288937, - "mode": 1, - "range": 1, - "sum": 944 - } - }, - "rules": { - "total": 7472, - "empty": { - "total": 1, - "ratio": 0.00013383297644539615 - }, - "sizes": { - "min": 1, - "max": 66, - "mean": 3.78051391862955, - "mode": 2, - "range": 65, - "sum": 28248, - "items": [ - 4, - 2, - 14, - 6, - 3, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 6, - 8, - 2, - 3, - 6, - 3, - 4, - 2, - 6, - 3, - 5, - 3, - 4, - 3, - 2, - 2, - 3, - 3, - 8, - 3, - 2, - 2, - 3, - 4, - 2, - 3, - 2, - 5, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 10, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 5, - 3, - 6, - 7, - 3, - 4, - 3, - 2, - 2, - 8, - 2, - 12, - 2, - 5, - 9, - 8, - 2, - 16, - 27, - 8, - 13, - 8, - 13, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 5, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 4, - 4, - 5, - 3, - 4, - 4, - 3, - 3, - 2, - 2, - 8, - 2, - 4, - 3, - 5, - 4, - 7, - 4, - 7, - 7, - 7, - 4, - 5, - 6, - 8, - 6, - 12, - 7, - 3, - 5, - 2, - 2, - 2, - 5, - 3, - 52, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 4, - 10, - 3, - 7, - 2, - 2, - 7, - 2, - 7, - 3, - 2, - 2, - 4, - 5, - 13, - 6, - 13, - 6, - 13, - 6, - 13, - 6, - 13, - 6, - 3, - 6, - 2, - 7, - 2, - 7, - 7, - 5, - 5, - 10, - 5, - 4, - 5, - 2, - 3, - 3, - 5, - 6, - 17, - 5, - 3, - 2, - 2, - 3, - 5, - 3, - 2, - 2, - 5, - 9, - 9, - 2, - 6, - 7, - 7, - 3, - 9, - 4, - 7, - 5, - 5, - 5, - 4, - 6, - 3, - 3, - 6, - 3, - 3, - 6, - 6, - 3, - 3, - 6, - 3, - 3, - 6, - 2, - 2, - 11, - 6, - 6, - 11, - 4, - 4, - 4, - 2, - 11, - 4, - 4, - 4, - 2, - 11, - 4, - 4, - 4, - 2, - 2, - 2, - 5, - 4, - 4, - 2, - 3, - 4, - 2, - 3, - 6, - 3, - 4, - 2, - 7, - 3, - 3, - 4, - 2, - 3, - 3, - 20, - 8, - 5, - 6, - 8, - 3, - 4, - 5, - 4, - 6, - 12, - 4, - 11, - 3, - 4, - 5, - 4, - 6, - 12, - 4, - 11, - 3, - 4, - 5, - 4, - 6, - 12, - 4, - 11, - 3, - 4, - 5, - 4, - 6, - 12, - 4, - 11, - 3, - 4, - 5, - 4, - 6, - 12, - 4, - 11, - 3, - 4, - 5, - 4, - 6, - 12, - 4, - 11, - 3, - 4, - 8, - 5, - 5, - 6, - 6, - 6, - 6, - 3, - 2, - 4, - 5, - 2, - 2, - 2, - 2, - 2, - 13, - 10, - 3, - 2, - 21, - 3, - 5, - 8, - 5, - 7, - 4, - 7, - 2, - 2, - 3, - 3, - 7, - 7, - 3, - 6, - 5, - 3, - 3, - 5, - 4, - 9, - 5, - 2, - 4, - 4, - 2, - 2, - 3, - 4, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 7, - 2, - 6, - 2, - 5, - 5, - 2, - 4, - 3, - 5, - 5, - 2, - 2, - 7, - 4, - 4, - 6, - 2, - 8, - 5, - 7, - 8, - 5, - 7, - 4, - 4, - 5, - 10, - 4, - 4, - 3, - 9, - 2, - 9, - 2, - 4, - 2, - 2, - 4, - 3, - 4, - 4, - 3, - 4, - 4, - 2, - 6, - 5, - 5, - 2, - 2, - 3, - 5, - 2, - 8, - 3, - 2, - 3, - 3, - 3, - 2, - 3, - 4, - 3, - 4, - 2, - 2, - 2, - 5, - 2, - 3, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 3, - 4, - 3, - 4, - 2, - 2, - 4, - 5, - 2, - 2, - 8, - 2, - 5, - 5, - 2, - 5, - 3, - 3, - 6, - 6, - 3, - 2, - 6, - 3, - 3, - 4, - 6, - 3, - 2, - 3, - 11, - 2, - 5, - 2, - 2, - 2, - 4, - 9, - 3, - 2, - 3, - 3, - 2, - 3, - 10, - 4, - 4, - 2, - 3, - 4, - 2, - 3, - 6, - 3, - 4, - 2, - 2, - 2, - 9, - 4, - 6, - 3, - 3, - 3, - 3, - 4, - 2, - 3, - 2, - 3, - 2, - 4, - 2, - 2, - 4, - 5, - 5, - 2, - 3, - 2, - 3, - 5, - 2, - 4, - 5, - 5, - 2, - 2, - 2, - 3, - 5, - 3, - 2, - 4, - 2, - 2, - 4, - 5, - 5, - 2, - 3, - 2, - 3, - 5, - 2, - 2, - 2, - 4, - 5, - 5, - 2, - 2, - 2, - 3, - 5, - 6, - 2, - 4, - 2, - 5, - 2, - 11, - 5, - 4, - 8, - 11, - 10, - 5, - 4, - 4, - 5, - 4, - 4, - 5, - 2, - 7, - 4, - 3, - 3, - 7, - 11, - 5, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 13, - 2, - 3, - 4, - 5, - 4, - 2, - 2, - 2, - 6, - 3, - 4, - 2, - 5, - 2, - 3, - 4, - 3, - 11, - 4, - 4, - 3, - 5, - 3, - 2, - 3, - 2, - 3, - 6, - 4, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 14, - 7, - 5, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 5, - 2, - 2, - 3, - 3, - 3, - 7, - 3, - 4, - 3, - 3, - 7, - 3, - 6, - 4, - 4, - 7, - 10, - 4, - 3, - 3, - 3, - 6, - 9, - 3, - 3, - 3, - 6, - 9, - 3, - 3, - 3, - 6, - 9, - 3, - 3, - 3, - 6, - 9, - 3, - 3, - 7, - 2, - 5, - 2, - 5, - 6, - 6, - 3, - 4, - 5, - 5, - 3, - 2, - 2, - 4, - 5, - 4, - 6, - 9, - 9, - 4, - 6, - 9, - 9, - 5, - 3, - 3, - 13, - 13, - 9, - 9, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 6, - 12, - 2, - 2, - 9, - 3, - 3, - 3, - 9, - 7, - 6, - 2, - 11, - 8, - 5, - 3, - 4, - 11, - 8, - 3, - 3, - 3, - 2, - 3, - 3, - 4, - 3, - 2, - 2, - 6, - 3, - 3, - 2, - 2, - 22, - 3, - 3, - 3, - 3, - 3, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 32, - 2, - 2, - 2, - 2, - 7, - 2, - 8, - 2, - 3, - 7, - 6, - 7, - 6, - 7, - 6, - 7, - 6, - 2, - 4, - 6, - 3, - 8, - 5, - 5, - 6, - 4, - 2, - 5, - 2, - 2, - 3, - 2, - 2, - 13, - 7, - 9, - 7, - 9, - 4, - 4, - 6, - 2, - 2, - 10, - 11, - 5, - 11, - 2, - 8, - 3, - 3, - 4, - 2, - 34, - 17, - 4, - 2, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 5, - 13, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 11, - 10, - 6, - 3, - 4, - 10, - 2, - 2, - 6, - 3, - 2, - 8, - 2, - 2, - 3, - 4, - 3, - 3, - 3, - 6, - 3, - 4, - 3, - 2, - 2, - 6, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 13, - 6, - 2, - 3, - 7, - 5, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 9, - 9, - 5, - 2, - 8, - 2, - 3, - 8, - 4, - 6, - 4, - 3, - 6, - 3, - 2, - 2, - 2, - 2, - 8, - 4, - 3, - 3, - 5, - 5, - 3, - 6, - 7, - 7, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 3, - 4, - 7, - 3, - 2, - 6, - 2, - 4, - 2, - 5, - 2, - 10, - 9, - 12, - 12, - 2, - 10, - 4, - 5, - 6, - 3, - 4, - 6, - 4, - 4, - 4, - 6, - 6, - 2, - 3, - 3, - 2, - 5, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 5, - 5, - 4, - 3, - 6, - 7, - 7, - 2, - 3, - 7, - 6, - 2, - 6, - 2, - 10, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 3, - 4, - 2, - 2, - 16, - 11, - 4, - 3, - 4, - 2, - 6, - 11, - 2, - 3, - 3, - 2, - 3, - 5, - 6, - 2, - 4, - 6, - 9, - 6, - 2, - 4, - 3, - 3, - 3, - 3, - 2, - 4, - 4, - 2, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 10, - 2, - 3, - 5, - 2, - 16, - 11, - 2, - 8, - 2, - 3, - 3, - 9, - 9, - 6, - 2, - 4, - 2, - 9, - 6, - 2, - 4, - 3, - 2, - 4, - 4, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 2, - 5, - 4, - 3, - 2, - 3, - 7, - 3, - 3, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 6, - 4, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 2, - 7, - 3, - 3, - 4, - 2, - 2, - 5, - 2, - 4, - 5, - 2, - 4, - 2, - 3, - 7, - 2, - 5, - 6, - 6, - 4, - 4, - 3, - 2, - 5, - 2, - 5, - 2, - 2, - 2, - 2, - 7, - 4, - 2, - 8, - 2, - 2, - 10, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 6, - 4, - 4, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 6, - 2, - 4, - 3, - 7, - 5, - 2, - 4, - 3, - 6, - 5, - 3, - 3, - 3, - 2, - 2, - 2, - 8, - 3, - 3, - 4, - 3, - 5, - 5, - 5, - 4, - 4, - 3, - 2, - 3, - 2, - 4, - 3, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 5, - 4, - 2, - 3, - 2, - 5, - 5, - 3, - 4, - 4, - 4, - 4, - 3, - 4, - 5, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 13, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 25, - 66, - 23, - 23, - 23, - 23, - 2, - 3, - 2, - 2, - 14, - 8, - 17, - 11, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 10, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 8, - 5, - 6, - 4, - 4, - 3, - 5, - 3, - 5, - 3, - 4, - 3, - 4, - 2, - 6, - 2, - 2, - 2, - 11, - 3, - 5, - 3, - 5, - 7, - 4, - 2, - 4, - 5, - 5, - 5, - 36, - 8, - 7, - 6, - 4, - 8, - 7, - 7, - 3, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 12, - 5, - 10, - 6, - 14, - 6, - 25, - 13, - 5, - 25, - 13, - 9, - 13, - 7, - 4, - 4, - 7, - 9, - 14, - 6, - 5, - 5, - 9, - 3, - 5, - 5, - 9, - 3, - 5, - 9, - 4, - 5, - 6, - 9, - 4, - 5, - 7, - 6, - 3, - 5, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 16, - 6, - 2, - 2, - 5, - 7, - 7, - 2, - 2, - 3, - 5, - 6, - 8, - 10, - 2, - 6, - 4, - 2, - 3, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 4, - 9, - 2, - 3, - 4, - 2, - 3, - 3, - 2, - 8, - 3, - 2, - 2, - 13, - 2, - 9, - 4, - 2, - 8, - 4, - 5, - 4, - 4, - 2, - 14, - 13, - 6, - 12, - 12, - 6, - 8, - 2, - 6, - 4, - 2, - 9, - 3, - 3, - 2, - 9, - 14, - 4, - 2, - 2, - 4, - 13, - 6, - 8, - 6, - 6, - 2, - 7, - 6, - 3, - 3, - 5, - 2, - 2, - 13, - 3, - 3, - 3, - 13, - 4, - 4, - 4, - 10, - 8, - 3, - 8, - 8, - 7, - 8, - 13, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 6, - 5, - 12, - 2, - 2, - 9, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 5, - 2, - 9, - 2, - 2, - 2, - 3, - 2, - 6, - 4, - 2, - 3, - 2, - 6, - 3, - 2, - 5, - 4, - 4, - 7, - 2, - 5, - 3, - 2, - 11, - 2, - 8, - 4, - 3, - 2, - 3, - 11, - 4, - 5, - 7, - 4, - 2, - 6, - 7, - 2, - 2, - 2, - 4, - 8, - 2, - 10, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 9, - 3, - 3, - 2, - 3, - 2, - 2, - 3, - 4, - 3, - 3, - 3, - 2, - 8, - 10, - 7, - 13, - 8, - 4, - 7, - 4, - 2, - 4, - 3, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 16, - 2, - 2, - 2, - 2, - 5, - 2, - 8, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 6, - 2, - 2, - 2, - 9, - 5, - 7, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 6, - 2, - 8, - 3, - 3, - 4, - 10, - 4, - 4, - 3, - 2, - 4, - 4, - 3, - 2, - 6, - 6, - 2, - 3, - 6, - 2, - 2, - 5, - 2, - 5, - 2, - 3, - 2, - 4, - 3, - 4, - 3, - 7, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 8, - 3, - 2, - 2, - 12, - 2, - 2, - 16, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 8, - 4, - 9, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 7, - 2, - 2, - 15, - 5, - 2, - 2, - 2, - 2, - 7, - 3, - 2, - 4, - 5, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 6, - 3, - 2, - 3, - 4, - 3, - 3, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 12, - 12, - 2, - 2, - 6, - 2, - 12, - 6, - 2, - 2, - 2, - 5, - 6, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 13, - 5, - 2, - 2, - 2, - 11, - 3, - 2, - 11, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 5, - 4, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 3, - 8, - 8, - 2, - 10, - 2, - 2, - 2, - 3, - 2, - 10, - 3, - 2, - 2, - 4, - 6, - 2, - 2, - 11, - 6, - 2, - 3, - 13, - 5, - 7, - 5, - 2, - 3, - 4, - 6, - 2, - 5, - 2, - 4, - 6, - 3, - 4, - 4, - 4, - 5, - 2, - 5, - 4, - 3, - 15, - 2, - 4, - 3, - 2, - 2, - 7, - 2, - 3, - 9, - 2, - 2, - 2, - 2, - 10, - 2, - 4, - 3, - 3, - 3, - 2, - 8, - 6, - 3, - 2, - 9, - 2, - 5, - 3, - 2, - 4, - 8, - 2, - 8, - 2, - 3, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 4, - 2, - 4, - 4, - 4, - 2, - 3, - 2, - 2, - 5, - 10, - 2, - 2, - 2, - 7, - 11, - 3, - 5, - 2, - 4, - 2, - 2, - 3, - 5, - 3, - 4, - 4, - 3, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 11, - 6, - 6, - 7, - 3, - 4, - 2, - 9, - 2, - 9, - 5, - 2, - 3, - 12, - 4, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 7, - 4, - 6, - 7, - 2, - 5, - 8, - 11, - 5, - 3, - 3, - 3, - 13, - 6, - 4, - 6, - 4, - 3, - 3, - 7, - 13, - 3, - 3, - 3, - 3, - 3, - 5, - 4, - 4, - 4, - 6, - 5, - 4, - 4, - 8, - 7, - 7, - 5, - 6, - 7, - 7, - 7, - 7, - 7, - 4, - 6, - 4, - 6, - 4, - 4, - 4, - 4, - 7, - 4, - 4, - 5, - 4, - 4, - 5, - 9, - 4, - 4, - 5, - 6, - 6, - 10, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 7, - 5, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 5, - 2, - 4, - 7, - 5, - 10, - 4, - 4, - 3, - 9, - 7, - 4, - 4, - 6, - 2, - 9, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 8, - 3, - 2, - 3, - 2, - 4, - 3, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 8, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 3, - 3, - 3, - 2, - 2, - 3, - 9, - 9, - 11, - 3, - 3, - 5, - 6, - 3, - 6, - 3, - 3, - 4, - 5, - 3, - 5, - 2, - 2, - 2, - 9, - 4, - 3, - 2, - 2, - 3, - 6, - 3, - 9, - 2, - 6, - 3, - 2, - 2, - 5, - 3, - 3, - 9, - 3, - 3, - 2, - 7, - 2, - 6, - 6, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 4, - 3, - 5, - 2, - 19, - 2, - 2, - 10, - 2, - 6, - 3, - 9, - 5, - 3, - 5, - 3, - 6, - 2, - 2, - 2, - 9, - 8, - 7, - 7, - 9, - 7, - 7, - 7, - 8, - 7, - 10, - 7, - 11, - 8, - 7, - 7, - 11, - 2, - 2, - 2, - 4, - 4, - 2, - 3, - 6, - 8, - 5, - 4, - 2, - 2, - 6, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 9, - 3, - 2, - 6, - 10, - 3, - 3, - 6, - 3, - 3, - 2, - 2, - 3, - 2, - 5, - 5, - 4, - 5, - 5, - 8, - 4, - 15, - 10, - 10, - 12, - 5, - 5, - 8, - 4, - 4, - 9, - 6, - 5, - 8, - 4, - 4, - 4, - 5, - 5, - 4, - 5, - 8, - 4, - 4, - 5, - 9, - 6, - 9, - 4, - 10, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 4, - 3, - 3, - 7, - 2, - 2, - 3, - 5, - 6, - 5, - 3, - 8, - 3, - 4, - 6, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 8, - 2, - 2, - 2, - 3, - 7, - 2, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 7, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 4, - 3, - 4, - 6, - 5, - 2, - 7, - 6, - 2, - 3, - 3, - 2, - 2, - 7, - 4, - 14, - 2, - 4, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 6, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 10, - 2, - 7, - 5, - 4, - 2, - 2, - 3, - 12, - 2, - 2, - 2, - 7, - 3, - 3, - 6, - 3, - 4, - 5, - 3, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 7, - 2, - 6, - 6, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 11, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 4, - 5, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 2, - 3, - 5, - 2, - 3, - 11, - 2, - 2, - 2, - 2, - 5, - 3, - 3, - 2, - 13, - 3, - 4, - 3, - 6, - 3, - 2, - 3, - 4, - 3, - 2, - 3, - 7, - 7, - 2, - 2, - 10, - 3, - 2, - 4, - 2, - 3, - 2, - 3, - 5, - 12, - 2, - 2, - 5, - 7, - 2, - 8, - 7, - 3, - 3, - 2, - 3, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 8, - 25, - 2, - 5, - 2, - 2, - 11, - 5, - 3, - 7, - 12, - 8, - 3, - 3, - 3, - 3, - 10, - 6, - 7, - 9, - 2, - 5, - 6, - 2, - 2, - 3, - 2, - 2, - 8, - 2, - 6, - 7, - 16, - 12, - 4, - 7, - 4, - 3, - 10, - 5, - 2, - 4, - 5, - 2, - 3, - 3, - 3, - 11, - 4, - 3, - 7, - 3, - 2, - 4, - 6, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 9, - 3, - 4, - 2, - 5, - 2, - 15, - 4, - 2, - 3, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 4, - 2, - 10, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 6, - 2, - 6, - 6, - 11, - 5, - 2, - 2, - 2, - 3, - 2, - 4, - 4, - 3, - 3, - 2, - 3, - 2, - 5, - 2, - 2, - 3, - 3, - 7, - 5, - 3, - 7, - 7, - 3, - 5, - 6, - 4, - 10, - 3, - 6, - 4, - 3, - 5, - 5, - 3, - 9, - 2, - 5, - 2, - 5, - 2, - 10, - 6, - 6, - 5, - 5, - 11, - 12, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 3, - 3, - 3, - 5, - 2, - 5, - 2, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 4, - 2, - 2, - 4, - 7, - 4, - 2, - 2, - 2, - 24, - 12, - 3, - 2, - 6, - 2, - 2, - 2, - 5, - 2, - 4, - 4, - 2, - 3, - 6, - 5, - 2, - 3, - 2, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 8, - 9, - 4, - 4, - 3, - 6, - 9, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 5, - 2, - 6, - 6, - 2, - 2, - 3, - 6, - 2, - 4, - 18, - 9, - 5, - 2, - 5, - 5, - 5, - 9, - 3, - 4, - 4, - 2, - 2, - 7, - 2, - 2, - 5, - 2, - 5, - 8, - 2, - 2, - 4, - 8, - 6, - 2, - 2, - 2, - 3, - 2, - 6, - 2, - 2, - 2, - 6, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 2, - 4, - 3, - 3, - 4, - 3, - 10, - 6, - 3, - 4, - 7, - 12, - 11, - 4, - 5, - 5, - 3, - 3, - 4, - 2, - 2, - 3, - 7, - 2, - 6, - 4, - 9, - 6, - 7, - 2, - 4, - 2, - 2, - 2, - 2, - 13, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 6, - 2, - 7, - 5, - 4, - 5, - 3, - 3, - 2, - 4, - 7, - 3, - 2, - 6, - 5, - 4, - 3, - 5, - 3, - 2, - 4, - 3, - 2, - 4, - 2, - 2, - 2, - 4, - 3, - 3, - 2, - 3, - 4, - 2, - 6, - 7, - 5, - 3, - 3, - 3, - 2, - 4, - 2, - 2, - 2, - 4, - 3, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 4, - 2, - 2, - 6, - 2, - 2, - 3, - 2, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 6, - 4, - 2, - 2, - 4, - 7, - 11, - 2, - 2, - 2, - 3, - 5, - 3, - 4, - 4, - 2, - 3, - 3, - 7, - 2, - 2, - 8, - 9, - 9, - 2, - 21, - 2, - 2, - 4, - 2, - 4, - 2, - 3, - 4, - 2, - 2, - 9, - 6, - 14, - 2, - 10, - 7, - 2, - 13, - 2, - 5, - 2, - 2, - 6, - 6, - 10, - 5, - 3, - 2, - 12, - 2, - 11, - 8, - 6, - 2, - 6, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 5, - 4, - 4, - 3, - 2, - 2, - 3, - 10, - 2, - 2, - 4, - 5, - 7, - 3, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 7, - 11, - 15, - 2, - 6, - 7, - 3, - 2, - 2, - 5, - 2, - 3, - 2, - 7, - 2, - 2, - 3, - 6, - 2, - 2, - 3, - 2, - 2, - 2, - 6, - 4, - 2, - 2, - 2, - 6, - 2, - 4, - 8, - 6, - 8, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 3, - 3, - 2, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 5, - 7, - 2, - 2, - 2, - 3, - 12, - 3, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 4, - 6, - 5, - 2, - 10, - 8, - 5, - 4, - 3, - 2, - 3, - 4, - 2, - 2, - 3, - 4, - 3, - 2, - 9, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 6, - 5, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 4, - 5, - 3, - 2, - 2, - 3, - 3, - 6, - 5, - 3, - 4, - 10, - 3, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 5, - 7, - 3, - 4, - 10, - 2, - 3, - 2, - 3, - 2, - 5, - 2, - 2, - 2, - 3, - 6, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 2, - 2, - 5, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 2, - 4, - 3, - 2, - 11, - 3, - 3, - 5, - 3, - 2, - 4, - 2, - 2, - 4, - 3, - 4, - 3, - 2, - 2, - 2, - 4, - 3, - 4, - 2, - 15, - 2, - 4, - 4, - 3, - 3, - 4, - 3, - 3, - 6, - 2, - 3, - 2, - 2, - 3, - 3, - 3, - 2, - 5, - 2, - 9, - 2, - 2, - 4, - 7, - 6, - 6, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 4, - 5, - 3, - 6, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 8, - 2, - 2, - 3, - 10, - 4, - 4, - 7, - 3, - 9, - 2, - 6, - 3, - 2, - 2, - 2, - 5, - 7, - 5, - 2, - 4, - 2, - 2, - 8, - 4, - 3, - 2, - 6, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 4, - 4, - 4, - 5, - 2, - 4, - 2, - 15, - 7, - 2, - 5, - 6, - 2, - 4, - 3, - 4, - 3, - 3, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 6, - 2, - 3, - 6, - 4, - 2, - 2, - 2, - 2, - 7, - 5, - 6, - 11, - 11, - 3, - 4, - 2, - 2, - 3, - 2, - 3, - 3, - 9, - 2, - 3, - 2, - 6, - 11, - 2, - 2, - 3, - 14, - 3, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 3, - 5, - 4, - 3, - 3, - 6, - 2, - 2, - 2, - 2, - 6, - 3, - 15, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 3, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 7, - 8, - 2, - 6, - 6, - 6, - 6, - 6, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 3, - 6, - 3, - 4, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 5, - 4, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 14, - 2, - 2, - 12, - 5, - 10, - 3, - 4, - 3, - 5, - 2, - 4, - 3, - 3, - 2, - 2, - 3, - 2, - 6, - 8, - 3, - 2, - 3, - 5, - 5, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 9, - 3, - 3, - 3, - 3, - 3, - 5, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 4, - 6, - 2, - 2, - 2, - 11, - 2, - 3, - 2, - 2, - 4, - 11, - 5, - 5, - 13, - 3, - 4, - 4, - 7, - 4, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 7, - 5, - 3, - 5, - 4, - 4, - 6, - 2, - 2, - 3, - 2, - 3, - 3, - 4, - 2, - 3, - 4, - 5, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 5, - 5, - 5, - 4, - 3, - 2, - 3, - 2, - 2, - 8, - 4, - 5, - 3, - 5, - 7, - 2, - 4, - 2, - 2, - 2, - 5, - 2, - 4, - 3, - 2, - 2, - 4, - 5, - 3, - 5, - 3, - 4, - 5, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 16, - 2, - 3, - 2, - 2, - 16, - 2, - 2, - 2, - 2, - 10, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 9, - 2, - 4, - 2, - 3, - 4, - 3, - 14, - 6, - 4, - 2, - 4, - 2, - 4, - 2, - 12, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 5, - 10, - 5, - 2, - 2, - 2, - 2, - 2, - 8, - 10, - 16, - 4, - 2, - 2, - 2, - 2, - 6, - 2, - 3, - 3, - 3, - 2, - 4, - 4, - 2, - 2, - 5, - 3, - 2, - 2, - 2, - 6, - 5, - 3, - 3, - 11, - 10, - 5, - 10, - 4, - 2, - 3, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 5, - 2, - 3, - 4, - 2, - 2, - 4, - 2, - 2, - 3, - 11, - 2, - 3, - 5, - 6, - 2, - 2, - 8, - 4, - 2, - 13, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 14, - 2, - 3, - 6, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 12, - 5, - 2, - 2, - 8, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 17, - 3, - 6, - 3, - 2, - 4, - 6, - 5, - 3, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 9, - 2, - 6, - 2, - 2, - 2, - 6, - 3, - 3, - 12, - 2, - 4, - 3, - 5, - 2, - 4, - 5, - 4, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 3, - 4, - 2, - 2, - 3, - 2, - 5, - 3, - 4, - 2, - 6, - 4, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 5, - 3, - 4, - 2, - 2, - 3, - 5, - 7, - 10, - 4, - 3, - 3, - 2, - 2, - 4, - 7, - 3, - 4, - 4, - 3, - 4, - 4, - 5, - 4, - 5, - 9, - 5, - 2, - 3, - 2, - 2, - 6, - 4, - 3, - 5, - 6, - 6, - 3, - 2, - 9, - 6, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 7, - 2, - 6, - 3, - 2, - 6, - 2, - 5, - 5, - 3, - 3, - 4, - 3, - 2, - 6, - 2, - 3, - 3, - 4, - 3, - 4, - 3, - 6, - 4, - 5, - 4, - 3, - 3, - 4, - 8, - 7, - 5, - 4, - 14, - 4, - 3, - 3, - 4, - 9, - 3, - 3, - 3, - 5, - 6, - 6, - 4, - 4, - 4, - 3, - 9, - 4, - 8, - 4, - 4, - 5, - 3, - 6, - 4, - 3, - 3, - 5, - 7, - 6, - 6, - 3, - 3, - 5, - 3, - 3, - 6, - 3, - 8, - 11, - 5, - 5, - 3, - 3, - 3, - 7, - 5, - 3, - 7, - 3, - 3, - 3, - 4, - 5, - 3, - 4, - 3, - 3, - 3, - 7, - 3, - 3, - 3, - 8, - 3, - 4, - 2, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 3, - 4, - 2, - 2, - 2, - 8, - 4, - 2, - 3, - 3, - 2, - 7, - 2, - 2, - 3, - 5, - 3, - 5, - 9, - 10, - 2, - 3, - 3, - 4, - 2, - 3, - 4, - 4, - 3, - 2, - 4, - 2, - 3, - 4, - 2, - 4, - 2, - 2, - 3, - 2, - 4, - 2, - 4, - 2, - 4, - 3, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 3, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 3, - 5, - 3, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 3, - 2, - 4, - 2, - 3, - 2, - 3, - 3, - 6, - 3, - 3, - 7, - 5, - 6, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 11, - 2, - 3, - 7, - 6, - 2, - 7, - 3, - 6, - 4, - 2, - 2, - 2, - 7, - 7, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 5, - 2, - 2, - 6, - 2, - 4, - 3, - 4, - 5, - 7, - 6, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 6, - 2, - 2, - 4, - 3, - 6, - 3, - 3, - 3, - 2, - 5, - 4, - 3, - 4, - 2, - 4, - 5, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 3, - 3, - 4, - 4, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 3, - 4, - 3, - 8, - 3, - 12, - 3, - 6, - 3, - 3, - 5, - 12, - 5, - 3, - 3, - 4, - 7, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 2, - 3, - 10, - 6, - 5, - 3, - 7, - 2, - 4, - 3, - 12, - 3, - 3, - 5, - 8, - 3, - 7, - 2, - 4, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 3, - 4, - 3, - 5, - 2, - 4, - 3, - 2, - 10, - 5, - 8, - 7, - 2, - 7, - 2, - 2, - 4, - 2, - 3, - 3, - 5, - 5, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 11, - 5, - 10, - 3, - 3, - 2, - 3, - 7, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 8, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 6, - 2, - 5, - 6, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 5, - 11, - 15, - 2, - 3, - 3, - 2, - 2, - 4, - 8, - 7, - 3, - 2, - 2, - 5, - 2, - 3, - 2, - 2, - 5, - 2, - 3, - 4, - 10, - 4, - 3, - 2, - 4, - 6, - 2, - 2, - 3, - 3, - 4, - 3, - 2, - 5, - 7, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 6, - 2, - 2, - 2, - 7, - 4, - 2, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 4, - 3, - 4, - 7, - 7, - 3, - 2, - 2, - 2, - 4, - 6, - 2, - 2, - 3, - 2, - 4, - 3, - 6, - 3, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 5, - 13, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 5, - 7, - 2, - 4, - 3, - 2, - 3, - 6, - 4, - 2, - 12, - 12, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 4, - 3, - 2, - 4, - 3, - 2, - 4, - 2, - 6, - 4, - 7, - 3, - 3, - 5, - 2, - 2, - 4, - 2, - 3, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 5, - 3, - 5, - 2, - 2, - 5, - 2, - 5, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 3, - 2, - 5, - 4, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 9, - 2, - 9, - 2, - 2, - 9, - 15, - 5, - 3, - 3, - 9, - 4, - 2, - 9, - 2, - 2, - 2, - 7, - 3, - 6, - 8, - 4, - 2, - 4, - 2, - 4, - 3, - 6, - 3, - 2, - 4, - 5, - 3, - 2, - 3, - 3, - 2, - 4, - 7, - 4, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 6, - 6, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 6, - 6, - 6, - 6, - 6, - 8, - 7, - 3, - 2, - 5, - 3, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 2, - 4, - 2, - 2, - 9, - 3, - 2, - 2, - 2, - 2, - 5, - 3, - 6, - 3, - 7, - 2, - 2, - 12, - 2, - 3, - 3, - 3, - 13, - 2, - 3, - 3, - 5, - 6, - 4, - 2, - 6, - 6, - 2, - 2, - 5, - 3, - 5, - 12, - 8, - 2, - 4, - 3, - 8, - 2, - 2, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 4, - 7, - 6, - 2, - 5, - 4, - 2, - 2, - 12, - 4, - 4, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 5, - 2, - 4, - 2, - 3, - 4, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 9, - 8, - 2, - 5, - 2, - 6, - 2, - 4, - 5, - 2, - 3, - 2, - 2, - 2, - 4, - 9, - 3, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 4, - 2, - 6, - 2, - 12, - 2, - 2, - 2, - 9, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 3, - 4, - 2, - 2, - 3, - 6, - 2, - 6, - 4, - 8, - 2, - 2, - 4, - 12, - 5, - 6, - 5, - 2, - 2, - 2, - 4, - 2, - 4, - 3, - 15, - 7, - 3, - 3, - 3, - 4, - 4, - 2, - 4, - 2, - 2, - 3, - 3, - 13, - 2, - 2, - 4, - 10, - 4, - 5, - 4, - 2, - 2, - 2, - 4, - 3, - 2, - 11, - 3, - 2, - 3, - 3, - 2, - 3, - 2, - 4, - 2, - 11, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 9, - 6, - 5, - 5, - 3, - 2, - 2, - 2, - 8, - 4, - 4, - 4, - 2, - 4, - 12, - 2, - 3, - 7, - 2, - 3, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 5, - 25, - 2, - 15, - 2, - 3, - 3, - 2, - 3, - 2, - 3, - 3, - 4, - 3, - 2, - 3, - 3, - 8, - 6, - 2, - 2, - 2, - 4, - 2, - 9, - 2, - 2, - 2, - 2, - 4, - 2, - 9, - 6, - 2, - 8, - 2, - 3, - 13, - 9, - 9, - 9, - 2, - 6, - 6, - 6, - 3, - 8, - 5, - 14, - 2, - 3, - 5, - 6, - 4, - 14, - 4, - 2, - 3, - 2, - 4, - 3, - 2, - 8, - 2, - 7, - 4, - 2, - 10, - 2, - 7, - 9, - 2, - 10, - 2, - 2, - 4, - 7, - 2, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 2, - 4, - 2, - 2, - 7, - 3, - 3, - 5, - 3, - 2, - 4, - 2, - 2, - 12, - 2, - 2, - 13, - 2, - 6, - 2, - 2, - 2, - 2, - 9, - 2, - 4, - 2, - 3, - 4, - 3, - 7, - 10, - 2, - 4, - 2, - 3, - 3, - 5, - 2, - 3, - 2, - 4, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 20, - 6, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 3, - 9, - 6, - 10, - 2, - 5, - 8, - 3, - 5, - 12, - 3, - 5, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 5, - 4, - 15, - 2, - 2, - 2, - 2, - 11, - 12, - 2, - 2, - 3, - 13, - 9, - 2, - 3, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 10, - 3, - 2, - 4, - 2, - 2, - 5, - 5, - 3, - 3, - 4, - 3, - 6, - 5, - 2, - 3, - 4, - 3, - 2, - 2, - 6, - 6, - 6, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 8, - 3, - 2, - 4, - 2, - 3, - 2, - 2, - 3, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 6, - 10, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 3, - 10, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 6, - 4, - 3, - 12, - 3, - 5, - 4, - 3, - 8, - 3, - 3, - 3, - 2, - 3, - 8, - 2, - 3, - 4, - 6, - 2, - 2, - 8, - 3, - 2, - 4, - 3, - 2, - 2, - 14, - 3, - 7, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 7, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 3, - 2, - 2, - 16, - 8, - 2, - 4, - 2, - 3, - 11, - 2, - 2, - 4, - 3, - 5, - 3, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 3, - 2, - 4, - 2, - 2, - 11, - 4, - 12, - 4, - 2, - 3, - 2, - 2, - 3, - 5, - 2, - 6, - 3, - 8, - 3, - 2, - 2, - 2, - 15, - 7, - 3, - 3, - 3, - 4, - 4, - 2, - 4, - 5, - 5, - 10, - 34, - 2, - 2, - 11, - 10, - 7, - 2, - 2, - 2, - 3, - 2, - 3, - 12, - 2, - 4, - 3, - 13, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 2, - 2, - 6, - 3, - 2, - 4, - 5, - 5, - 9, - 2, - 4, - 2, - 2, - 2, - 8, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 3, - 7, - 3, - 3, - 15, - 7, - 3, - 3, - 3, - 4, - 4, - 2, - 4, - 2, - 3, - 4, - 2, - 3, - 2, - 4, - 2, - 7, - 6, - 6, - 10, - 6, - 2, - 10, - 8, - 2, - 2, - 2, - 9, - 18, - 3, - 13, - 14, - 4, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 3, - 3, - 5, - 11, - 5, - 3, - 2, - 5, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 6, - 8, - 4, - 4, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 11, - 5, - 2, - 2, - 3, - 2, - 14, - 3, - 2, - 4, - 3, - 3, - 13, - 4, - 9, - 2, - 2, - 7, - 2, - 7, - 7, - 6, - 5, - 2, - 4, - 5, - 2, - 2, - 2, - 5, - 2, - 5, - 4, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 4, - 4, - 5, - 5, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 9, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 7, - 2, - 2, - 3, - 7, - 3, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 6, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 3, - 4, - 7, - 2, - 3, - 3, - 3, - 2, - 5, - 2, - 4, - 3, - 2, - 18, - 5, - 2, - 3, - 6, - 3, - 18, - 2, - 3, - 2, - 2, - 15, - 3, - 9, - 2, - 2, - 2, - 10, - 3, - 4, - 2, - 6, - 2, - 6, - 2, - 2, - 2, - 5, - 5, - 2, - 5, - 4, - 2, - 4, - 2, - 2, - 4, - 3, - 4, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 7, - 7, - 4, - 3, - 2, - 7, - 5, - 4, - 5, - 11, - 8, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 3, - 2, - 5, - 16, - 8, - 2, - 8, - 4, - 3, - 2, - 2, - 4, - 2, - 2, - 3, - 5, - 3, - 3, - 4, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 4, - 6, - 3, - 3, - 2, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 2, - 4, - 4, - 5, - 2, - 2, - 5, - 6, - 4, - 5, - 3, - 4, - 3, - 3, - 2, - 2, - 2, - 9, - 3, - 2, - 4, - 2, - 8, - 6, - 5, - 3, - 4, - 3, - 2, - 7, - 3, - 3, - 2, - 3, - 5, - 7, - 4, - 6, - 2, - 2, - 14, - 9, - 3, - 2, - 4, - 2, - 6, - 7, - 3, - 3, - 2, - 6, - 6, - 2, - 4, - 3, - 16, - 4, - 3, - 6, - 9, - 14, - 3, - 7, - 2, - 2, - 3, - 3, - 2, - 2, - 9, - 6, - 3, - 1, - 3, - 9, - 2, - 4, - 2, - 9, - 2, - 11, - 2, - 5, - 4, - 7, - 2, - 2, - 2, - 9, - 4, - 2, - 2, - 3, - 2, - 6, - 9, - 2, - 6, - 3, - 10, - 4, - 2, - 2, - 8, - 2, - 2, - 2, - 33, - 3, - 4, - 2, - 4, - 4, - 2, - 3, - 4, - 3, - 2, - 4, - 4, - 2, - 4, - 3, - 4, - 2, - 2, - 33, - 3, - 4, - 2, - 4, - 4, - 2, - 3, - 4, - 3, - 2, - 4, - 4, - 2, - 4, - 3, - 4, - 2, - 3, - 33, - 3, - 4, - 2, - 4, - 4, - 2, - 3, - 4, - 3, - 2, - 4, - 4, - 2, - 4, - 3, - 4, - 5, - 15, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 2, - 2, - 7, - 3, - 9, - 2, - 2, - 7, - 8, - 4, - 4, - 9, - 4, - 7, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 20, - 9, - 14, - 14, - 8, - 6, - 8, - 6, - 7, - 8, - 8, - 8, - 13, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 2, - 10, - 15, - 2, - 7, - 8, - 8, - 16, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 4, - 2, - 3, - 3, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 7, - 3, - 5, - 4, - 5, - 5, - 6, - 3, - 2, - 3, - 3, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 4, - 3, - 2, - 10, - 9, - 9, - 5, - 2, - 7, - 4, - 2, - 5, - 5, - 2, - 7, - 2, - 2, - 10, - 2, - 2, - 2, - 2, - 13, - 3, - 15, - 3, - 2, - 2, - 7, - 8, - 10, - 2, - 3, - 12, - 4, - 4, - 2, - 3, - 3, - 2, - 3, - 2, - 3, - 4, - 2, - 5, - 9, - 9, - 2, - 13, - 5, - 2, - 7, - 6, - 2, - 2, - 3, - 2, - 3, - 3, - 8, - 2, - 3, - 10, - 3, - 3, - 3, - 3, - 4, - 7, - 3, - 7, - 3, - 4, - 3, - 3, - 3, - 6, - 2, - 6, - 2, - 2, - 4, - 12, - 3, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 3, - 2, - 6, - 2, - 4, - 4, - 3, - 2, - 10, - 4, - 2, - 11, - 2, - 2, - 2, - 11, - 5, - 8, - 2, - 4, - 2, - 5, - 3, - 10, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 17, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 5, - 7, - 2, - 2, - 2, - 4, - 3, - 2, - 3, - 3, - 2, - 5, - 2, - 6, - 5, - 5, - 3, - 4, - 4, - 2, - 2, - 2, - 2, - 5, - 3, - 9, - 3, - 3, - 2, - 4, - 4, - 8, - 3, - 3, - 4, - 2, - 6, - 3, - 2, - 7, - 2, - 2, - 6, - 6, - 10, - 2, - 2, - 2, - 5, - 5, - 2, - 2, - 7, - 4, - 3, - 2, - 8, - 3, - 8, - 9, - 2, - 2, - 5, - 5, - 16, - 2, - 14, - 3, - 3, - 3, - 8, - 3, - 2, - 3, - 3, - 4, - 2, - 4, - 2, - 2, - 15, - 3, - 15, - 3, - 5, - 2, - 11, - 7, - 13, - 6, - 3, - 9, - 9, - 2, - 2, - 5, - 3, - 3, - 4, - 6, - 3, - 4, - 2, - 2, - 2, - 4, - 4, - 2, - 5, - 2, - 2, - 2, - 3, - 5, - 3, - 6, - 2, - 2, - 10, - 10, - 10, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 4, - 3, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 3, - 2, - 4, - 10, - 2, - 9, - 2, - 4, - 5, - 5, - 4, - 4, - 3, - 5, - 2, - 3, - 3, - 3, - 4, - 8, - 2, - 3, - 2, - 3, - 5, - 2, - 2, - 2, - 9, - 2, - 3, - 2, - 4, - 5, - 3, - 8, - 3, - 2, - 3, - 2, - 2, - 4, - 6, - 4, - 8, - 4, - 7, - 3, - 4 - ], - "total": 7472, - "totalUnique": 32, - "unique": { - "1": 1, - "2": 3422, - "3": 1422, - "4": 872, - "5": 482, - "6": 384, - "7": 236, - "8": 153, - "9": 134, - "10": 88, - "11": 75, - "12": 55, - "13": 52, - "14": 24, - "15": 21, - "16": 15, - "17": 5, - "18": 4, - "19": 1, - "20": 3, - "21": 2, - "22": 1, - "23": 4, - "24": 1, - "25": 5, - "27": 1, - "32": 1, - "33": 3, - "34": 2, - "36": 1, - "52": 1, - "66": 1 - }, - "uniquenessRatio": 0.004282655246252677 - }, - "selectors": { - "min": 1, - "max": 55, - "mean": 1.4329496788008564, - "mode": 1, - "range": 54, - "sum": 10707, - "items": [ - 1, - 1, - 13, - 4, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 5, - 1, - 2, - 4, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 12, - 24, - 6, - 12, - 6, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 2, - 6, - 6, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 48, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 6, - 1, - 1, - 6, - 1, - 6, - 2, - 1, - 1, - 1, - 2, - 12, - 5, - 12, - 5, - 12, - 5, - 12, - 5, - 12, - 5, - 1, - 1, - 1, - 6, - 1, - 6, - 6, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 4, - 8, - 8, - 1, - 2, - 2, - 4, - 2, - 2, - 2, - 6, - 4, - 4, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 3, - 2, - 3, - 2, - 1, - 2, - 1, - 3, - 9, - 3, - 9, - 1, - 1, - 2, - 1, - 3, - 9, - 3, - 9, - 1, - 1, - 2, - 1, - 3, - 9, - 3, - 9, - 1, - 1, - 2, - 1, - 3, - 9, - 3, - 9, - 1, - 1, - 2, - 1, - 3, - 9, - 3, - 9, - 1, - 1, - 2, - 1, - 3, - 9, - 3, - 9, - 1, - 1, - 5, - 4, - 2, - 4, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 8, - 4, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 6, - 3, - 3, - 6, - 3, - 3, - 2, - 1, - 1, - 1, - 2, - 7, - 1, - 7, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 4, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 3, - 1, - 2, - 1, - 2, - 3, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 3, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 6, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 3, - 3, - 3, - 3, - 9, - 3, - 1, - 2, - 2, - 4, - 6, - 1, - 2, - 2, - 4, - 6, - 1, - 2, - 2, - 4, - 6, - 1, - 2, - 2, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 2, - 4, - 8, - 8, - 2, - 4, - 8, - 8, - 4, - 2, - 2, - 12, - 12, - 8, - 8, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 32, - 16, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 12, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 6, - 7, - 8, - 10, - 1, - 6, - 2, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 2, - 2, - 4, - 4, - 1, - 2, - 2, - 4, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 22, - 55, - 22, - 22, - 22, - 22, - 1, - 2, - 1, - 1, - 13, - 7, - 16, - 10, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 9, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 1, - 3, - 1, - 1, - 1, - 31, - 7, - 6, - 5, - 3, - 7, - 6, - 6, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 6, - 4, - 12, - 4, - 24, - 12, - 4, - 24, - 12, - 6, - 12, - 6, - 2, - 2, - 4, - 8, - 12, - 4, - 2, - 4, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 6, - 2, - 4, - 4, - 6, - 2, - 2, - 6, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 6, - 6, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 6, - 6, - 6, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 6, - 6, - 6, - 12, - 6, - 3, - 6, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 14, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 9, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 9, - 9, - 9, - 9, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 6, - 4, - 2, - 6, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 8, - 1, - 4, - 1, - 4, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 4, - 4, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 25, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 25, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 2, - 25, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 2, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 5, - 2, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 1, - 8, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 7472, - "totalUnique": 21, - "unique": { - "1": 6041, - "2": 914, - "3": 205, - "4": 129, - "5": 17, - "6": 78, - "7": 6, - "8": 13, - "9": 21, - "10": 6, - "12": 22, - "13": 2, - "14": 1, - "16": 2, - "22": 5, - "24": 3, - "25": 3, - "31": 1, - "32": 1, - "48": 1, - "55": 1 - }, - "uniquenessRatio": 0.002810492505353319 - }, - "declarations": { - "min": 0, - "max": 33, - "mean": 2.347564239828694, - "mode": 1, - "range": 33, - "sum": 17541, - "items": [ - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 4, - 1, - 4, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 5, - 3, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 11, - 1, - 4, - 8, - 6, - 1, - 4, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 2, - 3, - 3, - 2, - 1, - 1, - 1, - 7, - 1, - 2, - 2, - 4, - 1, - 4, - 1, - 5, - 1, - 1, - 3, - 1, - 5, - 7, - 5, - 11, - 6, - 2, - 4, - 1, - 1, - 1, - 4, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 9, - 4, - 3, - 3, - 1, - 2, - 1, - 2, - 5, - 16, - 4, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 5, - 3, - 1, - 7, - 2, - 1, - 1, - 1, - 4, - 2, - 5, - 2, - 1, - 5, - 2, - 1, - 5, - 5, - 2, - 1, - 5, - 2, - 1, - 5, - 1, - 1, - 10, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 4, - 3, - 3, - 1, - 2, - 1, - 1, - 2, - 4, - 1, - 2, - 1, - 3, - 1, - 2, - 3, - 1, - 2, - 2, - 19, - 2, - 2, - 4, - 5, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 1, - 3, - 2, - 4, - 4, - 4, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 12, - 9, - 1, - 1, - 20, - 2, - 4, - 7, - 3, - 4, - 1, - 5, - 1, - 1, - 2, - 2, - 6, - 6, - 2, - 4, - 3, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 4, - 1, - 2, - 1, - 4, - 4, - 1, - 2, - 2, - 4, - 3, - 1, - 1, - 3, - 3, - 3, - 5, - 1, - 5, - 2, - 1, - 5, - 2, - 1, - 1, - 1, - 3, - 9, - 3, - 3, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 3, - 2, - 1, - 4, - 2, - 4, - 1, - 1, - 2, - 4, - 1, - 5, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 7, - 1, - 4, - 4, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 4, - 1, - 2, - 3, - 5, - 1, - 1, - 1, - 10, - 1, - 4, - 1, - 1, - 1, - 3, - 8, - 1, - 1, - 1, - 2, - 1, - 2, - 9, - 3, - 3, - 1, - 2, - 1, - 1, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 8, - 3, - 5, - 2, - 2, - 2, - 2, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 4, - 1, - 9, - 3, - 2, - 4, - 5, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 4, - 1, - 5, - 2, - 1, - 1, - 3, - 10, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 12, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 3, - 1, - 2, - 2, - 1, - 10, - 2, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 13, - 5, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 6, - 2, - 3, - 1, - 1, - 3, - 2, - 3, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 2, - 3, - 2, - 2, - 6, - 1, - 4, - 1, - 4, - 1, - 5, - 1, - 2, - 3, - 3, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 5, - 7, - 1, - 1, - 8, - 2, - 2, - 2, - 8, - 5, - 5, - 1, - 10, - 7, - 4, - 2, - 3, - 10, - 7, - 2, - 2, - 2, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 5, - 2, - 2, - 1, - 1, - 21, - 2, - 2, - 2, - 2, - 2, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 31, - 1, - 1, - 1, - 1, - 6, - 1, - 6, - 1, - 2, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 1, - 3, - 5, - 1, - 7, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 12, - 6, - 8, - 5, - 5, - 2, - 2, - 4, - 1, - 1, - 9, - 10, - 4, - 10, - 1, - 4, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 10, - 9, - 5, - 2, - 3, - 9, - 1, - 1, - 5, - 2, - 1, - 7, - 1, - 1, - 2, - 3, - 2, - 2, - 2, - 5, - 2, - 3, - 2, - 1, - 1, - 5, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 12, - 5, - 1, - 2, - 5, - 4, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 8, - 8, - 3, - 1, - 7, - 1, - 2, - 7, - 3, - 5, - 3, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 6, - 3, - 2, - 1, - 4, - 4, - 2, - 4, - 6, - 6, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 6, - 2, - 1, - 2, - 1, - 3, - 1, - 4, - 1, - 4, - 2, - 4, - 2, - 1, - 4, - 2, - 2, - 3, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 5, - 6, - 6, - 1, - 2, - 6, - 5, - 1, - 5, - 1, - 9, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 2, - 3, - 1, - 1, - 15, - 10, - 3, - 2, - 3, - 1, - 5, - 10, - 1, - 2, - 2, - 1, - 2, - 4, - 5, - 1, - 3, - 5, - 8, - 5, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 9, - 1, - 2, - 4, - 1, - 15, - 10, - 1, - 7, - 1, - 2, - 2, - 8, - 8, - 5, - 1, - 3, - 1, - 8, - 5, - 1, - 3, - 2, - 1, - 3, - 3, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 2, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 1, - 6, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 3, - 4, - 1, - 3, - 1, - 2, - 6, - 1, - 4, - 5, - 5, - 2, - 2, - 2, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 5, - 3, - 1, - 7, - 1, - 1, - 9, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 4, - 3, - 1, - 2, - 1, - 4, - 4, - 2, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 2, - 2, - 2, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 5, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 4, - 4, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 1, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 2, - 1, - 2, - 3, - 2, - 3, - 1, - 4, - 1, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 14, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 7, - 9, - 1, - 5, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 8, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 7, - 2, - 1, - 1, - 12, - 1, - 8, - 3, - 1, - 5, - 2, - 3, - 3, - 2, - 1, - 13, - 12, - 4, - 10, - 10, - 4, - 7, - 1, - 5, - 3, - 1, - 8, - 2, - 2, - 1, - 8, - 13, - 3, - 1, - 1, - 3, - 9, - 2, - 4, - 2, - 2, - 1, - 6, - 4, - 2, - 2, - 4, - 1, - 1, - 11, - 1, - 2, - 2, - 12, - 2, - 2, - 2, - 8, - 6, - 1, - 2, - 2, - 1, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 4, - 11, - 1, - 1, - 8, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 8, - 1, - 1, - 1, - 2, - 1, - 5, - 3, - 1, - 2, - 1, - 5, - 2, - 1, - 4, - 2, - 3, - 6, - 1, - 2, - 1, - 1, - 10, - 1, - 7, - 3, - 2, - 1, - 1, - 9, - 2, - 4, - 4, - 3, - 1, - 5, - 6, - 1, - 1, - 1, - 3, - 7, - 1, - 9, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 8, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 1, - 2, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 7, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 8, - 4, - 6, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 6, - 1, - 1, - 3, - 9, - 3, - 3, - 2, - 1, - 3, - 3, - 2, - 1, - 5, - 5, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 4, - 1, - 2, - 1, - 3, - 1, - 3, - 1, - 6, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 7, - 2, - 1, - 1, - 11, - 1, - 1, - 15, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 7, - 3, - 8, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 6, - 1, - 1, - 14, - 4, - 1, - 1, - 1, - 1, - 6, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 5, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 11, - 1, - 1, - 5, - 1, - 11, - 5, - 1, - 1, - 1, - 4, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 12, - 4, - 1, - 1, - 1, - 10, - 2, - 1, - 10, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 4, - 3, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 2, - 7, - 7, - 1, - 9, - 1, - 1, - 1, - 2, - 1, - 9, - 2, - 1, - 1, - 3, - 5, - 1, - 1, - 9, - 5, - 1, - 2, - 10, - 2, - 4, - 4, - 1, - 2, - 3, - 5, - 1, - 4, - 1, - 3, - 5, - 2, - 2, - 3, - 3, - 4, - 1, - 4, - 3, - 2, - 14, - 1, - 2, - 1, - 1, - 1, - 6, - 1, - 2, - 8, - 1, - 1, - 1, - 1, - 9, - 1, - 3, - 2, - 2, - 2, - 1, - 7, - 5, - 2, - 1, - 8, - 1, - 4, - 2, - 1, - 3, - 7, - 1, - 7, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 4, - 8, - 1, - 1, - 1, - 6, - 10, - 2, - 4, - 1, - 3, - 1, - 1, - 2, - 3, - 2, - 3, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 9, - 5, - 5, - 6, - 1, - 3, - 1, - 8, - 1, - 8, - 4, - 1, - 2, - 11, - 3, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 6, - 3, - 5, - 6, - 1, - 4, - 7, - 9, - 3, - 1, - 1, - 1, - 11, - 4, - 2, - 4, - 2, - 1, - 1, - 5, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 5, - 4, - 4, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 6, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 3, - 6, - 4, - 8, - 3, - 3, - 1, - 6, - 4, - 1, - 1, - 5, - 1, - 8, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 7, - 2, - 1, - 2, - 1, - 3, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 3, - 3, - 9, - 1, - 1, - 3, - 4, - 1, - 4, - 2, - 2, - 3, - 4, - 2, - 4, - 1, - 1, - 1, - 7, - 2, - 1, - 1, - 1, - 2, - 5, - 2, - 8, - 1, - 5, - 2, - 1, - 1, - 4, - 2, - 2, - 8, - 2, - 2, - 1, - 6, - 1, - 5, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 2, - 4, - 1, - 18, - 1, - 1, - 9, - 1, - 5, - 1, - 8, - 4, - 1, - 4, - 2, - 5, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 5, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 5, - 7, - 4, - 3, - 1, - 1, - 5, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 8, - 2, - 1, - 5, - 9, - 2, - 1, - 4, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 5, - 1, - 6, - 1, - 1, - 3, - 2, - 2, - 5, - 1, - 1, - 6, - 3, - 2, - 5, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 5, - 1, - 1, - 2, - 6, - 3, - 6, - 1, - 9, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 3, - 2, - 2, - 6, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 4, - 1, - 2, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 7, - 1, - 1, - 1, - 2, - 6, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 2, - 3, - 5, - 4, - 1, - 6, - 5, - 1, - 2, - 2, - 1, - 1, - 6, - 3, - 13, - 1, - 3, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 5, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 9, - 1, - 6, - 3, - 3, - 1, - 1, - 1, - 11, - 1, - 1, - 1, - 6, - 2, - 2, - 4, - 1, - 2, - 4, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 2, - 3, - 1, - 6, - 1, - 5, - 5, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 4, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 2, - 4, - 1, - 2, - 10, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 1, - 12, - 1, - 3, - 2, - 5, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 6, - 6, - 1, - 1, - 9, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 10, - 1, - 1, - 4, - 6, - 1, - 6, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 7, - 24, - 1, - 4, - 1, - 1, - 10, - 4, - 1, - 5, - 10, - 6, - 1, - 1, - 1, - 1, - 9, - 5, - 6, - 8, - 1, - 4, - 5, - 1, - 1, - 2, - 1, - 1, - 7, - 1, - 5, - 6, - 15, - 11, - 2, - 6, - 3, - 1, - 9, - 4, - 1, - 3, - 4, - 1, - 2, - 1, - 1, - 10, - 3, - 2, - 6, - 2, - 1, - 3, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 8, - 2, - 3, - 1, - 4, - 1, - 14, - 3, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 3, - 1, - 9, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 5, - 1, - 5, - 4, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 2, - 8, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 4, - 4, - 3, - 3, - 7, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 2, - 4, - 1, - 4, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 6, - 3, - 1, - 1, - 1, - 23, - 11, - 2, - 1, - 5, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 1, - 1, - 5, - 4, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 7, - 8, - 3, - 3, - 2, - 5, - 8, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 5, - 5, - 1, - 1, - 2, - 5, - 1, - 3, - 17, - 7, - 1, - 1, - 1, - 1, - 1, - 8, - 2, - 3, - 3, - 1, - 1, - 6, - 1, - 1, - 4, - 1, - 4, - 7, - 1, - 1, - 2, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 5, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 2, - 2, - 2, - 1, - 8, - 4, - 1, - 2, - 5, - 10, - 9, - 2, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 6, - 1, - 5, - 3, - 8, - 5, - 6, - 1, - 3, - 1, - 1, - 1, - 1, - 12, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 5, - 1, - 6, - 4, - 3, - 4, - 2, - 1, - 1, - 3, - 6, - 1, - 1, - 5, - 4, - 3, - 2, - 4, - 2, - 1, - 3, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 2, - 3, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 2, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 1, - 1, - 3, - 6, - 10, - 1, - 1, - 1, - 2, - 4, - 2, - 3, - 2, - 1, - 2, - 2, - 6, - 1, - 1, - 7, - 8, - 8, - 1, - 20, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 8, - 5, - 13, - 1, - 9, - 6, - 1, - 12, - 1, - 4, - 1, - 1, - 5, - 5, - 9, - 4, - 2, - 1, - 11, - 1, - 10, - 7, - 5, - 1, - 5, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 3, - 3, - 2, - 1, - 1, - 2, - 9, - 1, - 1, - 3, - 4, - 6, - 2, - 5, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 10, - 14, - 1, - 5, - 5, - 2, - 1, - 1, - 4, - 1, - 2, - 1, - 6, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 3, - 1, - 1, - 1, - 5, - 1, - 3, - 7, - 5, - 7, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 2, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 6, - 1, - 1, - 1, - 2, - 11, - 1, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 5, - 4, - 1, - 9, - 7, - 4, - 3, - 2, - 1, - 2, - 3, - 1, - 1, - 2, - 3, - 2, - 1, - 8, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 5, - 4, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 2, - 1, - 1, - 2, - 2, - 5, - 4, - 2, - 3, - 9, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 6, - 2, - 3, - 9, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 2, - 1, - 10, - 2, - 2, - 4, - 2, - 1, - 3, - 1, - 1, - 3, - 2, - 3, - 2, - 1, - 1, - 1, - 3, - 2, - 3, - 1, - 14, - 1, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 3, - 5, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 4, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 2, - 9, - 3, - 2, - 6, - 2, - 8, - 1, - 5, - 2, - 1, - 1, - 1, - 4, - 6, - 3, - 1, - 3, - 1, - 1, - 7, - 3, - 2, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 3, - 4, - 1, - 3, - 1, - 14, - 6, - 1, - 4, - 5, - 1, - 3, - 2, - 3, - 2, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 5, - 3, - 1, - 1, - 1, - 1, - 6, - 4, - 5, - 10, - 10, - 2, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 8, - 1, - 2, - 1, - 5, - 10, - 1, - 1, - 2, - 13, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 5, - 2, - 14, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 3, - 2, - 1, - 1, - 2, - 1, - 1, - 6, - 7, - 1, - 4, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 3, - 2, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 4, - 3, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 13, - 1, - 1, - 11, - 4, - 8, - 1, - 2, - 1, - 3, - 1, - 3, - 2, - 2, - 1, - 1, - 2, - 1, - 5, - 7, - 2, - 1, - 2, - 4, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 8, - 2, - 2, - 2, - 2, - 2, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 5, - 1, - 1, - 1, - 10, - 1, - 2, - 1, - 1, - 3, - 10, - 4, - 4, - 12, - 2, - 3, - 3, - 6, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 6, - 3, - 2, - 4, - 3, - 3, - 5, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 4, - 4, - 4, - 3, - 1, - 1, - 2, - 1, - 1, - 7, - 2, - 3, - 1, - 4, - 6, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 4, - 2, - 4, - 2, - 3, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 15, - 1, - 2, - 1, - 1, - 15, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 8, - 1, - 2, - 1, - 2, - 3, - 1, - 13, - 5, - 3, - 1, - 3, - 1, - 3, - 1, - 11, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 2, - 4, - 2, - 1, - 1, - 1, - 2, - 1, - 4, - 9, - 4, - 1, - 1, - 1, - 1, - 1, - 7, - 9, - 15, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 5, - 4, - 2, - 1, - 5, - 8, - 4, - 9, - 2, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 1, - 2, - 3, - 1, - 1, - 3, - 1, - 1, - 2, - 10, - 1, - 2, - 4, - 5, - 1, - 1, - 7, - 3, - 1, - 12, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 13, - 1, - 2, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 11, - 4, - 1, - 1, - 7, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 16, - 2, - 5, - 2, - 1, - 3, - 5, - 4, - 2, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 8, - 1, - 5, - 1, - 1, - 1, - 5, - 2, - 2, - 11, - 1, - 3, - 2, - 4, - 1, - 3, - 4, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 3, - 1, - 1, - 1, - 4, - 5, - 8, - 3, - 2, - 2, - 1, - 1, - 3, - 6, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 5, - 2, - 2, - 3, - 5, - 5, - 2, - 1, - 8, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 6, - 1, - 5, - 2, - 1, - 5, - 1, - 4, - 4, - 2, - 2, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 4, - 2, - 3, - 2, - 1, - 1, - 2, - 6, - 5, - 1, - 2, - 12, - 2, - 1, - 1, - 2, - 7, - 1, - 1, - 1, - 3, - 4, - 4, - 2, - 2, - 2, - 1, - 7, - 2, - 6, - 2, - 2, - 3, - 1, - 4, - 2, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 7, - 1, - 3, - 1, - 1, - 1, - 5, - 3, - 1, - 5, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 6, - 1, - 2, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 2, - 1, - 6, - 1, - 1, - 2, - 3, - 2, - 4, - 8, - 9, - 1, - 2, - 2, - 3, - 1, - 2, - 3, - 2, - 2, - 1, - 3, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 10, - 1, - 1, - 6, - 4, - 1, - 6, - 1, - 5, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 5, - 1, - 2, - 1, - 2, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 2, - 5, - 2, - 2, - 2, - 1, - 3, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 2, - 2, - 3, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 6, - 1, - 10, - 1, - 2, - 1, - 1, - 1, - 10, - 3, - 1, - 1, - 2, - 5, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 2, - 9, - 5, - 3, - 2, - 5, - 1, - 2, - 1, - 11, - 2, - 2, - 4, - 7, - 2, - 6, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 3, - 2, - 4, - 1, - 3, - 2, - 1, - 9, - 4, - 6, - 5, - 1, - 5, - 1, - 1, - 3, - 1, - 2, - 2, - 3, - 4, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 10, - 4, - 9, - 2, - 2, - 1, - 2, - 6, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 7, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 4, - 1, - 4, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 10, - 14, - 1, - 2, - 1, - 1, - 1, - 3, - 7, - 6, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 9, - 2, - 2, - 1, - 3, - 4, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 4, - 6, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 5, - 1, - 1, - 1, - 6, - 3, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 5, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 2, - 1, - 3, - 2, - 5, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 4, - 11, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 6, - 1, - 2, - 2, - 1, - 2, - 5, - 3, - 1, - 11, - 11, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 2, - 1, - 1, - 3, - 2, - 1, - 3, - 1, - 5, - 3, - 5, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 3, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 8, - 1, - 8, - 1, - 1, - 8, - 12, - 2, - 1, - 1, - 8, - 2, - 1, - 8, - 1, - 1, - 1, - 6, - 2, - 5, - 7, - 3, - 1, - 3, - 1, - 3, - 2, - 5, - 2, - 1, - 3, - 4, - 2, - 1, - 2, - 2, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 5, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 5, - 5, - 5, - 7, - 5, - 2, - 1, - 4, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 8, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 6, - 1, - 1, - 11, - 1, - 2, - 1, - 1, - 12, - 1, - 2, - 2, - 4, - 5, - 3, - 1, - 5, - 5, - 1, - 1, - 4, - 1, - 3, - 11, - 7, - 1, - 2, - 2, - 7, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 5, - 5, - 1, - 4, - 3, - 1, - 1, - 11, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 2, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 8, - 6, - 1, - 4, - 1, - 5, - 1, - 3, - 4, - 1, - 2, - 1, - 1, - 1, - 3, - 7, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 3, - 1, - 5, - 1, - 11, - 1, - 1, - 1, - 8, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 5, - 1, - 5, - 3, - 7, - 1, - 1, - 3, - 11, - 4, - 5, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 14, - 5, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 12, - 1, - 1, - 2, - 9, - 3, - 4, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 10, - 2, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 10, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 8, - 5, - 4, - 4, - 2, - 1, - 1, - 1, - 7, - 3, - 2, - 3, - 1, - 3, - 11, - 1, - 2, - 6, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 24, - 1, - 14, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 2, - 2, - 7, - 5, - 1, - 1, - 1, - 3, - 1, - 8, - 1, - 1, - 1, - 1, - 3, - 1, - 8, - 5, - 1, - 7, - 1, - 2, - 12, - 8, - 8, - 7, - 1, - 5, - 5, - 5, - 2, - 7, - 4, - 13, - 1, - 2, - 4, - 5, - 1, - 5, - 3, - 1, - 2, - 1, - 3, - 2, - 1, - 7, - 1, - 6, - 3, - 1, - 1, - 1, - 6, - 8, - 1, - 9, - 1, - 1, - 3, - 6, - 1, - 2, - 2, - 1, - 1, - 3, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 3, - 2, - 1, - 3, - 1, - 1, - 11, - 1, - 1, - 12, - 1, - 5, - 1, - 1, - 1, - 1, - 8, - 1, - 3, - 1, - 2, - 3, - 2, - 6, - 9, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 2, - 1, - 3, - 2, - 1, - 2, - 3, - 3, - 2, - 1, - 19, - 5, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 8, - 4, - 9, - 1, - 3, - 6, - 1, - 1, - 8, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 14, - 1, - 1, - 1, - 1, - 10, - 11, - 1, - 1, - 1, - 11, - 8, - 1, - 2, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 9, - 2, - 1, - 3, - 1, - 1, - 4, - 4, - 2, - 2, - 3, - 2, - 5, - 4, - 1, - 2, - 3, - 2, - 1, - 1, - 5, - 5, - 5, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 7, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 5, - 9, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 5, - 3, - 2, - 11, - 1, - 3, - 3, - 2, - 7, - 2, - 2, - 2, - 1, - 2, - 7, - 1, - 2, - 3, - 5, - 1, - 1, - 7, - 2, - 1, - 2, - 2, - 1, - 1, - 13, - 2, - 6, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 6, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 2, - 1, - 1, - 15, - 7, - 1, - 2, - 1, - 1, - 10, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 2, - 1, - 2, - 1, - 1, - 10, - 3, - 11, - 3, - 1, - 2, - 1, - 1, - 2, - 4, - 1, - 5, - 2, - 7, - 1, - 1, - 1, - 1, - 14, - 5, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 4, - 4, - 9, - 33, - 1, - 1, - 9, - 9, - 6, - 1, - 1, - 1, - 2, - 1, - 2, - 11, - 1, - 3, - 2, - 12, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 3, - 4, - 4, - 8, - 1, - 2, - 1, - 1, - 1, - 7, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 6, - 2, - 2, - 14, - 5, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 3, - 1, - 6, - 5, - 5, - 9, - 5, - 1, - 9, - 7, - 1, - 1, - 1, - 8, - 17, - 2, - 12, - 13, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 4, - 10, - 4, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 5, - 7, - 3, - 3, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 10, - 4, - 1, - 1, - 2, - 1, - 13, - 2, - 1, - 2, - 2, - 2, - 12, - 2, - 8, - 1, - 1, - 6, - 1, - 6, - 6, - 5, - 4, - 1, - 3, - 4, - 1, - 1, - 1, - 4, - 1, - 4, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 4, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 6, - 2, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 2, - 3, - 6, - 1, - 2, - 2, - 2, - 1, - 4, - 1, - 3, - 2, - 1, - 17, - 4, - 1, - 2, - 2, - 2, - 17, - 1, - 2, - 1, - 1, - 14, - 2, - 8, - 1, - 1, - 1, - 8, - 1, - 3, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 3, - 2, - 1, - 3, - 1, - 1, - 3, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 2, - 1, - 6, - 4, - 3, - 4, - 10, - 7, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 3, - 15, - 7, - 1, - 7, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 3, - 2, - 1, - 3, - 5, - 2, - 1, - 1, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 1, - 3, - 3, - 4, - 1, - 1, - 4, - 5, - 3, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 8, - 2, - 1, - 3, - 1, - 7, - 5, - 4, - 1, - 3, - 2, - 1, - 6, - 2, - 2, - 1, - 2, - 4, - 6, - 3, - 5, - 1, - 1, - 13, - 8, - 2, - 1, - 3, - 1, - 5, - 6, - 2, - 2, - 1, - 5, - 5, - 1, - 2, - 2, - 15, - 2, - 2, - 3, - 8, - 13, - 2, - 6, - 1, - 1, - 2, - 2, - 1, - 1, - 8, - 5, - 2, - 0, - 2, - 8, - 1, - 2, - 1, - 8, - 1, - 9, - 1, - 4, - 3, - 6, - 1, - 1, - 1, - 8, - 3, - 1, - 1, - 2, - 1, - 5, - 8, - 1, - 5, - 2, - 9, - 3, - 1, - 1, - 7, - 1, - 1, - 1, - 8, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 8, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 8, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 3, - 14, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 6, - 2, - 8, - 1, - 1, - 6, - 7, - 2, - 3, - 8, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 19, - 8, - 13, - 13, - 7, - 5, - 7, - 5, - 6, - 7, - 7, - 7, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 9, - 13, - 1, - 6, - 7, - 7, - 15, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 4, - 4, - 5, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 9, - 8, - 8, - 4, - 1, - 6, - 2, - 1, - 3, - 4, - 1, - 3, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 11, - 2, - 14, - 1, - 1, - 1, - 5, - 7, - 9, - 1, - 1, - 10, - 3, - 3, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 3, - 1, - 4, - 8, - 8, - 1, - 12, - 4, - 1, - 6, - 5, - 1, - 1, - 2, - 1, - 2, - 2, - 7, - 1, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 4, - 1, - 6, - 2, - 3, - 2, - 2, - 1, - 2, - 1, - 4, - 1, - 1, - 3, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 9, - 1, - 1, - 1, - 10, - 3, - 6, - 1, - 3, - 1, - 4, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 16, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 4, - 6, - 1, - 1, - 1, - 3, - 2, - 1, - 2, - 2, - 1, - 4, - 1, - 5, - 4, - 4, - 2, - 3, - 3, - 1, - 1, - 1, - 1, - 4, - 2, - 8, - 2, - 2, - 1, - 3, - 3, - 6, - 1, - 1, - 3, - 1, - 5, - 1, - 1, - 6, - 1, - 1, - 5, - 5, - 8, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 6, - 2, - 2, - 1, - 7, - 2, - 7, - 7, - 1, - 1, - 4, - 4, - 15, - 1, - 13, - 2, - 2, - 2, - 7, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 14, - 2, - 14, - 2, - 4, - 1, - 10, - 6, - 12, - 5, - 2, - 8, - 7, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 4, - 1, - 1, - 1, - 2, - 3, - 2, - 5, - 1, - 1, - 9, - 9, - 9, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 3, - 8, - 1, - 8, - 1, - 3, - 4, - 4, - 3, - 3, - 2, - 4, - 1, - 2, - 2, - 2, - 3, - 7, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 8, - 1, - 2, - 1, - 3, - 4, - 2, - 7, - 2, - 1, - 2, - 1, - 1, - 3, - 5, - 3, - 7, - 3, - 6, - 2, - 3 - ], - "total": 7472, - "totalUnique": 26, - "unique": { - "0": 1, - "1": 4139, - "2": 1294, - "3": 715, - "4": 370, - "5": 321, - "6": 151, - "7": 108, - "8": 107, - "9": 74, - "10": 57, - "11": 42, - "12": 24, - "13": 19, - "14": 19, - "15": 12, - "16": 3, - "17": 4, - "18": 1, - "19": 3, - "20": 2, - "21": 1, - "23": 1, - "24": 2, - "31": 1, - "33": 1 - }, - "uniquenessRatio": 0.0034796573875802996 - } - }, - "selectors": { - "total": 10653, - "totalUnique": 8627, - "uniquenessRatio": 0.8098188303764198, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 2, - 4, - 1 - ], - "sum": [ - 674, - 22301, - 6039 - ], - "mean": [ - 0.06326856284614663, - 2.0934009199286585, - 0.5668825682906223 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 1, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 2, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 1, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 2, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 1, - 1, - 3 - ], - [ - 1, - 1, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 4, - 6 - ], - [ - 0, - 4, - 6 - ], - [ - 0, - 4, - 6 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 5, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 5 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 5 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 5 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 8, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 8, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 8, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 1, - 5, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 1, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 1, - 5, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 1, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 1, - 5, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 5, - 1 - ], - [ - 1, - 5, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 2 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 2, - 6 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 2, - 0, - 0 - ], - [ - 2, - 0, - 1 - ], - [ - 2, - 0, - 2 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 4, - 0 - ], - [ - 2, - 4, - 0 - ], - [ - 2, - 4, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 1, - 1 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 1 - ], - [ - 1, - 4, - 2 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 2, - 1, - 1 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 4, - 0 - ], - [ - 2, - 4, - 1 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 1, - 1 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 1, - 1 - ], - [ - 2, - 1, - 1 - ], - [ - 2, - 1, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 2, - 1 - ], - [ - 2, - 2, - 1 - ], - [ - 2, - 2, - 1 - ], - [ - 2, - 3, - 0 - ], - [ - 2, - 3, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 3, - 2 - ], - [ - 1, - 3, - 2 - ], - [ - 1, - 4, - 2 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 1, - 2 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 2, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 2, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 1, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 1, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 2 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 3, - 2 - ], - [ - 1, - 3, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 1, - 3, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 2, - 0, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 5, - 4 - ], - [ - 0, - 5, - 4 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 4 - ], - [ - 0, - 5, - 4 - ], - [ - 0, - 5, - 4 - ], - [ - 0, - 5, - 4 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 2, - 0, - 0 - ], - [ - 2, - 2, - 0 - ], - [ - 2, - 1, - 1 - ], - [ - 2, - 1, - 2 - ], - [ - 2, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 2, - 0, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 0, - 3 - ], - [ - 1, - 0, - 3 - ], - [ - 1, - 0, - 3 - ], - [ - 1, - 0, - 3 - ], - [ - 1, - 0, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 2 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 8, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 6, - 3 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 4, - 4 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 1, - 5 - ], - [ - 0, - 3, - 4 - ], - [ - 0, - 3, - 5 - ], - [ - 0, - 2, - 5 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 0 - ] - ], - "total": 10653, - "totalUnique": 77, - "unique": { - "0,0,1": 211, - "0,1,1": 1214, - "0,1,0": 2458, - "0,1,2": 169, - "0,0,2": 33, - "0,0,0": 4, - "0,2,0": 1687, - "0,3,0": 1034, - "0,2,2": 192, - "0,2,1": 775, - "0,0,3": 6, - "0,1,3": 48, - "0,2,4": 34, - "0,3,3": 102, - "0,2,3": 100, - "0,3,2": 137, - "0,3,1": 420, - "0,4,0": 473, - "0,5,0": 206, - "0,6,0": 71, - "0,4,1": 174, - "0,4,2": 64, - "0,5,2": 50, - "0,5,1": 81, - "0,6,1": 59, - "0,7,2": 13, - "0,8,3": 17, - "0,6,3": 19, - "0,4,3": 59, - "1,0,0": 14, - "1,1,0": 124, - "1,2,0": 134, - "1,3,0": 75, - "1,2,1": 39, - "0,7,0": 11, - "0,8,0": 4, - "0,0,4": 4, - "0,1,4": 14, - "1,4,0": 37, - "1,1,2": 7, - "2,1,2": 3, - "1,1,1": 31, - "0,6,2": 14, - "0,7,1": 15, - "0,8,1": 4, - "0,5,3": 14, - "1,1,3": 2, - "0,1,5": 8, - "0,4,6": 3, - "1,3,1": 29, - "1,4,1": 16, - "1,5,0": 12, - "0,3,4": 3, - "0,3,5": 4, - "1,0,1": 5, - "0,8,2": 4, - "1,5,1": 5, - "1,5,2": 2, - "1,2,2": 2, - "0,2,5": 10, - "0,2,6": 1, - "2,0,0": 4, - "2,0,1": 2, - "2,0,2": 1, - "2,1,0": 9, - "2,2,0": 15, - "2,3,0": 13, - "2,4,0": 4, - "2,1,1": 6, - "2,2,1": 5, - "1,4,2": 2, - "2,4,1": 1, - "2,3,1": 1, - "1,3,2": 5, - "0,4,4": 14, - "0,5,4": 6, - "1,0,3": 5 - }, - "uniquenessRatio": 0.007228010888951469 - }, - "complexity": { - "min": 1, - "max": 19, - "mean": 3.972777621327326, - "mode": 1, - "range": 18, - "sum": 42322, - "total": 10653, - "totalUnique": 19, - "unique": { - "1": 2666, - "2": 1131, - "3": 2178, - "4": 944, - "5": 1242, - "6": 473, - "7": 712, - "8": 366, - "9": 301, - "10": 248, - "11": 114, - "12": 118, - "13": 78, - "14": 37, - "15": 10, - "16": 23, - "17": 4, - "18": 5, - "19": 3 - }, - "uniquenessRatio": 0.0017835351544165962, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 2, - 4, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 7, - 5, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 1, - 1, - 4, - 4, - 4, - 3, - 3, - 3, - 4, - 4, - 4, - 1, - 2, - 4, - 4, - 4, - 5, - 5, - 5, - 4, - 4, - 4, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 10, - 10, - 10, - 10, - 9, - 9, - 5, - 3, - 7, - 7, - 7, - 7, - 7, - 7, - 1, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 6, - 5, - 5, - 5, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 9, - 8, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 9, - 8, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 9, - 8, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 9, - 8, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 9, - 8, - 9, - 9, - 1, - 1, - 3, - 9, - 9, - 9, - 9, - 9, - 9, - 3, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 4, - 4, - 4, - 1, - 1, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 4, - 2, - 4, - 2, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 1, - 1, - 3, - 3, - 6, - 6, - 4, - 4, - 4, - 4, - 2, - 2, - 4, - 4, - 4, - 4, - 6, - 6, - 1, - 2, - 2, - 1, - 2, - 3, - 2, - 3, - 4, - 5, - 4, - 3, - 1, - 2, - 3, - 2, - 3, - 4, - 5, - 4, - 3, - 1, - 3, - 1, - 5, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 4, - 3, - 3, - 5, - 6, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 1, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 5, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 1, - 2, - 2, - 2, - 4, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 5, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 4, - 4, - 4, - 1, - 2, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 5, - 6, - 6, - 5, - 6, - 6, - 5, - 6, - 6, - 6, - 6, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 3, - 5, - 3, - 3, - 1, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 9, - 4, - 8, - 6, - 5, - 3, - 9, - 9, - 8, - 9, - 4, - 4, - 5, - 5, - 4, - 5, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 6, - 6, - 9, - 9, - 8, - 9, - 1, - 3, - 3, - 5, - 5, - 8, - 8, - 10, - 10, - 1, - 3, - 3, - 4, - 3, - 3, - 5, - 4, - 4, - 6, - 5, - 5, - 7, - 4, - 4, - 6, - 3, - 3, - 5, - 4, - 4, - 6, - 5, - 5, - 7, - 4, - 4, - 6, - 3, - 1, - 1, - 7, - 5, - 5, - 1, - 1, - 1, - 2, - 2, - 5, - 5, - 4, - 2, - 4, - 6, - 4, - 8, - 8, - 2, - 4, - 2, - 8, - 6, - 4, - 6, - 4, - 2, - 1, - 3, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 5, - 6, - 6, - 6, - 7, - 7, - 5, - 6, - 6, - 3, - 7, - 1, - 3, - 5, - 6, - 6, - 7, - 7, - 2, - 4, - 6, - 6, - 4, - 6, - 6, - 6, - 7, - 7, - 6, - 6, - 7, - 7, - 3, - 5, - 5, - 6, - 7, - 7, - 3, - 5, - 1, - 3, - 5, - 5, - 3, - 5, - 1, - 5, - 5, - 6, - 6, - 5, - 5, - 6, - 6, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 5, - 5, - 1, - 2, - 3, - 5, - 1, - 1, - 5, - 5, - 7, - 9, - 9, - 10, - 10, - 1, - 3, - 5, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 5, - 3, - 4, - 1, - 5, - 7, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 4, - 3, - 7, - 8, - 8, - 7, - 8, - 8, - 7, - 8, - 8, - 3, - 4, - 4, - 5, - 3, - 3, - 7, - 8, - 8, - 11, - 12, - 12, - 11, - 12, - 12, - 11, - 12, - 12, - 3, - 4, - 3, - 4, - 4, - 5, - 5, - 7, - 7, - 1, - 3, - 4, - 4, - 3, - 7, - 8, - 8, - 7, - 8, - 8, - 7, - 8, - 8, - 3, - 4, - 4, - 5, - 3, - 3, - 7, - 8, - 8, - 9, - 9, - 11, - 12, - 12, - 11, - 12, - 12, - 11, - 12, - 12, - 3, - 4, - 3, - 4, - 4, - 5, - 5, - 7, - 7, - 1, - 3, - 6, - 3, - 1, - 3, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 6, - 6, - 5, - 6, - 6, - 5, - 6, - 6, - 5, - 6, - 6, - 5, - 5, - 6, - 6, - 6, - 6, - 5, - 5, - 6, - 6, - 6, - 6, - 1, - 3, - 5, - 5, - 6, - 6, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 5, - 1, - 3, - 3, - 2, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 2, - 3, - 5, - 3, - 3, - 3, - 4, - 7, - 3, - 5, - 7, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 5, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 5, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 2, - 4, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 2, - 2, - 3, - 3, - 4, - 5, - 5, - 4, - 5, - 5, - 2, - 3, - 3, - 4, - 6, - 6, - 5, - 7, - 7, - 5, - 7, - 7, - 4, - 5, - 5, - 1, - 2, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 1, - 2, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 1, - 2, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 1, - 2, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 5, - 3, - 3, - 5, - 1, - 3, - 5, - 5, - 7, - 7, - 9, - 7, - 9, - 10, - 6, - 3, - 5, - 3, - 5, - 7, - 5, - 7, - 7, - 4, - 13, - 13, - 10, - 10, - 16, - 16, - 16, - 16, - 13, - 13, - 13, - 13, - 16, - 16, - 16, - 16, - 13, - 13, - 13, - 13, - 7, - 4, - 13, - 13, - 10, - 10, - 16, - 16, - 16, - 16, - 13, - 13, - 13, - 13, - 16, - 16, - 16, - 16, - 13, - 13, - 13, - 13, - 5, - 5, - 5, - 5, - 11, - 11, - 3, - 5, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 3, - 1, - 3, - 5, - 3, - 7, - 7, - 3, - 7, - 1, - 3, - 7, - 5, - 7, - 1, - 3, - 7, - 5, - 7, - 1, - 3, - 7, - 5, - 7, - 1, - 3, - 7, - 5, - 7, - 1, - 3, - 7, - 5, - 7, - 1, - 3, - 7, - 5, - 7, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 4, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 5, - 7, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 4, - 3, - 4, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 1, - 1, - 3, - 7, - 5, - 3, - 5, - 4, - 5, - 4, - 4, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 3, - 5, - 5, - 1, - 5, - 7, - 5, - 1, - 1, - 3, - 3, - 5, - 7, - 7, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 5, - 5, - 3, - 4, - 4, - 4, - 5, - 3, - 6, - 5, - 6, - 6, - 5, - 5, - 5, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 5, - 4, - 4, - 3, - 3, - 3, - 5, - 5, - 3, - 5, - 6, - 2, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 3, - 1, - 1, - 3, - 3, - 4, - 4, - 3, - 5, - 6, - 3, - 5, - 5, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 2, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 5, - 5, - 3, - 4, - 4, - 2, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 2, - 2, - 3, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 2, - 3, - 1, - 3, - 3, - 4, - 4, - 1, - 3, - 3, - 1, - 3, - 5, - 5, - 1, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 3, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 5, - 7, - 3, - 5, - 3, - 5, - 7, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 3, - 5, - 2, - 1, - 1, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 4, - 6, - 8, - 3, - 5, - 7, - 5, - 5, - 5, - 5, - 6, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 9, - 11, - 13, - 15, - 4, - 3, - 3, - 4, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 4, - 6, - 8, - 5, - 5, - 3, - 4, - 5, - 5, - 5, - 5, - 6, - 7, - 7, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 5, - 4, - 3, - 4, - 1, - 1, - 1, - 3, - 3, - 4, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 4, - 5, - 7, - 7, - 5, - 6, - 7, - 7, - 8, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 3, - 3, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 2, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 2, - 5, - 5, - 6, - 6, - 7, - 7, - 7, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 1, - 6, - 6, - 8, - 8, - 13, - 13, - 13, - 13, - 3, - 6, - 6, - 7, - 7, - 7, - 7, - 1, - 2, - 2, - 2, - 1, - 3, - 2, - 1, - 2, - 3, - 7, - 8, - 7, - 8, - 8, - 9, - 8, - 9, - 8, - 9, - 8, - 9, - 1, - 3, - 1, - 3, - 2, - 4, - 3, - 4, - 8, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 3, - 1, - 3, - 1, - 1, - 4, - 3, - 4, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 10, - 3, - 11, - 3, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 1, - 5, - 4, - 1, - 3, - 3, - 5, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 4, - 3, - 5, - 7, - 2, - 2, - 2, - 2, - 2, - 6, - 7, - 6, - 4, - 4, - 4, - 4, - 2, - 4, - 6, - 12, - 12, - 4, - 4, - 5, - 2, - 4, - 4, - 4, - 6, - 2, - 4, - 6, - 10, - 10, - 7, - 4, - 6, - 6, - 4, - 4, - 2, - 4, - 2, - 2, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 8, - 3, - 3, - 5, - 5, - 3, - 7, - 6, - 3, - 5, - 5, - 7, - 5, - 5, - 5, - 3, - 5, - 3, - 5, - 6, - 5, - 7, - 9, - 3, - 3, - 5, - 5, - 3, - 7, - 6, - 3, - 5, - 5, - 7, - 5, - 5, - 5, - 3, - 5, - 3, - 5, - 6, - 5, - 7, - 9, - 2, - 2, - 4, - 4, - 2, - 6, - 5, - 2, - 4, - 4, - 6, - 4, - 4, - 4, - 2, - 4, - 2, - 4, - 5, - 4, - 6, - 8, - 2, - 2, - 4, - 4, - 2, - 6, - 5, - 2, - 4, - 4, - 6, - 4, - 4, - 4, - 2, - 4, - 2, - 4, - 5, - 4, - 6, - 8, - 1, - 2, - 2, - 2, - 2, - 2, - 6, - 13, - 13, - 5, - 4, - 2, - 5, - 6, - 4, - 4, - 5, - 4, - 2, - 6, - 6, - 6, - 6, - 4, - 4, - 2, - 2, - 4, - 2, - 4, - 12, - 12, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 14, - 14, - 6, - 4, - 6, - 4, - 4, - 6, - 7, - 2, - 5, - 5, - 2, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 8, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 7, - 4, - 4, - 6, - 2, - 5, - 2, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 10, - 10, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 8, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 8, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 4, - 12, - 2, - 2, - 10, - 10, - 2, - 10, - 1, - 9, - 2, - 2, - 10, - 10, - 2, - 10, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 12, - 12, - 12, - 1, - 1, - 4, - 4, - 4, - 1, - 1, - 12, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 12, - 12, - 12, - 1, - 1, - 1, - 4, - 4, - 4, - 1, - 12, - 1, - 1, - 1, - 4, - 4, - 1, - 12, - 1, - 4, - 1, - 12, - 1, - 4, - 1, - 12, - 1, - 4, - 1, - 12, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 2, - 2, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 5, - 5, - 6, - 6, - 3, - 3, - 4, - 4, - 6, - 6, - 7, - 7, - 6, - 6, - 7, - 7, - 6, - 6, - 7, - 7, - 8, - 8, - 9, - 9, - 8, - 8, - 9, - 9, - 8, - 8, - 9, - 9, - 4, - 4, - 5, - 5, - 4, - 4, - 5, - 5, - 4, - 4, - 5, - 5, - 1, - 1, - 2, - 2, - 6, - 6, - 7, - 7, - 6, - 6, - 7, - 7, - 6, - 6, - 7, - 7, - 8, - 8, - 9, - 9, - 8, - 8, - 9, - 9, - 8, - 8, - 9, - 9, - 4, - 4, - 5, - 5, - 4, - 4, - 5, - 5, - 4, - 4, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 11, - 5, - 6, - 6, - 6, - 8, - 8, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 5, - 7, - 7, - 9, - 9, - 1, - 3, - 5, - 6, - 5, - 5, - 6, - 4, - 7, - 7, - 1, - 3, - 3, - 3, - 5, - 5, - 6, - 4, - 6, - 1, - 3, - 4, - 4, - 4, - 3, - 3, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 4, - 5, - 5, - 4, - 5, - 5, - 2, - 3, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 5, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 4, - 4, - 2, - 2, - 4, - 4, - 2, - 2, - 5, - 5, - 3, - 3, - 5, - 5, - 3, - 3, - 1, - 3, - 3, - 1, - 2, - 3, - 2, - 3, - 2, - 4, - 4, - 5, - 5, - 4, - 6, - 6, - 8, - 8, - 3, - 3, - 8, - 8, - 7, - 7, - 8, - 8, - 8, - 8, - 9, - 9, - 8, - 8, - 8, - 8, - 11, - 11, - 10, - 10, - 10, - 10, - 11, - 11, - 10, - 10, - 10, - 10, - 10, - 10, - 9, - 9, - 9, - 9, - 10, - 10, - 9, - 9, - 9, - 9, - 8, - 8, - 7, - 7, - 1, - 3, - 3, - 3, - 3, - 1, - 5, - 5, - 5, - 5, - 2, - 3, - 4, - 4, - 4, - 5, - 7, - 3, - 5, - 4, - 1, - 3, - 2, - 2, - 4, - 6, - 8, - 8, - 10, - 8, - 10, - 3, - 4, - 6, - 5, - 5, - 7, - 3, - 5, - 3, - 5, - 7, - 9, - 3, - 3, - 3, - 5, - 9, - 5, - 7, - 7, - 5, - 7, - 9, - 5, - 7, - 5, - 5, - 13, - 13, - 4, - 4, - 10, - 10, - 1, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 6, - 8, - 7, - 7, - 8, - 3, - 5, - 7, - 3, - 4, - 4, - 3, - 5, - 2, - 4, - 4, - 1, - 2, - 1, - 2, - 1, - 4, - 8, - 8, - 6, - 8, - 2, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 8, - 8, - 8, - 10, - 10, - 10, - 18, - 18, - 18, - 7, - 7, - 7, - 4, - 4, - 4, - 4, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 5, - 7, - 5, - 7, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 3, - 3, - 5, - 5, - 7, - 6, - 8, - 8, - 7, - 9, - 7, - 9, - 5, - 7, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 8, - 5, - 7, - 7, - 3, - 3, - 3, - 4, - 6, - 8, - 5, - 7, - 2, - 4, - 4, - 4, - 6, - 7, - 8, - 6, - 4, - 6, - 8, - 4, - 6, - 8, - 4, - 5, - 7, - 7, - 3, - 5, - 3, - 4, - 5, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 3, - 1, - 3, - 3, - 1, - 6, - 8, - 9, - 7, - 6, - 12, - 12, - 6, - 7, - 7, - 1, - 4, - 6, - 6, - 1, - 3, - 2, - 2, - 3, - 2, - 3, - 1, - 5, - 6, - 4, - 5, - 5, - 1, - 4, - 5, - 5, - 6, - 3, - 1, - 5, - 1, - 1, - 3, - 5, - 4, - 5, - 6, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 5, - 5, - 1, - 1, - 1, - 5, - 1, - 3, - 3, - 1, - 3, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 6, - 8, - 8, - 10, - 7, - 4, - 3, - 5, - 7, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 5, - 5, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 4, - 2, - 9, - 5, - 6, - 3, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 5, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 3, - 3, - 4, - 4, - 3, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 5, - 4, - 5, - 5, - 7, - 5, - 3, - 5, - 3, - 5, - 5, - 3, - 5, - 5, - 3, - 5, - 5, - 7, - 3, - 3, - 5, - 3, - 5, - 5, - 3, - 3, - 6, - 4, - 6, - 6, - 8, - 3, - 5, - 3, - 5, - 5, - 3, - 5, - 7, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 7, - 9, - 3, - 7, - 5, - 3, - 3, - 5, - 7, - 3, - 1, - 2, - 2, - 2, - 7, - 7, - 2, - 2, - 1, - 8, - 1, - 2, - 1, - 3, - 5, - 6, - 1, - 1, - 1, - 3, - 3, - 5, - 4, - 1, - 1, - 1, - 3, - 3, - 5, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 2, - 5, - 1, - 3, - 5, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 6, - 6, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 5, - 5, - 5, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 7, - 7, - 7, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 10, - 10, - 10, - 7, - 7, - 7, - 9, - 9, - 9, - 5, - 5, - 5, - 7, - 7, - 7, - 8, - 8, - 8, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 9, - 9, - 9, - 11, - 11, - 11, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 9, - 9, - 9, - 9, - 9, - 9, - 10, - 10, - 10, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 11, - 11, - 11, - 4, - 4, - 4, - 1, - 3, - 1, - 3, - 4, - 4, - 4, - 3, - 5, - 7, - 6, - 5, - 2, - 1, - 1, - 1, - 3, - 2, - 4, - 4, - 6, - 4, - 4, - 5, - 5, - 5, - 5, - 2, - 4, - 1, - 5, - 12, - 3, - 7, - 14, - 2, - 6, - 13, - 2, - 6, - 13, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 9, - 5, - 5, - 5, - 3, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 7, - 4, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 7, - 4, - 8, - 3, - 4, - 3, - 1, - 3, - 4, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 4, - 4, - 1, - 4, - 3, - 3, - 5, - 1, - 3, - 3, - 1, - 1, - 5, - 1, - 1, - 3, - 3, - 4, - 4, - 4, - 3, - 1, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 9, - 9, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 4, - 3, - 5, - 7, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 4, - 4, - 6, - 3, - 5, - 4, - 6, - 3, - 4, - 3, - 5, - 5, - 1, - 1, - 1, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 5, - 7, - 7, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 5, - 5, - 7, - 7, - 7, - 3, - 3, - 3, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 3, - 3, - 3, - 7, - 7, - 7, - 9, - 9, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 7, - 7, - 7, - 9, - 9, - 9, - 11, - 11, - 11, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 4, - 3, - 1, - 3, - 4, - 4, - 3, - 4, - 6, - 5, - 5, - 9, - 3, - 4, - 5, - 8, - 5, - 8, - 10, - 7, - 7, - 9, - 9, - 10, - 10, - 10, - 10, - 11, - 11, - 13, - 13, - 9, - 9, - 11, - 11, - 13, - 13, - 7, - 9, - 7, - 11, - 9, - 13, - 10, - 14, - 9, - 13, - 15, - 19, - 15, - 19, - 14, - 18, - 13, - 17, - 5, - 5, - 7, - 7, - 7, - 7, - 9, - 11, - 13, - 9, - 11, - 10, - 10, - 10, - 7, - 9, - 7, - 12, - 12, - 13, - 15, - 10, - 10, - 11, - 13, - 13, - 11, - 11, - 11, - 11, - 3, - 3, - 3, - 5, - 5, - 5, - 12, - 14, - 16, - 14, - 5, - 5, - 7, - 7, - 9, - 5, - 6, - 1, - 1, - 5, - 5, - 3, - 4, - 6, - 6, - 8, - 10, - 10, - 11, - 8, - 9, - 8, - 8, - 10, - 10, - 10, - 10, - 12, - 6, - 8, - 8, - 10, - 6, - 8, - 10, - 8, - 10, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 5, - 7, - 7, - 9, - 6, - 8, - 5, - 7, - 3, - 3, - 3, - 5, - 5, - 6, - 5, - 7, - 5, - 5, - 7, - 3, - 3, - 5, - 6, - 6, - 7, - 5, - 5, - 7, - 8, - 7, - 8, - 3, - 5, - 7, - 8, - 3, - 3, - 3, - 3, - 3, - 5, - 9, - 5, - 7, - 5, - 7, - 5, - 7, - 8, - 7, - 7, - 9, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 3, - 4, - 4, - 5, - 3, - 7, - 3, - 5, - 5, - 6, - 6, - 7, - 7, - 9, - 11, - 11, - 10, - 7, - 13, - 15, - 13, - 3, - 5, - 7, - 5, - 7, - 9, - 11, - 13, - 14, - 4, - 4, - 5, - 7, - 6, - 6, - 6, - 6, - 5, - 5, - 7, - 7, - 7, - 9, - 9, - 11, - 11, - 12, - 12, - 13, - 13, - 14, - 14, - 13, - 13, - 14, - 13, - 15, - 16, - 11, - 10, - 1, - 1, - 3, - 3, - 4, - 3, - 5, - 5, - 6, - 7, - 9, - 5, - 3, - 3, - 7, - 8, - 7, - 7, - 5, - 7, - 8, - 8, - 5, - 5, - 5, - 7, - 10, - 12, - 5, - 6, - 6, - 8, - 5, - 7, - 6, - 8, - 7, - 9, - 8, - 10, - 10, - 12, - 7, - 9, - 8, - 10, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 6, - 9, - 9, - 10, - 9, - 13, - 14, - 11, - 11, - 11, - 13, - 15, - 17, - 13, - 9, - 6, - 8, - 9, - 11, - 1, - 3, - 5, - 5, - 5, - 8, - 16, - 8, - 16, - 3, - 3, - 5, - 5, - 5, - 7, - 9, - 5, - 5, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 10, - 5, - 5, - 5, - 9, - 11, - 1, - 4, - 3, - 3, - 4, - 4, - 2, - 2, - 4, - 1, - 1, - 4, - 3, - 3, - 2, - 4, - 1, - 2, - 1, - 1, - 3, - 5, - 5, - 3, - 5, - 5, - 10, - 7, - 7, - 8, - 4, - 4, - 4, - 7, - 7, - 7, - 9, - 11, - 10, - 14, - 12, - 13, - 14, - 12, - 12, - 12, - 13, - 12, - 7, - 9, - 9, - 12, - 11, - 12, - 7, - 7, - 9, - 11, - 8, - 10, - 10, - 12, - 10, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 13, - 13, - 12, - 12, - 12, - 12, - 11, - 11, - 11, - 11, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 5, - 5, - 7, - 7, - 9, - 9, - 10, - 10, - 10, - 10, - 12, - 12, - 10, - 10, - 11, - 11, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 6, - 3, - 10, - 7, - 10, - 7, - 12, - 9, - 10, - 7, - 6, - 10, - 10, - 12, - 10, - 6, - 10, - 10, - 12, - 10, - 3, - 3, - 1, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 5, - 3, - 13, - 11, - 6, - 4, - 14, - 12, - 6, - 4, - 14, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 2, - 4, - 3, - 3, - 7, - 7, - 8, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 3, - 2, - 3, - 4, - 4, - 1, - 1, - 3, - 3, - 4, - 5, - 7, - 1, - 3, - 3, - 3, - 4, - 1, - 3, - 3, - 3, - 4, - 1, - 3, - 3, - 3, - 4, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 6, - 7, - 7, - 7, - 7, - 7, - 9, - 10, - 9, - 5, - 7, - 9, - 8, - 8, - 16, - 10, - 6, - 3, - 5, - 3, - 5, - 3, - 5, - 3, - 5, - 3, - 5, - 3, - 5, - 5, - 6, - 7, - 3, - 3, - 5, - 5, - 7, - 3, - 3, - 3, - 2, - 4, - 6, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 4, - 4, - 5, - 4, - 4, - 1, - 2, - 4, - 5, - 7, - 7, - 7, - 4, - 4, - 4, - 6, - 4, - 4, - 6, - 4, - 6, - 6, - 4, - 6, - 6, - 4, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 10, - 10, - 12, - 12, - 13, - 13, - 12, - 12, - 13, - 13, - 12, - 12, - 5, - 3, - 3, - 7, - 9, - 3, - 3, - 5, - 5, - 7, - 7, - 7, - 9, - 10, - 12, - 12, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 4, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 6, - 6, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 8, - 5, - 6, - 5, - 5, - 1, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 7, - 7, - 1, - 3, - 3, - 3, - 4, - 1, - 3, - 1, - 5, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 5, - 1, - 3, - 3, - 3, - 6, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 5, - 7, - 1, - 1, - 3, - 5, - 1, - 3, - 1, - 4, - 6, - 9, - 8, - 9, - 1, - 1, - 3, - 3, - 3, - 5, - 1, - 2, - 3, - 4, - 4, - 5, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 6, - 6, - 3, - 3, - 6, - 3, - 5, - 5, - 6, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 3, - 3, - 5, - 5, - 5, - 1, - 1, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 5, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 3, - 5, - 3, - 3, - 7, - 3, - 3, - 7, - 7, - 3, - 3, - 5, - 5, - 6, - 5, - 5, - 7, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 4, - 4, - 1, - 3, - 3, - 5, - 7, - 8, - 1, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 4, - 4, - 1, - 3, - 3, - 3, - 5, - 7, - 7, - 7, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 3, - 3, - 3, - 5, - 6, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 7, - 9, - 9, - 9, - 5, - 5, - 6, - 5, - 3, - 5, - 7, - 8, - 5, - 5, - 5, - 3, - 5, - 5, - 7, - 3, - 1, - 3, - 4, - 4, - 4, - 3, - 6, - 6, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 3, - 5, - 5, - 7, - 7, - 7, - 7, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 4, - 3, - 4, - 5, - 6, - 5, - 5, - 5, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 4, - 4, - 1, - 3, - 3, - 5, - 1, - 3, - 4, - 5, - 5, - 1, - 4, - 3, - 3, - 4, - 4, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 1, - 1, - 1, - 3, - 4, - 1, - 5, - 2, - 3, - 5, - 3, - 2, - 4, - 5, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 5, - 1, - 1, - 3, - 1, - 3, - 3, - 5, - 3, - 4, - 1, - 2, - 4, - 3, - 3, - 1, - 3, - 4, - 3, - 5, - 7, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 5, - 7, - 1, - 3, - 1, - 1, - 1, - 4, - 4, - 1, - 3, - 4, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 6, - 1, - 3, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 7, - 8, - 10, - 11, - 10, - 5, - 5, - 7, - 7, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 7, - 3, - 5, - 5, - 7, - 9, - 8, - 10, - 8, - 10, - 6, - 8, - 2, - 3, - 3, - 5, - 5, - 1, - 3, - 5, - 3, - 5, - 5, - 5, - 7, - 6, - 8, - 6, - 8, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 5, - 6, - 6, - 6, - 6, - 7, - 7, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 4, - 7, - 7, - 7, - 7, - 3, - 5, - 5, - 1, - 3, - 3, - 3, - 7, - 8, - 7, - 9, - 12, - 11, - 15, - 1, - 1, - 4, - 3, - 4, - 7, - 1, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 4, - 4, - 5, - 5, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 4, - 3, - 5, - 3, - 5, - 3, - 3, - 3, - 5, - 3, - 5, - 5, - 3, - 5, - 3, - 4, - 1, - 1, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 7, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 4, - 4, - 3, - 3, - 5, - 5, - 3, - 5, - 3, - 3, - 5, - 6, - 3, - 5, - 3, - 3, - 5, - 5, - 7, - 5, - 5, - 6, - 6, - 6, - 5, - 3, - 5, - 6, - 5, - 5, - 5, - 6, - 8, - 8, - 8, - 8, - 8, - 6, - 8, - 8, - 8, - 6, - 10, - 10, - 10, - 8, - 8, - 7, - 7, - 7, - 7, - 7, - 9, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 5, - 3, - 5, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 6, - 10, - 10, - 12, - 7, - 7, - 8, - 8, - 8, - 8, - 5, - 3, - 3, - 3, - 3, - 7, - 5, - 7, - 7, - 7, - 7, - 7, - 8, - 10, - 12, - 7, - 9, - 5, - 5, - 7, - 5, - 7, - 7, - 5, - 7, - 9, - 7, - 7, - 8, - 10, - 3, - 3, - 4, - 5, - 6, - 7, - 10, - 10, - 12, - 3, - 6, - 7, - 7, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 7, - 7, - 5, - 3, - 5, - 6, - 3, - 3, - 5, - 3, - 3, - 5, - 3, - 5, - 5, - 5, - 7, - 5, - 5, - 3, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 2, - 2, - 1, - 3, - 3, - 3, - 4, - 5, - 5, - 5, - 6, - 8, - 7, - 7, - 6, - 6, - 7, - 8, - 6, - 7, - 7, - 7, - 8, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 3, - 5, - 5, - 1, - 4, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 4, - 1, - 1, - 3, - 3, - 5, - 3, - 5, - 7, - 9, - 9, - 9, - 9, - 8, - 10, - 10, - 8, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 3, - 3, - 1, - 1, - 4, - 5, - 1, - 3, - 1, - 1, - 1, - 2, - 3, - 3, - 4, - 3, - 5, - 3, - 3, - 8, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 5, - 6, - 5, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 1, - 3, - 3, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 9, - 9, - 6, - 5, - 3, - 3, - 3, - 4, - 4, - 1, - 3, - 5, - 5, - 7, - 3, - 3, - 3, - 4, - 7, - 9, - 5, - 7, - 7, - 7, - 9, - 5, - 7, - 5, - 7, - 7, - 8, - 7, - 9, - 9, - 11, - 3, - 3, - 3, - 7, - 9, - 11, - 10, - 10, - 12, - 10, - 12, - 13, - 13, - 9, - 9, - 11, - 11, - 9, - 9, - 11, - 11, - 5, - 5, - 7, - 8, - 5, - 7, - 9, - 1, - 3, - 5, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 4, - 4, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 7, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 5, - 6, - 5, - 7, - 8, - 10, - 7, - 8, - 10, - 8, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 4, - 4, - 5, - 5, - 7, - 7, - 7, - 7, - 4, - 4, - 3, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 4, - 4, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 5, - 5, - 6, - 6, - 6, - 6, - 9, - 9, - 7, - 7, - 9, - 9, - 8, - 8, - 10, - 10, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 6, - 6, - 6, - 6, - 8, - 8, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 9, - 9, - 11, - 11, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 6, - 6, - 4, - 4, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 4, - 5, - 3, - 1, - 1, - 2, - 4, - 4, - 6, - 8, - 10, - 6, - 6, - 6, - 8, - 8, - 9, - 10, - 10, - 10, - 13, - 8, - 4, - 6, - 8, - 8, - 9, - 9, - 9, - 6, - 6, - 6, - 6, - 6, - 7, - 8, - 8, - 6, - 10, - 10, - 8, - 8, - 8, - 8, - 8, - 10, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 6, - 6, - 2, - 9, - 6, - 6, - 8, - 8, - 4, - 8, - 8, - 6, - 10, - 11, - 11, - 11, - 15, - 4, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 6, - 8, - 6, - 6, - 1, - 2, - 2, - 2, - 7, - 9, - 10, - 10, - 9, - 9, - 9, - 9, - 9, - 9, - 11, - 11, - 1, - 7, - 9, - 9, - 11, - 11, - 1, - 1, - 4, - 4, - 4, - 5, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 8, - 8, - 5, - 7, - 3, - 3, - 3, - 5, - 13, - 3, - 3, - 8, - 16, - 6, - 4, - 4, - 4, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 7, - 8, - 8, - 5, - 7, - 7, - 7, - 5, - 5, - 7, - 5, - 7, - 7, - 7, - 9, - 11, - 9, - 9, - 9, - 9, - 12, - 12, - 12, - 12, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 14, - 10, - 10, - 12, - 12, - 14, - 14, - 13, - 13, - 14, - 14, - 13, - 13, - 14, - 14, - 14, - 14, - 11, - 8, - 9, - 8, - 10, - 12, - 12, - 13, - 10, - 5, - 5, - 7, - 8, - 9, - 9, - 10, - 10, - 10, - 10, - 10, - 5, - 7, - 7, - 9, - 9, - 9, - 9, - 5, - 6, - 5, - 7, - 11, - 5, - 5, - 9, - 6, - 6, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 7, - 7, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 7, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 8, - 8, - 10, - 10, - 12, - 12, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 7, - 7, - 7, - 7, - 9, - 9, - 11, - 11, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 10, - 10, - 9, - 9, - 10, - 10, - 7, - 7, - 5, - 5, - 5, - 5, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 5, - 3, - 7, - 9, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 1, - 2, - 3, - 4, - 5, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 5, - 7, - 6, - 8, - 4, - 6, - 8, - 1, - 1, - 3, - 2, - 4, - 3, - 3, - 5, - 3, - 3, - 3, - 4, - 1, - 3, - 3, - 4, - 5, - 3, - 6, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 4, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 7, - 9, - 9, - 3, - 5, - 1, - 1, - 3, - 3, - 3, - 5, - 7, - 3, - 3, - 5, - 5, - 7, - 7, - 7, - 7, - 9, - 8, - 9, - 11, - 9, - 7, - 7, - 7, - 7, - 9, - 10, - 9, - 9, - 9, - 11, - 13, - 9, - 9, - 9, - 9, - 11, - 13, - 7, - 7, - 9, - 11, - 7, - 7, - 9, - 3, - 3, - 3, - 5, - 7, - 7, - 7, - 7, - 9, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 7, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 5, - 7, - 8, - 1, - 1, - 3, - 3, - 3, - 3, - 8, - 8, - 10, - 10, - 12, - 12, - 14, - 14, - 11, - 11, - 4, - 3, - 3, - 6, - 6, - 7, - 7, - 3, - 3, - 5, - 7, - 3, - 1, - 3, - 7, - 7, - 7, - 7, - 7, - 3, - 5, - 5, - 3, - 5, - 7, - 5, - 7, - 7, - 5, - 6, - 8, - 5, - 6, - 7, - 5, - 5, - 5, - 6, - 8, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 4, - 4, - 5, - 3, - 3, - 4, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 5, - 6, - 7, - 7, - 9, - 10, - 9, - 17, - 9, - 17, - 10, - 18, - 11, - 19, - 3, - 3, - 4, - 4, - 5, - 13, - 6, - 14, - 2, - 4, - 2, - 1, - 3, - 3, - 4, - 3, - 3, - 3, - 5, - 5, - 6, - 6, - 1, - 1, - 1, - 1, - 3, - 5, - 7, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 7, - 5, - 9, - 3, - 7, - 7, - 7, - 7, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 5, - 6, - 7, - 7, - 8, - 7, - 9, - 9, - 11, - 10, - 10, - 12, - 9, - 9, - 9, - 9, - 7, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 8, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 4, - 5, - 5, - 5, - 5, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 4, - 7, - 7, - 5, - 4, - 7, - 6, - 8, - 11, - 11, - 7, - 1, - 1, - 5, - 6, - 6, - 6, - 6, - 1, - 1, - 3, - 5, - 3, - 4, - 5, - 3, - 3, - 1, - 3, - 1, - 5, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 3, - 5, - 3, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 5, - 5, - 7, - 9, - 9, - 10, - 11, - 10, - 11, - 11, - 11, - 13, - 15, - 16, - 7, - 9, - 10, - 9, - 13, - 11, - 13, - 7, - 5, - 5, - 7, - 7, - 5, - 7, - 8, - 8, - 8, - 7, - 7, - 9, - 3, - 5, - 7, - 8, - 9, - 11, - 12, - 11, - 1, - 1, - 4, - 6, - 3, - 3, - 3, - 5, - 5, - 7, - 3, - 5, - 3, - 5, - 7, - 3, - 3, - 3, - 2, - 4, - 6, - 8, - 7, - 7, - 7, - 7, - 8, - 6, - 8, - 5, - 6, - 8, - 4, - 6, - 6, - 8, - 1, - 1, - 1, - 3, - 4, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 4, - 1, - 3, - 6, - 6, - 3, - 4, - 1, - 2, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 4, - 1, - 3, - 4, - 3, - 3, - 4, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 4, - 3, - 5, - 3, - 1, - 1, - 4, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 2, - 4, - 2, - 4, - 1, - 2, - 4, - 1, - 2, - 4, - 1, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 6, - 6, - 4, - 3, - 3, - 3, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 2, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 5, - 7, - 5, - 7, - 6, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 3, - 1, - 1, - 1, - 3, - 4, - 4, - 4, - 4, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 6, - 3, - 3, - 3, - 3, - 5, - 6, - 3, - 4, - 4, - 5, - 4, - 6, - 5, - 3, - 5, - 5, - 7, - 7, - 5, - 6, - 5, - 5, - 3, - 3, - 5, - 6, - 7, - 1, - 3, - 4, - 4, - 4, - 4, - 5, - 1, - 3, - 5, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 2, - 3, - 7, - 5, - 6, - 7, - 5, - 5, - 6, - 5, - 3, - 4, - 9, - 11, - 3, - 11, - 5, - 3, - 3, - 4, - 7, - 10, - 5, - 9, - 7, - 8, - 9, - 7, - 7, - 8, - 7, - 3, - 5, - 6, - 5, - 3, - 5, - 7, - 5, - 1, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 3, - 4, - 3, - 5, - 3, - 1, - 1, - 1, - 3, - 4, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 3, - 5, - 5, - 7, - 7, - 3, - 3, - 5, - 7, - 7, - 7, - 2, - 1, - 1, - 3, - 5, - 1, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 1, - 3, - 5, - 5, - 4, - 5, - 7, - 6, - 6, - 6, - 4, - 7, - 10, - 11, - 9, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 6, - 6, - 7, - 7, - 7, - 7, - 8, - 8, - 7, - 7, - 8, - 8, - 8, - 8, - 3, - 5, - 5, - 6, - 6, - 3, - 1, - 4, - 4, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 6, - 3, - 5, - 3, - 5, - 7, - 5, - 5, - 3, - 3, - 5, - 5, - 3, - 3, - 4, - 4, - 1, - 3, - 3, - 3, - 5, - 3, - 3, - 5, - 1, - 3, - 3, - 6, - 3, - 5, - 4, - 6, - 3, - 4, - 5, - 6, - 4, - 1, - 3, - 3, - 3, - 4, - 1, - 5, - 7, - 7, - 7, - 7, - 7, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 7, - 6, - 5, - 5, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 5, - 7, - 9, - 10, - 8, - 8, - 8, - 9, - 9, - 11, - 9, - 5, - 7, - 8, - 9, - 9, - 9, - 9, - 11, - 7, - 8, - 8, - 9, - 9, - 11, - 3, - 5, - 7, - 7, - 7, - 7, - 7, - 5, - 6, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 3, - 3, - 5, - 7, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 1, - 4, - 4, - 4, - 1, - 1, - 2, - 3, - 3, - 1, - 3, - 3, - 1, - 2, - 1, - 2, - 5, - 7, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 3, - 1, - 3, - 8, - 7, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 5, - 3, - 4, - 1, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 6, - 6, - 4, - 3, - 1, - 1, - 1, - 3, - 4, - 4, - 6, - 2, - 4, - 2, - 6, - 6, - 8, - 8, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 3, - 6, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 1, - 3, - 1, - 3, - 5, - 3, - 1, - 1, - 3, - 4, - 6, - 6, - 8, - 6, - 6, - 1, - 1, - 3, - 5, - 5, - 7, - 6, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 7, - 7, - 8, - 9, - 11, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 11, - 14, - 14, - 12, - 11, - 12, - 13, - 12, - 7, - 7, - 7, - 8, - 8, - 3, - 3, - 3, - 4, - 1, - 3, - 4, - 3, - 1, - 2, - 7, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 3, - 6, - 7, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 5, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 5, - 7, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 7, - 3, - 5, - 3, - 3, - 4, - 5, - 3, - 7, - 1, - 1, - 1, - 3, - 5, - 3, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 5, - 5, - 5, - 5, - 5, - 6, - 2, - 2, - 3, - 5, - 5, - 5, - 6, - 7, - 5, - 4, - 4, - 4, - 5, - 6, - 6, - 2, - 4, - 4, - 6, - 5, - 2, - 4, - 3, - 2, - 3, - 5, - 5, - 5, - 4, - 5, - 5, - 7, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 8, - 6, - 8, - 3, - 7, - 7, - 8, - 8, - 7, - 7, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 5, - 6, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 4, - 1, - 1, - 2, - 2, - 4, - 4, - 4, - 4, - 3, - 3, - 4, - 5, - 3, - 3, - 3, - 5, - 7, - 8, - 8, - 8, - 1, - 1, - 2, - 2, - 1, - 2, - 3, - 4, - 6, - 6, - 6, - 6, - 6, - 4, - 1, - 3, - 3, - 3, - 1, - 4, - 5, - 8, - 9, - 4, - 2, - 4, - 6, - 2, - 5, - 4, - 5, - 8, - 9, - 4, - 2, - 6, - 6, - 4, - 3, - 5, - 7, - 3, - 4, - 4, - 5, - 3, - 1, - 5, - 3, - 4, - 3, - 5, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 4, - 4, - 1, - 3, - 3, - 7, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 3, - 5, - 5, - 1, - 3, - 2, - 3, - 3, - 1, - 2, - 3, - 3, - 5, - 1, - 1, - 1, - 3, - 5, - 6, - 1, - 1, - 3, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 6, - 6, - 3, - 6, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 4, - 1, - 4, - 1, - 1, - 3, - 2, - 1, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 5, - 6, - 6, - 6, - 6, - 6, - 8, - 7, - 6, - 6, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 1, - 5, - 3, - 3, - 1, - 2, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 2, - 3, - 5, - 5, - 7, - 5, - 4, - 6, - 4, - 4, - 4, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 4, - 4, - 4, - 4, - 5, - 3, - 1, - 1, - 1, - 2, - 4, - 1, - 3, - 3, - 1, - 1, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 4, - 3, - 3, - 2, - 2, - 3, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 2, - 1, - 2, - 3, - 3, - 1, - 1, - 3, - 5, - 3, - 4, - 4, - 5, - 3, - 4, - 3, - 3, - 1, - 1, - 1, - 1, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 4, - 2, - 4, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 2, - 3, - 3, - 3, - 5, - 3, - 5, - 3, - 3, - 3, - 4, - 5, - 2, - 2, - 6, - 6, - 8, - 6, - 8, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 2, - 2, - 1, - 7, - 7, - 6, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 4, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 2, - 3, - 3, - 3, - 1, - 3, - 6, - 5, - 5, - 6, - 6, - 2, - 2, - 1, - 5, - 2, - 3, - 4, - 3, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 3, - 2, - 1, - 2, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 4, - 3, - 5, - 6, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 8, - 3, - 7, - 7, - 3, - 9, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 11, - 7, - 7, - 7, - 7, - 9, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 9, - 10, - 9, - 7, - 8, - 9, - 5, - 3, - 3, - 3, - 5, - 7, - 6, - 3, - 5, - 9, - 1 - ] - }, - "id": { - "total": 610, - "totalUnique": 502, - "unique": { - "#bikelocal-modal": 1, - "#bikelocal-modal .modal-dialog": 2, - "#bikelocal-modal .modal-dialog .modal-content": 1, - "#bikelocal-modal .modal-dialog .modal-content .modal-body": 1, - "#bikelocal-modal .modal-dialog .modal-content iframe": 1, - ".catalog-product-view #surveyContent .mopinion-survey-content .btn-open-survey.tab": 1, - "#service-tile .btn": 2, - "#checkout .step-title--with-link a:before": 3, - "#invitationForm #invitations-options button.remove:after": 3, - "#service-tile .btn:before": 3, - "#upsells-modal .slick-arrow:before": 3, - "#service-tile .btn.small-icon:before": 1, - "#service-tile .btn.extra-small-icon:before": 1, - "#service-tile .btn.icon-spacing-left": 1, - "#service-tile .btn.icon-spacing-right": 1, - ".ui-slider + #ln_slider_text_price": 1, - "#connected-dob-field": 1, - "#connected-dob-field .mage-error": 1, - "#leaseForm": 1, - "header nav.navbar #navbar > div": 1, - "header nav.navbar #navbar > ul": 1, - "#product-comparison .thead-top": 1, - "#product-comparison .compare__category-header .th": 2, - "#product-comparison .compare__category-header .th .attribute-header_title": 1, - "#product-comparison .thead .tr": 2, - "#product-comparison .tbody > .tr:nth-of-type(2n)": 1, - ".bikeconfigurator #configurator-root": 1, - "#leaseForm .swatches__tooltip .info-icon": 1, - "#leaseForm .swatches__tooltip .swatch-attribute-icon": 1, - "#leaseForm .swatch-attribute .swatch-attribute-icon": 1, - "#leaseForm .swatches__tooltip .info-icon.right": 1, - "#leaseForm .swatches__tooltip .swatch-attribute-icon.right": 1, - "#leaseForm .swatch-attribute .swatch-attribute-icon.right": 1, - "#leaseForm .swatches__tooltip .info-icon:before": 1, - "#leaseForm .swatches__tooltip .swatch-attribute-icon:before": 1, - "#leaseForm .swatch-attribute .swatch-attribute-icon:before": 1, - "#dealerfinder-modal .modal-dialog": 2, - "#reservation-modal .modal-dialog": 2, - "#stock-warning-modal .modal-dialog": 2, - "#dealerfinder-modal .modal-header": 1, - "#reservation-modal .modal-header": 1, - "#stock-warning-modal .modal-header": 1, - "#dealerfinder-modal .modal-content": 1, - "#reservation-modal .modal-content": 1, - "#stock-warning-modal .modal-content": 1, - "#dealerfinder-modal .modal-content .dealerfinder__results": 1, - "#reservation-modal .modal-content .dealerfinder__results": 1, - "#stock-warning-modal .modal-content .dealerfinder__results": 1, - "#dealerfinder-modal .modal-content .dealerfinder__noresults": 1, - "#reservation-modal .modal-content .dealerfinder__noresults": 1, - "#stock-warning-modal .modal-content .dealerfinder__noresults": 1, - "#dealerfinder-modal .modal-content .dealerfinder__sort-container": 1, - "#reservation-modal .modal-content .dealerfinder__sort-container": 1, - "#stock-warning-modal .modal-content .dealerfinder__sort-container": 1, - "#dealerfinder-modal .modal-content .dealerfinder__buttons": 1, - "#reservation-modal .modal-content .dealerfinder__buttons": 1, - "#stock-warning-modal .modal-content .dealerfinder__buttons": 1, - "#dealerfinder-modal .modal-content .dealerfinder__my-location": 2, - "#reservation-modal .modal-content .dealerfinder__my-location": 2, - "#stock-warning-modal .modal-content .dealerfinder__my-location": 2, - "#dealerfinder-modal .modal-content .dealerfinder__my-location svg": 1, - "#reservation-modal .modal-content .dealerfinder__my-location svg": 1, - "#stock-warning-modal .modal-content .dealerfinder__my-location svg": 1, - "#dealerfinder-modal .modal-content .dealerfinder__my-location span": 1, - "#reservation-modal .modal-content .dealerfinder__my-location span": 1, - "#stock-warning-modal .modal-content .dealerfinder__my-location span": 1, - "#dealerfinder-modal .modal-content .dealerfinder__search-button": 1, - "#reservation-modal .modal-content .dealerfinder__search-button": 1, - "#stock-warning-modal .modal-content .dealerfinder__search-button": 1, - "#dealerfinder-modal .modal-content .dealerfinder__search-button .ga-icon": 2, - "#reservation-modal .modal-content .dealerfinder__search-button .ga-icon": 2, - "#stock-warning-modal .modal-content .dealerfinder__search-button .ga-icon": 2, - "#dealerfinder-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a": 2, - "#reservation-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a": 2, - "#stock-warning-modal .modal-content .dealerfinder__search-button .knowledge-base__most-viewed a": 2, - "#dealerfinder-modal .modal-content .dealerfinder__search-button.btn-is-loading:after": 1, - "#reservation-modal .modal-content .dealerfinder__search-button.btn-is-loading:after": 1, - "#stock-warning-modal .modal-content .dealerfinder__search-button.btn-is-loading:after": 1, - "#dealerfinder-modal .modal-content .dealerfinder__search-button.wizard__loader:after": 1, - "#reservation-modal .modal-content .dealerfinder__search-button.wizard__loader:after": 1, - "#stock-warning-modal .modal-content .dealerfinder__search-button.wizard__loader:after": 1, - "#dealerfinder-modal .modal-content .dealerfinder__search-button.btn-is-loading .ga-icon": 1, - "#reservation-modal .modal-content .dealerfinder__search-button.btn-is-loading .ga-icon": 1, - "#stock-warning-modal .modal-content .dealerfinder__search-button.btn-is-loading .ga-icon": 1, - "#dealerfinder-modal .modal-content .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a": 1, - "#reservation-modal .modal-content .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a": 1, - "#stock-warning-modal .modal-content .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget": 1, - "#reservation-modal .modal-content .dealerfinder-widget": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store:first-child": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store:first-child": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store:first-child": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store .status__color": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store .status__color": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store .status__color": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__wrapper": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__wrapper": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__wrapper": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__times-loader": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__times-loader": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__times-loader": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__distance": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__distance": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__distance": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__distance-amount": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__distance-amount": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__distance-amount": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__icon-holder": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__icon-holder": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__icon-holder": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__icons": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__icons": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__icons": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__info": 2, - "#reservation-modal .modal-content .dealerfinder-widget .store__info": 2, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__info": 2, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__title h2": 2, - "#reservation-modal .modal-content .dealerfinder-widget .store__title h2": 2, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__title h2": 2, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__address": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__address": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__address": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store .contact-dealer": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store .contact-dealer": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store .contact-dealer": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store .price-bar__stock": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store .price-bar__stock": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store .price-bar__stock": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store .price-bar__distance": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store .price-bar__distance": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store .price-bar__distance": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store .price-bar__price-label": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store .price-bar__price-label": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store .price-bar__price-label": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone": 2, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone": 2, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone": 2, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone svg": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone svg": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone svg": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone:hover": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone:hover": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone:hover": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone:active": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone:active": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone:active": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone:focus": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone:focus": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone:focus": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone--visible": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone--visible": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone--visible": 1, - "#dealerfinder-modal .modal-content .dealerfinder-widget .store__cta .phone.show-toggle": 1, - "#reservation-modal .modal-content .dealerfinder-widget .store__cta .phone.show-toggle": 1, - "#stock-warning-modal .modal-content .dealerfinder-widget .store__cta .phone.show-toggle": 1, - "#dealerfinder-modal .modal-content .dealerfinder__form-container": 2, - "#reservation-modal .modal-content .dealerfinder__form-container": 2, - "#stock-warning-modal .modal-content .dealerfinder__form-container": 2, - "#dealerfinder-modal .modal-content .dealerfinder__form-container form": 1, - "#reservation-modal .modal-content .dealerfinder__form-container form": 1, - "#stock-warning-modal .modal-content .dealerfinder__form-container form": 1, - "#dealerfinder-modal .modal-content .dealerfinder__form-container form .dealerfinder__input[type=\"text\"]": 1, - "#reservation-modal .modal-content .dealerfinder__form-container form .dealerfinder__input[type=\"text\"]": 1, - "#stock-warning-modal .modal-content .dealerfinder__form-container form .dealerfinder__input[type=\"text\"]": 1, - "#dealerfinder-modal.in .modal-dialog": 1, - "#reservation-modal.in .modal-dialog": 1, - "#stock-warning-modal.in .modal-dialog": 1, - "#reservation-modal": 1, - "#lcly-button-0 a": 2, - "#lcly-button-0 a:hover": 1, - "#lcly-button-2:not(.disabled) a": 1, - "#lcly-button-1:not(.disabled) span": 1, - ".page-footer #trustedshops-badge": 4, - ".compare-bar #compare-items": 2, - "#cookie-manager-popup__settings": 1, - "#cookie-manager-popup .items": 2, - "#cookie-manager-popup .items .item": 4, - "#cookie-manager-popup .items .item:not(:last-child)": 1, - "#cookie-manager-popup .items .item .title": 2, - "#cookie-manager-popup .items .item .switch": 2, - "#cookie-manager-popup .items .item .switch .slider": 2, - "#cookie-manager-popup .items .item .switch .slider:before": 2, - "#cookie-manager-popup .items .item .switch input:checked + .slider": 2, - "#cookie-manager-popup .items .item .switch input:checked + .slider:before": 1, - "#cookie-manager-popup .items .item .switch input:disabled + .slider": 2, - "#cookie-manager-popup .items .item .switch input:disabled + .slider:before": 1, - "#cookie-manager-popup .items .item .switch input:focus + .slider": 1, - "#cookie-manager-popup .modal-header .modal-title": 1, - "#cookie-manager-popup .modal-content": 1, - "#cookie-manager-popup .modal-footer": 1, - "#cookie-manager-popup .modal-footer .btn-primary .ga-icon": 1, - "#cookie-manager-popup .modal-footer .btn-primary .knowledge-base__most-viewed a": 1, - "#cookie-manager-popup h5": 1, - "#cookie-manager-popup .items .item .description": 1, - ".hours-map-block #experience-center-map": 2, - ".hours-map-block #experience-center-map .info-window": 1, - ".hours-map-block #experience-center-map .info-window a": 1, - ".hours-map-block #experience-center-map .info-window a:after": 1, - ".hours-map-block #experience-center-map .label": 1, - ".hours-map-block #experience-center-map .address": 1, - ".hours-map-block #experience-center-map .additional": 1, - ".hours-map-block #experience-center-map .gmnoprint": 1, - ".hours-map-block #experience-center-map .gm-style-cc": 1, - ".hours-map-block #experience-center-map iframe + div": 1, - ".cms-service-contact #maincontent p": 1, - ".cms-service-contact #maincontent h1": 1, - ".cms-service-contact #maincontent h2": 1, - ".cms-service-contact #maincontent h3": 1, - ".cms-service-contact #maincontent h4": 1, - "#dealerfinder-modal .contact-block": 2, - "#checkout select": 1, - ".ie11 #checkout select": 1, - "#checkout select[disabled=true]": 1, - "#checkout .messages": 1, - "#checkout .messages .error": 1, - "#checkout .step-title": 1, - "#checkout .step-title--with-link": 1, - "#checkout .step-title--with-link a": 1, - "#checkout .step-error-message": 1, - "#checkout .step-error-message a": 1, - "#checkout .step-info": 1, - "#checkout .step-user-info": 1, - "#checkout .step-user-info .label": 1, - "#checkout .step-user-info .ga-icon": 1, - "#checkout .step-user-info .knowledge-base__most-viewed a": 1, - "#checkout .opc-block-summary button": 2, - "#checkout .opc-block-summary .items-in-cart:before": 1, - "#checkout .opc-block-summary .items-in-cart:after": 2, - "#checkout .opc-block-summary .items-in-cart": 1, - "#checkout #checkoutSteps": 1, - "#checkout #checkoutSteps li": 1, - "#checkout #checkoutSteps li:before": 1, - "#checkout #checkoutSteps .fieldset": 1, - "#checkout #checkoutSteps .field": 1, - "#checkout #checkoutSteps .field__password": 1, - "#checkout #checkoutSteps .field.street": 1, - "#checkout #checkoutSteps .field.street .field": 1, - "#checkout #checkoutSteps .field.street .housenumber": 4, - "#checkout #checkoutSteps .field.street .housenumber__addition": 3, - "#checkout #checkoutSteps .field.billing__address": 2, - ".has-address-autocomplete #checkout #checkoutSteps .field.street .housenumber": 2, - ".has-address-autocomplete #checkout #checkoutSteps .field.street .housenumber__addition": 1, - ".has-address-autocomplete #checkout #checkoutSteps .field.billing__address": 1, - ".has-address-autocomplete #checkout #checkoutSteps .field.street": 1, - "#checkout #checkoutSteps .actions-toolbar a": 1, - "#checkout #checkoutSteps .actions-toolbar .primary": 2, - "#checkout #checkoutSteps .actions-toolbar .secondary": 2, - "#checkout #checkoutSteps .actions-toolbar .secondary a": 1, - "#checkout .field-tooltip-content": 1, - "#checkout .note": 1, - "#checkout .radio-button": 1, - "#checkout .field-error": 1, - "#opc-sidebar": 1, - ".checkout-index-index #opc-sidebar": 1, - "#checkout .minicart-items": 1, - "#checkout .minicart-items-wrapper": 1, - "#checkout .minicart-items li": 1, - "#checkout .minicart-items .product-image-container": 2, - "#checkout .minicart-items img": 1, - "#checkout .minicart-items thead th": 1, - "#checkout .minicart-items thead td": 1, - "#checkout .minicart-items thead": 1, - "#checkout .minicart-items .cart.table-wrapper": 1, - "#checkout .minicart-items .cart.table-wrapper .product-item-details th": 1, - "#checkout .minicart-items .cart.table-wrapper .product-item-details td": 1, - "#checkout .minicart-items .cart.table-wrapper .product-item-details thead th": 1, - "#checkout .minicart-items .subtotal sub": 1, - "#checkout .minicart-items .minicart__total__amount sub": 1, - "#checkout .minicart-items .subtotal sub.monthly": 1, - "#checkout .minicart-items .minicart__total__amount sub.monthly": 1, - "#checkout .minicart-items .subtotal sub.tooltip-finance-rates": 1, - "#checkout .minicart-items .minicart__total__amount sub.tooltip-finance-rates": 1, - "#checkout .minicart-items .minicart__total__amount": 1, - "#checkout .minicart__total": 1, - "#checkout .minicart__total__vat": 1, - "#checkout .minicart__total__small": 1, - "#checkout .minicart__total__amount": 1, - "#checkout #store-pickup .dealerfinder__sort-container h3": 1, - "#checkout #store-pickup .dealerfinder-widget": 1, - "#checkout #store-pickup .dealerfinder-widget .store__cta--reservation": 1, - "#checkout #store-pickup .dealerfinder-widget .contact-dealer": 1, - "#checkout #store-pickup .dealerfinder-widget .price-bar__distance": 1, - "#checkout #store-pickup .dealerfinder-widget .phone": 1, - "#checkout #store-pickup .dealerfinder-widget .store": 1, - "#checkout #store-pickup .dealerfinder-widget .store__distance.has-stock": 1, - "#checkout #store-pickup .dealerfinder-widget .store__distance.has-stock .ga-icon": 1, - "#checkout #store-pickup .dealerfinder-widget .store__distance.has-stock .knowledge-base__most-viewed a": 1, - "#checkout #store-pickup .dealerfinder-widget .store__distance-time": 1, - "#checkout #store-pickup .dealerfinder-widget .store .price-bar__stock": 1, - "#checkout #store-pickup .dealerfinder__buttons": 1, - "#checkout #store-pickup .dealerfinder__my-location": 2, - "#checkout #store-pickup .dealerfinder__my-location svg": 2, - "#checkout #store-pickup .dealerfinder__my-location span": 1, - "#checkout #store-pickup .dealerfinder__search-button": 1, - "#checkout #store-pickup .dealerfinder__search-button .ga-icon": 1, - "#checkout #store-pickup .dealerfinder__search-button .knowledge-base__most-viewed a": 1, - "#checkout #store-pickup .dealerfinder__search-button.btn-is-loading:after": 1, - "#checkout #store-pickup .dealerfinder__search-button.wizard__loader:after": 1, - "#checkout #store-pickup .dealerfinder__search-button.btn-is-loading .ga-icon": 1, - "#checkout #store-pickup .dealerfinder__search-button.btn-is-loading .knowledge-base__most-viewed a": 1, - "#checkout .opc-block-summary": 1, - "#payment .payment-method": 1, - "#payment .payment-method:last-of-type": 1, - "#payment .payment-method .finance-period": 1, - "#payment .payment-method .finance-period__item:last-of-type": 1, - "#payment .payment-method .finance-period__item label": 1, - "#payment .payment-method .finance-period__item label > span:first-of-type": 1, - "#payment .payment-method .finance-period__item label span:last-of-type": 1, - "#payment .payment-method .finance-period__item label span:last-of-type .metric": 1, - "#payment .payment-method-title": 2, - "#payment .payment-method-title label.label": 1, - "#payment .payment-method-title label.label.disabled": 1, - "#payment .payment-method-title label img": 1, - "#payment .payment-method-form": 1, - "#payment .consorsfinanz-icon": 1, - "#payment .finance-icon": 1, - "#payment .payment-method-billing-address": 1, - "#payment .checkout-agreements-form": 1, - "#payment .checkout-agreements-form .step-title": 1, - "#payment .checkout-agreements-form .checkout-agreement": 1, - "#payment .checkout-agreements-form .checkout-agreement__text": 1, - "#payment .checkout-agreements-form .checkout-agreement__text span": 1, - "#payment .checkout-agreements-form .checkout-agreement .checker": 1, - "#payment .payment__bank ul": 1, - "#payment .payment__bank": 2, - "#payment .payment__bank .adyen-checkout__dropdown__button": 1, - "#payment .payment__bank .adyen-checkout__dropdown__button:after": 1, - "#payment .payment-method-content": 1, - "#payment .payment-method-content .label": 1, - "#payment .payment-method-description": 1, - "#payment #iDealContainer .adyen-checkout__dropdown__button": 1, - "#payment .adyen-checkout__dropdown--large": 1, - "#checkout .addresses .shipping-address-items": 1, - "#checkout .addresses .shipping-address-item": 2, - "#checkout .addresses .shipping-address-item:not(:last-child)": 1, - "#checkout .addresses .shipping-address-type": 1, - "#checkout .addresses .edit-address-link": 1, - "#co-shipping-method-form .shipping__method": 1, - "#co-shipping-method-form #select-store": 1, - ".storepickup-index-index #checkout-loader": 1, - ".checkout-index-index #checkout-loader": 1, - ".faq-landing .faq-landing-category .faq-landing-category__header h4 #service-tile .btn": 2, - "#compare-overlay": 1, - "#compare-overlay > .container": 1, - "#compare-overlay .title": 2, - "#compare-overlay .table-caption": 2, - "#compare-overlay .table-caption.mobile-width": 1, - "#compare-overlay .table-caption .compare--header-container": 1, - "#compare-overlay .table-caption .compare--header-btn": 2, - "#compare-overlay .table-caption .compare--header-btn:hover": 1, - "#compare-overlay .table-caption .compare--header-btn span": 2, - "#compare-overlay .table-caption .compare--header-btn span.ga-icon": 2, - "#compare-overlay .table-caption .compare--header-btn span.knowledge-base__most-viewed a": 2, - "#compare-overlay .table-caption .compare--header-btn span.compare--header-label": 1, - "#product-comparison": 2, - "#product-comparison .no-padding": 1, - "#product-comparison.mobile-width": 1, - "#product-comparison .product-item": 1, - "#product-comparison .product-item-info:hover": 1, - "#product-comparison .product-item-remove": 1, - "#product-comparison .product-item-cta": 2, - "#product-comparison .product-item-cta .btn": 2, - "#product-comparison .product-item-info": 1, - "#product-comparison .thead.thead-top": 1, - "#product-comparison .thead.compare__category-header": 2, - "#product-comparison .thead.compare__category-header.differences": 1, - "#product-comparison .thead.compare__category-header.differences .th": 1, - "#product-comparison .thead.compare__category-header.differences .tr": 1, - "#product-comparison .thead-overlay": 2, - "#product-comparison .thead-overlay .tr": 1, - "#product-comparison .thead-overlay .tr .th": 1, - "#product-comparison .thead-overlay.show": 1, - "#product-comparison .thead-overlay .product-item": 1, - "#product-comparison .thead-overlay .product-item-cta": 1, - "#product-comparison .thead-overlay .product-item-cta .btn": 1, - "#product-comparison .thead-overlay .product-item-info": 1, - "#product-comparison .thead-overlay .product-item-details": 1, - "#product-comparison .thead-overlay .product-item-details .flex-start": 1, - "#product-comparison .thead-overlay .product-item-photo": 1, - "#product-comparison .thead-overlay .product-item-name": 1, - "#product-comparison .thead-overlay .product-image-container": 2, - "#product-comparison .thead-overlay .product-image-container .product-image-photo": 1, - "#product-comparison .thead-overlay .product-price-wrapper": 2, - "#product-comparison .thead-overlay .product-price-wrapper .price-final_price": 1, - "#product-comparison .thead .th": 1, - "#product-comparison .tbody": 1, - "#product-comparison .tbody:last-of-type": 1, - "#product-comparison .tbody > .tr": 1, - "#product-comparison .tbody > .tr.hidden-attribute": 1, - "#product-comparison .tbody > .tr.attribute_value": 1, - "#product-comparison .tbody > .tr:nth-of-type(2n):not(.compare__category-header)": 1, - "#product-comparison .tbody > .tr .ga-icon": 1, - "#product-comparison .tbody > .tr .knowledge-base__most-viewed a": 1, - "#product-comparison .tbody > .tr .ga-icon.icon-check": 1, - "#product-comparison .tbody > .tr .knowledge-base__most-viewed a.icon-check": 1, - "#product-comparison .tbody .td": 4, - "#product-comparison .tbody .th": 2, - "#product-comparison .tbody .td > span": 1, - "#product-comparison .tbody .td > div": 1, - "#product-comparison .tbody .th.th-full-width": 2, - "#product-comparison .tbody .th.th-full-width > span": 1, - "#product-comparison .tr": 1, - "#product-comparison .tr .th": 3, - "#product-comparison .tr .td": 2, - "#product-comparison .tr .th .value": 1, - "#product-comparison .tr .td .value": 1, - "#product-comparison .tr .th-full-width": 1, - "#product-comparison .tr .th > span": 1, - "#product-comparison .tr .th:not(:last-of-type)": 1, - "#product-comparison .compare_parent-title": 2, - "#product-comparison .compare__category-header": 1, - "#product-comparison .compare__category-header .attribute-header_title": 2, - "#product-comparison .compare__category-header .tr": 1, - "#product-comparison .compare__category-header .all-specs": 1, - "#product-comparison .compare__category-header .all-specs label": 2, - "#product-comparison .compare__category-header .all-specs label span": 1, - "#product-comparison .compare__category-header .all-specs input + label .checker": 1, - "#product-comparison .attribute-title": 1, - "#product-comparison .compare-product-variations": 1, - "#product-comparison .compare-product-variations-item": 1, - "#product-comparison .compare-product-variations-item .battery__text": 1, - "#product-comparison .compare-product-variations-item .battery__text:before": 1, - "#product-comparison .compare-product-variations-item:last-child": 1, - "#product-comparison .compare-product-variations-color": 1, - "#product-comparison .compare-product-variations-color[option-label=\"255,255,255\"]": 1, - "#product-comparison .compare-product-variations-label": 1, - "#compare-mail .close": 1, - "#compare-mail .title": 1, - "#compare-mail a#compare-mail-submit": 1, - "#compare-mail input[type=\"text\"]": 1, - ".account #maincontent": 2, - ".account #maincontent .columns": 2, - ".account #maincontent .main": 1, - ".customer-account-login #maincontent": 1, - ".customer-account-forgotpassword #maincontent": 1, - "#blog-header-image": 1, - ".blog-content #blog-page-navigation": 1, - "#invitationForm .field.email": 1, - "#invitationForm .actions-toolbar": 1, - "#invitationForm #invitations-options": 1, - "#invitationForm #invitations-options .field.email": 1, - "#invitationForm #invitations-options button.remove": 1, - "#invitationForm #invitations-options button.remove:hover": 1, - "#invitationForm .add-email": 1, - "#invitationForm #add-email-button": 1, - "#invitationForm .actions-toolbar .primary": 1, - "#invitationForm .actions-toolbar .primary span": 1, - "#invitationForm .invitation-preview": 1, - "#invitation-preview-modal table": 1, - "#invitation-preview-modal table thead tr": 1, - "#invitation-preview-modal table thead th": 1, - "#invitation-preview-modal table thead td": 1, - "#invitation-preview-modal table tbody tr": 1, - "#invitation-preview-modal table tbody td": 1, - "#gazelle-pdp-stickybar": 3, - ".topbar-active.minimize.gazelle-pdp #gazelle-pdp-stickybar": 1, - ".has-lightbox #gazelle-pdp-stickybar": 1, - ".page-products #btn-pop-load-more": 1, - ".page-products #btn-pop-load-more .icon-arrow-down": 1, - ".page-products #btn-pop-load-more .icon-arrow-down:after": 1, - ".show-more-filters-container #show-more-filters": 1, - "#service-tile .bluefoot-buttons": 1, - "#service-tile .btn:hover": 1, - ".virtual-category #content-short-description": 3, - ".virtual-category #content-short-description p:last-of-type": 1, - ".virtual-category #content-short-description p": 1, - ".virtual-category #content-short-description.expanded": 1, - ".virtual-category #content-short-description.expanded p": 1, - "#upsells-modal .modal-content": 1, - "#upsells-modal .modal-content .close": 1, - "#upsells-modal .modal-header": 2, - "#upsells-modal .modal-body": 1, - "#upsells-modal .upsells__body h3": 1, - "#upsells-modal .upsells__header": 1, - "#upsells-modal .upsells__title": 1, - "#upsells-modal .upsells__image": 2, - "#upsells-modal .upsells__info": 1, - "#upsells-modal .upsells__info h3": 1, - "#upsells-modal .upsells__info span": 2, - "#upsells-modal .upsells__products .product-card": 1, - "#upsells-modal .upsells__products .slick-slider": 1, - "#upsells-modal .upsells__products .slick-slider--no-padding-bottom": 1, - "#upsells-modal .upsells__products .slick-slider .slick-list": 3, - "#upsells-modal .upsells__products .slick-track": 1, - "#upsells-modal .upsells__products .slick-slide": 1, - "#upsells-modal .upsells__products .slick-slide > div": 1, - "#upsells-modal .upsells__pagination": 1, - "#upsells-modal .upsells__buttons": 2, - "#upsells-modal .upsells__btn": 2, - "#upsells-modal .slick-arrow": 1, - "#upsells-modal .slick-arrow.slick-next": 1, - "#upsells-modal .slick-arrow.slick-prev": 1, - "#upsells-modal .upsells__header h3": 1, - "#upsells-modal .upsells__btn:first-of-type": 1, - "#pon-vue-search *": 1 - }, - "uniquenessRatio": 0.8229508196721311, - "ratio": 0.05726086548390125 - }, - "pseudoClasses": { - "total": 2883, - "totalUnique": 24, - "unique": { - "not": 269, - "active": 128, - "hover": 437, - "root": 2, - "after": 275, - "before": 821, - "visited": 6, - "focus": 278, - "last-child": 208, - "first-child": 220, - "nth-of-type": 7, - "-ms-input-placeholder": 1, - "empty": 4, - "link": 5, - "last-of-type": 39, - "first-of-type": 46, - "checked": 58, - "disabled": 34, - "nth-child": 35, - "first-letter": 1, - "has": 6, - "where": 1, - "-moz-focusring": 1, - "-moz-ui-invalid": 1 - }, - "uniquenessRatio": 0.008324661810613945 - }, - "accessibility": { - "total": 16, - "totalUnique": 13, - "unique": { - "[role=button]": 2, - ".select2-results__option[aria-selected]": 1, - ".select2-container--default .select2-results__option[role=group]": 1, - ".select2-container--default .select2-results__option[aria-disabled=true]": 1, - ".select2-container--default .select2-results__option[aria-selected=true]": 1, - ".select2-container--default .select2-results__option--highlighted[aria-selected]": 1, - ".select2-container--classic .select2-results__option[role=group]": 1, - ".select2-container--classic .select2-results__option[aria-disabled=true]": 1, - ".select2-container--classic .select2-results__option--highlighted[aria-selected]": 1, - "body[aria-busy=\"false\"] .page.messages .messages .message:not(.error)": 2, - ".specifications__wrapper:not([role=\"tablist\"])": 1, - ".price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible[aria-expanded='true']": 2, - ".price-rates-modal .modal-content .modal-header .modal-menu .method-modal-collapsible[aria-expanded='true'] .method-modal-collapsible__icon": 1 - }, - "uniquenessRatio": 0.8125, - "ratio": 0.0015019243405613443 - }, - "keyframes": { - "total": 54, - "totalUnique": 5, - "unique": { - "from": 7, - "to": 10, - "0%": 17, - "100%": 16, - "50%": 4 - }, - "uniquenessRatio": 0.09259259259259259 - }, - "prefixed": { - "total": 29, - "totalUnique": 28, - "unique": { - "button::-moz-focus-inner": 2, - "input::-moz-focus-inner": 1, - "input[type=number]::-webkit-inner-spin-button": 1, - "input[type=number]::-webkit-outer-spin-button": 1, - "input[type=search]::-webkit-search-cancel-button": 1, - "input[type=search]::-webkit-search-decoration": 1, - ".form-control::-moz-placeholder": 1, - ".form-control:-ms-input-placeholder": 1, - ".form-control::-webkit-input-placeholder": 1, - ".form-control::-ms-expand": 1, - ".select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button": 1, - ".select2-search--dropdown .select2-search__field::-webkit-search-cancel-button": 1, - ".qty.field .control .input-text::-webkit-inner-spin-button": 1, - ".qty.field .control .input-text::-webkit-outer-spin-button": 1, - ".store__sort-dealers::-ms-expand": 1, - ".navbar .navigation__item .dropdown-container::-webkit-scrollbar": 1, - ".bike-registry__field::-webkit-outer-spin-button": 1, - ".bike-registry__field::-webkit-inner-spin-button": 1, - ".bike-registry__purchase-date::-webkit-inner-spin-button": 1, - ".bike-registry__purchase-date::-webkit-calendar-picker-indicator": 1, - ":-moz-focusring": 1, - ":-moz-ui-invalid": 1, - "::-webkit-inner-spin-button": 1, - "::-webkit-outer-spin-button": 1, - "::-webkit-search-decoration": 1, - "::-webkit-file-upload-button": 1, - "input::-moz-placeholder": 1, - "textarea::-moz-placeholder": 1 - }, - "uniquenessRatio": 0.9655172413793104, - "ratio": 0.0027222378672674364 - }, - "combinators": { - "total": 12605, - "totalUnique": 4, - "unique": { - " ": 10749, - ">": 1643, - "+": 192, - "~": 21 - }, - "uniquenessRatio": 0.00031733439111463705 - } - }, - "declarations": { - "total": 17586, - "totalUnique": 4353, - "uniquenessRatio": 0.2475264414875469, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 17586 - } - }, - "properties": { - "total": 17586, - "totalUnique": 254, - "unique": { - "font-family": 51, - "-webkit-text-size-adjust": 3, - "-ms-text-size-adjust": 1, - "margin": 524, - "display": 1483, - "vertical-align": 70, - "height": 613, - "background-color": 464, - "outline": 49, - "border-bottom": 139, - "font-weight": 395, - "font-style": 17, - "font-size": 842, - "color": 875, - "background": 306, - "position": 623, - "line-height": 281, - "top": 394, - "bottom": 114, - "border": 329, - "overflow": 105, - "-webkit-box-sizing": 7, - "-moz-box-sizing": 8, - "box-sizing": 45, - "font": 5, - "text-transform": 66, - "-webkit-appearance": 27, - "cursor": 175, - "padding": 652, - "border-spacing": 1, - "border-collapse": 7, - "text-shadow": 15, - "-webkit-box-shadow": 30, - "box-shadow": 79, - "text-decoration": 64, - "content": 510, - "page-break-inside": 2, - "max-width": 112, - "orphans": 1, - "widows": 1, - "page-break-after": 1, - "border-top-color": 30, - "src": 17, - "-webkit-font-smoothing": 8, - "-moz-osx-font-smoothing": 7, - "-webkit-tap-highlight-color": 3, - "outline-offset": 5, - "border-radius": 226, - "-webkit-transition": 25, - "-o-transition": 25, - "transition": 141, - "margin-top": 442, - "margin-bottom": 484, - "border-top": 85, - "width": 916, - "clip": 6, - "text-align": 192, - "white-space": 37, - "padding-bottom": 120, - "padding-left": 140, - "list-style": 71, - "margin-left": 343, - "padding-right": 117, - "float": 231, - "clear": 43, - "text-overflow": 11, - "border-left": 29, - "border-right": 34, - "word-break": 7, - "word-wrap": 6, - "max-height": 53, - "overflow-y": 22, - "margin-right": 185, - "min-height": 94, - "right": 271, - "left": 339, - "padding-top": 141, - "border-bottom-width": 6, - "overflow-x": 9, - "-ms-overflow-style": 2, - "min-width": 57, - "background-image": 113, - "border-color": 166, - "opacity": 150, - "z-index": 169, - "pointer-events": 33, - "-ms-touch-action": 2, - "touch-action": 3, - "-webkit-user-select": 9, - "-moz-user-select": 6, - "-ms-user-select": 5, - "user-select": 12, - "filter": 30, - "-webkit-transition-timing-function": 1, - "-o-transition-timing-function": 1, - "transition-timing-function": 1, - "-webkit-transition-duration": 1, - "-o-transition-duration": 1, - "transition-duration": 1, - "-webkit-transition-property": 1, - "-o-transition-property": 1, - "transition-property": 1, - "-webkit-background-clip": 3, - "background-clip": 4, - "border-top-right-radius": 31, - "border-bottom-right-radius": 25, - "border-top-left-radius": 31, - "border-bottom-left-radius": 25, - "border-width": 36, - "table-layout": 3, - "border-bottom-color": 17, - "-webkit-overflow-scrolling": 5, - "background-position": 209, - "-webkit-background-size": 2, - "background-size": 38, - "-webkit-animation": 25, - "-o-animation": 14, - "animation": 34, - "zoom": 4, - "border-top-width": 7, - "-webkit-transform": 71, - "-ms-transform": 67, - "-o-transform": 63, - "transform": 216, - "letter-spacing": 47, - "word-spacing": 5, - "line-break": 2, - "border-style": 9, - "border-right-color": 4, - "border-left-color": 6, - "border-left-width": 5, - "border-right-width": 5, - "-webkit-backface-visibility": 3, - "backface-visibility": 3, - "-webkit-perspective": 1, - "perspective": 1, - "background-repeat": 25, - "text-indent": 5, - "visibility": 29, - "-moz-transform": 61, - "-moz-transition": 17, - "-webkit-touch-callout": 1, - "-khtml-user-select": 1, - "direction": 4, - "-webkit-clip-path": 1, - "clip-path": 1, - "font-display": 7, - "image-rendering": 1, - "-webkit-flex-direction": 34, - "-ms-flex-direction": 34, - "flex-direction": 84, - "transform-origin": 10, - "flex-grow": 29, - "align-items": 116, - "justify-content": 102, - "flex-wrap": 36, - "-webkit-animation-fill-mode": 2, - "animation-fill-mode": 2, - "font-variant": 4, - "speak": 5, - "will-change": 4, - "resize": 2, - "-moz-appearance": 14, - "appearance": 12, - "size": 1, - "-webkit-print-color-adjust": 1, - "-webkit-flex-grow": 17, - "-ms-flex-grow": 17, - "-webkit-align-self": 3, - "-ms-align-self": 3, - "align-self": 15, - "-webkit-justify-content": 59, - "-ms-justify-content": 59, - "-webkit-align-items": 79, - "-ms-align-items": 79, - "-webkit-flex-wrap": 23, - "-ms-flex-wrap": 23, - "-webkit-flex": 20, - "-ms-flex": 20, - "flex": 22, - "background-position-x": 1, - "background-position-y": 1, - "gap": 20, - "fill": 14, - "list-style-type": 2, - "backdrop-filter": 3, - "-webkit-backdrop-filter": 3, - "scrollbar-width": 1, - "-webkit-flex-flow": 2, - "-ms-flex-flow": 2, - "flex-flow": 2, - "inset": 3, - "object-fit": 4, - "-moz-backface-visibility": 1, - "-ms-transition": 16, - "-webkit-border-radius": 5, - "-moz-border-radius": 5, - "-webkit-order": 15, - "-ms-order": 15, - "order": 27, - "flex-basis": 4, - "overflow-anchor": 1, - "list-style-image": 2, - "-webkit-flex-basis": 2, - "-ms-flex-basis": 2, - "counter-reset": 1, - "counter-increment": 1, - "flex-shrink": 5, - "-webkit-flex-shrink": 2, - "-ms-flex-shrink": 2, - "grid-template-columns": 3, - "-webkit-user-drag": 1, - "-moz-animation": 10, - "-ms-animation": 10, - "-webkit-line-clamp": 2, - "-webkit-box-orient": 1, - "tab-size": 2, - "*display": 3, - "text-rendering": 3, - "*width": 33, - "-ms-filter": 7, - "-o-user-select": 1, - "outline-color": 1, - "-webkit-transform-origin": 2, - "--tw-content": 1, - "-moz-tab-size": 1, - "-o-tab-size": 1, - "-webkit-text-decoration": 1, - "animation-delay": 12, - "align-content": 3, - "place-items": 1, - "--badge-style1-color": 1, - "--badge-style2-color": 1, - "--badge-style3-color": 1, - "--badge-style4-color": 1, - "grid-template": 1, - "grid-column": 3, - "grid-row": 4, - "--tw-rotate": 1, - "grid-auto-flow": 2, - "grid-template-rows": 2, - "--tw-space-y-reverse": 3, - "--tw-border-opacity": 2, - "--tw-bg-opacity": 4, - "-o-object-fit": 1, - "-o-object-position": 1, - "object-position": 1, - "--tw-text-opacity": 4, - "text-decoration-line": 2, - "--tw-shadow": 2, - "--tw-shadow-colored": 2, - "row-gap": 2, - "-moz-column-gap": 2, - "column-gap": 2 - }, - "uniquenessRatio": 0.014443307176162858, - "prefixed": { - "total": 1109, - "totalUnique": 81, - "unique": { - "-webkit-text-size-adjust": 3, - "-ms-text-size-adjust": 1, - "-webkit-box-sizing": 7, - "-moz-box-sizing": 8, - "-webkit-appearance": 27, - "-webkit-box-shadow": 30, - "-webkit-font-smoothing": 8, - "-moz-osx-font-smoothing": 7, - "-webkit-tap-highlight-color": 3, - "-webkit-transition": 25, - "-o-transition": 25, - "-ms-overflow-style": 2, - "-ms-touch-action": 2, - "-webkit-user-select": 9, - "-moz-user-select": 6, - "-ms-user-select": 5, - "-webkit-transition-timing-function": 1, - "-o-transition-timing-function": 1, - "-webkit-transition-duration": 1, - "-o-transition-duration": 1, - "-webkit-transition-property": 1, - "-o-transition-property": 1, - "-webkit-background-clip": 3, - "-webkit-overflow-scrolling": 5, - "-webkit-background-size": 2, - "-webkit-animation": 25, - "-o-animation": 14, - "-webkit-transform": 71, - "-ms-transform": 67, - "-o-transform": 63, - "-webkit-backface-visibility": 3, - "-webkit-perspective": 1, - "-moz-transform": 61, - "-moz-transition": 17, - "-webkit-touch-callout": 1, - "-khtml-user-select": 1, - "-webkit-clip-path": 1, - "-webkit-flex-direction": 34, - "-ms-flex-direction": 34, - "-webkit-animation-fill-mode": 2, - "-moz-appearance": 14, - "-webkit-print-color-adjust": 1, - "-webkit-flex-grow": 17, - "-ms-flex-grow": 17, - "-webkit-align-self": 3, - "-ms-align-self": 3, - "-webkit-justify-content": 59, - "-ms-justify-content": 59, - "-webkit-align-items": 79, - "-ms-align-items": 79, - "-webkit-flex-wrap": 23, - "-ms-flex-wrap": 23, - "-webkit-flex": 20, - "-ms-flex": 20, - "-webkit-backdrop-filter": 3, - "-webkit-flex-flow": 2, - "-ms-flex-flow": 2, - "-moz-backface-visibility": 1, - "-ms-transition": 16, - "-webkit-border-radius": 5, - "-moz-border-radius": 5, - "-webkit-order": 15, - "-ms-order": 15, - "-webkit-flex-basis": 2, - "-ms-flex-basis": 2, - "-webkit-flex-shrink": 2, - "-ms-flex-shrink": 2, - "-webkit-user-drag": 1, - "-moz-animation": 10, - "-ms-animation": 10, - "-webkit-line-clamp": 2, - "-webkit-box-orient": 1, - "-ms-filter": 7, - "-o-user-select": 1, - "-webkit-transform-origin": 2, - "-moz-tab-size": 1, - "-o-tab-size": 1, - "-webkit-text-decoration": 1, - "-o-object-fit": 1, - "-o-object-position": 1, - "-moz-column-gap": 2 - }, - "uniquenessRatio": 0.07303877366997295, - "ratio": 0.0630615262140339 - }, - "custom": { - "total": 23, - "totalUnique": 12, - "unique": { - "--tw-content": 1, - "--badge-style1-color": 1, - "--badge-style2-color": 1, - "--badge-style3-color": 1, - "--badge-style4-color": 1, - "--tw-rotate": 1, - "--tw-space-y-reverse": 3, - "--tw-border-opacity": 2, - "--tw-bg-opacity": 4, - "--tw-text-opacity": 4, - "--tw-shadow": 2, - "--tw-shadow-colored": 2 - }, - "uniquenessRatio": 0.5217391304347826, - "ratio": 0.0013078585238257706, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 36, - "totalUnique": 2, - "unique": { - "*display": 3, - "*width": 33 - }, - "uniquenessRatio": 0.05555555555555555, - "ratio": 0.0020470829068577278 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0664164676447174, - "mode": 1, - "range": 1, - "sum": 18754 - } - }, - "values": { - "colors": { - "total": 2584, - "totalUnique": 285, - "unique": { - "transparent": 201, - "#000": 182, - "#ff0": 1, - "silver": 1, - "#999": 21, - "#fff": 382, - "#ddd": 39, - "rgba(0,0,0,0)": 15, - "#333": 40, - "#337ab7": 25, - "#23527c": 3, - "#eee": 29, - "#777": 27, - "#fcf8e3": 8, - "#286090": 6, - "#3c763d": 14, - "#2b542c": 3, - "#31708f": 9, - "#245269": 2, - "#8a6d3b": 14, - "#66512c": 3, - "#a94442": 14, - "#843534": 3, - "#dff0d8": 7, - "#c1e2b3": 1, - "#d9edf7": 6, - "#afd9ee": 1, - "#f7ecb5": 1, - "#f2dede": 7, - "#e4b9b9": 1, - "#c7254e": 1, - "#f9f2f4": 1, - "rgba(0,0,0,.25)": 6, - "#f5f5f5": 15, - "#ccc": 16, - "#f9f9f9": 1, - "#e8e8e8": 93, - "#d0e9c6": 2, - "#c4e3f3": 2, - "#faf2cc": 2, - "#ebcccc": 2, - "#e5e5e5": 5, - "#555": 14, - "rgba(0,0,0,.075)": 16, - "#66afe9": 1, - "rgba(102,175,233,.6)": 2, - "#67b168": 2, - "#c0a16b": 2, - "#ce8483": 2, - "#737373": 1, - "rgba(0,0,0,.125)": 4, - "#e6e6e6": 3, - "#8c8c8c": 2, - "#adadad": 5, - "#d4d4d4": 1, - "#2e6da4": 2, - "#122b40": 2, - "#204d74": 3, - "#5cb85c": 5, - "#4cae4c": 2, - "#449d44": 4, - "#255625": 2, - "#398439": 3, - "#5bc0de": 5, - "#46b8da": 2, - "#31b0d5": 4, - "#1b6d85": 2, - "#269abc": 3, - "#f0ad4e": 5, - "#eea236": 2, - "#ec971f": 4, - "#985f0d": 2, - "#d58512": 3, - "#d9534f": 5, - "#d43f3a": 2, - "#c9302c": 4, - "#761c19": 2, - "#ac2925": 3, - "rgba(0,0,0,.15)": 4, - "rgba(0,0,0,.175)": 2, - "#262626": 1, - "rgba(255,255,255,.1)": 6, - "#f8f8f8": 4, - "#e7e7e7": 5, - "#5e5e5e": 2, - "#888": 12, - "#222": 1, - "#080808": 6, - "#9d9d9d": 6, - "#444": 8, - "#101010": 3, - "#d5d5d5": 1, - "#d6e9c6": 5, - "#c9e2b3": 1, - "#bce8f1": 5, - "#a6e1ec": 1, - "#faebcc": 5, - "#f7e1b5": 1, - "#ebccd1": 5, - "#e4b9c0": 1, - "rgba(0,0,0,.1)": 2, - "rgba(255,255,255,.15)": 45, - "#c7ddef": 1, - "rgba(0,0,0,.05)": 4, - "#e3e3e3": 1, - "rgba(0,0,0,.2)": 4, - "rgba(0,0,0,.5)": 12, - "#f7f7f7": 2, - "#ebebeb": 2, - "rgba(0,0,0,.6)": 2, - "rgba(0,0,0,.0001)": 8, - "#000\\9": 1, - "rgba(0,0,0,0.5)": 6, - "rgba(0,0,0,0.2)": 17, - "#7f7f7f": 143, - "#004a99": 182, - "#c5c5c5": 2, - "#ffffff": 5, - "#333333": 4, - "#e9e9e9": 1, - "#f6f6f6": 2, - "#454545": 2, - "#ededed": 12, - "#2b2b2b": 2, - "#5e9ed6": 1, - "#003eff": 2, - "#007fff": 1, - "#dad55e": 2, - "#fffa90": 2, - "#777620": 2, - "#f1a899": 1, - "#fddfdf": 1, - "#5f3f3f": 3, - "#aaaaaa": 1, - "#666": 2, - "white": 20, - "#aaa": 13, - "#e4e4e4": 2, - "#5897fb": 6, - "grey": 2, - "#3875d7": 1, - "rgba(0,0,0,0.1)": 30, - "#a9a9a9": 21, - "#f2f2f2": 132, - "#84776b": 10, - "rgba(0,0,0,0.3)": 3, - "rgba(0,0,0,0.05)": 5, - "rgba(0,0,0,0.25)": 1, - "#0d4282": 15, - "#003062": 5, - "#588294": 3, - "#E0E0E0": 6, - "#F9F9F9": 1, - "#e0e0e0": 2, - "rgba(224,224,224,0.2)": 1, - "rgba(224,224,224,0.4)": 1, - "rgba(224,224,224,0.8)": 1, - "#5b8451": 10, - "#4E7744": 1, - "#4e7744": 1, - "#6A9B5E": 1, - "#6a9b5e": 1, - "rgba(255,255,255,0.2)": 5, - "#93887e": 1, - "#ee3a3a": 18, - "red": 6, - "#646464": 1, - "#dadada": 2, - "#68a8e0": 2, - "#F0F0F0": 1, - "#686868": 1, - "#ff5501": 1, - "#FFF": 7, - "#f0f0f0": 2, - "#949494": 3, - "black": 9, - "#e00": 1, - "rgba(255,255,255,0)": 32, - "#ff5216": 12, - "#282828": 2, - "#bababa": 53, - "#fafafa": 2, - "rgba(13,66,130,0.9)": 1, - "rgba(0,0,0,0.19)": 1, - "#e34545": 1, - "#5fd350": 10, - "#e9682d": 4, - "green": 1, - "rgba(255,255,255,0.75)": 2, - "rgba(52,52,52,0.3)": 3, - "#FFFFFF": 1, - "rgba(0,0,0,0.35)": 1, - "#2f2f2f": 3, - "rgba(0,0,0,0.15)": 5, - "#b2dde3": 4, - "#b8b8b8": 5, - "#c2b991": 4, - "#a97f5f": 4, - "#56be49": 1, - "#cd0c00": 1, - "#d9d9d9": 9, - "#008000": 2, - "#dbdbdb": 1, - "#4f7346": 1, - "#e6ecee": 1, - "#202020": 1, - "#003C7D": 1, - "#f0e082": 4, - "#82776c": 1, - "#7b7066": 1, - "#bbbbbb": 1, - "#b3cddd": 1, - "rgba(0,0,0,0.4)": 2, - "#a7a7a7": 1, - "rgba(0,0,0,0.7)": 2, - "#d2d3d5": 1, - "rgba(151,134,121,0.6)": 1, - "rgba(255,255,255,0.8)": 1, - "#83de25": 1, - "#ff1001": 2, - "rgba(186,186,186,0.4)": 5, - "rgba(187,187,187,0.4)": 2, - "#cae8c6": 1, - "#606060": 2, - "#f5a623": 1, - "rgba(1,1,1,0.5)": 1, - "#d0021b": 1, - "#ffdf75": 1, - "#bbb": 11, - "rgba(255,255,255,0.5)": 1, - "#558093": 1, - "#5FD350": 1, - "#E9682D": 1, - "#5b8351": 1, - "rgba(241,240,238,0)": 5, - "rgba(0,0,0,0.6)": 3, - "#39c": 2, - "rgba(0,0,0,0.9)": 1, - "#999999": 1, - "#e02b27": 1, - "#ed8380": 1, - "rgba(255, 212, 96, 0.26)": 1, - "#cccccc": 1, - "rgba(0, 0, 0, .1)": 1, - "#1f8dd6": 1, - "#7d7d7d": 1, - "rgb(240, 120, 0)": 2, - "#00ff08": 1, - "#8bc53f": 1, - "#4f4b47": 1, - "#317cc5": 1, - "rgba(0,94,153,0.3)": 1, - "rgba(255,255,255,1)": 6, - "rgba(0,0,0,1)": 6, - "#858585": 2, - "#f00": 2, - "#8f8f8f": 4, - "#f3f3f3": 2, - "#bdbdbd": 3, - "#efefef": 2, - "#959595": 2, - "#161616": 1, - "#2a2a2a": 1, - "#2d2d2d": 3, - "#131313": 2, - "#696969": 3, - "#7a7a7a": 2, - "#0b0b0b": 1, - "#CCC": 3, - "#3F3F3F": 2, - "rgba(0, 0, 0, 0.6)": 4, - "#BDBDBD": 1, - "#F3F3F3": 1, - "#e5e7eb": 1, - "#9ca3af": 2, - "#949391": 1, - "#a6c0db": 1, - "lightgrey": 2, - "#f85a13": 1, - "#d20000": 1, - "#00000050": 2, - "rgb(242 242 242 / var(--tw-border-opacity))": 2, - "rgb(255 255 255 / var(--tw-bg-opacity))": 4, - "rgb(0 74 153 / var(--tw-text-opacity))": 4, - "#0000": 8 - }, - "uniquenessRatio": 0.11029411764705882, - "itemsPerContext": { - "background-color": { - "total": 463, - "totalUnique": 113, - "unique": { - "transparent": 53, - "#fff": 78, - "#fcf8e3": 7, - "#337ab7": 10, - "#286090": 5, - "#dff0d8": 6, - "#c1e2b3": 1, - "#d9edf7": 5, - "#afd9ee": 1, - "#f7ecb5": 1, - "#f2dede": 6, - "#e4b9b9": 1, - "#f9f2f4": 1, - "#333": 4, - "#f5f5f5": 12, - "#f9f9f9": 1, - "#e8e8e8": 10, - "#d0e9c6": 2, - "#c4e3f3": 2, - "#faf2cc": 2, - "#ebcccc": 2, - "#eee": 10, - "#e6e6e6": 3, - "#d4d4d4": 1, - "#204d74": 1, - "#5cb85c": 4, - "#449d44": 4, - "#398439": 1, - "#5bc0de": 4, - "#31b0d5": 4, - "#269abc": 1, - "#f0ad4e": 4, - "#ec971f": 4, - "#d58512": 1, - "#d9534f": 4, - "#c9302c": 4, - "#ac2925": 1, - "#e5e5e5": 2, - "#f8f8f8": 1, - "#e7e7e7": 3, - "#ddd": 3, - "#888": 1, - "#222": 1, - "#080808": 4, - "#777": 2, - "#5e5e5e": 1, - "#3c763d": 2, - "#31708f": 2, - "#8a6d3b": 2, - "#a94442": 2, - "#000": 6, - "#f7f7f7": 2, - "rgba(0,0,0,0)": 2, - "#000\\9": 1, - "#ffffff": 1, - "white": 5, - "#e4e4e4": 2, - "#5897fb": 1, - "#3875d7": 1, - "rgba(0,0,0,0.2)": 4, - "#f2f2f2": 52, - "#84776b": 5, - "#004a99": 27, - "rgba(0,0,0,0.05)": 1, - "#0d4282": 5, - "#E0E0E0": 2, - "#F9F9F9": 1, - "rgba(224,224,224,0.2)": 1, - "rgba(224,224,224,0.4)": 1, - "rgba(224,224,224,0.8)": 1, - "#5b8451": 4, - "#4E7744": 1, - "#6A9B5E": 1, - "#FFF": 1, - "rgba(0,0,0,0.1)": 2, - "#fafafa": 1, - "rgba(13,66,130,0.9)": 1, - "#e34545": 1, - "#5fd350": 2, - "#e9682d": 2, - "green": 1, - "red": 1, - "#ee3a3a": 2, - "#a9a9a9": 2, - "rgba(0,0,0,0.5)": 1, - "#FFFFFF": 1, - "#7f7f7f": 1, - "#b2dde3": 1, - "#b8b8b8": 1, - "#c2b991": 1, - "#a97f5f": 1, - "#4f7346": 1, - "#e6ecee": 1, - "rgba(255,255,255,0.2)": 1, - "#82776c": 1, - "#7b7066": 1, - "#bbbbbb": 1, - "#bababa": 1, - "#b3cddd": 1, - "rgba(0,0,0,0.4)": 1, - "#d2d3d5": 1, - "rgba(151,134,121,0.6)": 1, - "rgba(255,255,255,0.8)": 1, - "#f0e082": 2, - "#83de25": 1, - "#ff1001": 1, - "rgba(255,255,255,0.5)": 1, - "#558093": 1, - "#00ff08": 1, - "#101010": 1, - "#a6c0db": 1, - "#00000050": 1, - "rgb(255 255 255 / var(--tw-bg-opacity))": 4 - }, - "uniquenessRatio": 0.24406047516198703 - }, - "color": { - "total": 855, - "totalUnique": 97, - "unique": { - "#000": 134, - "#333": 34, - "#337ab7": 7, - "#23527c": 3, - "#777": 24, - "#286090": 1, - "#3c763d": 9, - "#2b542c": 2, - "#31708f": 6, - "#245269": 2, - "#8a6d3b": 9, - "#66512c": 2, - "#a94442": 9, - "#843534": 2, - "#fff": 165, - "#c7254e": 1, - "#555": 13, - "#999": 9, - "#737373": 1, - "#5cb85c": 1, - "#5bc0de": 1, - "#f0ad4e": 1, - "#d9534f": 1, - "#262626": 1, - "#5e5e5e": 1, - "#ccc": 4, - "#9d9d9d": 6, - "#444": 5, - "#c7ddef": 1, - "#f5f5f5": 1, - "#dff0d8": 1, - "#d9edf7": 1, - "#fcf8e3": 1, - "#f2dede": 1, - "transparent": 6, - "#7f7f7f": 132, - "#004a99": 86, - "#333333": 4, - "#454545": 2, - "#2b2b2b": 2, - "#ffffff": 3, - "#777620": 2, - "#5f3f3f": 3, - "white": 10, - "#888": 7, - "grey": 1, - "#e8e8e8": 11, - "#a9a9a9": 16, - "rgba(0,0,0,0.2)": 2, - "rgba(0,0,0,0.25)": 1, - "red": 2, - "#646464": 1, - "#686868": 1, - "#949494": 3, - "black": 5, - "#282828": 2, - "#ee3a3a": 11, - "#bababa": 23, - "#f2f2f2": 1, - "#0d4282": 4, - "rgba(0,0,0,0.1)": 2, - "rgba(0,0,0,0.3)": 1, - "#e9682d": 1, - "#2f2f2f": 2, - "#b2dde3": 1, - "#b8b8b8": 2, - "#c2b991": 1, - "#a97f5f": 1, - "#56be49": 1, - "#cd0c00": 1, - "#008000": 1, - "rgba(0,0,0,0.5)": 2, - "#a7a7a7": 1, - "#5fd350": 4, - "#606060": 2, - "#f5a623": 1, - "rgba(1,1,1,0.5)": 1, - "#d0021b": 1, - "#003062": 1, - "#ffdf75": 1, - "#ff1001": 1, - "#999999": 1, - "#e02b27": 1, - "#1f8dd6": 1, - "#7d7d7d": 1, - "rgb(240, 120, 0)": 1, - "#4f4b47": 1, - "#f8f8f8": 1, - "#317cc5": 1, - "#696969": 1, - "#7a7a7a": 2, - "#CCC": 3, - "#FFF": 3, - "#BDBDBD": 1, - "#F3F3F3": 1, - "#9ca3af": 2, - "rgb(0 74 153 / var(--tw-text-opacity))": 4 - }, - "uniquenessRatio": 0.11345029239766082 - }, - "background": { - "total": 328, - "totalUnique": 68, - "unique": { - "#ff0": 1, - "#ffffff": 1, - "#e9e9e9": 1, - "#f6f6f6": 2, - "#ededed": 1, - "#007fff": 1, - "#fffa90": 2, - "#fddfdf": 1, - "#aaaaaa": 1, - "transparent": 19, - "#003062": 3, - "#0d4282": 4, - "#93887e": 1, - "#84776b": 2, - "#ee3a3a": 1, - "#F0F0F0": 1, - "#f0f0f0": 2, - "#fff": 84, - "rgba(255,255,255,0)": 30, - "#ff5216": 12, - "red": 2, - "grey": 1, - "#004a99": 24, - "#f2f2f2": 39, - "#000": 9, - "rgba(0,0,0,0)": 10, - "#202020": 1, - "#003C7D": 1, - "#f0e082": 2, - "#e8e8e8": 3, - "#bababa": 4, - "rgba(0,0,0,0.7)": 1, - "#f8f8f8": 2, - "#7f7f7f": 1, - "#cae8c6": 1, - "rgba(0,0,0,0.05)": 1, - "#588294": 1, - "#fafafa": 1, - "#5FD350": 1, - "#E9682D": 1, - "#5fd350": 1, - "#5b8351": 1, - "#5b8451": 1, - "rgba(241,240,238,0)": 5, - "rgba(0,0,0,0.6)": 1, - "black": 1, - "rgba(0,0,0,0.4)": 1, - "#ddd": 1, - "#39c": 2, - "rgba(0,0,0,0.9)": 1, - "white": 4, - "rgba(255, 212, 96, 0.26)": 1, - "#FFF": 1, - "#f5f5f5": 2, - "#8bc53f": 1, - "#ebebeb": 1, - "rgba(255,255,255,1)": 6, - "rgba(0,0,0,1)": 6, - "#f00": 2, - "#f3f3f3": 2, - "#efefef": 2, - "#161616": 1, - "#101010": 1, - "#131313": 2, - "#0b0b0b": 1, - "#444": 1, - "rgba(0, 0, 0, 0.6)": 2, - "#949391": 1 - }, - "uniquenessRatio": 0.2073170731707317 - }, - "border": { - "total": 193, - "totalUnique": 41, - "unique": { - "silver": 1, - "#999": 4, - "#000": 7, - "#ddd": 16, - "#ccc": 7, - "transparent": 13, - "rgba(0,0,0,.15)": 1, - "#e3e3e3": 1, - "rgba(0,0,0,.2)": 2, - "#fff": 15, - "rgba(0,0,0,0.2)": 8, - "#c5c5c5": 2, - "#003eff": 2, - "#dad55e": 2, - "#f1a899": 1, - "#aaa": 10, - "#5897fb": 4, - "rgba(0,0,0,0.1)": 8, - "rgba(0,0,0,0.3)": 2, - "#004a99": 9, - "#f2f2f2": 10, - "#e0e0e0": 1, - "#5b8451": 1, - "#4e7744": 1, - "#6a9b5e": 1, - "#dadada": 2, - "#adadad": 2, - "#7f7f7f": 3, - "#e8e8e8": 22, - "#a9a9a9": 2, - "#d9d9d9": 4, - "#bababa": 10, - "#ee3a3a": 1, - "#bbb": 6, - "#0d4282": 1, - "#ededed": 1, - "#eee": 1, - "black": 2, - "white": 1, - "#8f8f8f": 4, - "#bdbdbd": 2 - }, - "uniquenessRatio": 0.21243523316062177 - }, - "border-top-color": { - "total": 30, - "totalUnique": 18, - "unique": { - "#000": 4, - "#d5d5d5": 1, - "#c9e2b3": 1, - "#a6e1ec": 1, - "#f7e1b5": 1, - "#e4b9c0": 1, - "#ddd": 1, - "#337ab7": 1, - "#d6e9c6": 1, - "#bce8f1": 1, - "#faebcc": 1, - "#ebccd1": 1, - "#999": 1, - "rgba(0,0,0,.25)": 1, - "#fff": 7, - "#84776b": 2, - "#bbb": 3, - "#696969": 1 - }, - "uniquenessRatio": 0.6 - }, - "-webkit-tap-highlight-color": { - "total": 3, - "totalUnique": 2, - "unique": { - "rgba(0,0,0,0)": 1, - "transparent": 2 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "border-top": { - "total": 60, - "totalUnique": 18, - "unique": { - "#eee": 1, - "#ddd": 5, - "transparent": 5, - "#e5e5e5": 1, - "#a9a9a9": 1, - "rgba(255,255,255,0.2)": 1, - "#bababa": 4, - "rgba(52,52,52,0.3)": 1, - "#f2f2f2": 10, - "rgba(0,0,0,0.1)": 2, - "#000": 4, - "#e8e8e8": 14, - "rgba(186,186,186,0.4)": 2, - "rgba(187,187,187,0.4)": 1, - "#d9d9d9": 3, - "#ededed": 3, - "#959595": 1, - "black": 1 - }, - "uniquenessRatio": 0.3 - }, - "border-bottom": { - "total": 103, - "totalUnique": 28, - "unique": { - "#eee": 1, - "#777": 1, - "#ddd": 5, - "#e5e5e5": 2, - "transparent": 5, - "#ebebeb": 1, - "#e8e8e8": 25, - "rgba(0,0,0,0.1)": 13, - "rgba(255,255,255,0.2)": 1, - "#bababa": 6, - "#004a99": 5, - "rgba(52,52,52,0.3)": 1, - "#2f2f2f": 1, - "rgba(0,0,0,0.05)": 3, - "#dbdbdb": 1, - "#f2f2f2": 8, - "rgba(186,186,186,0.4)": 3, - "#7f7f7f": 3, - "rgba(187,187,187,0.4)": 1, - "#000": 2, - "#d9d9d9": 2, - "#bbb": 1, - "#e0e0e0": 1, - "#ededed": 6, - "#fff": 1, - "#cccccc": 1, - "#959595": 1, - "lightgrey": 2 - }, - "uniquenessRatio": 0.27184466019417475 - }, - "border-left": { - "total": 18, - "totalUnique": 11, - "unique": { - "#eee": 1, - "transparent": 4, - "#aaa": 1, - "#004a99": 2, - "#fff": 4, - "#000": 1, - "#e8e8e8": 1, - "#bababa": 1, - "#858585": 1, - "#FFF": 1, - "#3F3F3F": 1 - }, - "uniquenessRatio": 0.6111111111111112 - }, - "border-right": { - "total": 22, - "totalUnique": 15, - "unique": { - "#eee": 1, - "transparent": 4, - "#aaa": 1, - "rgba(0,0,0,0.1)": 3, - "#004a99": 1, - "rgba(255,255,255,0.2)": 1, - "#bababa": 1, - "rgba(52,52,52,0.3)": 1, - "rgba(0,0,0,0.15)": 1, - "#e8e8e8": 3, - "#ededed": 1, - "#858585": 1, - "#bdbdbd": 1, - "#FFF": 1, - "#3F3F3F": 1 - }, - "uniquenessRatio": 0.6818181818181818 - }, - "-webkit-box-shadow": { - "total": 27, - "totalUnique": 15, - "unique": { - "rgba(0,0,0,.25)": 1, - "rgba(0,0,0,.075)": 8, - "rgba(102,175,233,.6)": 1, - "#67b168": 1, - "#c0a16b": 1, - "#ce8483": 1, - "rgba(0,0,0,.125)": 2, - "rgba(0,0,0,.175)": 1, - "rgba(255,255,255,.1)": 3, - "rgba(0,0,0,.1)": 1, - "rgba(0,0,0,.15)": 1, - "rgba(0,0,0,.05)": 2, - "rgba(0,0,0,.5)": 2, - "rgba(0,0,0,.2)": 1, - "#666": 1 - }, - "uniquenessRatio": 0.5555555555555556 - }, - "box-shadow": { - "total": 61, - "totalUnique": 34, - "unique": { - "rgba(0,0,0,.25)": 1, - "rgba(0,0,0,.075)": 8, - "rgba(102,175,233,.6)": 1, - "#67b168": 1, - "#c0a16b": 1, - "#ce8483": 1, - "rgba(0,0,0,.125)": 2, - "rgba(0,0,0,.175)": 1, - "rgba(255,255,255,.1)": 3, - "rgba(0,0,0,.1)": 1, - "rgba(0,0,0,.15)": 1, - "rgba(0,0,0,.05)": 2, - "rgba(0,0,0,.5)": 2, - "rgba(0,0,0,.2)": 1, - "rgba(0,0,0,0.5)": 2, - "#5e9ed6": 1, - "#666": 1, - "#004a99": 1, - "#68a8e0": 2, - "rgba(0,0,0,0.19)": 1, - "rgba(0,0,0,0.35)": 1, - "rgba(0,0,0,0.15)": 4, - "#fff": 2, - "#e8e8e8": 1, - "#5b8451": 3, - "#bababa": 2, - "rgba(0,0,0,0.2)": 1, - "rgba(0, 0, 0, .1)": 1, - "rgba(0,0,0,0.6)": 2, - "rgba(0, 0, 0, 0.6)": 2, - "#000": 2, - "#00000050": 1, - "#bbb": 1, - "#0000": 4 - }, - "uniquenessRatio": 0.5573770491803278 - }, - "border-color": { - "total": 182, - "totalUnique": 68, - "unique": { - "#66afe9": 1, - "#3c763d": 3, - "#2b542c": 1, - "#8a6d3b": 3, - "#66512c": 1, - "#a94442": 3, - "#843534": 1, - "#ccc": 2, - "#8c8c8c": 2, - "#adadad": 3, - "#2e6da4": 2, - "#122b40": 2, - "#204d74": 2, - "#4cae4c": 2, - "#255625": 2, - "#398439": 2, - "#46b8da": 2, - "#1b6d85": 2, - "#269abc": 2, - "#eea236": 2, - "#985f0d": 2, - "#d58512": 2, - "#d43f3a": 2, - "#761c19": 2, - "#ac2925": 2, - "transparent": 28, - "#337ab7": 6, - "#eee": 2, - "#ddd": 7, - "#e7e7e7": 2, - "#080808": 2, - "#333": 1, - "#101010": 1, - "#d6e9c6": 3, - "#bce8f1": 3, - "#faebcc": 3, - "#ebccd1": 3, - "#31708f": 1, - "rgba(0,0,0,.15)": 1, - "#888": 4, - "#5897fb": 1, - "#003062": 1, - "#0d4282": 1, - "#E0E0E0": 4, - "#fff": 6, - "#5b8451": 1, - "#004a99": 13, - "#5fd350": 3, - "#e9682d": 1, - "#f2f2f2": 2, - "#a97f5f": 1, - "#b8b8b8": 1, - "#c2b991": 1, - "#7f7f7f": 2, - "#b2dde3": 1, - "#000": 5, - "#ee3a3a": 3, - "#e8e8e8": 3, - "#bababa": 1, - "#ed8380": 1, - "red": 1, - "#999": 2, - "#2a2a2a": 1, - "#555": 1, - "#2d2d2d": 3, - "#444": 2, - "#e5e7eb": 1, - "rgb(242 242 242 / var(--tw-border-opacity))": 2 - }, - "uniquenessRatio": 0.37362637362637363 - }, - "border-bottom-color": { - "total": 17, - "totalUnique": 12, - "unique": { - "transparent": 1, - "#fff": 4, - "#ddd": 1, - "#337ab7": 1, - "#d6e9c6": 1, - "#bce8f1": 1, - "#faebcc": 1, - "#ebccd1": 1, - "#000": 3, - "#999": 1, - "rgba(0,0,0,.25)": 1, - "#696969": 1 - }, - "uniquenessRatio": 0.7058823529411765 - }, - "background-image": { - "total": 175, - "totalUnique": 14, - "unique": { - "rgba(255,255,255,.15)": 45, - "transparent": 61, - "rgba(0,0,0,.5)": 8, - "rgba(0,0,0,.0001)": 8, - "#fff": 9, - "#eee": 12, - "#ccc": 3, - "rgba(255,255,255,0.75)": 2, - "rgba(255,255,255,0)": 2, - "#000": 2, - "rgba(0,0,0,0)": 2, - "rgba(0,0,0,0.5)": 1, - "#f2f2f2": 10, - "#004a99": 10 - }, - "uniquenessRatio": 0.08 - }, - "text-shadow": { - "total": 8, - "totalUnique": 6, - "unique": { - "#fff": 1, - "rgba(0,0,0,.6)": 2, - "rgba(0,0,0,0.2)": 2, - "rgba(0,0,0,0.7)": 1, - "rgba(255,255,255,0.2)": 1, - "rgba(0,94,153,0.3)": 1 - }, - "uniquenessRatio": 0.75 - }, - "border-right-color": { - "total": 4, - "totalUnique": 4, - "unique": { - "#000": 1, - "#999": 1, - "rgba(0,0,0,.25)": 1, - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "border-left-color": { - "total": 6, - "totalUnique": 5, - "unique": { - "#000": 2, - "#999": 1, - "rgba(0,0,0,.25)": 1, - "#fff": 1, - "#84776b": 1 - }, - "uniquenessRatio": 0.8333333333333334 - }, - "outline": { - "total": 7, - "totalUnique": 6, - "unique": { - "#588294": 1, - "#ff5501": 1, - "#999": 1, - "#e00": 1, - "#fff": 2, - "#aaa": 1 - }, - "uniquenessRatio": 0.8571428571428571 - }, - "fill": { - "total": 13, - "totalUnique": 9, - "unique": { - "#004a99": 4, - "#a97f5f": 1, - "#b8b8b8": 1, - "#c2b991": 1, - "#7f7f7f": 1, - "#b2dde3": 1, - "rgb(240, 120, 0)": 1, - "#999": 1, - "#fff": 2 - }, - "uniquenessRatio": 0.6923076923076923 - }, - "outline-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#333": 1 - }, - "uniquenessRatio": 1 - }, - "--badge-style1-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f85a13": 1 - }, - "uniquenessRatio": 1 - }, - "--badge-style2-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#d20000": 1 - }, - "uniquenessRatio": 1 - }, - "--badge-style3-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#588294": 1 - }, - "uniquenessRatio": 1 - }, - "--badge-style4-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#008000": 1 - }, - "uniquenessRatio": 1 - }, - "--tw-shadow": { - "total": 2, - "totalUnique": 1, - "unique": { - "#0000": 2 - }, - "uniquenessRatio": 0.5 - }, - "--tw-shadow-colored": { - "total": 2, - "totalUnique": 1, - "unique": { - "#0000": 2 - }, - "uniquenessRatio": 0.5 - } - }, - "formats": { - "total": 2584, - "totalUnique": 8, - "unique": { - "transparent": 201, - "hex3": 814, - "named": 41, - "rgba": 290, - "hex6": 1216, - "rgb": 12, - "hex8": 2, - "hex4": 8 - }, - "uniquenessRatio": 0.0030959752321981426 - } - }, - "gradients": { - "total": 79, - "totalUnique": 60, - "unique": { - "-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)": 5, - "-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)": 5, - "linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)": 5, - "-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%)": 1, - "-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%)": 1, - "-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)))": 1, - "linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%)": 1, - "-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%)": 1, - "-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%)": 1, - "-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)))": 1, - "linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%)": 1, - "-webkit-linear-gradient(top, #fff 50%, #eee 100%)": 1, - "-o-linear-gradient(top, #fff 50%, #eee 100%)": 1, - "linear-gradient(to bottom, #fff 50%, #eee 100%)": 1, - "-webkit-linear-gradient(top, #eee 50%, #ccc 100%)": 1, - "-o-linear-gradient(top, #eee 50%, #ccc 100%)": 1, - "linear-gradient(to bottom, #eee 50%, #ccc 100%)": 1, - "-webkit-linear-gradient(top, #fff 0%, #eee 50%)": 1, - "-o-linear-gradient(top, #fff 0%, #eee 50%)": 1, - "linear-gradient(to bottom, #fff 0%, #eee 50%)": 1, - "-webkit-linear-gradient(top, #eee 50%, #fff 100%)": 1, - "-o-linear-gradient(top, #eee 50%, #fff 100%)": 1, - "linear-gradient(to bottom, #eee 50%, #fff 100%)": 1, - "-moz-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(42%, rgba(255,255,255,0)), color-stop(43%, #fff), color-stop(46%, #fff), color-stop(47%, #ff5216), color-stop(53%, #ff5216), color-stop(54%, #fff), color-stop(57%, #fff), color-stop(58%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,0)))": 1, - "-webkit-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-o-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-ms-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0))": 2, - "linear-gradient(to bottom, #000, rgba(0,0,0,0))": 1, - "linear-gradient(to bottom, rgba(0,0,0,0), #000)": 2, - "linear-gradient(to bottom, rgba(0,0,0,0), #202020)": 1, - "linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 70%)": 1, - "linear-gradient(45deg, #fff 50%, transparent 51%, transparent 100%)": 1, - "-webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#004a99))": 2, - "-webkit-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-moz-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-ms-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-o-linear-gradient(left, #f2f2f2, #004a99)": 2, - "linear-gradient(to bottom, #bababa 54%, #004a99)": 1, - "linear-gradient(to left, #bababa 60%, #004a99)": 1, - "linear-gradient(to bottom, rgba(0,0,0,0) 60%, #000 100%)": 1, - "-webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(rgba(241,240,238,0)))": 1, - "-webkit-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-moz-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-ms-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-o-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%)": 1, - "-webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0)))": 1, - "-webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%)": 1, - "-o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%)": 1, - "-ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%)": 1, - "linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%)": 1, - "-moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)": 1, - "-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)))": 1, - "-webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1, - "-o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1, - "-ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1, - "linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1 - }, - "uniquenessRatio": 0.759493670886076 - }, - "fontFamilies": { - "total": 50, - "totalUnique": 22, - "unique": { - "sans-serif": 1, - "monospace,monospace": 1, - "'Glyphicons Halflings'": 2, - "\"Helvetica Neue\",Helvetica,Arial,sans-serif": 3, - "Menlo,Monaco,Consolas,\"Courier New\",monospace": 1, - "serif": 1, - "a": 1, - "Arial,Helvetica,sans-serif": 2, - "'ProximaNova'": 3, - "'Gazelle'": 9, - "'ga-icon'": 3, - "'ProximaNova',Helvetica,Arial,sans-serif": 4, - "'bluefoot-icons'": 6, - "Consolas,\"Liberation Mono\",Menlo,Courier,monospace": 1, - "'luma-icons'": 2, - "Arial, Helvetica, sans-serif": 4, - "Arial, Baskerville, monospace": 1, - "ProximaNova,Helvetica,Arial,sans-serif": 1, - "ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace": 1, - "vue-icons": 1, - "vue-icons,sans-serif": 1, - "Proxima Nova,sans-serif": 1 - }, - "uniquenessRatio": 0.44 - }, - "fontSizes": { - "total": 842, - "totalUnique": 78, - "unique": { - "0": 6, - "2em": 1, - "80%": 3, - "75%": 4, - "1em": 7, - "10px": 42, - "14px": 161, - "65%": 1, - "36px": 2, - "30px": 10, - "24px": 62, - "18px": 37, - "12px": 114, - "16px": 53, - "21px": 4, - "85%": 1, - "90%": 5, - "17.5px": 1, - "100%": 4, - "13px": 9, - "63px": 1, - "20px": 51, - "0.9rem": 7, - "50px": 2, - ".9em": 1, - "1rem": 56, - "1.125rem": 4, - "100px": 3, - "60px": 4, - "48px": 15, - "3rem": 1, - "1.75rem": 4, - "2.5rem": 4, - "1.5rem": 4, - "1.375rem": 1, - "1.25rem": 4, - "15px": 9, - "1.875rem": 1, - ".9375rem": 4, - "8px": 10, - ".9rem": 1, - "0.7rem": 2, - "0.8rem": 2, - "1.8rem": 1, - "11px": 15, - "1px": 2, - "1.5em": 1, - "40px": 19, - "9px": 10, - ".5625rem": 2, - "1.1rem": 1, - "0.85rem": 2, - "0.95rem": 1, - "27px": 1, - "45px": 1, - "22px": 5, - "23px": 4, - "26px": 4, - "25px": 5, - "17px": 1, - "1.1875rem": 1, - "7px": 7, - "32px": 5, - "5rem": 2, - "56px": 1, - "6px": 12, - "7rem": 1, - "3.5rem": 1, - "28px": 6, - "5px": 1, - "2.1875rem": 2, - "1.2em": 1, - "33px": 3, - "19px": 1, - "1.4em": 2, - "1.2rem": 1, - "1.02em": 1, - ".875em": 1 - }, - "uniquenessRatio": 0.09263657957244656 - }, - "lineHeights": { - "total": 270, - "totalUnique": 83, - "unique": { - "0": 7, - "1": 29, - "2": 2, - "normal": 3, - "1.42857143": 19, - "1.1": 1, - "1.4": 8, - "34px": 2, - "30px": 11, - "46px": 5, - "1.5": 12, - "1.3333333": 6, - "20px": 14, - "1.3": 5, - "1.6": 7, - "1.8em": 1, - "28px": 4, - "24px": 3, - "1.125": 1, - "1.357": 1, - "1.25": 3, - "1.28": 1, - "1.181": 1, - "1.2": 5, - "1.47": 1, - "1.333": 1, - "1.222": 1, - "23px": 6, - "36px": 2, - "26px": 1, - "55px": 1, - "18px": 6, - "60px": 3, - "22px": 7, - "32px": 4, - "0.9rem": 1, - "1.3em": 1, - "15px": 4, - "11px": 3, - ".8": 1, - "59px": 2, - "10px": 1, - "48px": 2, - "1.17": 3, - "107px": 3, - "43px": 1, - "75px": 1, - "45px": 4, - "25px": 3, - "50px": 3, - "17px": 1, - "120px": 2, - "1.8": 1, - "14px": 3, - "1.67": 1, - "44px": 3, - "1.175": 1, - "1.14": 1, - "0.9": 1, - "1.53": 1, - "0.8": 2, - "12px": 1, - "16px": 3, - "90px": 3, - "1.43": 2, - "80px": 1, - "1.45": 1, - "1.643": 1, - "1.429": 1, - "78px": 2, - "58px": 1, - "0.95": 1, - "40px": 5, - "1.6em": 2, - "64px": 1, - "1.083": 1, - "1.167": 1, - "8px": 1, - "1.71": 2, - "2.5": 1, - "1.4em": 3, - "120%": 1, - "35px": 1 - }, - "uniquenessRatio": 0.3074074074074074 - }, - "zindexes": { - "total": 169, - "totalUnique": 57, - "unique": { - "0": 3, - "1": 20, - "2": 27, - "3": 11, - "4": 6, - "5": 2, - "9": 1, - "10": 7, - "11": 1, - "15": 1, - "20": 1, - "30": 1, - "50": 2, - "90": 1, - "99": 2, - "100": 11, - "101": 2, - "150": 1, - "200": 1, - "900": 2, - "990": 1, - "995": 1, - "999": 3, - "1000": 8, - "1010": 1, - "1012": 1, - "1020": 2, - "1025": 1, - "1030": 1, - "1040": 2, - "1042": 1, - "1043": 1, - "1044": 1, - "1045": 1, - "1046": 1, - "1050": 5, - "1051": 1, - "1055": 1, - "1057": 1, - "1060": 3, - "1070": 1, - "1099": 1, - "1100": 1, - "1150": 2, - "2000": 1, - "2050": 1, - "2060": 4, - "2061": 2, - "2065": 3, - "2070": 2, - "3000": 2, - "9000": 2, - "9999": 1, - "100000": 1, - "999999": 1, - "-9": 1, - "-1": 3 - }, - "uniquenessRatio": 0.33727810650887574 - }, - "textShadows": { - "total": 8, - "totalUnique": 7, - "unique": { - "0 1px 0 #fff": 1, - "0 1px 2px rgba(0,0,0,.6)": 2, - "0 0 14px rgba(0,0,0,0.2)": 1, - "0 0 6rem rgba(0,0,0,0.7)": 1, - "-1px -1px 0px rgba(255,255,255,0.2)": 1, - "1px 1px 0px rgba(0,0,0,0.2)": 1, - "1px 1px 8px rgba(0,94,153,0.3)": 1 - }, - "uniquenessRatio": 0.875 - }, - "boxShadows": { - "total": 80, - "totalUnique": 44, - "unique": { - "inset 0 -1px 0 rgba(0,0,0,.25)": 2, - "inset 0 1px 1px rgba(0,0,0,.075)": 8, - "inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)": 2, - "inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168": 2, - "inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b": 2, - "inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483": 2, - "inset 0 3px 5px rgba(0,0,0,.125)": 4, - "0 6px 12px rgba(0,0,0,.175)": 2, - "inset 0 1px 0 rgba(255,255,255,.1)": 2, - "inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)": 2, - "inset 0 1px 2px rgba(0,0,0,.1)": 2, - "inset 0 -1px 0 rgba(0,0,0,.15)": 2, - "0 1px 1px rgba(0,0,0,.05)": 2, - "inset 0 1px 1px rgba(0,0,0,.05)": 2, - "0 3px 9px rgba(0,0,0,.5)": 2, - "0 5px 15px rgba(0,0,0,.5)": 2, - "0 5px 10px rgba(0,0,0,.2)": 2, - "0 3px 9px rgba(0,0,0,0.5)": 1, - "0 5px 15px rgba(0,0,0,0.5)": 1, - "0 0 3px 1px #5e9ed6": 1, - "0px 0px 5px #666": 2, - "0 0 5px #004a99": 1, - "0 0 3px 1px #68a8e0": 2, - "-1px 2px 14px 0 rgba(0,0,0,0.19)": 1, - "0 0 12px 2px rgba(0,0,0,0.35)": 1, - "0px 0px 5px rgba(0,0,0,0.15)": 2, - "0 0 1px #fff": 2, - "0 10px 25px 0 rgba(0,0,0,0.15)": 1, - "0 10px 40px 0 rgba(0,0,0,0.15)": 1, - "0px 0px 0px 1px #e8e8e8": 1, - "0 0 0 5px #5b8451": 2, - "0 0 0 5px #bababa": 1, - "0 0 0 2px #5b8451": 1, - "0 0 0 2px #bababa": 1, - "0 10px 10px rgba(0,0,0,0.2)": 1, - "-1px 1px 3px rgba(0, 0, 0, .1)": 1, - "0 0 3px rgba(0,0,0,0.6)": 1, - "0 0 7px rgba(0,0,0,0.6)": 1, - "0 0 8px rgba(0, 0, 0, 0.6)": 2, - "0 0 0 1px #000": 2, - "0 3px 9px #00000050": 1, - "0 10px 40px #bbb": 1, - "var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)": 2, - "0 0 #0000": 4 - }, - "uniquenessRatio": 0.55 - }, - "borderRadiuses": { - "total": 348, - "totalUnique": 35, - "unique": { - "0": 79, - "6px": 19, - "4px": 53, - "50%": 22, - "3px": 54, - "4px 4px 0 0": 3, - "1px": 1, - "15px": 4, - ".25em": 1, - "10px": 12, - "5px 5px 0 0": 1, - "2px": 29, - "18px": 5, - "20px": 2, - "32px": 3, - "30px": 4, - "5px": 10, - "0 0 4px 4px": 2, - "8px": 2, - "100%": 10, - "50px": 1, - "24px": 2, - "3px 0 0 0": 1, - "16px": 11, - "100px": 1, - "64px": 2, - "0 0 16px 16px": 1, - "16.5px": 1, - ".4rem": 1, - ".33333rem": 2, - ".7rem": 1, - "0 0 .75em .75em": 1, - "20%": 1, - "0 0 19px 19px": 2, - ".125em": 4 - }, - "uniquenessRatio": 0.10057471264367816, - "itemsPerContext": { - "border-radius": { - "total": 226, - "totalUnique": 34, - "unique": { - "0": 27, - "6px": 13, - "4px": 35, - "50%": 22, - "3px": 22, - "4px 4px 0 0": 3, - "1px": 1, - "15px": 2, - ".25em": 1, - "10px": 12, - "5px 5px 0 0": 1, - "2px": 29, - "18px": 5, - "20px": 2, - "32px": 3, - "30px": 2, - "5px": 8, - "0 0 4px 4px": 2, - "8px": 2, - "100%": 10, - "50px": 1, - "24px": 2, - "3px 0 0 0": 1, - "16px": 7, - "100px": 1, - "64px": 2, - "0 0 16px 16px": 1, - "16.5px": 1, - ".4rem": 1, - ".33333rem": 2, - ".7rem": 1, - "0 0 .75em .75em": 1, - "20%": 1, - "0 0 19px 19px": 2 - }, - "uniquenessRatio": 0.1504424778761062 - }, - "border-top-right-radius": { - "total": 31, - "totalUnique": 5, - "unique": { - "0": 16, - "4px": 5, - "6px": 2, - "3px": 7, - ".125em": 1 - }, - "uniquenessRatio": 0.16129032258064516 - }, - "border-bottom-right-radius": { - "total": 25, - "totalUnique": 6, - "unique": { - "0": 10, - "4px": 4, - "6px": 1, - "3px": 7, - "16px": 2, - ".125em": 1 - }, - "uniquenessRatio": 0.24 - }, - "border-top-left-radius": { - "total": 31, - "totalUnique": 5, - "unique": { - "0": 16, - "4px": 5, - "6px": 2, - "3px": 7, - ".125em": 1 - }, - "uniquenessRatio": 0.16129032258064516 - }, - "border-bottom-left-radius": { - "total": 25, - "totalUnique": 6, - "unique": { - "0": 10, - "4px": 4, - "6px": 1, - "3px": 7, - "16px": 2, - ".125em": 1 - }, - "uniquenessRatio": 0.24 - }, - "-webkit-border-radius": { - "total": 5, - "totalUnique": 4, - "unique": { - "15px": 1, - "30px": 1, - "5px": 1, - "3px": 2 - }, - "uniquenessRatio": 0.8 - }, - "-moz-border-radius": { - "total": 5, - "totalUnique": 4, - "unique": { - "15px": 1, - "30px": 1, - "5px": 1, - "3px": 2 - }, - "uniquenessRatio": 0.8 - } - } - }, - "animations": { - "durations": { - "total": 340, - "totalUnique": 31, - "unique": { - ".2s": 32, - ".15s": 15, - ".35s": 3, - ".6s": 12, - "2s": 8, - ".3s": 41, - "0.3s": 5, - "250ms": 15, - ".75s": 1, - ".5s": 51, - "5s": 4, - "1.1s": 3, - "800ms": 1, - "0s": 6, - "400ms": 9, - "200ms": 5, - "500ms": 2, - "300ms": 10, - ".25s": 20, - "1.5s": 44, - "0.2s": 3, - ".4s": 5, - "750ms": 2, - "150ms": 5, - ".8s": 2, - "0.1s": 1, - "1400ms": 7, - "1s": 16, - "0.5s": 10, - "1.2s": 1, - ".7s": 1 - }, - "uniquenessRatio": 0.09117647058823529 - }, - "timingFunctions": { - "total": 229, - "totalUnique": 7, - "unique": { - "ease-in-out": 98, - "linear": 37, - "ease": 51, - "ease-out": 19, - "cubic-bezier(.25, .1, .25, 1)": 16, - "steps(4, end)": 7, - "ease-in": 1 - }, - "uniquenessRatio": 0.03056768558951965 - } - }, - "prefixes": { - "total": 533, - "totalUnique": 76, - "unique": { - "5px auto -webkit-focus-ring-color": 3, - "-ms-autohiding-scrollbar": 1, - "border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s": 1, - "-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)": 5, - "-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)": 5, - "-webkit-transform .3s ease-out": 1, - "-o-transform .3s ease-out": 1, - "-webkit-transform .6s ease-in-out": 1, - "-o-transform .6s ease-in-out": 1, - "-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%)": 1, - "-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%)": 1, - "-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)))": 1, - "-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%)": 1, - "-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%)": 1, - "-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)))": 1, - "-webkit-transform 0.3s ease-out": 1, - "-moz-transform 0.3s ease-out": 1, - "-o-transform 0.3s ease-out": 1, - "-webkit-linear-gradient(top, #fff 50%, #eee 100%)": 1, - "-o-linear-gradient(top, #fff 50%, #eee 100%)": 1, - "-webkit-linear-gradient(top, #eee 50%, #ccc 100%)": 1, - "-o-linear-gradient(top, #eee 50%, #ccc 100%)": 1, - "-webkit-linear-gradient(top, #fff 0%, #eee 50%)": 1, - "-o-linear-gradient(top, #fff 0%, #eee 50%)": 1, - "-webkit-linear-gradient(top, #eee 50%, #fff 100%)": 1, - "-o-linear-gradient(top, #eee 50%, #fff 100%)": 1, - "-webkit-optimize-contrast": 1, - "-webkit-flex": 144, - "-ms-flexbox": 145, - "-ms-flex": 144, - "-moz-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(42%, rgba(255,255,255,0)), color-stop(43%, #fff), color-stop(46%, #fff), color-stop(47%, #ff5216), color-stop(53%, #ff5216), color-stop(54%, #fff), color-stop(57%, #fff), color-stop(58%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,0)))": 1, - "-webkit-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-o-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-ms-linear-gradient(to left top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, #fff 43%, #fff 46%, #ff5216 47%, #ff5216 53%, #fff 54%, #fff 57%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%)": 1, - "-webkit-image-set(url('../images/zoom-icon-white-bg.png') 1x, url('../images/zoom-icon-white-bg@2x.png') 2x, url('../images/zoom-icon-white-bg@3x.png') 3x) 20 20,zoom-in": 1, - "-webkit-sticky": 6, - "-webkit-inline-flex": 2, - "-ms-inline-flexbox": 2, - "-ms-inline-flex": 2, - "-webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#004a99))": 2, - "-webkit-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-moz-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-ms-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-o-linear-gradient(left, #f2f2f2, #004a99)": 2, - "-moz-sticky": 1, - "-ms-sticky": 1, - "-o-sticky": 1, - "-webkit-box": 1, - "-webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(rgba(241,240,238,0)))": 1, - "-webkit-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-moz-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-ms-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-o-linear-gradient(top, #f2f2f2, rgba(241,240,238,0))": 1, - "-webkit-transform 1s ease-in-out": 1, - "-moz-transform 1s ease-in-out": 1, - "-o-transform 1s ease-in-out": 1, - "-ms-transform 1s ease-in-out": 1, - "-webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out": 2, - "-moz-transform 0.5s ease-in-out, opacity 1s ease-in-out": 2, - "-o-transform 0.5s ease-in-out, opacity 1s ease-in-out": 2, - "-ms-transform 0.5s ease-in-out, opacity 1s ease-in-out": 2, - "-moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%)": 1, - "-webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0)))": 1, - "-webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%)": 1, - "-o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%)": 1, - "-ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%)": 1, - "-moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%)": 1, - "-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)))": 1, - "-webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1, - "-o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1, - "-ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%)": 1, - "-moz-zoom-out": 1, - "-webkit-zoom-out": 1, - "-webkit-zoom-in": 1, - "-moz-zoom-in": 1 - }, - "uniquenessRatio": 0.1425891181988743 - }, - "browserhacks": { - "total": 2, - "totalUnique": 1, - "unique": { - "4px solid\\9": 2 - }, - "uniquenessRatio": 0.5 - }, - "units": { - "total": 7065, - "totalUnique": 10, - "unique": { - "px": 6029, - "em": 94, - "s": 326, - "deg": 236, - "rem": 216, - "vw": 24, - "vh": 36, - "ms": 96, - "x": 3, - "fr": 5 - }, - "uniquenessRatio": 0.0014154281670205238, - "itemsPerContext": { - "border-bottom": { - "total": 106, - "totalUnique": 1, - "unique": { - "px": 106 - }, - "uniquenessRatio": 0.009433962264150943 - }, - "margin": { - "total": 382, - "totalUnique": 3, - "unique": { - "em": 10, - "px": 367, - "rem": 5 - }, - "uniquenessRatio": 0.007853403141361256 - }, - "font-size": { - "total": 816, - "totalUnique": 3, - "unique": { - "em": 15, - "px": 691, - "rem": 110 - }, - "uniquenessRatio": 0.003676470588235294 - }, - "top": { - "total": 209, - "totalUnique": 3, - "unique": { - "em": 3, - "px": 205, - "rem": 1 - }, - "uniquenessRatio": 0.014354066985645933 - }, - "bottom": { - "total": 45, - "totalUnique": 2, - "unique": { - "em": 2, - "px": 43 - }, - "uniquenessRatio": 0.044444444444444446 - }, - "padding": { - "total": 787, - "totalUnique": 3, - "unique": { - "em": 23, - "px": 751, - "rem": 13 - }, - "uniquenessRatio": 0.0038119440914866584 - }, - "border": { - "total": 189, - "totalUnique": 2, - "unique": { - "px": 187, - "rem": 2 - }, - "uniquenessRatio": 0.010582010582010581 - }, - "outline": { - "total": 10, - "totalUnique": 1, - "unique": { - "px": 10 - }, - "uniquenessRatio": 0.1 - }, - "outline-offset": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-radius": { - "total": 176, - "totalUnique": 3, - "unique": { - "px": 169, - "em": 3, - "rem": 4 - }, - "uniquenessRatio": 0.017045454545454544 - }, - "-webkit-transition": { - "total": 28, - "totalUnique": 2, - "unique": { - "s": 26, - "ms": 2 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "-o-transition": { - "total": 28, - "totalUnique": 2, - "unique": { - "s": 26, - "ms": 2 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "transition": { - "total": 168, - "totalUnique": 2, - "unique": { - "s": 129, - "ms": 39 - }, - "uniquenessRatio": 0.011904761904761904 - }, - "margin-top": { - "total": 342, - "totalUnique": 3, - "unique": { - "px": 327, - "em": 2, - "rem": 13 - }, - "uniquenessRatio": 0.008771929824561403 - }, - "margin-bottom": { - "total": 376, - "totalUnique": 2, - "unique": { - "px": 359, - "rem": 17 - }, - "uniquenessRatio": 0.005319148936170213 - }, - "border-top": { - "total": 62, - "totalUnique": 1, - "unique": { - "px": 62 - }, - "uniquenessRatio": 0.016129032258064516 - }, - "width": { - "total": 307, - "totalUnique": 4, - "unique": { - "px": 283, - "vw": 9, - "em": 5, - "rem": 10 - }, - "uniquenessRatio": 0.013029315960912053 - }, - "height": { - "total": 391, - "totalUnique": 5, - "unique": { - "px": 367, - "vh": 12, - "em": 4, - "vw": 5, - "rem": 3 - }, - "uniquenessRatio": 0.01278772378516624 - }, - "padding-bottom": { - "total": 89, - "totalUnique": 2, - "unique": { - "px": 87, - "rem": 2 - }, - "uniquenessRatio": 0.02247191011235955 - }, - "margin-left": { - "total": 199, - "totalUnique": 3, - "unique": { - "px": 190, - "em": 6, - "rem": 3 - }, - "uniquenessRatio": 0.01507537688442211 - }, - "padding-right": { - "total": 98, - "totalUnique": 2, - "unique": { - "px": 89, - "rem": 9 - }, - "uniquenessRatio": 0.02040816326530612 - }, - "padding-left": { - "total": 89, - "totalUnique": 3, - "unique": { - "px": 77, - "em": 6, - "rem": 6 - }, - "uniquenessRatio": 0.033707865168539325 - }, - "border-left": { - "total": 18, - "totalUnique": 1, - "unique": { - "px": 18 - }, - "uniquenessRatio": 0.05555555555555555 - }, - "border-right": { - "total": 22, - "totalUnique": 1, - "unique": { - "px": 22 - }, - "uniquenessRatio": 0.045454545454545456 - }, - "-webkit-box-shadow": { - "total": 46, - "totalUnique": 1, - "unique": { - "px": 46 - }, - "uniquenessRatio": 0.021739130434782608 - }, - "box-shadow": { - "total": 98, - "totalUnique": 1, - "unique": { - "px": 98 - }, - "uniquenessRatio": 0.01020408163265306 - }, - "max-height": { - "total": 44, - "totalUnique": 2, - "unique": { - "px": 34, - "vh": 10 - }, - "uniquenessRatio": 0.045454545454545456 - }, - "margin-right": { - "total": 142, - "totalUnique": 3, - "unique": { - "px": 138, - "rem": 3, - "em": 1 - }, - "uniquenessRatio": 0.02112676056338028 - }, - "min-height": { - "total": 91, - "totalUnique": 3, - "unique": { - "px": 75, - "vh": 14, - "vw": 2 - }, - "uniquenessRatio": 0.03296703296703297 - }, - "padding-top": { - "total": 112, - "totalUnique": 2, - "unique": { - "px": 109, - "rem": 3 - }, - "uniquenessRatio": 0.017857142857142856 - }, - "border-bottom-width": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "line-height": { - "total": 130, - "totalUnique": 3, - "unique": { - "px": 122, - "em": 7, - "rem": 1 - }, - "uniquenessRatio": 0.023076923076923078 - }, - "right": { - "total": 93, - "totalUnique": 3, - "unique": { - "px": 90, - "vw": 1, - "rem": 2 - }, - "uniquenessRatio": 0.03225806451612903 - }, - "-webkit-transition-duration": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "-o-transition-duration": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "transition-duration": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "min-width": { - "total": 45, - "totalUnique": 1, - "unique": { - "px": 45 - }, - "uniquenessRatio": 0.022222222222222223 - }, - "border-width": { - "total": 59, - "totalUnique": 1, - "unique": { - "px": 59 - }, - "uniquenessRatio": 0.01694915254237288 - }, - "border-top-left-radius": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "em": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "border-top-right-radius": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "em": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "border-bottom-right-radius": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "em": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "border-bottom-left-radius": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "em": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "background-position": { - "total": 332, - "totalUnique": 1, - "unique": { - "px": 332 - }, - "uniquenessRatio": 0.0030120481927710845 - }, - "background-image": { - "total": 15, - "totalUnique": 1, - "unique": { - "deg": 15 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "-webkit-background-size": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "background-size": { - "total": 16, - "totalUnique": 2, - "unique": { - "px": 13, - "rem": 3 - }, - "uniquenessRatio": 0.125 - }, - "-webkit-animation": { - "total": 39, - "totalUnique": 2, - "unique": { - "s": 26, - "ms": 13 - }, - "uniquenessRatio": 0.05128205128205128 - }, - "-o-animation": { - "total": 17, - "totalUnique": 2, - "unique": { - "s": 14, - "ms": 3 - }, - "uniquenessRatio": 0.11764705882352941 - }, - "animation": { - "total": 48, - "totalUnique": 2, - "unique": { - "s": 35, - "ms": 13 - }, - "uniquenessRatio": 0.041666666666666664 - }, - "text-shadow": { - "total": 16, - "totalUnique": 2, - "unique": { - "px": 15, - "rem": 1 - }, - "uniquenessRatio": 0.125 - }, - "max-width": { - "total": 65, - "totalUnique": 1, - "unique": { - "px": 65 - }, - "uniquenessRatio": 0.015384615384615385 - }, - "left": { - "total": 83, - "totalUnique": 3, - "unique": { - "px": 79, - "em": 3, - "vw": 1 - }, - "uniquenessRatio": 0.03614457831325301 - }, - "-webkit-perspective": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "perspective": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "text-indent": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "-moz-transition": { - "total": 19, - "totalUnique": 2, - "unique": { - "s": 17, - "ms": 2 - }, - "uniquenessRatio": 0.10526315789473684 - }, - "letter-spacing": { - "total": 37, - "totalUnique": 1, - "unique": { - "px": 37 - }, - "uniquenessRatio": 0.02702702702702703 - }, - "border-left-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "transform": { - "total": 133, - "totalUnique": 3, - "unique": { - "px": 52, - "deg": 79, - "vw": 2 - }, - "uniquenessRatio": 0.022556390977443608 - }, - "-o-transform": { - "total": 51, - "totalUnique": 3, - "unique": { - "deg": 35, - "px": 15, - "vw": 1 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "-moz-transform": { - "total": 51, - "totalUnique": 3, - "unique": { - "deg": 35, - "px": 15, - "vw": 1 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "-ms-transform": { - "total": 51, - "totalUnique": 3, - "unique": { - "deg": 35, - "px": 15, - "vw": 1 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "-webkit-transform": { - "total": 51, - "totalUnique": 3, - "unique": { - "deg": 35, - "px": 15, - "vw": 1 - }, - "uniquenessRatio": 0.058823529411764705 - }, - "-webkit-flex": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "-ms-flex": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "flex": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "cursor": { - "total": 3, - "totalUnique": 1, - "unique": { - "x": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "gap": { - "total": 20, - "totalUnique": 2, - "unique": { - "px": 15, - "rem": 5 - }, - "uniquenessRatio": 0.1 - }, - "background": { - "total": 10, - "totalUnique": 2, - "unique": { - "px": 9, - "deg": 1 - }, - "uniquenessRatio": 0.2 - }, - "backdrop-filter": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "-webkit-backdrop-filter": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "-ms-transition": { - "total": 18, - "totalUnique": 2, - "unique": { - "ms": 2, - "s": 16 - }, - "uniquenessRatio": 0.1111111111111111 - }, - "-webkit-border-radius": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "-moz-border-radius": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "flex-basis": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "grid-template-columns": { - "total": 3, - "totalUnique": 1, - "unique": { - "fr": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "-moz-animation": { - "total": 21, - "totalUnique": 2, - "unique": { - "ms": 10, - "s": 11 - }, - "uniquenessRatio": 0.09523809523809523 - }, - "-ms-animation": { - "total": 21, - "totalUnique": 2, - "unique": { - "ms": 10, - "s": 11 - }, - "uniquenessRatio": 0.09523809523809523 - }, - "font": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "border-top-width": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "transform-origin": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "animation-delay": { - "total": 12, - "totalUnique": 1, - "unique": { - "s": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "--tw-rotate": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "grid-template-rows": { - "total": 2, - "totalUnique": 1, - "unique": { - "fr": 2 - }, - "uniquenessRatio": 0.5 - }, - "row-gap": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "-moz-column-gap": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "column-gap": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0304617662130615, - "mode": 1, - "range": 1, - "sum": 18098 - }, - "keywords": { - "total": 1196, - "totalUnique": 5, - "unique": { - "none": 767, - "auto": 347, - "inherit": 40, - "initial": 36, - "unset": 6 - }, - "uniquenessRatio": 0.004180602006688963 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/github-20231008.css b/src/__fixtures__/github-20231008.css deleted file mode 100644 index b37091af..00000000 --- a/src/__fixtures__/github-20231008.css +++ /dev/null @@ -1,51852 +0,0 @@ -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -:root, -[data-color-mode=light][data-light-theme=light], -[data-color-mode=dark][data-dark-theme=light] {} - -:root, -:root::selection, -[data-color-mode=light][data-light-theme=light], -[data-color-mode=light][data-light-theme=light]::selection, -[data-color-mode=dark][data-dark-theme=light], -[data-color-mode=dark][data-dark-theme=light]::selection { - --color-canvas-default-transparent: rgba(255,255,255,0); - --color-page-header-bg: #f6f8fa; - --color-marketing-icon-primary: #218bff; - --color-marketing-icon-secondary: #54aeff; - --color-diff-blob-addition-num-text: #1F2328; - --color-diff-blob-addition-fg: #1F2328; - --color-diff-blob-addition-num-bg: #ccffd8; - --color-diff-blob-addition-line-bg: #e6ffec; - --color-diff-blob-addition-word-bg: #abf2bc; - --color-diff-blob-deletion-num-text: #1F2328; - --color-diff-blob-deletion-fg: #1F2328; - --color-diff-blob-deletion-num-bg: #ffd7d5; - --color-diff-blob-deletion-line-bg: #ffebe9; - --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4); - --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4); - --color-diff-blob-expander-icon: #656d76; - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-diffstat-deletion-border: rgba(31,35,40,0.15); - --color-diffstat-addition-border: rgba(31,35,40,0.15); - --color-diffstat-addition-bg: #1f883d; - --color-search-keyword-hl: #fff8c5; - --color-prettylights-syntax-comment: #6e7781; - --color-prettylights-syntax-constant: #0550ae; - --color-prettylights-syntax-entity: #6639ba; - --color-prettylights-syntax-storage-modifier-import: #24292f; - --color-prettylights-syntax-entity-tag: #116329; - --color-prettylights-syntax-keyword: #cf222e; - --color-prettylights-syntax-string: #0a3069; - --color-prettylights-syntax-variable: #953800; - --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; - --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; - --color-prettylights-syntax-invalid-illegal-bg: #82071e; - --color-prettylights-syntax-carriage-return-text: #f6f8fa; - --color-prettylights-syntax-carriage-return-bg: #cf222e; - --color-prettylights-syntax-string-regexp: #116329; - --color-prettylights-syntax-markup-list: #3b2300; - --color-prettylights-syntax-markup-heading: #0550ae; - --color-prettylights-syntax-markup-italic: #24292f; - --color-prettylights-syntax-markup-bold: #24292f; - --color-prettylights-syntax-markup-deleted-text: #82071e; - --color-prettylights-syntax-markup-deleted-bg: #ffebe9; - --color-prettylights-syntax-markup-inserted-text: #116329; - --color-prettylights-syntax-markup-inserted-bg: #dafbe1; - --color-prettylights-syntax-markup-changed-text: #953800; - --color-prettylights-syntax-markup-changed-bg: #ffd8b5; - --color-prettylights-syntax-markup-ignored-text: #eaeef2; - --color-prettylights-syntax-markup-ignored-bg: #0550ae; - --color-prettylights-syntax-meta-diff-range: #8250df; - --color-prettylights-syntax-brackethighlighter-angle: #57606a; - --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; - --color-prettylights-syntax-constant-other-reference-link: #0a3069; - --color-codemirror-text: #1F2328; - --color-codemirror-bg: #ffffff; - --color-codemirror-gutters-bg: #ffffff; - --color-codemirror-guttermarker-text: #ffffff; - --color-codemirror-guttermarker-subtle-text: #6e7781; - --color-codemirror-linenumber-text: #656d76; - --color-codemirror-cursor: #1F2328; - --color-codemirror-selection-bg: rgba(84,174,255,0.4); - --color-codemirror-activeline-bg: rgba(234,238,242,0.5); - --color-codemirror-matchingbracket-text: #1F2328; - --color-codemirror-lines-bg: #ffffff; - --color-codemirror-syntax-comment: #24292f; - --color-codemirror-syntax-constant: #0550ae; - --color-codemirror-syntax-entity: #8250df; - --color-codemirror-syntax-keyword: #cf222e; - --color-codemirror-syntax-storage: #cf222e; - --color-codemirror-syntax-string: #0a3069; - --color-codemirror-syntax-support: #0550ae; - --color-codemirror-syntax-variable: #953800; - --color-checks-bg: #24292f; - --color-checks-run-border-width: 0px; - --color-checks-container-border-width: 0px; - --color-checks-text-primary: #f6f8fa; - --color-checks-text-secondary: #8c959f; - --color-checks-text-link: #54aeff; - --color-checks-btn-icon: #afb8c1; - --color-checks-btn-hover-icon: #f6f8fa; - --color-checks-btn-hover-bg: rgba(255,255,255,0.125); - --color-checks-input-text: #eaeef2; - --color-checks-input-placeholder-text: #8c959f; - --color-checks-input-focus-text: #8c959f; - --color-checks-input-bg: #32383f; - --color-checks-input-shadow: none; - --color-checks-donut-error: #fa4549; - --color-checks-donut-pending: #bf8700; - --color-checks-donut-success: #1f883d; - --color-checks-donut-neutral: #afb8c1; - --color-checks-dropdown-text: #afb8c1; - --color-checks-dropdown-bg: #32383f; - --color-checks-dropdown-border: #424a53; - --color-checks-dropdown-shadow: rgba(31,35,40,0.3); - --color-checks-dropdown-hover-text: #f6f8fa; - --color-checks-dropdown-hover-bg: #424a53; - --color-checks-dropdown-btn-hover-text: #f6f8fa; - --color-checks-dropdown-btn-hover-bg: #32383f; - --color-checks-scrollbar-thumb-bg: #57606a; - --color-checks-header-label-text: #d0d7de; - --color-checks-header-label-open-text: #f6f8fa; - --color-checks-header-border: #32383f; - --color-checks-header-icon: #8c959f; - --color-checks-line-text: #d0d7de; - --color-checks-line-num-text: rgba(140,149,159,0.75); - --color-checks-line-timestamp-text: #8c959f; - --color-checks-line-hover-bg: #32383f; - --color-checks-line-selected-bg: rgba(33,139,255,0.15); - --color-checks-line-selected-num-text: #54aeff; - --color-checks-line-dt-fm-text: #24292f; - --color-checks-line-dt-fm-bg: #9a6700; - --color-checks-gate-bg: rgba(125,78,0,0.15); - --color-checks-gate-text: #d0d7de; - --color-checks-gate-waiting-text: #d4a72c; - --color-checks-step-header-open-bg: #32383f; - --color-checks-step-error-text: #ff8182; - --color-checks-step-warning-text: #d4a72c; - --color-checks-logline-text: #8c959f; - --color-checks-logline-num-text: rgba(140,149,159,0.75); - --color-checks-logline-debug-text: #c297ff; - --color-checks-logline-error-text: #d0d7de; - --color-checks-logline-error-num-text: #ff8182; - --color-checks-logline-error-bg: rgba(164,14,38,0.15); - --color-checks-logline-warning-text: #d0d7de; - --color-checks-logline-warning-num-text: #d4a72c; - --color-checks-logline-warning-bg: rgba(125,78,0,0.15); - --color-checks-logline-command-text: #54aeff; - --color-checks-logline-section-text: #4ac26b; - --color-checks-ansi-black: #24292f; - --color-checks-ansi-black-bright: #32383f; - --color-checks-ansi-white: #d0d7de; - --color-checks-ansi-white-bright: #d0d7de; - --color-checks-ansi-gray: #8c959f; - --color-checks-ansi-red: #ff8182; - --color-checks-ansi-red-bright: #ffaba8; - --color-checks-ansi-green: #4ac26b; - --color-checks-ansi-green-bright: #6fdd8b; - --color-checks-ansi-yellow: #d4a72c; - --color-checks-ansi-yellow-bright: #eac54f; - --color-checks-ansi-blue: #54aeff; - --color-checks-ansi-blue-bright: #80ccff; - --color-checks-ansi-magenta: #c297ff; - --color-checks-ansi-magenta-bright: #d8b9ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #24292f; - --color-project-sidebar-bg: #ffffff; - --color-project-gradient-in: #ffffff; - --color-project-gradient-out: rgba(255,255,255,0); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-outline: rgb(0 0 0 / 15%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(0 0 0 / 15%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgb(0 0 0 / 70%) 0 0 0 2px inset; - --color-control-border-color-emphasis: #858F99; - --color-avatar-bg: #ffffff; - --color-avatar-border: rgba(31,35,40,0.15); - --color-avatar-stack-fade: #afb8c1; - --color-avatar-stack-fade-more: #d0d7de; - --color-avatar-child-shadow: 0 0 0 2px rgba(255,255,255,0.8); - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: rgba(0,0,0,0); - --color-select-menu-tap-highlight: rgba(175,184,193,0.5); - --color-select-menu-tap-focus-bg: #b6e3ff; - --color-overlay-shadow: 0 1px 3px rgba(31,35,40,0.12), 0 8px 24px rgba(66,74,83,0.12); - --color-overlay-backdrop: rgba(140,149,159,0.2); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #24292f; - --color-header-divider: #57606a; - --color-header-logo: #ffffff; - --color-header-search-bg: #24292f; - --color-header-search-border: #57606a; - --color-sidenav-selected-bg: #ffffff; - --color-menu-bg-active: rgba(0,0,0,0); - --color-input-disabled-bg: rgba(175,184,193,0.2); - --color-timeline-badge-bg: #eaeef2; - --color-ansi-black: #24292f; - --color-ansi-black-bright: #57606a; - --color-ansi-white: #6e7781; - --color-ansi-white-bright: #8c959f; - --color-ansi-gray: #6e7781; - --color-ansi-red: #cf222e; - --color-ansi-red-bright: #a40e26; - --color-ansi-green: #116329; - --color-ansi-green-bright: #1a7f37; - --color-ansi-yellow: #4d2d00; - --color-ansi-yellow-bright: #633c01; - --color-ansi-blue: #0969da; - --color-ansi-blue-bright: #218bff; - --color-ansi-magenta: #8250df; - --color-ansi-magenta-bright: #a475f9; - --color-ansi-cyan: #1b7c83; - --color-ansi-cyan-bright: #3192aa; - --color-btn-text: #24292f; - --color-btn-bg: #f6f8fa; - --color-btn-border: rgba(31,35,40,0.15); - --color-btn-shadow: 0 1px 0 rgba(31,35,40,0.04); - --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25); - --color-btn-hover-bg: #f3f4f6; - --color-btn-hover-border: rgba(31,35,40,0.15); - --color-btn-active-bg: hsla(220,14%,93%,1); - --color-btn-active-border: rgba(31,35,40,0.15); - --color-btn-selected-bg: hsla(220,14%,94%,1); - --color-btn-counter-bg: rgba(31,35,40,0.08); - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #1f883d; - --color-btn-primary-border: rgba(31,35,40,0.15); - --color-btn-primary-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-primary-hover-bg: #1a7f37; - --color-btn-primary-hover-border: rgba(31,35,40,0.15); - --color-btn-primary-selected-bg: hsla(137,66%,28%,1); - --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2); - --color-btn-primary-disabled-text: rgba(255,255,255,0.8); - --color-btn-primary-disabled-bg: #94d3a2; - --color-btn-primary-disabled-border: rgba(31,35,40,0.15); - --color-btn-primary-icon: rgba(255,255,255,0.8); - --color-btn-primary-counter-bg: rgba(0,45,17,0.2); - --color-btn-outline-text: #0969da; - --color-btn-outline-hover-text: #ffffff; - --color-btn-outline-hover-bg: #0969da; - --color-btn-outline-hover-border: rgba(31,35,40,0.15); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: hsla(212,92%,42%,1); - --color-btn-outline-selected-border: rgba(31,35,40,0.15); - --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2); - --color-btn-outline-disabled-text: rgba(9,105,218,0.5); - --color-btn-outline-disabled-bg: #f6f8fa; - --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05); - --color-btn-outline-counter-bg: #0969da1a; - --color-btn-outline-counter-fg: #0550ae; - --color-btn-outline-hover-counter-fg: #ffffff; - --color-btn-outline-disabled-counter-fg: rgba(9,105,218,0.5); - --color-btn-danger-text: #cf222e; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #a40e26; - --color-btn-danger-hover-border: rgba(31,35,40,0.15); - --color-btn-danger-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: hsla(356,72%,44%,1); - --color-btn-danger-selected-border: rgba(31,35,40,0.15); - --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2); - --color-btn-danger-disabled-text: rgba(207,34,46,0.5); - --color-btn-danger-disabled-bg: #f6f8fa; - --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05); - --color-btn-danger-counter-bg: rgba(207,34,46,0.1); - --color-btn-danger-icon: #cf222e; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-counter-fg: #a40e26; - --color-btn-danger-hover-counter-fg: #ffffff; - --color-btn-danger-disabled-counter-fg: rgba(207,34,46,0.5); - --color-underlinenav-icon: #6e7781; - --color-underlinenav-border-hover: rgba(175,184,193,0.2); - --color-action-list-item-inline-divider: rgba(208,215,222,0.48); - --color-action-list-item-default-hover-bg: rgba(208,215,222,0.32); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(208,215,222,0.48); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(208,215,222,0.24); - --color-action-list-item-danger-hover-bg: rgba(255,235,233,0.64); - --color-action-list-item-danger-active-bg: #ffebe9; - --color-action-list-item-danger-hover-text: #d1242f; - --color-switch-track-bg: #eaeef2; - --color-switch-track-hover-bg: hsla(210,24%,90%,1); - --color-switch-track-active-bg: hsla(210,24%,88%,1); - --color-switch-track-disabled-bg: #8c959f; - --color-switch-track-fg: #656d76; - --color-switch-track-disabled-fg: #ffffff; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: #0969da; - --color-switch-track-checked-hover-bg: #0860CA; - --color-switch-track-checked-active-bg: #0757BA; - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #ffffff; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #ffffff; - --color-switch-knob-disabled-bg: #f6f8fa; - --color-switch-knob-border: #858F99; - --color-switch-knob-checked-bg: #ffffff; - --color-switch-knob-checked-disabled-bg: #f6f8fa; - --color-switch-knob-checked-border: #0969da; - --color-segmented-control-bg: #eaeef2; - --color-segmented-control-button-bg: #ffffff; - --color-segmented-control-button-hover-bg: rgba(175,184,193,0.2); - --color-segmented-control-button-active-bg: rgba(175,184,193,0.4); - --color-segmented-control-button-selected-border: #8c959f; - --color-tree-view-item-chevron-hover-bg: rgba(208,215,222,0.32); - --color-tree-view-item-directory-fill: #54aeff; - --color-fg-default: #1F2328; - --color-fg-muted: #656d76; - --color-fg-subtle: #6e7781; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #ffffff; - --color-canvas-overlay: #ffffff; - --color-canvas-inset: #f6f8fa; - --color-canvas-subtle: #f6f8fa; - --color-border-default: #d0d7de; - --color-border-muted: hsla(210,18%,87%,1); - --color-border-subtle: rgba(31,35,40,0.15); - --color-shadow-small: 0 1px 0 rgba(31,35,40,0.04); - --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15); - --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2); - --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3); - --color-neutral-emphasis-plus: #24292f; - --color-neutral-emphasis: #6e7781; - --color-neutral-muted: rgba(175,184,193,0.2); - --color-neutral-subtle: rgba(234,238,242,0.5); - --color-accent-fg: #0969da; - --color-accent-emphasis: #0969da; - --color-accent-muted: rgba(84,174,255,0.4); - --color-accent-subtle: #ddf4ff; - --color-success-fg: #1a7f37; - --color-success-emphasis: #1f883d; - --color-success-muted: rgba(74,194,107,0.4); - --color-success-subtle: #dafbe1; - --color-attention-fg: #9a6700; - --color-attention-emphasis: #9a6700; - --color-attention-muted: rgba(212,167,44,0.4); - --color-attention-subtle: #fff8c5; - --color-severe-fg: #bc4c00; - --color-severe-emphasis: #bc4c00; - --color-severe-muted: rgba(251,143,68,0.4); - --color-severe-subtle: #fff1e5; - --color-danger-fg: #d1242f; - --color-danger-emphasis: #cf222e; - --color-danger-muted: rgba(255,129,130,0.4); - --color-danger-subtle: #ffebe9; - --color-open-fg: #1a7f37; - --color-open-emphasis: #1f883d; - --color-open-muted: rgba(74,194,107,0.4); - --color-open-subtle: #dafbe1; - --color-closed-fg: #d1242f; - --color-closed-emphasis: #cf222e; - --color-closed-muted: rgba(255,129,130,0.4); - --color-closed-subtle: #ffebe9; - --color-done-fg: #8250df; - --color-done-emphasis: #8250df; - --color-done-muted: rgba(194,151,255,0.4); - --color-done-subtle: #fbefff; - --color-sponsors-fg: #bf3989; - --color-sponsors-emphasis: #bf3989; - --color-sponsors-muted: rgba(255,128,200,0.4); - --color-sponsors-subtle: #ffeff7; - --color-primer-fg-disabled: #8c959f; - --color-primer-canvas-backdrop: rgba(31,35,40,0.5); - --color-primer-canvas-sticky: rgba(255,255,255,0.95); - --color-primer-border-active: #fd8c73; - --color-primer-border-contrast: rgba(31,35,40,0.1); - --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25); - --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2); - --color-scale-black: #1F2328; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f6f8fa; - --color-scale-gray-1: #eaeef2; - --color-scale-gray-2: #d0d7de; - --color-scale-gray-3: #afb8c1; - --color-scale-gray-4: #8c959f; - --color-scale-gray-5: #6e7781; - --color-scale-gray-6: #57606a; - --color-scale-gray-7: #424a53; - --color-scale-gray-8: #32383f; - --color-scale-gray-9: #24292f; - --color-scale-blue-0: #ddf4ff; - --color-scale-blue-1: #b6e3ff; - --color-scale-blue-2: #80ccff; - --color-scale-blue-3: #54aeff; - --color-scale-blue-4: #218bff; - --color-scale-blue-5: #0969da; - --color-scale-blue-6: #0550ae; - --color-scale-blue-7: #033d8b; - --color-scale-blue-8: #0a3069; - --color-scale-blue-9: #002155; - --color-scale-green-0: #dafbe1; - --color-scale-green-1: #aceebb; - --color-scale-green-2: #6fdd8b; - --color-scale-green-3: #4ac26b; - --color-scale-green-4: #2da44e; - --color-scale-green-5: #1a7f37; - --color-scale-green-6: #116329; - --color-scale-green-7: #044f1e; - --color-scale-green-8: #003d16; - --color-scale-green-9: #002d11; - --color-scale-yellow-0: #fff8c5; - --color-scale-yellow-1: #fae17d; - --color-scale-yellow-2: #eac54f; - --color-scale-yellow-3: #d4a72c; - --color-scale-yellow-4: #bf8700; - --color-scale-yellow-5: #9a6700; - --color-scale-yellow-6: #7d4e00; - --color-scale-yellow-7: #633c01; - --color-scale-yellow-8: #4d2d00; - --color-scale-yellow-9: #3b2300; - --color-scale-orange-0: #fff1e5; - --color-scale-orange-1: #ffd8b5; - --color-scale-orange-2: #ffb77c; - --color-scale-orange-3: #fb8f44; - --color-scale-orange-4: #e16f24; - --color-scale-orange-5: #bc4c00; - --color-scale-orange-6: #953800; - --color-scale-orange-7: #762c00; - --color-scale-orange-8: #5c2200; - --color-scale-orange-9: #471700; - --color-scale-red-0: #ffebe9; - --color-scale-red-1: #ffcecb; - --color-scale-red-2: #ffaba8; - --color-scale-red-3: #ff8182; - --color-scale-red-4: #fa4549; - --color-scale-red-5: #cf222e; - --color-scale-red-6: #a40e26; - --color-scale-red-7: #82071e; - --color-scale-red-8: #660018; - --color-scale-red-9: #4c0014; - --color-scale-purple-0: #fbefff; - --color-scale-purple-1: #ecd8ff; - --color-scale-purple-2: #d8b9ff; - --color-scale-purple-3: #c297ff; - --color-scale-purple-4: #a475f9; - --color-scale-purple-5: #8250df; - --color-scale-purple-6: #6639ba; - --color-scale-purple-7: #512a97; - --color-scale-purple-8: #3e1f79; - --color-scale-purple-9: #2e1461; - --color-scale-pink-0: #ffeff7; - --color-scale-pink-1: #ffd3eb; - --color-scale-pink-2: #ffadda; - --color-scale-pink-3: #ff80c8; - --color-scale-pink-4: #e85aad; - --color-scale-pink-5: #bf3989; - --color-scale-pink-6: #99286e; - --color-scale-pink-7: #772057; - --color-scale-pink-8: #611347; - --color-scale-pink-9: #4d0336; - --color-scale-coral-0: #fff0eb; - --color-scale-coral-1: #ffd6cc; - --color-scale-coral-2: #ffb4a1; - --color-scale-coral-3: #fd8c73; - --color-scale-coral-4: #ec6547; - --color-scale-coral-5: #c4432b; - --color-scale-coral-6: #9e2f1c; - --color-scale-coral-7: #801f0f; - --color-scale-coral-8: #691105; - --color-scale-coral-9: #510901; -} - -::backdrop, -[data-color-mode=light][data-light-theme=light], -[data-color-mode=dark][data-dark-theme=light]::backdrop {} - -::backdrop, -[data-color-mode=light][data-light-theme=light], -[data-color-mode=dark][data-dark-theme=light]::backdrop { - --color-canvas-default-transparent: rgba(255,255,255,0); - --color-page-header-bg: #f6f8fa; - --color-marketing-icon-primary: #218bff; - --color-marketing-icon-secondary: #54aeff; - --color-diff-blob-addition-num-text: #1F2328; - --color-diff-blob-addition-fg: #1F2328; - --color-diff-blob-addition-num-bg: #ccffd8; - --color-diff-blob-addition-line-bg: #e6ffec; - --color-diff-blob-addition-word-bg: #abf2bc; - --color-diff-blob-deletion-num-text: #1F2328; - --color-diff-blob-deletion-fg: #1F2328; - --color-diff-blob-deletion-num-bg: #ffd7d5; - --color-diff-blob-deletion-line-bg: #ffebe9; - --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4); - --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4); - --color-diff-blob-expander-icon: #656d76; - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-diffstat-deletion-border: rgba(31,35,40,0.15); - --color-diffstat-addition-border: rgba(31,35,40,0.15); - --color-diffstat-addition-bg: #1f883d; - --color-search-keyword-hl: #fff8c5; - --color-prettylights-syntax-comment: #6e7781; - --color-prettylights-syntax-constant: #0550ae; - --color-prettylights-syntax-entity: #6639ba; - --color-prettylights-syntax-storage-modifier-import: #24292f; - --color-prettylights-syntax-entity-tag: #116329; - --color-prettylights-syntax-keyword: #cf222e; - --color-prettylights-syntax-string: #0a3069; - --color-prettylights-syntax-variable: #953800; - --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; - --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; - --color-prettylights-syntax-invalid-illegal-bg: #82071e; - --color-prettylights-syntax-carriage-return-text: #f6f8fa; - --color-prettylights-syntax-carriage-return-bg: #cf222e; - --color-prettylights-syntax-string-regexp: #116329; - --color-prettylights-syntax-markup-list: #3b2300; - --color-prettylights-syntax-markup-heading: #0550ae; - --color-prettylights-syntax-markup-italic: #24292f; - --color-prettylights-syntax-markup-bold: #24292f; - --color-prettylights-syntax-markup-deleted-text: #82071e; - --color-prettylights-syntax-markup-deleted-bg: #ffebe9; - --color-prettylights-syntax-markup-inserted-text: #116329; - --color-prettylights-syntax-markup-inserted-bg: #dafbe1; - --color-prettylights-syntax-markup-changed-text: #953800; - --color-prettylights-syntax-markup-changed-bg: #ffd8b5; - --color-prettylights-syntax-markup-ignored-text: #eaeef2; - --color-prettylights-syntax-markup-ignored-bg: #0550ae; - --color-prettylights-syntax-meta-diff-range: #8250df; - --color-prettylights-syntax-brackethighlighter-angle: #57606a; - --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; - --color-prettylights-syntax-constant-other-reference-link: #0a3069; - --color-codemirror-text: #1F2328; - --color-codemirror-bg: #ffffff; - --color-codemirror-gutters-bg: #ffffff; - --color-codemirror-guttermarker-text: #ffffff; - --color-codemirror-guttermarker-subtle-text: #6e7781; - --color-codemirror-linenumber-text: #656d76; - --color-codemirror-cursor: #1F2328; - --color-codemirror-selection-bg: rgba(84,174,255,0.4); - --color-codemirror-activeline-bg: rgba(234,238,242,0.5); - --color-codemirror-matchingbracket-text: #1F2328; - --color-codemirror-lines-bg: #ffffff; - --color-codemirror-syntax-comment: #24292f; - --color-codemirror-syntax-constant: #0550ae; - --color-codemirror-syntax-entity: #8250df; - --color-codemirror-syntax-keyword: #cf222e; - --color-codemirror-syntax-storage: #cf222e; - --color-codemirror-syntax-string: #0a3069; - --color-codemirror-syntax-support: #0550ae; - --color-codemirror-syntax-variable: #953800; - --color-checks-bg: #24292f; - --color-checks-run-border-width: 0px; - --color-checks-container-border-width: 0px; - --color-checks-text-primary: #f6f8fa; - --color-checks-text-secondary: #8c959f; - --color-checks-text-link: #54aeff; - --color-checks-btn-icon: #afb8c1; - --color-checks-btn-hover-icon: #f6f8fa; - --color-checks-btn-hover-bg: rgba(255,255,255,0.125); - --color-checks-input-text: #eaeef2; - --color-checks-input-placeholder-text: #8c959f; - --color-checks-input-focus-text: #8c959f; - --color-checks-input-bg: #32383f; - --color-checks-input-shadow: none; - --color-checks-donut-error: #fa4549; - --color-checks-donut-pending: #bf8700; - --color-checks-donut-success: #1f883d; - --color-checks-donut-neutral: #afb8c1; - --color-checks-dropdown-text: #afb8c1; - --color-checks-dropdown-bg: #32383f; - --color-checks-dropdown-border: #424a53; - --color-checks-dropdown-shadow: rgba(31,35,40,0.3); - --color-checks-dropdown-hover-text: #f6f8fa; - --color-checks-dropdown-hover-bg: #424a53; - --color-checks-dropdown-btn-hover-text: #f6f8fa; - --color-checks-dropdown-btn-hover-bg: #32383f; - --color-checks-scrollbar-thumb-bg: #57606a; - --color-checks-header-label-text: #d0d7de; - --color-checks-header-label-open-text: #f6f8fa; - --color-checks-header-border: #32383f; - --color-checks-header-icon: #8c959f; - --color-checks-line-text: #d0d7de; - --color-checks-line-num-text: rgba(140,149,159,0.75); - --color-checks-line-timestamp-text: #8c959f; - --color-checks-line-hover-bg: #32383f; - --color-checks-line-selected-bg: rgba(33,139,255,0.15); - --color-checks-line-selected-num-text: #54aeff; - --color-checks-line-dt-fm-text: #24292f; - --color-checks-line-dt-fm-bg: #9a6700; - --color-checks-gate-bg: rgba(125,78,0,0.15); - --color-checks-gate-text: #d0d7de; - --color-checks-gate-waiting-text: #d4a72c; - --color-checks-step-header-open-bg: #32383f; - --color-checks-step-error-text: #ff8182; - --color-checks-step-warning-text: #d4a72c; - --color-checks-logline-text: #8c959f; - --color-checks-logline-num-text: rgba(140,149,159,0.75); - --color-checks-logline-debug-text: #c297ff; - --color-checks-logline-error-text: #d0d7de; - --color-checks-logline-error-num-text: #ff8182; - --color-checks-logline-error-bg: rgba(164,14,38,0.15); - --color-checks-logline-warning-text: #d0d7de; - --color-checks-logline-warning-num-text: #d4a72c; - --color-checks-logline-warning-bg: rgba(125,78,0,0.15); - --color-checks-logline-command-text: #54aeff; - --color-checks-logline-section-text: #4ac26b; - --color-checks-ansi-black: #24292f; - --color-checks-ansi-black-bright: #32383f; - --color-checks-ansi-white: #d0d7de; - --color-checks-ansi-white-bright: #d0d7de; - --color-checks-ansi-gray: #8c959f; - --color-checks-ansi-red: #ff8182; - --color-checks-ansi-red-bright: #ffaba8; - --color-checks-ansi-green: #4ac26b; - --color-checks-ansi-green-bright: #6fdd8b; - --color-checks-ansi-yellow: #d4a72c; - --color-checks-ansi-yellow-bright: #eac54f; - --color-checks-ansi-blue: #54aeff; - --color-checks-ansi-blue-bright: #80ccff; - --color-checks-ansi-magenta: #c297ff; - --color-checks-ansi-magenta-bright: #d8b9ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #24292f; - --color-project-sidebar-bg: #ffffff; - --color-project-gradient-in: #ffffff; - --color-project-gradient-out: rgba(255,255,255,0); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-outline: rgb(0 0 0 / 15%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(0 0 0 / 15%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgb(0 0 0 / 70%) 0 0 0 2px inset; - --color-control-border-color-emphasis: #858F99; - --color-avatar-bg: #ffffff; - --color-avatar-border: rgba(31,35,40,0.15); - --color-avatar-stack-fade: #afb8c1; - --color-avatar-stack-fade-more: #d0d7de; - --color-avatar-child-shadow: 0 0 0 2px rgba(255,255,255,0.8); - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: rgba(0,0,0,0); - --color-select-menu-tap-highlight: rgba(175,184,193,0.5); - --color-select-menu-tap-focus-bg: #b6e3ff; - --color-overlay-shadow: 0 1px 3px rgba(31,35,40,0.12), 0 8px 24px rgba(66,74,83,0.12); - --color-overlay-backdrop: rgba(140,149,159,0.2); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #24292f; - --color-header-divider: #57606a; - --color-header-logo: #ffffff; - --color-header-search-bg: #24292f; - --color-header-search-border: #57606a; - --color-sidenav-selected-bg: #ffffff; - --color-menu-bg-active: rgba(0,0,0,0); - --color-input-disabled-bg: rgba(175,184,193,0.2); - --color-timeline-badge-bg: #eaeef2; - --color-ansi-black: #24292f; - --color-ansi-black-bright: #57606a; - --color-ansi-white: #6e7781; - --color-ansi-white-bright: #8c959f; - --color-ansi-gray: #6e7781; - --color-ansi-red: #cf222e; - --color-ansi-red-bright: #a40e26; - --color-ansi-green: #116329; - --color-ansi-green-bright: #1a7f37; - --color-ansi-yellow: #4d2d00; - --color-ansi-yellow-bright: #633c01; - --color-ansi-blue: #0969da; - --color-ansi-blue-bright: #218bff; - --color-ansi-magenta: #8250df; - --color-ansi-magenta-bright: #a475f9; - --color-ansi-cyan: #1b7c83; - --color-ansi-cyan-bright: #3192aa; - --color-btn-text: #24292f; - --color-btn-bg: #f6f8fa; - --color-btn-border: rgba(31,35,40,0.15); - --color-btn-shadow: 0 1px 0 rgba(31,35,40,0.04); - --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25); - --color-btn-hover-bg: #f3f4f6; - --color-btn-hover-border: rgba(31,35,40,0.15); - --color-btn-active-bg: hsla(220,14%,93%,1); - --color-btn-active-border: rgba(31,35,40,0.15); - --color-btn-selected-bg: hsla(220,14%,94%,1); - --color-btn-counter-bg: rgba(31,35,40,0.08); - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #1f883d; - --color-btn-primary-border: rgba(31,35,40,0.15); - --color-btn-primary-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-primary-hover-bg: #1a7f37; - --color-btn-primary-hover-border: rgba(31,35,40,0.15); - --color-btn-primary-selected-bg: hsla(137,66%,28%,1); - --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2); - --color-btn-primary-disabled-text: rgba(255,255,255,0.8); - --color-btn-primary-disabled-bg: #94d3a2; - --color-btn-primary-disabled-border: rgba(31,35,40,0.15); - --color-btn-primary-icon: rgba(255,255,255,0.8); - --color-btn-primary-counter-bg: rgba(0,45,17,0.2); - --color-btn-outline-text: #0969da; - --color-btn-outline-hover-text: #ffffff; - --color-btn-outline-hover-bg: #0969da; - --color-btn-outline-hover-border: rgba(31,35,40,0.15); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: hsla(212,92%,42%,1); - --color-btn-outline-selected-border: rgba(31,35,40,0.15); - --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2); - --color-btn-outline-disabled-text: rgba(9,105,218,0.5); - --color-btn-outline-disabled-bg: #f6f8fa; - --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05); - --color-btn-outline-counter-bg: #0969da1a; - --color-btn-outline-counter-fg: #0550ae; - --color-btn-outline-hover-counter-fg: #ffffff; - --color-btn-outline-disabled-counter-fg: rgba(9,105,218,0.5); - --color-btn-danger-text: #cf222e; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #a40e26; - --color-btn-danger-hover-border: rgba(31,35,40,0.15); - --color-btn-danger-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: hsla(356,72%,44%,1); - --color-btn-danger-selected-border: rgba(31,35,40,0.15); - --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2); - --color-btn-danger-disabled-text: rgba(207,34,46,0.5); - --color-btn-danger-disabled-bg: #f6f8fa; - --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05); - --color-btn-danger-counter-bg: rgba(207,34,46,0.1); - --color-btn-danger-icon: #cf222e; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-counter-fg: #a40e26; - --color-btn-danger-hover-counter-fg: #ffffff; - --color-btn-danger-disabled-counter-fg: rgba(207,34,46,0.5); - --color-underlinenav-icon: #6e7781; - --color-underlinenav-border-hover: rgba(175,184,193,0.2); - --color-action-list-item-inline-divider: rgba(208,215,222,0.48); - --color-action-list-item-default-hover-bg: rgba(208,215,222,0.32); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(208,215,222,0.48); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(208,215,222,0.24); - --color-action-list-item-danger-hover-bg: rgba(255,235,233,0.64); - --color-action-list-item-danger-active-bg: #ffebe9; - --color-action-list-item-danger-hover-text: #d1242f; - --color-switch-track-bg: #eaeef2; - --color-switch-track-hover-bg: hsla(210,24%,90%,1); - --color-switch-track-active-bg: hsla(210,24%,88%,1); - --color-switch-track-disabled-bg: #8c959f; - --color-switch-track-fg: #656d76; - --color-switch-track-disabled-fg: #ffffff; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: #0969da; - --color-switch-track-checked-hover-bg: #0860CA; - --color-switch-track-checked-active-bg: #0757BA; - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #ffffff; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #ffffff; - --color-switch-knob-disabled-bg: #f6f8fa; - --color-switch-knob-border: #858F99; - --color-switch-knob-checked-bg: #ffffff; - --color-switch-knob-checked-disabled-bg: #f6f8fa; - --color-switch-knob-checked-border: #0969da; - --color-segmented-control-bg: #eaeef2; - --color-segmented-control-button-bg: #ffffff; - --color-segmented-control-button-hover-bg: rgba(175,184,193,0.2); - --color-segmented-control-button-active-bg: rgba(175,184,193,0.4); - --color-segmented-control-button-selected-border: #8c959f; - --color-tree-view-item-chevron-hover-bg: rgba(208,215,222,0.32); - --color-tree-view-item-directory-fill: #54aeff; - --color-fg-default: #1F2328; - --color-fg-muted: #656d76; - --color-fg-subtle: #6e7781; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #ffffff; - --color-canvas-overlay: #ffffff; - --color-canvas-inset: #f6f8fa; - --color-canvas-subtle: #f6f8fa; - --color-border-default: #d0d7de; - --color-border-muted: hsla(210,18%,87%,1); - --color-border-subtle: rgba(31,35,40,0.15); - --color-shadow-small: 0 1px 0 rgba(31,35,40,0.04); - --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15); - --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2); - --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3); - --color-neutral-emphasis-plus: #24292f; - --color-neutral-emphasis: #6e7781; - --color-neutral-muted: rgba(175,184,193,0.2); - --color-neutral-subtle: rgba(234,238,242,0.5); - --color-accent-fg: #0969da; - --color-accent-emphasis: #0969da; - --color-accent-muted: rgba(84,174,255,0.4); - --color-accent-subtle: #ddf4ff; - --color-success-fg: #1a7f37; - --color-success-emphasis: #1f883d; - --color-success-muted: rgba(74,194,107,0.4); - --color-success-subtle: #dafbe1; - --color-attention-fg: #9a6700; - --color-attention-emphasis: #9a6700; - --color-attention-muted: rgba(212,167,44,0.4); - --color-attention-subtle: #fff8c5; - --color-severe-fg: #bc4c00; - --color-severe-emphasis: #bc4c00; - --color-severe-muted: rgba(251,143,68,0.4); - --color-severe-subtle: #fff1e5; - --color-danger-fg: #d1242f; - --color-danger-emphasis: #cf222e; - --color-danger-muted: rgba(255,129,130,0.4); - --color-danger-subtle: #ffebe9; - --color-open-fg: #1a7f37; - --color-open-emphasis: #1f883d; - --color-open-muted: rgba(74,194,107,0.4); - --color-open-subtle: #dafbe1; - --color-closed-fg: #d1242f; - --color-closed-emphasis: #cf222e; - --color-closed-muted: rgba(255,129,130,0.4); - --color-closed-subtle: #ffebe9; - --color-done-fg: #8250df; - --color-done-emphasis: #8250df; - --color-done-muted: rgba(194,151,255,0.4); - --color-done-subtle: #fbefff; - --color-sponsors-fg: #bf3989; - --color-sponsors-emphasis: #bf3989; - --color-sponsors-muted: rgba(255,128,200,0.4); - --color-sponsors-subtle: #ffeff7; - --color-primer-fg-disabled: #8c959f; - --color-primer-canvas-backdrop: rgba(31,35,40,0.5); - --color-primer-canvas-sticky: rgba(255,255,255,0.95); - --color-primer-border-active: #fd8c73; - --color-primer-border-contrast: rgba(31,35,40,0.1); - --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25); - --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2); - --color-scale-black: #1F2328; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f6f8fa; - --color-scale-gray-1: #eaeef2; - --color-scale-gray-2: #d0d7de; - --color-scale-gray-3: #afb8c1; - --color-scale-gray-4: #8c959f; - --color-scale-gray-5: #6e7781; - --color-scale-gray-6: #57606a; - --color-scale-gray-7: #424a53; - --color-scale-gray-8: #32383f; - --color-scale-gray-9: #24292f; - --color-scale-blue-0: #ddf4ff; - --color-scale-blue-1: #b6e3ff; - --color-scale-blue-2: #80ccff; - --color-scale-blue-3: #54aeff; - --color-scale-blue-4: #218bff; - --color-scale-blue-5: #0969da; - --color-scale-blue-6: #0550ae; - --color-scale-blue-7: #033d8b; - --color-scale-blue-8: #0a3069; - --color-scale-blue-9: #002155; - --color-scale-green-0: #dafbe1; - --color-scale-green-1: #aceebb; - --color-scale-green-2: #6fdd8b; - --color-scale-green-3: #4ac26b; - --color-scale-green-4: #2da44e; - --color-scale-green-5: #1a7f37; - --color-scale-green-6: #116329; - --color-scale-green-7: #044f1e; - --color-scale-green-8: #003d16; - --color-scale-green-9: #002d11; - --color-scale-yellow-0: #fff8c5; - --color-scale-yellow-1: #fae17d; - --color-scale-yellow-2: #eac54f; - --color-scale-yellow-3: #d4a72c; - --color-scale-yellow-4: #bf8700; - --color-scale-yellow-5: #9a6700; - --color-scale-yellow-6: #7d4e00; - --color-scale-yellow-7: #633c01; - --color-scale-yellow-8: #4d2d00; - --color-scale-yellow-9: #3b2300; - --color-scale-orange-0: #fff1e5; - --color-scale-orange-1: #ffd8b5; - --color-scale-orange-2: #ffb77c; - --color-scale-orange-3: #fb8f44; - --color-scale-orange-4: #e16f24; - --color-scale-orange-5: #bc4c00; - --color-scale-orange-6: #953800; - --color-scale-orange-7: #762c00; - --color-scale-orange-8: #5c2200; - --color-scale-orange-9: #471700; - --color-scale-red-0: #ffebe9; - --color-scale-red-1: #ffcecb; - --color-scale-red-2: #ffaba8; - --color-scale-red-3: #ff8182; - --color-scale-red-4: #fa4549; - --color-scale-red-5: #cf222e; - --color-scale-red-6: #a40e26; - --color-scale-red-7: #82071e; - --color-scale-red-8: #660018; - --color-scale-red-9: #4c0014; - --color-scale-purple-0: #fbefff; - --color-scale-purple-1: #ecd8ff; - --color-scale-purple-2: #d8b9ff; - --color-scale-purple-3: #c297ff; - --color-scale-purple-4: #a475f9; - --color-scale-purple-5: #8250df; - --color-scale-purple-6: #6639ba; - --color-scale-purple-7: #512a97; - --color-scale-purple-8: #3e1f79; - --color-scale-purple-9: #2e1461; - --color-scale-pink-0: #ffeff7; - --color-scale-pink-1: #ffd3eb; - --color-scale-pink-2: #ffadda; - --color-scale-pink-3: #ff80c8; - --color-scale-pink-4: #e85aad; - --color-scale-pink-5: #bf3989; - --color-scale-pink-6: #99286e; - --color-scale-pink-7: #772057; - --color-scale-pink-8: #611347; - --color-scale-pink-9: #4d0336; - --color-scale-coral-0: #fff0eb; - --color-scale-coral-1: #ffd6cc; - --color-scale-coral-2: #ffb4a1; - --color-scale-coral-3: #fd8c73; - --color-scale-coral-4: #ec6547; - --color-scale-coral-5: #c4432b; - --color-scale-coral-6: #9e2f1c; - --color-scale-coral-7: #801f0f; - --color-scale-coral-8: #691105; - --color-scale-coral-9: #510901; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme=light], - [data-color-mode=auto][data-light-theme=light]::selection { - --color-canvas-default-transparent: rgba(255,255,255,0); - --color-page-header-bg: #f6f8fa; - --color-marketing-icon-primary: #218bff; - --color-marketing-icon-secondary: #54aeff; - --color-diff-blob-addition-num-text: #1F2328; - --color-diff-blob-addition-fg: #1F2328; - --color-diff-blob-addition-num-bg: #ccffd8; - --color-diff-blob-addition-line-bg: #e6ffec; - --color-diff-blob-addition-word-bg: #abf2bc; - --color-diff-blob-deletion-num-text: #1F2328; - --color-diff-blob-deletion-fg: #1F2328; - --color-diff-blob-deletion-num-bg: #ffd7d5; - --color-diff-blob-deletion-line-bg: #ffebe9; - --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4); - --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4); - --color-diff-blob-expander-icon: #656d76; - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-diffstat-deletion-border: rgba(31,35,40,0.15); - --color-diffstat-addition-border: rgba(31,35,40,0.15); - --color-diffstat-addition-bg: #1f883d; - --color-search-keyword-hl: #fff8c5; - --color-prettylights-syntax-comment: #6e7781; - --color-prettylights-syntax-constant: #0550ae; - --color-prettylights-syntax-entity: #6639ba; - --color-prettylights-syntax-storage-modifier-import: #24292f; - --color-prettylights-syntax-entity-tag: #116329; - --color-prettylights-syntax-keyword: #cf222e; - --color-prettylights-syntax-string: #0a3069; - --color-prettylights-syntax-variable: #953800; - --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; - --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; - --color-prettylights-syntax-invalid-illegal-bg: #82071e; - --color-prettylights-syntax-carriage-return-text: #f6f8fa; - --color-prettylights-syntax-carriage-return-bg: #cf222e; - --color-prettylights-syntax-string-regexp: #116329; - --color-prettylights-syntax-markup-list: #3b2300; - --color-prettylights-syntax-markup-heading: #0550ae; - --color-prettylights-syntax-markup-italic: #24292f; - --color-prettylights-syntax-markup-bold: #24292f; - --color-prettylights-syntax-markup-deleted-text: #82071e; - --color-prettylights-syntax-markup-deleted-bg: #ffebe9; - --color-prettylights-syntax-markup-inserted-text: #116329; - --color-prettylights-syntax-markup-inserted-bg: #dafbe1; - --color-prettylights-syntax-markup-changed-text: #953800; - --color-prettylights-syntax-markup-changed-bg: #ffd8b5; - --color-prettylights-syntax-markup-ignored-text: #eaeef2; - --color-prettylights-syntax-markup-ignored-bg: #0550ae; - --color-prettylights-syntax-meta-diff-range: #8250df; - --color-prettylights-syntax-brackethighlighter-angle: #57606a; - --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; - --color-prettylights-syntax-constant-other-reference-link: #0a3069; - --color-codemirror-text: #1F2328; - --color-codemirror-bg: #ffffff; - --color-codemirror-gutters-bg: #ffffff; - --color-codemirror-guttermarker-text: #ffffff; - --color-codemirror-guttermarker-subtle-text: #6e7781; - --color-codemirror-linenumber-text: #656d76; - --color-codemirror-cursor: #1F2328; - --color-codemirror-selection-bg: rgba(84,174,255,0.4); - --color-codemirror-activeline-bg: rgba(234,238,242,0.5); - --color-codemirror-matchingbracket-text: #1F2328; - --color-codemirror-lines-bg: #ffffff; - --color-codemirror-syntax-comment: #24292f; - --color-codemirror-syntax-constant: #0550ae; - --color-codemirror-syntax-entity: #8250df; - --color-codemirror-syntax-keyword: #cf222e; - --color-codemirror-syntax-storage: #cf222e; - --color-codemirror-syntax-string: #0a3069; - --color-codemirror-syntax-support: #0550ae; - --color-codemirror-syntax-variable: #953800; - --color-checks-bg: #24292f; - --color-checks-run-border-width: 0px; - --color-checks-container-border-width: 0px; - --color-checks-text-primary: #f6f8fa; - --color-checks-text-secondary: #8c959f; - --color-checks-text-link: #54aeff; - --color-checks-btn-icon: #afb8c1; - --color-checks-btn-hover-icon: #f6f8fa; - --color-checks-btn-hover-bg: rgba(255,255,255,0.125); - --color-checks-input-text: #eaeef2; - --color-checks-input-placeholder-text: #8c959f; - --color-checks-input-focus-text: #8c959f; - --color-checks-input-bg: #32383f; - --color-checks-input-shadow: none; - --color-checks-donut-error: #fa4549; - --color-checks-donut-pending: #bf8700; - --color-checks-donut-success: #1f883d; - --color-checks-donut-neutral: #afb8c1; - --color-checks-dropdown-text: #afb8c1; - --color-checks-dropdown-bg: #32383f; - --color-checks-dropdown-border: #424a53; - --color-checks-dropdown-shadow: rgba(31,35,40,0.3); - --color-checks-dropdown-hover-text: #f6f8fa; - --color-checks-dropdown-hover-bg: #424a53; - --color-checks-dropdown-btn-hover-text: #f6f8fa; - --color-checks-dropdown-btn-hover-bg: #32383f; - --color-checks-scrollbar-thumb-bg: #57606a; - --color-checks-header-label-text: #d0d7de; - --color-checks-header-label-open-text: #f6f8fa; - --color-checks-header-border: #32383f; - --color-checks-header-icon: #8c959f; - --color-checks-line-text: #d0d7de; - --color-checks-line-num-text: rgba(140,149,159,0.75); - --color-checks-line-timestamp-text: #8c959f; - --color-checks-line-hover-bg: #32383f; - --color-checks-line-selected-bg: rgba(33,139,255,0.15); - --color-checks-line-selected-num-text: #54aeff; - --color-checks-line-dt-fm-text: #24292f; - --color-checks-line-dt-fm-bg: #9a6700; - --color-checks-gate-bg: rgba(125,78,0,0.15); - --color-checks-gate-text: #d0d7de; - --color-checks-gate-waiting-text: #d4a72c; - --color-checks-step-header-open-bg: #32383f; - --color-checks-step-error-text: #ff8182; - --color-checks-step-warning-text: #d4a72c; - --color-checks-logline-text: #8c959f; - --color-checks-logline-num-text: rgba(140,149,159,0.75); - --color-checks-logline-debug-text: #c297ff; - --color-checks-logline-error-text: #d0d7de; - --color-checks-logline-error-num-text: #ff8182; - --color-checks-logline-error-bg: rgba(164,14,38,0.15); - --color-checks-logline-warning-text: #d0d7de; - --color-checks-logline-warning-num-text: #d4a72c; - --color-checks-logline-warning-bg: rgba(125,78,0,0.15); - --color-checks-logline-command-text: #54aeff; - --color-checks-logline-section-text: #4ac26b; - --color-checks-ansi-black: #24292f; - --color-checks-ansi-black-bright: #32383f; - --color-checks-ansi-white: #d0d7de; - --color-checks-ansi-white-bright: #d0d7de; - --color-checks-ansi-gray: #8c959f; - --color-checks-ansi-red: #ff8182; - --color-checks-ansi-red-bright: #ffaba8; - --color-checks-ansi-green: #4ac26b; - --color-checks-ansi-green-bright: #6fdd8b; - --color-checks-ansi-yellow: #d4a72c; - --color-checks-ansi-yellow-bright: #eac54f; - --color-checks-ansi-blue: #54aeff; - --color-checks-ansi-blue-bright: #80ccff; - --color-checks-ansi-magenta: #c297ff; - --color-checks-ansi-magenta-bright: #d8b9ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #24292f; - --color-project-sidebar-bg: #ffffff; - --color-project-gradient-in: #ffffff; - --color-project-gradient-out: rgba(255,255,255,0); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-outline: rgb(0 0 0 / 15%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(0 0 0 / 15%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgb(0 0 0 / 70%) 0 0 0 2px inset; - --color-control-border-color-emphasis: #858F99; - --color-avatar-bg: #ffffff; - --color-avatar-border: rgba(31,35,40,0.15); - --color-avatar-stack-fade: #afb8c1; - --color-avatar-stack-fade-more: #d0d7de; - --color-avatar-child-shadow: 0 0 0 2px rgba(255,255,255,0.8); - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: rgba(0,0,0,0); - --color-select-menu-tap-highlight: rgba(175,184,193,0.5); - --color-select-menu-tap-focus-bg: #b6e3ff; - --color-overlay-shadow: 0 1px 3px rgba(31,35,40,0.12), 0 8px 24px rgba(66,74,83,0.12); - --color-overlay-backdrop: rgba(140,149,159,0.2); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #24292f; - --color-header-divider: #57606a; - --color-header-logo: #ffffff; - --color-header-search-bg: #24292f; - --color-header-search-border: #57606a; - --color-sidenav-selected-bg: #ffffff; - --color-menu-bg-active: rgba(0,0,0,0); - --color-input-disabled-bg: rgba(175,184,193,0.2); - --color-timeline-badge-bg: #eaeef2; - --color-ansi-black: #24292f; - --color-ansi-black-bright: #57606a; - --color-ansi-white: #6e7781; - --color-ansi-white-bright: #8c959f; - --color-ansi-gray: #6e7781; - --color-ansi-red: #cf222e; - --color-ansi-red-bright: #a40e26; - --color-ansi-green: #116329; - --color-ansi-green-bright: #1a7f37; - --color-ansi-yellow: #4d2d00; - --color-ansi-yellow-bright: #633c01; - --color-ansi-blue: #0969da; - --color-ansi-blue-bright: #218bff; - --color-ansi-magenta: #8250df; - --color-ansi-magenta-bright: #a475f9; - --color-ansi-cyan: #1b7c83; - --color-ansi-cyan-bright: #3192aa; - --color-btn-text: #24292f; - --color-btn-bg: #f6f8fa; - --color-btn-border: rgba(31,35,40,0.15); - --color-btn-shadow: 0 1px 0 rgba(31,35,40,0.04); - --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25); - --color-btn-hover-bg: #f3f4f6; - --color-btn-hover-border: rgba(31,35,40,0.15); - --color-btn-active-bg: hsla(220,14%,93%,1); - --color-btn-active-border: rgba(31,35,40,0.15); - --color-btn-selected-bg: hsla(220,14%,94%,1); - --color-btn-counter-bg: rgba(31,35,40,0.08); - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #1f883d; - --color-btn-primary-border: rgba(31,35,40,0.15); - --color-btn-primary-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-primary-hover-bg: #1a7f37; - --color-btn-primary-hover-border: rgba(31,35,40,0.15); - --color-btn-primary-selected-bg: hsla(137,66%,28%,1); - --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2); - --color-btn-primary-disabled-text: rgba(255,255,255,0.8); - --color-btn-primary-disabled-bg: #94d3a2; - --color-btn-primary-disabled-border: rgba(31,35,40,0.15); - --color-btn-primary-icon: rgba(255,255,255,0.8); - --color-btn-primary-counter-bg: rgba(0,45,17,0.2); - --color-btn-outline-text: #0969da; - --color-btn-outline-hover-text: #ffffff; - --color-btn-outline-hover-bg: #0969da; - --color-btn-outline-hover-border: rgba(31,35,40,0.15); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: hsla(212,92%,42%,1); - --color-btn-outline-selected-border: rgba(31,35,40,0.15); - --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2); - --color-btn-outline-disabled-text: rgba(9,105,218,0.5); - --color-btn-outline-disabled-bg: #f6f8fa; - --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05); - --color-btn-outline-counter-bg: #0969da1a; - --color-btn-outline-counter-fg: #0550ae; - --color-btn-outline-hover-counter-fg: #ffffff; - --color-btn-outline-disabled-counter-fg: rgba(9,105,218,0.5); - --color-btn-danger-text: #cf222e; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #a40e26; - --color-btn-danger-hover-border: rgba(31,35,40,0.15); - --color-btn-danger-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: hsla(356,72%,44%,1); - --color-btn-danger-selected-border: rgba(31,35,40,0.15); - --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2); - --color-btn-danger-disabled-text: rgba(207,34,46,0.5); - --color-btn-danger-disabled-bg: #f6f8fa; - --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05); - --color-btn-danger-counter-bg: rgba(207,34,46,0.1); - --color-btn-danger-icon: #cf222e; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-counter-fg: #a40e26; - --color-btn-danger-hover-counter-fg: #ffffff; - --color-btn-danger-disabled-counter-fg: rgba(207,34,46,0.5); - --color-underlinenav-icon: #6e7781; - --color-underlinenav-border-hover: rgba(175,184,193,0.2); - --color-action-list-item-inline-divider: rgba(208,215,222,0.48); - --color-action-list-item-default-hover-bg: rgba(208,215,222,0.32); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(208,215,222,0.48); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(208,215,222,0.24); - --color-action-list-item-danger-hover-bg: rgba(255,235,233,0.64); - --color-action-list-item-danger-active-bg: #ffebe9; - --color-action-list-item-danger-hover-text: #d1242f; - --color-switch-track-bg: #eaeef2; - --color-switch-track-hover-bg: hsla(210,24%,90%,1); - --color-switch-track-active-bg: hsla(210,24%,88%,1); - --color-switch-track-disabled-bg: #8c959f; - --color-switch-track-fg: #656d76; - --color-switch-track-disabled-fg: #ffffff; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: #0969da; - --color-switch-track-checked-hover-bg: #0860CA; - --color-switch-track-checked-active-bg: #0757BA; - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #ffffff; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #ffffff; - --color-switch-knob-disabled-bg: #f6f8fa; - --color-switch-knob-border: #858F99; - --color-switch-knob-checked-bg: #ffffff; - --color-switch-knob-checked-disabled-bg: #f6f8fa; - --color-switch-knob-checked-border: #0969da; - --color-segmented-control-bg: #eaeef2; - --color-segmented-control-button-bg: #ffffff; - --color-segmented-control-button-hover-bg: rgba(175,184,193,0.2); - --color-segmented-control-button-active-bg: rgba(175,184,193,0.4); - --color-segmented-control-button-selected-border: #8c959f; - --color-tree-view-item-chevron-hover-bg: rgba(208,215,222,0.32); - --color-tree-view-item-directory-fill: #54aeff; - --color-fg-default: #1F2328; - --color-fg-muted: #656d76; - --color-fg-subtle: #6e7781; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #ffffff; - --color-canvas-overlay: #ffffff; - --color-canvas-inset: #f6f8fa; - --color-canvas-subtle: #f6f8fa; - --color-border-default: #d0d7de; - --color-border-muted: hsla(210,18%,87%,1); - --color-border-subtle: rgba(31,35,40,0.15); - --color-shadow-small: 0 1px 0 rgba(31,35,40,0.04); - --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15); - --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2); - --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3); - --color-neutral-emphasis-plus: #24292f; - --color-neutral-emphasis: #6e7781; - --color-neutral-muted: rgba(175,184,193,0.2); - --color-neutral-subtle: rgba(234,238,242,0.5); - --color-accent-fg: #0969da; - --color-accent-emphasis: #0969da; - --color-accent-muted: rgba(84,174,255,0.4); - --color-accent-subtle: #ddf4ff; - --color-success-fg: #1a7f37; - --color-success-emphasis: #1f883d; - --color-success-muted: rgba(74,194,107,0.4); - --color-success-subtle: #dafbe1; - --color-attention-fg: #9a6700; - --color-attention-emphasis: #9a6700; - --color-attention-muted: rgba(212,167,44,0.4); - --color-attention-subtle: #fff8c5; - --color-severe-fg: #bc4c00; - --color-severe-emphasis: #bc4c00; - --color-severe-muted: rgba(251,143,68,0.4); - --color-severe-subtle: #fff1e5; - --color-danger-fg: #d1242f; - --color-danger-emphasis: #cf222e; - --color-danger-muted: rgba(255,129,130,0.4); - --color-danger-subtle: #ffebe9; - --color-open-fg: #1a7f37; - --color-open-emphasis: #1f883d; - --color-open-muted: rgba(74,194,107,0.4); - --color-open-subtle: #dafbe1; - --color-closed-fg: #d1242f; - --color-closed-emphasis: #cf222e; - --color-closed-muted: rgba(255,129,130,0.4); - --color-closed-subtle: #ffebe9; - --color-done-fg: #8250df; - --color-done-emphasis: #8250df; - --color-done-muted: rgba(194,151,255,0.4); - --color-done-subtle: #fbefff; - --color-sponsors-fg: #bf3989; - --color-sponsors-emphasis: #bf3989; - --color-sponsors-muted: rgba(255,128,200,0.4); - --color-sponsors-subtle: #ffeff7; - --color-primer-fg-disabled: #8c959f; - --color-primer-canvas-backdrop: rgba(31,35,40,0.5); - --color-primer-canvas-sticky: rgba(255,255,255,0.95); - --color-primer-border-active: #fd8c73; - --color-primer-border-contrast: rgba(31,35,40,0.1); - --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25); - --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2); - --color-scale-black: #1F2328; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f6f8fa; - --color-scale-gray-1: #eaeef2; - --color-scale-gray-2: #d0d7de; - --color-scale-gray-3: #afb8c1; - --color-scale-gray-4: #8c959f; - --color-scale-gray-5: #6e7781; - --color-scale-gray-6: #57606a; - --color-scale-gray-7: #424a53; - --color-scale-gray-8: #32383f; - --color-scale-gray-9: #24292f; - --color-scale-blue-0: #ddf4ff; - --color-scale-blue-1: #b6e3ff; - --color-scale-blue-2: #80ccff; - --color-scale-blue-3: #54aeff; - --color-scale-blue-4: #218bff; - --color-scale-blue-5: #0969da; - --color-scale-blue-6: #0550ae; - --color-scale-blue-7: #033d8b; - --color-scale-blue-8: #0a3069; - --color-scale-blue-9: #002155; - --color-scale-green-0: #dafbe1; - --color-scale-green-1: #aceebb; - --color-scale-green-2: #6fdd8b; - --color-scale-green-3: #4ac26b; - --color-scale-green-4: #2da44e; - --color-scale-green-5: #1a7f37; - --color-scale-green-6: #116329; - --color-scale-green-7: #044f1e; - --color-scale-green-8: #003d16; - --color-scale-green-9: #002d11; - --color-scale-yellow-0: #fff8c5; - --color-scale-yellow-1: #fae17d; - --color-scale-yellow-2: #eac54f; - --color-scale-yellow-3: #d4a72c; - --color-scale-yellow-4: #bf8700; - --color-scale-yellow-5: #9a6700; - --color-scale-yellow-6: #7d4e00; - --color-scale-yellow-7: #633c01; - --color-scale-yellow-8: #4d2d00; - --color-scale-yellow-9: #3b2300; - --color-scale-orange-0: #fff1e5; - --color-scale-orange-1: #ffd8b5; - --color-scale-orange-2: #ffb77c; - --color-scale-orange-3: #fb8f44; - --color-scale-orange-4: #e16f24; - --color-scale-orange-5: #bc4c00; - --color-scale-orange-6: #953800; - --color-scale-orange-7: #762c00; - --color-scale-orange-8: #5c2200; - --color-scale-orange-9: #471700; - --color-scale-red-0: #ffebe9; - --color-scale-red-1: #ffcecb; - --color-scale-red-2: #ffaba8; - --color-scale-red-3: #ff8182; - --color-scale-red-4: #fa4549; - --color-scale-red-5: #cf222e; - --color-scale-red-6: #a40e26; - --color-scale-red-7: #82071e; - --color-scale-red-8: #660018; - --color-scale-red-9: #4c0014; - --color-scale-purple-0: #fbefff; - --color-scale-purple-1: #ecd8ff; - --color-scale-purple-2: #d8b9ff; - --color-scale-purple-3: #c297ff; - --color-scale-purple-4: #a475f9; - --color-scale-purple-5: #8250df; - --color-scale-purple-6: #6639ba; - --color-scale-purple-7: #512a97; - --color-scale-purple-8: #3e1f79; - --color-scale-purple-9: #2e1461; - --color-scale-pink-0: #ffeff7; - --color-scale-pink-1: #ffd3eb; - --color-scale-pink-2: #ffadda; - --color-scale-pink-3: #ff80c8; - --color-scale-pink-4: #e85aad; - --color-scale-pink-5: #bf3989; - --color-scale-pink-6: #99286e; - --color-scale-pink-7: #772057; - --color-scale-pink-8: #611347; - --color-scale-pink-9: #4d0336; - --color-scale-coral-0: #fff0eb; - --color-scale-coral-1: #ffd6cc; - --color-scale-coral-2: #ffb4a1; - --color-scale-coral-3: #fd8c73; - --color-scale-coral-4: #ec6547; - --color-scale-coral-5: #c4432b; - --color-scale-coral-6: #9e2f1c; - --color-scale-coral-7: #801f0f; - --color-scale-coral-8: #691105; - --color-scale-coral-9: #510901; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme=light], - [data-color-mode=auto][data-dark-theme=light]::selection { - --color-canvas-default-transparent: rgba(255,255,255,0); - --color-page-header-bg: #f6f8fa; - --color-marketing-icon-primary: #218bff; - --color-marketing-icon-secondary: #54aeff; - --color-diff-blob-addition-num-text: #1F2328; - --color-diff-blob-addition-fg: #1F2328; - --color-diff-blob-addition-num-bg: #ccffd8; - --color-diff-blob-addition-line-bg: #e6ffec; - --color-diff-blob-addition-word-bg: #abf2bc; - --color-diff-blob-deletion-num-text: #1F2328; - --color-diff-blob-deletion-fg: #1F2328; - --color-diff-blob-deletion-num-bg: #ffd7d5; - --color-diff-blob-deletion-line-bg: #ffebe9; - --color-diff-blob-deletion-word-bg: rgba(255,129,130,0.4); - --color-diff-blob-hunk-num-bg: rgba(84,174,255,0.4); - --color-diff-blob-expander-icon: #656d76; - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-diffstat-deletion-border: rgba(31,35,40,0.15); - --color-diffstat-addition-border: rgba(31,35,40,0.15); - --color-diffstat-addition-bg: #1f883d; - --color-search-keyword-hl: #fff8c5; - --color-prettylights-syntax-comment: #6e7781; - --color-prettylights-syntax-constant: #0550ae; - --color-prettylights-syntax-entity: #6639ba; - --color-prettylights-syntax-storage-modifier-import: #24292f; - --color-prettylights-syntax-entity-tag: #116329; - --color-prettylights-syntax-keyword: #cf222e; - --color-prettylights-syntax-string: #0a3069; - --color-prettylights-syntax-variable: #953800; - --color-prettylights-syntax-brackethighlighter-unmatched: #82071e; - --color-prettylights-syntax-invalid-illegal-text: #f6f8fa; - --color-prettylights-syntax-invalid-illegal-bg: #82071e; - --color-prettylights-syntax-carriage-return-text: #f6f8fa; - --color-prettylights-syntax-carriage-return-bg: #cf222e; - --color-prettylights-syntax-string-regexp: #116329; - --color-prettylights-syntax-markup-list: #3b2300; - --color-prettylights-syntax-markup-heading: #0550ae; - --color-prettylights-syntax-markup-italic: #24292f; - --color-prettylights-syntax-markup-bold: #24292f; - --color-prettylights-syntax-markup-deleted-text: #82071e; - --color-prettylights-syntax-markup-deleted-bg: #ffebe9; - --color-prettylights-syntax-markup-inserted-text: #116329; - --color-prettylights-syntax-markup-inserted-bg: #dafbe1; - --color-prettylights-syntax-markup-changed-text: #953800; - --color-prettylights-syntax-markup-changed-bg: #ffd8b5; - --color-prettylights-syntax-markup-ignored-text: #eaeef2; - --color-prettylights-syntax-markup-ignored-bg: #0550ae; - --color-prettylights-syntax-meta-diff-range: #8250df; - --color-prettylights-syntax-brackethighlighter-angle: #57606a; - --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f; - --color-prettylights-syntax-constant-other-reference-link: #0a3069; - --color-codemirror-text: #1F2328; - --color-codemirror-bg: #ffffff; - --color-codemirror-gutters-bg: #ffffff; - --color-codemirror-guttermarker-text: #ffffff; - --color-codemirror-guttermarker-subtle-text: #6e7781; - --color-codemirror-linenumber-text: #656d76; - --color-codemirror-cursor: #1F2328; - --color-codemirror-selection-bg: rgba(84,174,255,0.4); - --color-codemirror-activeline-bg: rgba(234,238,242,0.5); - --color-codemirror-matchingbracket-text: #1F2328; - --color-codemirror-lines-bg: #ffffff; - --color-codemirror-syntax-comment: #24292f; - --color-codemirror-syntax-constant: #0550ae; - --color-codemirror-syntax-entity: #8250df; - --color-codemirror-syntax-keyword: #cf222e; - --color-codemirror-syntax-storage: #cf222e; - --color-codemirror-syntax-string: #0a3069; - --color-codemirror-syntax-support: #0550ae; - --color-codemirror-syntax-variable: #953800; - --color-checks-bg: #24292f; - --color-checks-run-border-width: 0px; - --color-checks-container-border-width: 0px; - --color-checks-text-primary: #f6f8fa; - --color-checks-text-secondary: #8c959f; - --color-checks-text-link: #54aeff; - --color-checks-btn-icon: #afb8c1; - --color-checks-btn-hover-icon: #f6f8fa; - --color-checks-btn-hover-bg: rgba(255,255,255,0.125); - --color-checks-input-text: #eaeef2; - --color-checks-input-placeholder-text: #8c959f; - --color-checks-input-focus-text: #8c959f; - --color-checks-input-bg: #32383f; - --color-checks-input-shadow: none; - --color-checks-donut-error: #fa4549; - --color-checks-donut-pending: #bf8700; - --color-checks-donut-success: #1f883d; - --color-checks-donut-neutral: #afb8c1; - --color-checks-dropdown-text: #afb8c1; - --color-checks-dropdown-bg: #32383f; - --color-checks-dropdown-border: #424a53; - --color-checks-dropdown-shadow: rgba(31,35,40,0.3); - --color-checks-dropdown-hover-text: #f6f8fa; - --color-checks-dropdown-hover-bg: #424a53; - --color-checks-dropdown-btn-hover-text: #f6f8fa; - --color-checks-dropdown-btn-hover-bg: #32383f; - --color-checks-scrollbar-thumb-bg: #57606a; - --color-checks-header-label-text: #d0d7de; - --color-checks-header-label-open-text: #f6f8fa; - --color-checks-header-border: #32383f; - --color-checks-header-icon: #8c959f; - --color-checks-line-text: #d0d7de; - --color-checks-line-num-text: rgba(140,149,159,0.75); - --color-checks-line-timestamp-text: #8c959f; - --color-checks-line-hover-bg: #32383f; - --color-checks-line-selected-bg: rgba(33,139,255,0.15); - --color-checks-line-selected-num-text: #54aeff; - --color-checks-line-dt-fm-text: #24292f; - --color-checks-line-dt-fm-bg: #9a6700; - --color-checks-gate-bg: rgba(125,78,0,0.15); - --color-checks-gate-text: #d0d7de; - --color-checks-gate-waiting-text: #d4a72c; - --color-checks-step-header-open-bg: #32383f; - --color-checks-step-error-text: #ff8182; - --color-checks-step-warning-text: #d4a72c; - --color-checks-logline-text: #8c959f; - --color-checks-logline-num-text: rgba(140,149,159,0.75); - --color-checks-logline-debug-text: #c297ff; - --color-checks-logline-error-text: #d0d7de; - --color-checks-logline-error-num-text: #ff8182; - --color-checks-logline-error-bg: rgba(164,14,38,0.15); - --color-checks-logline-warning-text: #d0d7de; - --color-checks-logline-warning-num-text: #d4a72c; - --color-checks-logline-warning-bg: rgba(125,78,0,0.15); - --color-checks-logline-command-text: #54aeff; - --color-checks-logline-section-text: #4ac26b; - --color-checks-ansi-black: #24292f; - --color-checks-ansi-black-bright: #32383f; - --color-checks-ansi-white: #d0d7de; - --color-checks-ansi-white-bright: #d0d7de; - --color-checks-ansi-gray: #8c959f; - --color-checks-ansi-red: #ff8182; - --color-checks-ansi-red-bright: #ffaba8; - --color-checks-ansi-green: #4ac26b; - --color-checks-ansi-green-bright: #6fdd8b; - --color-checks-ansi-yellow: #d4a72c; - --color-checks-ansi-yellow-bright: #eac54f; - --color-checks-ansi-blue: #54aeff; - --color-checks-ansi-blue-bright: #80ccff; - --color-checks-ansi-magenta: #c297ff; - --color-checks-ansi-magenta-bright: #d8b9ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #24292f; - --color-project-sidebar-bg: #ffffff; - --color-project-gradient-in: #ffffff; - --color-project-gradient-out: rgba(255,255,255,0); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-outline: rgb(0 0 0 / 15%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(0 0 0 / 15%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgb(0 0 0 / 70%) 0 0 0 2px inset; - --color-control-border-color-emphasis: #858F99; - --color-avatar-bg: #ffffff; - --color-avatar-border: rgba(31,35,40,0.15); - --color-avatar-stack-fade: #afb8c1; - --color-avatar-stack-fade-more: #d0d7de; - --color-avatar-child-shadow: 0 0 0 2px rgba(255,255,255,0.8); - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: rgba(0,0,0,0); - --color-select-menu-tap-highlight: rgba(175,184,193,0.5); - --color-select-menu-tap-focus-bg: #b6e3ff; - --color-overlay-shadow: 0 1px 3px rgba(31,35,40,0.12), 0 8px 24px rgba(66,74,83,0.12); - --color-overlay-backdrop: rgba(140,149,159,0.2); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #24292f; - --color-header-divider: #57606a; - --color-header-logo: #ffffff; - --color-header-search-bg: #24292f; - --color-header-search-border: #57606a; - --color-sidenav-selected-bg: #ffffff; - --color-menu-bg-active: rgba(0,0,0,0); - --color-input-disabled-bg: rgba(175,184,193,0.2); - --color-timeline-badge-bg: #eaeef2; - --color-ansi-black: #24292f; - --color-ansi-black-bright: #57606a; - --color-ansi-white: #6e7781; - --color-ansi-white-bright: #8c959f; - --color-ansi-gray: #6e7781; - --color-ansi-red: #cf222e; - --color-ansi-red-bright: #a40e26; - --color-ansi-green: #116329; - --color-ansi-green-bright: #1a7f37; - --color-ansi-yellow: #4d2d00; - --color-ansi-yellow-bright: #633c01; - --color-ansi-blue: #0969da; - --color-ansi-blue-bright: #218bff; - --color-ansi-magenta: #8250df; - --color-ansi-magenta-bright: #a475f9; - --color-ansi-cyan: #1b7c83; - --color-ansi-cyan-bright: #3192aa; - --color-btn-text: #24292f; - --color-btn-bg: #f6f8fa; - --color-btn-border: rgba(31,35,40,0.15); - --color-btn-shadow: 0 1px 0 rgba(31,35,40,0.04); - --color-btn-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.25); - --color-btn-hover-bg: #f3f4f6; - --color-btn-hover-border: rgba(31,35,40,0.15); - --color-btn-active-bg: hsla(220,14%,93%,1); - --color-btn-active-border: rgba(31,35,40,0.15); - --color-btn-selected-bg: hsla(220,14%,94%,1); - --color-btn-counter-bg: rgba(31,35,40,0.08); - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #1f883d; - --color-btn-primary-border: rgba(31,35,40,0.15); - --color-btn-primary-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-primary-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-primary-hover-bg: #1a7f37; - --color-btn-primary-hover-border: rgba(31,35,40,0.15); - --color-btn-primary-selected-bg: hsla(137,66%,28%,1); - --color-btn-primary-selected-shadow: inset 0 1px 0 rgba(0,45,17,0.2); - --color-btn-primary-disabled-text: rgba(255,255,255,0.8); - --color-btn-primary-disabled-bg: #94d3a2; - --color-btn-primary-disabled-border: rgba(31,35,40,0.15); - --color-btn-primary-icon: rgba(255,255,255,0.8); - --color-btn-primary-counter-bg: rgba(0,45,17,0.2); - --color-btn-outline-text: #0969da; - --color-btn-outline-hover-text: #ffffff; - --color-btn-outline-hover-bg: #0969da; - --color-btn-outline-hover-border: rgba(31,35,40,0.15); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: hsla(212,92%,42%,1); - --color-btn-outline-selected-border: rgba(31,35,40,0.15); - --color-btn-outline-selected-shadow: inset 0 1px 0 rgba(0,33,85,0.2); - --color-btn-outline-disabled-text: rgba(9,105,218,0.5); - --color-btn-outline-disabled-bg: #f6f8fa; - --color-btn-outline-disabled-counter-bg: rgba(9,105,218,0.05); - --color-btn-outline-counter-bg: #0969da1a; - --color-btn-outline-counter-fg: #0550ae; - --color-btn-outline-hover-counter-fg: #ffffff; - --color-btn-outline-disabled-counter-fg: rgba(9,105,218,0.5); - --color-btn-danger-text: #cf222e; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #a40e26; - --color-btn-danger-hover-border: rgba(31,35,40,0.15); - --color-btn-danger-hover-shadow: 0 1px 0 rgba(31,35,40,0.1); - --color-btn-danger-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: hsla(356,72%,44%,1); - --color-btn-danger-selected-border: rgba(31,35,40,0.15); - --color-btn-danger-selected-shadow: inset 0 1px 0 rgba(76,0,20,0.2); - --color-btn-danger-disabled-text: rgba(207,34,46,0.5); - --color-btn-danger-disabled-bg: #f6f8fa; - --color-btn-danger-disabled-counter-bg: rgba(207,34,46,0.05); - --color-btn-danger-counter-bg: rgba(207,34,46,0.1); - --color-btn-danger-icon: #cf222e; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-counter-fg: #a40e26; - --color-btn-danger-hover-counter-fg: #ffffff; - --color-btn-danger-disabled-counter-fg: rgba(207,34,46,0.5); - --color-underlinenav-icon: #6e7781; - --color-underlinenav-border-hover: rgba(175,184,193,0.2); - --color-action-list-item-inline-divider: rgba(208,215,222,0.48); - --color-action-list-item-default-hover-bg: rgba(208,215,222,0.32); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(208,215,222,0.48); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(208,215,222,0.24); - --color-action-list-item-danger-hover-bg: rgba(255,235,233,0.64); - --color-action-list-item-danger-active-bg: #ffebe9; - --color-action-list-item-danger-hover-text: #d1242f; - --color-switch-track-bg: #eaeef2; - --color-switch-track-hover-bg: hsla(210,24%,90%,1); - --color-switch-track-active-bg: hsla(210,24%,88%,1); - --color-switch-track-disabled-bg: #8c959f; - --color-switch-track-fg: #656d76; - --color-switch-track-disabled-fg: #ffffff; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: #0969da; - --color-switch-track-checked-hover-bg: #0860CA; - --color-switch-track-checked-active-bg: #0757BA; - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #ffffff; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #ffffff; - --color-switch-knob-disabled-bg: #f6f8fa; - --color-switch-knob-border: #858F99; - --color-switch-knob-checked-bg: #ffffff; - --color-switch-knob-checked-disabled-bg: #f6f8fa; - --color-switch-knob-checked-border: #0969da; - --color-segmented-control-bg: #eaeef2; - --color-segmented-control-button-bg: #ffffff; - --color-segmented-control-button-hover-bg: rgba(175,184,193,0.2); - --color-segmented-control-button-active-bg: rgba(175,184,193,0.4); - --color-segmented-control-button-selected-border: #8c959f; - --color-tree-view-item-chevron-hover-bg: rgba(208,215,222,0.32); - --color-tree-view-item-directory-fill: #54aeff; - --color-fg-default: #1F2328; - --color-fg-muted: #656d76; - --color-fg-subtle: #6e7781; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #ffffff; - --color-canvas-overlay: #ffffff; - --color-canvas-inset: #f6f8fa; - --color-canvas-subtle: #f6f8fa; - --color-border-default: #d0d7de; - --color-border-muted: hsla(210,18%,87%,1); - --color-border-subtle: rgba(31,35,40,0.15); - --color-shadow-small: 0 1px 0 rgba(31,35,40,0.04); - --color-shadow-medium: 0 3px 6px rgba(140,149,159,0.15); - --color-shadow-large: 0 8px 24px rgba(140,149,159,0.2); - --color-shadow-extra-large: 0 12px 28px rgba(140,149,159,0.3); - --color-neutral-emphasis-plus: #24292f; - --color-neutral-emphasis: #6e7781; - --color-neutral-muted: rgba(175,184,193,0.2); - --color-neutral-subtle: rgba(234,238,242,0.5); - --color-accent-fg: #0969da; - --color-accent-emphasis: #0969da; - --color-accent-muted: rgba(84,174,255,0.4); - --color-accent-subtle: #ddf4ff; - --color-success-fg: #1a7f37; - --color-success-emphasis: #1f883d; - --color-success-muted: rgba(74,194,107,0.4); - --color-success-subtle: #dafbe1; - --color-attention-fg: #9a6700; - --color-attention-emphasis: #9a6700; - --color-attention-muted: rgba(212,167,44,0.4); - --color-attention-subtle: #fff8c5; - --color-severe-fg: #bc4c00; - --color-severe-emphasis: #bc4c00; - --color-severe-muted: rgba(251,143,68,0.4); - --color-severe-subtle: #fff1e5; - --color-danger-fg: #d1242f; - --color-danger-emphasis: #cf222e; - --color-danger-muted: rgba(255,129,130,0.4); - --color-danger-subtle: #ffebe9; - --color-open-fg: #1a7f37; - --color-open-emphasis: #1f883d; - --color-open-muted: rgba(74,194,107,0.4); - --color-open-subtle: #dafbe1; - --color-closed-fg: #d1242f; - --color-closed-emphasis: #cf222e; - --color-closed-muted: rgba(255,129,130,0.4); - --color-closed-subtle: #ffebe9; - --color-done-fg: #8250df; - --color-done-emphasis: #8250df; - --color-done-muted: rgba(194,151,255,0.4); - --color-done-subtle: #fbefff; - --color-sponsors-fg: #bf3989; - --color-sponsors-emphasis: #bf3989; - --color-sponsors-muted: rgba(255,128,200,0.4); - --color-sponsors-subtle: #ffeff7; - --color-primer-fg-disabled: #8c959f; - --color-primer-canvas-backdrop: rgba(31,35,40,0.5); - --color-primer-canvas-sticky: rgba(255,255,255,0.95); - --color-primer-border-active: #fd8c73; - --color-primer-border-contrast: rgba(31,35,40,0.1); - --color-primer-shadow-highlight: inset 0 1px 0 rgba(255,255,255,0.25); - --color-primer-shadow-inset: inset 0 1px 0 rgba(208,215,222,0.2); - --color-scale-black: #1F2328; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f6f8fa; - --color-scale-gray-1: #eaeef2; - --color-scale-gray-2: #d0d7de; - --color-scale-gray-3: #afb8c1; - --color-scale-gray-4: #8c959f; - --color-scale-gray-5: #6e7781; - --color-scale-gray-6: #57606a; - --color-scale-gray-7: #424a53; - --color-scale-gray-8: #32383f; - --color-scale-gray-9: #24292f; - --color-scale-blue-0: #ddf4ff; - --color-scale-blue-1: #b6e3ff; - --color-scale-blue-2: #80ccff; - --color-scale-blue-3: #54aeff; - --color-scale-blue-4: #218bff; - --color-scale-blue-5: #0969da; - --color-scale-blue-6: #0550ae; - --color-scale-blue-7: #033d8b; - --color-scale-blue-8: #0a3069; - --color-scale-blue-9: #002155; - --color-scale-green-0: #dafbe1; - --color-scale-green-1: #aceebb; - --color-scale-green-2: #6fdd8b; - --color-scale-green-3: #4ac26b; - --color-scale-green-4: #2da44e; - --color-scale-green-5: #1a7f37; - --color-scale-green-6: #116329; - --color-scale-green-7: #044f1e; - --color-scale-green-8: #003d16; - --color-scale-green-9: #002d11; - --color-scale-yellow-0: #fff8c5; - --color-scale-yellow-1: #fae17d; - --color-scale-yellow-2: #eac54f; - --color-scale-yellow-3: #d4a72c; - --color-scale-yellow-4: #bf8700; - --color-scale-yellow-5: #9a6700; - --color-scale-yellow-6: #7d4e00; - --color-scale-yellow-7: #633c01; - --color-scale-yellow-8: #4d2d00; - --color-scale-yellow-9: #3b2300; - --color-scale-orange-0: #fff1e5; - --color-scale-orange-1: #ffd8b5; - --color-scale-orange-2: #ffb77c; - --color-scale-orange-3: #fb8f44; - --color-scale-orange-4: #e16f24; - --color-scale-orange-5: #bc4c00; - --color-scale-orange-6: #953800; - --color-scale-orange-7: #762c00; - --color-scale-orange-8: #5c2200; - --color-scale-orange-9: #471700; - --color-scale-red-0: #ffebe9; - --color-scale-red-1: #ffcecb; - --color-scale-red-2: #ffaba8; - --color-scale-red-3: #ff8182; - --color-scale-red-4: #fa4549; - --color-scale-red-5: #cf222e; - --color-scale-red-6: #a40e26; - --color-scale-red-7: #82071e; - --color-scale-red-8: #660018; - --color-scale-red-9: #4c0014; - --color-scale-purple-0: #fbefff; - --color-scale-purple-1: #ecd8ff; - --color-scale-purple-2: #d8b9ff; - --color-scale-purple-3: #c297ff; - --color-scale-purple-4: #a475f9; - --color-scale-purple-5: #8250df; - --color-scale-purple-6: #6639ba; - --color-scale-purple-7: #512a97; - --color-scale-purple-8: #3e1f79; - --color-scale-purple-9: #2e1461; - --color-scale-pink-0: #ffeff7; - --color-scale-pink-1: #ffd3eb; - --color-scale-pink-2: #ffadda; - --color-scale-pink-3: #ff80c8; - --color-scale-pink-4: #e85aad; - --color-scale-pink-5: #bf3989; - --color-scale-pink-6: #99286e; - --color-scale-pink-7: #772057; - --color-scale-pink-8: #611347; - --color-scale-pink-9: #4d0336; - --color-scale-coral-0: #fff0eb; - --color-scale-coral-1: #ffd6cc; - --color-scale-coral-2: #ffb4a1; - --color-scale-coral-3: #fd8c73; - --color-scale-coral-4: #ec6547; - --color-scale-coral-5: #c4432b; - --color-scale-coral-6: #9e2f1c; - --color-scale-coral-7: #801f0f; - --color-scale-coral-8: #691105; - --color-scale-coral-9: #510901; - } -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme=dark], -[data-color-mode=light][data-light-theme=dark]::selection, -[data-color-mode=dark][data-dark-theme=dark], -[data-color-mode=dark][data-dark-theme=dark]::selection { - --color-canvas-default-transparent: rgba(13,17,23,0); - --color-page-header-bg: #0d1117; - --color-marketing-icon-primary: #79c0ff; - --color-marketing-icon-secondary: #1f6feb; - --color-diff-blob-addition-num-text: #e6edf3; - --color-diff-blob-addition-fg: #e6edf3; - --color-diff-blob-addition-num-bg: rgba(63,185,80,0.3); - --color-diff-blob-addition-line-bg: rgba(46,160,67,0.15); - --color-diff-blob-addition-word-bg: rgba(46,160,67,0.4); - --color-diff-blob-deletion-num-text: #e6edf3; - --color-diff-blob-deletion-fg: #e6edf3; - --color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3); - --color-diff-blob-deletion-line-bg: rgba(248,81,73,0.1); - --color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4); - --color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4); - --color-diff-blob-expander-icon: #7d8590; - --color-diff-blob-selected-line-highlight-mix-blend-mode: screen; - --color-diffstat-deletion-border: rgba(240,246,252,0.1); - --color-diffstat-addition-border: rgba(240,246,252,0.1); - --color-diffstat-addition-bg: #3fb950; - --color-search-keyword-hl: rgba(210,153,34,0.4); - --color-prettylights-syntax-comment: #8b949e; - --color-prettylights-syntax-constant: #79c0ff; - --color-prettylights-syntax-entity: #d2a8ff; - --color-prettylights-syntax-storage-modifier-import: #c9d1d9; - --color-prettylights-syntax-entity-tag: #7ee787; - --color-prettylights-syntax-keyword: #ff7b72; - --color-prettylights-syntax-string: #a5d6ff; - --color-prettylights-syntax-variable: #ffa657; - --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; - --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; - --color-prettylights-syntax-invalid-illegal-bg: #8e1519; - --color-prettylights-syntax-carriage-return-text: #f0f6fc; - --color-prettylights-syntax-carriage-return-bg: #b62324; - --color-prettylights-syntax-string-regexp: #7ee787; - --color-prettylights-syntax-markup-list: #f2cc60; - --color-prettylights-syntax-markup-heading: #1f6feb; - --color-prettylights-syntax-markup-italic: #c9d1d9; - --color-prettylights-syntax-markup-bold: #c9d1d9; - --color-prettylights-syntax-markup-deleted-text: #ffdcd7; - --color-prettylights-syntax-markup-deleted-bg: #67060c; - --color-prettylights-syntax-markup-inserted-text: #aff5b4; - --color-prettylights-syntax-markup-inserted-bg: #033a16; - --color-prettylights-syntax-markup-changed-text: #ffdfb6; - --color-prettylights-syntax-markup-changed-bg: #5a1e02; - --color-prettylights-syntax-markup-ignored-text: #c9d1d9; - --color-prettylights-syntax-markup-ignored-bg: #1158c7; - --color-prettylights-syntax-meta-diff-range: #d2a8ff; - --color-prettylights-syntax-brackethighlighter-angle: #8b949e; - --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; - --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; - --color-codemirror-text: #e6edf3; - --color-codemirror-bg: #0d1117; - --color-codemirror-gutters-bg: #0d1117; - --color-codemirror-guttermarker-text: #0d1117; - --color-codemirror-guttermarker-subtle-text: #6e7681; - --color-codemirror-linenumber-text: #7d8590; - --color-codemirror-cursor: #e6edf3; - --color-codemirror-selection-bg: rgba(56,139,253,0.4); - --color-codemirror-activeline-bg: rgba(110,118,129,0.1); - --color-codemirror-matchingbracket-text: #e6edf3; - --color-codemirror-lines-bg: #0d1117; - --color-codemirror-syntax-comment: #8b949e; - --color-codemirror-syntax-constant: #79c0ff; - --color-codemirror-syntax-entity: #d2a8ff; - --color-codemirror-syntax-keyword: #ff7b72; - --color-codemirror-syntax-storage: #ff7b72; - --color-codemirror-syntax-string: #a5d6ff; - --color-codemirror-syntax-support: #79c0ff; - --color-codemirror-syntax-variable: #ffa657; - --color-checks-bg: #010409; - --color-checks-run-border-width: 1px; - --color-checks-container-border-width: 1px; - --color-checks-text-primary: #e6edf3; - --color-checks-text-secondary: #7d8590; - --color-checks-text-link: #2f81f7; - --color-checks-btn-icon: #7d8590; - --color-checks-btn-hover-icon: #e6edf3; - --color-checks-btn-hover-bg: rgba(110,118,129,0.1); - --color-checks-input-text: #7d8590; - --color-checks-input-placeholder-text: #6e7681; - --color-checks-input-focus-text: #e6edf3; - --color-checks-input-bg: #161b22; - --color-checks-input-shadow: 0 0 0 1px (obj) => (0, get_1.default)(obj, path); - --color-checks-donut-error: #f85149; - --color-checks-donut-pending: #d29922; - --color-checks-donut-success: #2ea043; - --color-checks-donut-neutral: #8b949e; - --color-checks-dropdown-text: #e6edf3; - --color-checks-dropdown-bg: #161b22; - --color-checks-dropdown-border: #30363d; - --color-checks-dropdown-shadow: rgba(1,4,9,0.3); - --color-checks-dropdown-hover-text: #e6edf3; - --color-checks-dropdown-hover-bg: rgba(110,118,129,0.1); - --color-checks-dropdown-btn-hover-text: #e6edf3; - --color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1); - --color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4); - --color-checks-header-label-text: #7d8590; - --color-checks-header-label-open-text: #e6edf3; - --color-checks-header-border: #21262d; - --color-checks-header-icon: #7d8590; - --color-checks-line-text: #7d8590; - --color-checks-line-num-text: #6e7681; - --color-checks-line-timestamp-text: #6e7681; - --color-checks-line-hover-bg: rgba(110,118,129,0.1); - --color-checks-line-selected-bg: rgba(56,139,253,0.1); - --color-checks-line-selected-num-text: #2f81f7; - --color-checks-line-dt-fm-text: #ffffff; - --color-checks-line-dt-fm-bg: #9e6a03; - --color-checks-gate-bg: rgba(187,128,9,0.15); - --color-checks-gate-text: #7d8590; - --color-checks-gate-waiting-text: #d29922; - --color-checks-step-header-open-bg: #161b22; - --color-checks-step-error-text: #f85149; - --color-checks-step-warning-text: #d29922; - --color-checks-logline-text: #7d8590; - --color-checks-logline-num-text: #6e7681; - --color-checks-logline-debug-text: #a371f7; - --color-checks-logline-error-text: #7d8590; - --color-checks-logline-error-num-text: #6e7681; - --color-checks-logline-error-bg: rgba(248,81,73,0.1); - --color-checks-logline-warning-text: #7d8590; - --color-checks-logline-warning-num-text: #d29922; - --color-checks-logline-warning-bg: rgba(187,128,9,0.15); - --color-checks-logline-command-text: #2f81f7; - --color-checks-logline-section-text: #3fb950; - --color-checks-ansi-black: #0d1117; - --color-checks-ansi-black-bright: #161b22; - --color-checks-ansi-white: #b1bac4; - --color-checks-ansi-white-bright: #b1bac4; - --color-checks-ansi-gray: #6e7681; - --color-checks-ansi-red: #ff7b72; - --color-checks-ansi-red-bright: #ffa198; - --color-checks-ansi-green: #3fb950; - --color-checks-ansi-green-bright: #56d364; - --color-checks-ansi-yellow: #d29922; - --color-checks-ansi-yellow-bright: #e3b341; - --color-checks-ansi-blue: #58a6ff; - --color-checks-ansi-blue-bright: #79c0ff; - --color-checks-ansi-magenta: #bc8cff; - --color-checks-ansi-magenta-bright: #d2a8ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #0d1117; - --color-project-sidebar-bg: #161b22; - --color-project-gradient-in: #161b22; - --color-project-gradient-out: rgba(22,27,34,0); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-outline: rgb(255 255 255 / 25%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(255 255 255 / 25%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: rgb(255 255 255) 0 0 0 2px inset; - --color-control-border-color-emphasis: #606771; - --color-avatar-bg: rgba(255,255,255,0.1); - --color-avatar-border: rgba(240,246,252,0.1); - --color-avatar-stack-fade: #30363d; - --color-avatar-stack-fade-more: #21262d; - --color-avatar-child-shadow: 0 0 0 2px #0d1117; - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: #484f58; - --color-select-menu-tap-highlight: rgba(48,54,61,0.5); - --color-select-menu-tap-focus-bg: #0c2d6b; - --color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85); - --color-overlay-backdrop: rgba(22,27,34,0.4); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #161b22; - --color-header-divider: #8b949e; - --color-header-logo: #f0f6fc; - --color-header-search-bg: #0d1117; - --color-header-search-border: #30363d; - --color-sidenav-selected-bg: #21262d; - --color-menu-bg-active: #161b22; - --color-input-disabled-bg: rgba(110,118,129,0); - --color-timeline-badge-bg: #21262d; - --color-ansi-black: #484f58; - --color-ansi-black-bright: #6e7681; - --color-ansi-white: #b1bac4; - --color-ansi-white-bright: #ffffff; - --color-ansi-gray: #6e7681; - --color-ansi-red: #ff7b72; - --color-ansi-red-bright: #ffa198; - --color-ansi-green: #3fb950; - --color-ansi-green-bright: #56d364; - --color-ansi-yellow: #d29922; - --color-ansi-yellow-bright: #e3b341; - --color-ansi-blue: #58a6ff; - --color-ansi-blue-bright: #79c0ff; - --color-ansi-magenta: #bc8cff; - --color-ansi-magenta-bright: #d2a8ff; - --color-ansi-cyan: #39c5cf; - --color-ansi-cyan-bright: #56d4dd; - --color-btn-text: #c9d1d9; - --color-btn-bg: #21262d; - --color-btn-border: rgba(240,246,252,0.1); - --color-btn-shadow: 0 0 transparent; - --color-btn-inset-shadow: 0 0 transparent; - --color-btn-hover-bg: #30363d; - --color-btn-hover-border: #8b949e; - --color-btn-active-bg: hsla(212,12%,18%,1); - --color-btn-active-border: #6e7681; - --color-btn-selected-bg: #161b22; - --color-btn-counter-bg: #30363d; - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #238636; - --color-btn-primary-border: rgba(240,246,252,0.1); - --color-btn-primary-shadow: 0 0 transparent; - --color-btn-primary-inset-shadow: 0 0 transparent; - --color-btn-primary-hover-bg: #2ea043; - --color-btn-primary-hover-border: rgba(240,246,252,0.1); - --color-btn-primary-selected-bg: #238636; - --color-btn-primary-selected-shadow: 0 0 transparent; - --color-btn-primary-disabled-text: rgba(255,255,255,0.5); - --color-btn-primary-disabled-bg: rgba(35,134,54,0.6); - --color-btn-primary-disabled-border: rgba(240,246,252,0.1); - --color-btn-primary-icon: #ffffff; - --color-btn-primary-counter-bg: rgba(4,38,15,0.2); - --color-btn-outline-text: #388bfd; - --color-btn-outline-hover-text: #58a6ff; - --color-btn-outline-hover-bg: #30363d; - --color-btn-outline-hover-border: rgba(240,246,252,0.1); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(5,29,77,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: #0d419d; - --color-btn-outline-selected-border: rgba(240,246,252,0.1); - --color-btn-outline-selected-shadow: 0 0 transparent; - --color-btn-outline-disabled-text: rgba(88,166,255,0.5); - --color-btn-outline-disabled-bg: #0d1117; - --color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05); - --color-btn-outline-counter-bg: rgba(5,29,77,0.2); - --color-btn-outline-hover-counter-fg: #58a6ff; - --color-btn-outline-disabled-counter-fg: rgba(47,129,247,0.5); - --color-btn-outline-counter-fg: #388bfd; - --color-btn-danger-text: #f85149; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #da3633; - --color-btn-danger-hover-border: #f85149; - --color-btn-danger-hover-shadow: 0 0 transparent; - --color-btn-danger-hover-inset-shadow: 0 0 transparent; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: #b62324; - --color-btn-danger-selected-border: #ff7b72; - --color-btn-danger-selected-shadow: 0 0 transparent; - --color-btn-danger-disabled-text: rgba(248,81,73,0.5); - --color-btn-danger-disabled-bg: #0d1117; - --color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05); - --color-btn-danger-counter-bg: rgba(73,2,2,0.2); - --color-btn-danger-icon: #f85149; - --color-btn-danger-counter-fg: #f85149; - --color-btn-danger-disabled-counter-fg: rgba(248,81,73,0.5); - --color-btn-danger-hover-counter-fg: #ffffff; - --color-underlinenav-icon: #6e7681; - --color-underlinenav-border-hover: rgba(110,118,129,0.4); - --color-action-list-item-inline-divider: rgba(48,54,61,0.48); - --color-action-list-item-default-hover-bg: rgba(177,186,196,0.12); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(177,186,196,0.2); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(177,186,196,0.08); - --color-action-list-item-danger-hover-bg: rgba(248,81,73,0.16); - --color-action-list-item-danger-active-bg: rgba(248,81,73,0.24); - --color-action-list-item-danger-hover-text: #ff7b72; - --color-switch-track-bg: rgba(110,118,129,0.1); - --color-switch-track-hover-bg: hsla(215,8%,72%,0.1); - --color-switch-track-active-bg: rgba(110,118,129,0.4); - --color-switch-track-disabled-bg: #21262d; - --color-switch-track-fg: #7d8590; - --color-switch-track-disabled-fg: #010409; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: rgba(31,111,235,0.35); - --color-switch-track-checked-hover-bg: rgba(31,111,235,0.5); - --color-switch-track-checked-active-bg: rgba(31,111,235,0.65); - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #010409; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #0d1117; - --color-switch-knob-border: #606771; - --color-switch-knob-disabled-bg: #161b22; - --color-switch-knob-checked-bg: #0d1117; - --color-switch-knob-checked-disabled-bg: #161b22; - --color-switch-knob-checked-border: rgba(31,111,235,0.35); - --color-segmented-control-bg: rgba(110,118,129,0.1); - --color-segmented-control-button-bg: #0d1117; - --color-segmented-control-button-hover-bg: #30363d; - --color-segmented-control-button-active-bg: #21262d; - --color-segmented-control-button-selected-border: #6e7681; - --color-tree-view-item-chevron-hover-bg: rgba(177,186,196,0.12); - --color-tree-view-item-directory-fill: #7d8590; - --color-fg-default: #e6edf3; - --color-fg-muted: #7d8590; - --color-fg-subtle: #6e7681; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #0d1117; - --color-canvas-overlay: #161b22; - --color-canvas-inset: #010409; - --color-canvas-subtle: #161b22; - --color-border-default: #30363d; - --color-border-muted: #21262d; - --color-border-subtle: rgba(240,246,252,0.1); - --color-shadow-small: 0 0 transparent; - --color-shadow-medium: 0 3px 6px #010409; - --color-shadow-large: 0 8px 24px #010409; - --color-shadow-extra-large: 0 12px 48px #010409; - --color-neutral-emphasis-plus: #6e7681; - --color-neutral-emphasis: #6e7681; - --color-neutral-muted: rgba(110,118,129,0.4); - --color-neutral-subtle: rgba(110,118,129,0.1); - --color-accent-fg: #2f81f7; - --color-accent-emphasis: #1f6feb; - --color-accent-muted: rgba(56,139,253,0.4); - --color-accent-subtle: rgba(56,139,253,0.1); - --color-success-fg: #3fb950; - --color-success-emphasis: #238636; - --color-success-muted: rgba(46,160,67,0.4); - --color-success-subtle: rgba(46,160,67,0.15); - --color-attention-fg: #d29922; - --color-attention-emphasis: #9e6a03; - --color-attention-muted: rgba(187,128,9,0.4); - --color-attention-subtle: rgba(187,128,9,0.15); - --color-severe-fg: #db6d28; - --color-severe-emphasis: #bd561d; - --color-severe-muted: rgba(219,109,40,0.4); - --color-severe-subtle: rgba(219,109,40,0.1); - --color-danger-fg: #f85149; - --color-danger-emphasis: #da3633; - --color-danger-muted: rgba(248,81,73,0.4); - --color-danger-subtle: rgba(248,81,73,0.1); - --color-open-fg: #3fb950; - --color-open-emphasis: #238636; - --color-open-muted: rgba(46,160,67,0.4); - --color-open-subtle: rgba(46,160,67,0.15); - --color-closed-fg: #f85149; - --color-closed-emphasis: #da3633; - --color-closed-muted: rgba(248,81,73,0.4); - --color-closed-subtle: rgba(248,81,73,0.15); - --color-done-fg: #a371f7; - --color-done-emphasis: #8957e5; - --color-done-muted: rgba(163,113,247,0.4); - --color-done-subtle: rgba(163,113,247,0.1); - --color-sponsors-fg: #db61a2; - --color-sponsors-emphasis: #bf4b8a; - --color-sponsors-muted: rgba(219,97,162,0.4); - --color-sponsors-subtle: rgba(219,97,162,0.1); - --color-primer-fg-disabled: #484f58; - --color-primer-canvas-backdrop: rgba(1,4,9,0.8); - --color-primer-canvas-sticky: rgba(13,17,23,0.95); - --color-primer-border-active: #f78166; - --color-primer-border-contrast: rgba(255,255,255,0.2); - --color-primer-shadow-highlight: 0 0 transparent; - --color-primer-shadow-inset: 0 0 transparent; - --color-scale-black: #010409; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f0f6fc; - --color-scale-gray-1: #c9d1d9; - --color-scale-gray-2: #b1bac4; - --color-scale-gray-3: #8b949e; - --color-scale-gray-4: #6e7681; - --color-scale-gray-5: #484f58; - --color-scale-gray-6: #30363d; - --color-scale-gray-7: #21262d; - --color-scale-gray-8: #161b22; - --color-scale-gray-9: #0d1117; - --color-scale-blue-0: #cae8ff; - --color-scale-blue-1: #a5d6ff; - --color-scale-blue-2: #79c0ff; - --color-scale-blue-3: #58a6ff; - --color-scale-blue-4: #388bfd; - --color-scale-blue-5: #1f6feb; - --color-scale-blue-6: #1158c7; - --color-scale-blue-7: #0d419d; - --color-scale-blue-8: #0c2d6b; - --color-scale-blue-9: #051d4d; - --color-scale-green-0: #aff5b4; - --color-scale-green-1: #7ee787; - --color-scale-green-2: #56d364; - --color-scale-green-3: #3fb950; - --color-scale-green-4: #2ea043; - --color-scale-green-5: #238636; - --color-scale-green-6: #196c2e; - --color-scale-green-7: #0f5323; - --color-scale-green-8: #033a16; - --color-scale-green-9: #04260f; - --color-scale-yellow-0: #f8e3a1; - --color-scale-yellow-1: #f2cc60; - --color-scale-yellow-2: #e3b341; - --color-scale-yellow-3: #d29922; - --color-scale-yellow-4: #bb8009; - --color-scale-yellow-5: #9e6a03; - --color-scale-yellow-6: #845306; - --color-scale-yellow-7: #693e00; - --color-scale-yellow-8: #4b2900; - --color-scale-yellow-9: #341a00; - --color-scale-orange-0: #ffdfb6; - --color-scale-orange-1: #ffc680; - --color-scale-orange-2: #ffa657; - --color-scale-orange-3: #f0883e; - --color-scale-orange-4: #db6d28; - --color-scale-orange-5: #bd561d; - --color-scale-orange-6: #9b4215; - --color-scale-orange-7: #762d0a; - --color-scale-orange-8: #5a1e02; - --color-scale-orange-9: #3d1300; - --color-scale-red-0: #ffdcd7; - --color-scale-red-1: #ffc1ba; - --color-scale-red-2: #ffa198; - --color-scale-red-3: #ff7b72; - --color-scale-red-4: #f85149; - --color-scale-red-5: #da3633; - --color-scale-red-6: #b62324; - --color-scale-red-7: #8e1519; - --color-scale-red-8: #67060c; - --color-scale-red-9: #490202; - --color-scale-purple-0: #eddeff; - --color-scale-purple-1: #e2c5ff; - --color-scale-purple-2: #d2a8ff; - --color-scale-purple-3: #bc8cff; - --color-scale-purple-4: #a371f7; - --color-scale-purple-5: #8957e5; - --color-scale-purple-6: #6e40c9; - --color-scale-purple-7: #553098; - --color-scale-purple-8: #3c1e70; - --color-scale-purple-9: #271052; - --color-scale-pink-0: #ffdaec; - --color-scale-pink-1: #ffbedd; - --color-scale-pink-2: #ff9bce; - --color-scale-pink-3: #f778ba; - --color-scale-pink-4: #db61a2; - --color-scale-pink-5: #bf4b8a; - --color-scale-pink-6: #9e3670; - --color-scale-pink-7: #7d2457; - --color-scale-pink-8: #5e103e; - --color-scale-pink-9: #42062a; - --color-scale-coral-0: #ffddd2; - --color-scale-coral-1: #ffc2b2; - --color-scale-coral-2: #ffa28b; - --color-scale-coral-3: #f78166; - --color-scale-coral-4: #ea6045; - --color-scale-coral-5: #cf462d; - --color-scale-coral-6: #ac3220; - --color-scale-coral-7: #872012; - --color-scale-coral-8: #640d04; - --color-scale-coral-9: #460701; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme=dark], - [data-color-mode=auto][data-light-theme=dark]::selection { - --color-canvas-default-transparent: rgba(13,17,23,0); - --color-page-header-bg: #0d1117; - --color-marketing-icon-primary: #79c0ff; - --color-marketing-icon-secondary: #1f6feb; - --color-diff-blob-addition-num-text: #e6edf3; - --color-diff-blob-addition-fg: #e6edf3; - --color-diff-blob-addition-num-bg: rgba(63,185,80,0.3); - --color-diff-blob-addition-line-bg: rgba(46,160,67,0.15); - --color-diff-blob-addition-word-bg: rgba(46,160,67,0.4); - --color-diff-blob-deletion-num-text: #e6edf3; - --color-diff-blob-deletion-fg: #e6edf3; - --color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3); - --color-diff-blob-deletion-line-bg: rgba(248,81,73,0.1); - --color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4); - --color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4); - --color-diff-blob-expander-icon: #7d8590; - --color-diff-blob-selected-line-highlight-mix-blend-mode: screen; - --color-diffstat-deletion-border: rgba(240,246,252,0.1); - --color-diffstat-addition-border: rgba(240,246,252,0.1); - --color-diffstat-addition-bg: #3fb950; - --color-search-keyword-hl: rgba(210,153,34,0.4); - --color-prettylights-syntax-comment: #8b949e; - --color-prettylights-syntax-constant: #79c0ff; - --color-prettylights-syntax-entity: #d2a8ff; - --color-prettylights-syntax-storage-modifier-import: #c9d1d9; - --color-prettylights-syntax-entity-tag: #7ee787; - --color-prettylights-syntax-keyword: #ff7b72; - --color-prettylights-syntax-string: #a5d6ff; - --color-prettylights-syntax-variable: #ffa657; - --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; - --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; - --color-prettylights-syntax-invalid-illegal-bg: #8e1519; - --color-prettylights-syntax-carriage-return-text: #f0f6fc; - --color-prettylights-syntax-carriage-return-bg: #b62324; - --color-prettylights-syntax-string-regexp: #7ee787; - --color-prettylights-syntax-markup-list: #f2cc60; - --color-prettylights-syntax-markup-heading: #1f6feb; - --color-prettylights-syntax-markup-italic: #c9d1d9; - --color-prettylights-syntax-markup-bold: #c9d1d9; - --color-prettylights-syntax-markup-deleted-text: #ffdcd7; - --color-prettylights-syntax-markup-deleted-bg: #67060c; - --color-prettylights-syntax-markup-inserted-text: #aff5b4; - --color-prettylights-syntax-markup-inserted-bg: #033a16; - --color-prettylights-syntax-markup-changed-text: #ffdfb6; - --color-prettylights-syntax-markup-changed-bg: #5a1e02; - --color-prettylights-syntax-markup-ignored-text: #c9d1d9; - --color-prettylights-syntax-markup-ignored-bg: #1158c7; - --color-prettylights-syntax-meta-diff-range: #d2a8ff; - --color-prettylights-syntax-brackethighlighter-angle: #8b949e; - --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; - --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; - --color-codemirror-text: #e6edf3; - --color-codemirror-bg: #0d1117; - --color-codemirror-gutters-bg: #0d1117; - --color-codemirror-guttermarker-text: #0d1117; - --color-codemirror-guttermarker-subtle-text: #6e7681; - --color-codemirror-linenumber-text: #7d8590; - --color-codemirror-cursor: #e6edf3; - --color-codemirror-selection-bg: rgba(56,139,253,0.4); - --color-codemirror-activeline-bg: rgba(110,118,129,0.1); - --color-codemirror-matchingbracket-text: #e6edf3; - --color-codemirror-lines-bg: #0d1117; - --color-codemirror-syntax-comment: #8b949e; - --color-codemirror-syntax-constant: #79c0ff; - --color-codemirror-syntax-entity: #d2a8ff; - --color-codemirror-syntax-keyword: #ff7b72; - --color-codemirror-syntax-storage: #ff7b72; - --color-codemirror-syntax-string: #a5d6ff; - --color-codemirror-syntax-support: #79c0ff; - --color-codemirror-syntax-variable: #ffa657; - --color-checks-bg: #010409; - --color-checks-run-border-width: 1px; - --color-checks-container-border-width: 1px; - --color-checks-text-primary: #e6edf3; - --color-checks-text-secondary: #7d8590; - --color-checks-text-link: #2f81f7; - --color-checks-btn-icon: #7d8590; - --color-checks-btn-hover-icon: #e6edf3; - --color-checks-btn-hover-bg: rgba(110,118,129,0.1); - --color-checks-input-text: #7d8590; - --color-checks-input-placeholder-text: #6e7681; - --color-checks-input-focus-text: #e6edf3; - --color-checks-input-bg: #161b22; - --color-checks-input-shadow: 0 0 0 1px (obj) => (0, get_1.default)(obj, path); - --color-checks-donut-error: #f85149; - --color-checks-donut-pending: #d29922; - --color-checks-donut-success: #2ea043; - --color-checks-donut-neutral: #8b949e; - --color-checks-dropdown-text: #e6edf3; - --color-checks-dropdown-bg: #161b22; - --color-checks-dropdown-border: #30363d; - --color-checks-dropdown-shadow: rgba(1,4,9,0.3); - --color-checks-dropdown-hover-text: #e6edf3; - --color-checks-dropdown-hover-bg: rgba(110,118,129,0.1); - --color-checks-dropdown-btn-hover-text: #e6edf3; - --color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1); - --color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4); - --color-checks-header-label-text: #7d8590; - --color-checks-header-label-open-text: #e6edf3; - --color-checks-header-border: #21262d; - --color-checks-header-icon: #7d8590; - --color-checks-line-text: #7d8590; - --color-checks-line-num-text: #6e7681; - --color-checks-line-timestamp-text: #6e7681; - --color-checks-line-hover-bg: rgba(110,118,129,0.1); - --color-checks-line-selected-bg: rgba(56,139,253,0.1); - --color-checks-line-selected-num-text: #2f81f7; - --color-checks-line-dt-fm-text: #ffffff; - --color-checks-line-dt-fm-bg: #9e6a03; - --color-checks-gate-bg: rgba(187,128,9,0.15); - --color-checks-gate-text: #7d8590; - --color-checks-gate-waiting-text: #d29922; - --color-checks-step-header-open-bg: #161b22; - --color-checks-step-error-text: #f85149; - --color-checks-step-warning-text: #d29922; - --color-checks-logline-text: #7d8590; - --color-checks-logline-num-text: #6e7681; - --color-checks-logline-debug-text: #a371f7; - --color-checks-logline-error-text: #7d8590; - --color-checks-logline-error-num-text: #6e7681; - --color-checks-logline-error-bg: rgba(248,81,73,0.1); - --color-checks-logline-warning-text: #7d8590; - --color-checks-logline-warning-num-text: #d29922; - --color-checks-logline-warning-bg: rgba(187,128,9,0.15); - --color-checks-logline-command-text: #2f81f7; - --color-checks-logline-section-text: #3fb950; - --color-checks-ansi-black: #0d1117; - --color-checks-ansi-black-bright: #161b22; - --color-checks-ansi-white: #b1bac4; - --color-checks-ansi-white-bright: #b1bac4; - --color-checks-ansi-gray: #6e7681; - --color-checks-ansi-red: #ff7b72; - --color-checks-ansi-red-bright: #ffa198; - --color-checks-ansi-green: #3fb950; - --color-checks-ansi-green-bright: #56d364; - --color-checks-ansi-yellow: #d29922; - --color-checks-ansi-yellow-bright: #e3b341; - --color-checks-ansi-blue: #58a6ff; - --color-checks-ansi-blue-bright: #79c0ff; - --color-checks-ansi-magenta: #bc8cff; - --color-checks-ansi-magenta-bright: #d2a8ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #0d1117; - --color-project-sidebar-bg: #161b22; - --color-project-gradient-in: #161b22; - --color-project-gradient-out: rgba(22,27,34,0); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-outline: rgb(255 255 255 / 25%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(255 255 255 / 25%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: rgb(255 255 255) 0 0 0 2px inset; - --color-control-border-color-emphasis: #606771; - --color-avatar-bg: rgba(255,255,255,0.1); - --color-avatar-border: rgba(240,246,252,0.1); - --color-avatar-stack-fade: #30363d; - --color-avatar-stack-fade-more: #21262d; - --color-avatar-child-shadow: 0 0 0 2px #0d1117; - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: #484f58; - --color-select-menu-tap-highlight: rgba(48,54,61,0.5); - --color-select-menu-tap-focus-bg: #0c2d6b; - --color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85); - --color-overlay-backdrop: rgba(22,27,34,0.4); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #161b22; - --color-header-divider: #8b949e; - --color-header-logo: #f0f6fc; - --color-header-search-bg: #0d1117; - --color-header-search-border: #30363d; - --color-sidenav-selected-bg: #21262d; - --color-menu-bg-active: #161b22; - --color-input-disabled-bg: rgba(110,118,129,0); - --color-timeline-badge-bg: #21262d; - --color-ansi-black: #484f58; - --color-ansi-black-bright: #6e7681; - --color-ansi-white: #b1bac4; - --color-ansi-white-bright: #ffffff; - --color-ansi-gray: #6e7681; - --color-ansi-red: #ff7b72; - --color-ansi-red-bright: #ffa198; - --color-ansi-green: #3fb950; - --color-ansi-green-bright: #56d364; - --color-ansi-yellow: #d29922; - --color-ansi-yellow-bright: #e3b341; - --color-ansi-blue: #58a6ff; - --color-ansi-blue-bright: #79c0ff; - --color-ansi-magenta: #bc8cff; - --color-ansi-magenta-bright: #d2a8ff; - --color-ansi-cyan: #39c5cf; - --color-ansi-cyan-bright: #56d4dd; - --color-btn-text: #c9d1d9; - --color-btn-bg: #21262d; - --color-btn-border: rgba(240,246,252,0.1); - --color-btn-shadow: 0 0 transparent; - --color-btn-inset-shadow: 0 0 transparent; - --color-btn-hover-bg: #30363d; - --color-btn-hover-border: #8b949e; - --color-btn-active-bg: hsla(212,12%,18%,1); - --color-btn-active-border: #6e7681; - --color-btn-selected-bg: #161b22; - --color-btn-counter-bg: #30363d; - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #238636; - --color-btn-primary-border: rgba(240,246,252,0.1); - --color-btn-primary-shadow: 0 0 transparent; - --color-btn-primary-inset-shadow: 0 0 transparent; - --color-btn-primary-hover-bg: #2ea043; - --color-btn-primary-hover-border: rgba(240,246,252,0.1); - --color-btn-primary-selected-bg: #238636; - --color-btn-primary-selected-shadow: 0 0 transparent; - --color-btn-primary-disabled-text: rgba(255,255,255,0.5); - --color-btn-primary-disabled-bg: rgba(35,134,54,0.6); - --color-btn-primary-disabled-border: rgba(240,246,252,0.1); - --color-btn-primary-icon: #ffffff; - --color-btn-primary-counter-bg: rgba(4,38,15,0.2); - --color-btn-outline-text: #388bfd; - --color-btn-outline-hover-text: #58a6ff; - --color-btn-outline-hover-bg: #30363d; - --color-btn-outline-hover-border: rgba(240,246,252,0.1); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(5,29,77,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: #0d419d; - --color-btn-outline-selected-border: rgba(240,246,252,0.1); - --color-btn-outline-selected-shadow: 0 0 transparent; - --color-btn-outline-disabled-text: rgba(88,166,255,0.5); - --color-btn-outline-disabled-bg: #0d1117; - --color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05); - --color-btn-outline-counter-bg: rgba(5,29,77,0.2); - --color-btn-outline-hover-counter-fg: #58a6ff; - --color-btn-outline-disabled-counter-fg: rgba(47,129,247,0.5); - --color-btn-outline-counter-fg: #388bfd; - --color-btn-danger-text: #f85149; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #da3633; - --color-btn-danger-hover-border: #f85149; - --color-btn-danger-hover-shadow: 0 0 transparent; - --color-btn-danger-hover-inset-shadow: 0 0 transparent; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: #b62324; - --color-btn-danger-selected-border: #ff7b72; - --color-btn-danger-selected-shadow: 0 0 transparent; - --color-btn-danger-disabled-text: rgba(248,81,73,0.5); - --color-btn-danger-disabled-bg: #0d1117; - --color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05); - --color-btn-danger-counter-bg: rgba(73,2,2,0.2); - --color-btn-danger-icon: #f85149; - --color-btn-danger-counter-fg: #f85149; - --color-btn-danger-disabled-counter-fg: rgba(248,81,73,0.5); - --color-btn-danger-hover-counter-fg: #ffffff; - --color-underlinenav-icon: #6e7681; - --color-underlinenav-border-hover: rgba(110,118,129,0.4); - --color-action-list-item-inline-divider: rgba(48,54,61,0.48); - --color-action-list-item-default-hover-bg: rgba(177,186,196,0.12); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(177,186,196,0.2); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(177,186,196,0.08); - --color-action-list-item-danger-hover-bg: rgba(248,81,73,0.16); - --color-action-list-item-danger-active-bg: rgba(248,81,73,0.24); - --color-action-list-item-danger-hover-text: #ff7b72; - --color-switch-track-bg: rgba(110,118,129,0.1); - --color-switch-track-hover-bg: hsla(215,8%,72%,0.1); - --color-switch-track-active-bg: rgba(110,118,129,0.4); - --color-switch-track-disabled-bg: #21262d; - --color-switch-track-fg: #7d8590; - --color-switch-track-disabled-fg: #010409; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: rgba(31,111,235,0.35); - --color-switch-track-checked-hover-bg: rgba(31,111,235,0.5); - --color-switch-track-checked-active-bg: rgba(31,111,235,0.65); - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #010409; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #0d1117; - --color-switch-knob-border: #606771; - --color-switch-knob-disabled-bg: #161b22; - --color-switch-knob-checked-bg: #0d1117; - --color-switch-knob-checked-disabled-bg: #161b22; - --color-switch-knob-checked-border: rgba(31,111,235,0.35); - --color-segmented-control-bg: rgba(110,118,129,0.1); - --color-segmented-control-button-bg: #0d1117; - --color-segmented-control-button-hover-bg: #30363d; - --color-segmented-control-button-active-bg: #21262d; - --color-segmented-control-button-selected-border: #6e7681; - --color-tree-view-item-chevron-hover-bg: rgba(177,186,196,0.12); - --color-tree-view-item-directory-fill: #7d8590; - --color-fg-default: #e6edf3; - --color-fg-muted: #7d8590; - --color-fg-subtle: #6e7681; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #0d1117; - --color-canvas-overlay: #161b22; - --color-canvas-inset: #010409; - --color-canvas-subtle: #161b22; - --color-border-default: #30363d; - --color-border-muted: #21262d; - --color-border-subtle: rgba(240,246,252,0.1); - --color-shadow-small: 0 0 transparent; - --color-shadow-medium: 0 3px 6px #010409; - --color-shadow-large: 0 8px 24px #010409; - --color-shadow-extra-large: 0 12px 48px #010409; - --color-neutral-emphasis-plus: #6e7681; - --color-neutral-emphasis: #6e7681; - --color-neutral-muted: rgba(110,118,129,0.4); - --color-neutral-subtle: rgba(110,118,129,0.1); - --color-accent-fg: #2f81f7; - --color-accent-emphasis: #1f6feb; - --color-accent-muted: rgba(56,139,253,0.4); - --color-accent-subtle: rgba(56,139,253,0.1); - --color-success-fg: #3fb950; - --color-success-emphasis: #238636; - --color-success-muted: rgba(46,160,67,0.4); - --color-success-subtle: rgba(46,160,67,0.15); - --color-attention-fg: #d29922; - --color-attention-emphasis: #9e6a03; - --color-attention-muted: rgba(187,128,9,0.4); - --color-attention-subtle: rgba(187,128,9,0.15); - --color-severe-fg: #db6d28; - --color-severe-emphasis: #bd561d; - --color-severe-muted: rgba(219,109,40,0.4); - --color-severe-subtle: rgba(219,109,40,0.1); - --color-danger-fg: #f85149; - --color-danger-emphasis: #da3633; - --color-danger-muted: rgba(248,81,73,0.4); - --color-danger-subtle: rgba(248,81,73,0.1); - --color-open-fg: #3fb950; - --color-open-emphasis: #238636; - --color-open-muted: rgba(46,160,67,0.4); - --color-open-subtle: rgba(46,160,67,0.15); - --color-closed-fg: #f85149; - --color-closed-emphasis: #da3633; - --color-closed-muted: rgba(248,81,73,0.4); - --color-closed-subtle: rgba(248,81,73,0.15); - --color-done-fg: #a371f7; - --color-done-emphasis: #8957e5; - --color-done-muted: rgba(163,113,247,0.4); - --color-done-subtle: rgba(163,113,247,0.1); - --color-sponsors-fg: #db61a2; - --color-sponsors-emphasis: #bf4b8a; - --color-sponsors-muted: rgba(219,97,162,0.4); - --color-sponsors-subtle: rgba(219,97,162,0.1); - --color-primer-fg-disabled: #484f58; - --color-primer-canvas-backdrop: rgba(1,4,9,0.8); - --color-primer-canvas-sticky: rgba(13,17,23,0.95); - --color-primer-border-active: #f78166; - --color-primer-border-contrast: rgba(255,255,255,0.2); - --color-primer-shadow-highlight: 0 0 transparent; - --color-primer-shadow-inset: 0 0 transparent; - --color-scale-black: #010409; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f0f6fc; - --color-scale-gray-1: #c9d1d9; - --color-scale-gray-2: #b1bac4; - --color-scale-gray-3: #8b949e; - --color-scale-gray-4: #6e7681; - --color-scale-gray-5: #484f58; - --color-scale-gray-6: #30363d; - --color-scale-gray-7: #21262d; - --color-scale-gray-8: #161b22; - --color-scale-gray-9: #0d1117; - --color-scale-blue-0: #cae8ff; - --color-scale-blue-1: #a5d6ff; - --color-scale-blue-2: #79c0ff; - --color-scale-blue-3: #58a6ff; - --color-scale-blue-4: #388bfd; - --color-scale-blue-5: #1f6feb; - --color-scale-blue-6: #1158c7; - --color-scale-blue-7: #0d419d; - --color-scale-blue-8: #0c2d6b; - --color-scale-blue-9: #051d4d; - --color-scale-green-0: #aff5b4; - --color-scale-green-1: #7ee787; - --color-scale-green-2: #56d364; - --color-scale-green-3: #3fb950; - --color-scale-green-4: #2ea043; - --color-scale-green-5: #238636; - --color-scale-green-6: #196c2e; - --color-scale-green-7: #0f5323; - --color-scale-green-8: #033a16; - --color-scale-green-9: #04260f; - --color-scale-yellow-0: #f8e3a1; - --color-scale-yellow-1: #f2cc60; - --color-scale-yellow-2: #e3b341; - --color-scale-yellow-3: #d29922; - --color-scale-yellow-4: #bb8009; - --color-scale-yellow-5: #9e6a03; - --color-scale-yellow-6: #845306; - --color-scale-yellow-7: #693e00; - --color-scale-yellow-8: #4b2900; - --color-scale-yellow-9: #341a00; - --color-scale-orange-0: #ffdfb6; - --color-scale-orange-1: #ffc680; - --color-scale-orange-2: #ffa657; - --color-scale-orange-3: #f0883e; - --color-scale-orange-4: #db6d28; - --color-scale-orange-5: #bd561d; - --color-scale-orange-6: #9b4215; - --color-scale-orange-7: #762d0a; - --color-scale-orange-8: #5a1e02; - --color-scale-orange-9: #3d1300; - --color-scale-red-0: #ffdcd7; - --color-scale-red-1: #ffc1ba; - --color-scale-red-2: #ffa198; - --color-scale-red-3: #ff7b72; - --color-scale-red-4: #f85149; - --color-scale-red-5: #da3633; - --color-scale-red-6: #b62324; - --color-scale-red-7: #8e1519; - --color-scale-red-8: #67060c; - --color-scale-red-9: #490202; - --color-scale-purple-0: #eddeff; - --color-scale-purple-1: #e2c5ff; - --color-scale-purple-2: #d2a8ff; - --color-scale-purple-3: #bc8cff; - --color-scale-purple-4: #a371f7; - --color-scale-purple-5: #8957e5; - --color-scale-purple-6: #6e40c9; - --color-scale-purple-7: #553098; - --color-scale-purple-8: #3c1e70; - --color-scale-purple-9: #271052; - --color-scale-pink-0: #ffdaec; - --color-scale-pink-1: #ffbedd; - --color-scale-pink-2: #ff9bce; - --color-scale-pink-3: #f778ba; - --color-scale-pink-4: #db61a2; - --color-scale-pink-5: #bf4b8a; - --color-scale-pink-6: #9e3670; - --color-scale-pink-7: #7d2457; - --color-scale-pink-8: #5e103e; - --color-scale-pink-9: #42062a; - --color-scale-coral-0: #ffddd2; - --color-scale-coral-1: #ffc2b2; - --color-scale-coral-2: #ffa28b; - --color-scale-coral-3: #f78166; - --color-scale-coral-4: #ea6045; - --color-scale-coral-5: #cf462d; - --color-scale-coral-6: #ac3220; - --color-scale-coral-7: #872012; - --color-scale-coral-8: #640d04; - --color-scale-coral-9: #460701; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme=dark], - [data-color-mode=auto][data-dark-theme=dark]::selection { - --color-canvas-default-transparent: rgba(13,17,23,0); - --color-page-header-bg: #0d1117; - --color-marketing-icon-primary: #79c0ff; - --color-marketing-icon-secondary: #1f6feb; - --color-diff-blob-addition-num-text: #e6edf3; - --color-diff-blob-addition-fg: #e6edf3; - --color-diff-blob-addition-num-bg: rgba(63,185,80,0.3); - --color-diff-blob-addition-line-bg: rgba(46,160,67,0.15); - --color-diff-blob-addition-word-bg: rgba(46,160,67,0.4); - --color-diff-blob-deletion-num-text: #e6edf3; - --color-diff-blob-deletion-fg: #e6edf3; - --color-diff-blob-deletion-num-bg: rgba(248,81,73,0.3); - --color-diff-blob-deletion-line-bg: rgba(248,81,73,0.1); - --color-diff-blob-deletion-word-bg: rgba(248,81,73,0.4); - --color-diff-blob-hunk-num-bg: rgba(56,139,253,0.4); - --color-diff-blob-expander-icon: #7d8590; - --color-diff-blob-selected-line-highlight-mix-blend-mode: screen; - --color-diffstat-deletion-border: rgba(240,246,252,0.1); - --color-diffstat-addition-border: rgba(240,246,252,0.1); - --color-diffstat-addition-bg: #3fb950; - --color-search-keyword-hl: rgba(210,153,34,0.4); - --color-prettylights-syntax-comment: #8b949e; - --color-prettylights-syntax-constant: #79c0ff; - --color-prettylights-syntax-entity: #d2a8ff; - --color-prettylights-syntax-storage-modifier-import: #c9d1d9; - --color-prettylights-syntax-entity-tag: #7ee787; - --color-prettylights-syntax-keyword: #ff7b72; - --color-prettylights-syntax-string: #a5d6ff; - --color-prettylights-syntax-variable: #ffa657; - --color-prettylights-syntax-brackethighlighter-unmatched: #f85149; - --color-prettylights-syntax-invalid-illegal-text: #f0f6fc; - --color-prettylights-syntax-invalid-illegal-bg: #8e1519; - --color-prettylights-syntax-carriage-return-text: #f0f6fc; - --color-prettylights-syntax-carriage-return-bg: #b62324; - --color-prettylights-syntax-string-regexp: #7ee787; - --color-prettylights-syntax-markup-list: #f2cc60; - --color-prettylights-syntax-markup-heading: #1f6feb; - --color-prettylights-syntax-markup-italic: #c9d1d9; - --color-prettylights-syntax-markup-bold: #c9d1d9; - --color-prettylights-syntax-markup-deleted-text: #ffdcd7; - --color-prettylights-syntax-markup-deleted-bg: #67060c; - --color-prettylights-syntax-markup-inserted-text: #aff5b4; - --color-prettylights-syntax-markup-inserted-bg: #033a16; - --color-prettylights-syntax-markup-changed-text: #ffdfb6; - --color-prettylights-syntax-markup-changed-bg: #5a1e02; - --color-prettylights-syntax-markup-ignored-text: #c9d1d9; - --color-prettylights-syntax-markup-ignored-bg: #1158c7; - --color-prettylights-syntax-meta-diff-range: #d2a8ff; - --color-prettylights-syntax-brackethighlighter-angle: #8b949e; - --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58; - --color-prettylights-syntax-constant-other-reference-link: #a5d6ff; - --color-codemirror-text: #e6edf3; - --color-codemirror-bg: #0d1117; - --color-codemirror-gutters-bg: #0d1117; - --color-codemirror-guttermarker-text: #0d1117; - --color-codemirror-guttermarker-subtle-text: #6e7681; - --color-codemirror-linenumber-text: #7d8590; - --color-codemirror-cursor: #e6edf3; - --color-codemirror-selection-bg: rgba(56,139,253,0.4); - --color-codemirror-activeline-bg: rgba(110,118,129,0.1); - --color-codemirror-matchingbracket-text: #e6edf3; - --color-codemirror-lines-bg: #0d1117; - --color-codemirror-syntax-comment: #8b949e; - --color-codemirror-syntax-constant: #79c0ff; - --color-codemirror-syntax-entity: #d2a8ff; - --color-codemirror-syntax-keyword: #ff7b72; - --color-codemirror-syntax-storage: #ff7b72; - --color-codemirror-syntax-string: #a5d6ff; - --color-codemirror-syntax-support: #79c0ff; - --color-codemirror-syntax-variable: #ffa657; - --color-checks-bg: #010409; - --color-checks-run-border-width: 1px; - --color-checks-container-border-width: 1px; - --color-checks-text-primary: #e6edf3; - --color-checks-text-secondary: #7d8590; - --color-checks-text-link: #2f81f7; - --color-checks-btn-icon: #7d8590; - --color-checks-btn-hover-icon: #e6edf3; - --color-checks-btn-hover-bg: rgba(110,118,129,0.1); - --color-checks-input-text: #7d8590; - --color-checks-input-placeholder-text: #6e7681; - --color-checks-input-focus-text: #e6edf3; - --color-checks-input-bg: #161b22; - --color-checks-input-shadow: 0 0 0 1px (obj) => (0, get_1.default)(obj, path); - --color-checks-donut-error: #f85149; - --color-checks-donut-pending: #d29922; - --color-checks-donut-success: #2ea043; - --color-checks-donut-neutral: #8b949e; - --color-checks-dropdown-text: #e6edf3; - --color-checks-dropdown-bg: #161b22; - --color-checks-dropdown-border: #30363d; - --color-checks-dropdown-shadow: rgba(1,4,9,0.3); - --color-checks-dropdown-hover-text: #e6edf3; - --color-checks-dropdown-hover-bg: rgba(110,118,129,0.1); - --color-checks-dropdown-btn-hover-text: #e6edf3; - --color-checks-dropdown-btn-hover-bg: rgba(110,118,129,0.1); - --color-checks-scrollbar-thumb-bg: rgba(110,118,129,0.4); - --color-checks-header-label-text: #7d8590; - --color-checks-header-label-open-text: #e6edf3; - --color-checks-header-border: #21262d; - --color-checks-header-icon: #7d8590; - --color-checks-line-text: #7d8590; - --color-checks-line-num-text: #6e7681; - --color-checks-line-timestamp-text: #6e7681; - --color-checks-line-hover-bg: rgba(110,118,129,0.1); - --color-checks-line-selected-bg: rgba(56,139,253,0.1); - --color-checks-line-selected-num-text: #2f81f7; - --color-checks-line-dt-fm-text: #ffffff; - --color-checks-line-dt-fm-bg: #9e6a03; - --color-checks-gate-bg: rgba(187,128,9,0.15); - --color-checks-gate-text: #7d8590; - --color-checks-gate-waiting-text: #d29922; - --color-checks-step-header-open-bg: #161b22; - --color-checks-step-error-text: #f85149; - --color-checks-step-warning-text: #d29922; - --color-checks-logline-text: #7d8590; - --color-checks-logline-num-text: #6e7681; - --color-checks-logline-debug-text: #a371f7; - --color-checks-logline-error-text: #7d8590; - --color-checks-logline-error-num-text: #6e7681; - --color-checks-logline-error-bg: rgba(248,81,73,0.1); - --color-checks-logline-warning-text: #7d8590; - --color-checks-logline-warning-num-text: #d29922; - --color-checks-logline-warning-bg: rgba(187,128,9,0.15); - --color-checks-logline-command-text: #2f81f7; - --color-checks-logline-section-text: #3fb950; - --color-checks-ansi-black: #0d1117; - --color-checks-ansi-black-bright: #161b22; - --color-checks-ansi-white: #b1bac4; - --color-checks-ansi-white-bright: #b1bac4; - --color-checks-ansi-gray: #6e7681; - --color-checks-ansi-red: #ff7b72; - --color-checks-ansi-red-bright: #ffa198; - --color-checks-ansi-green: #3fb950; - --color-checks-ansi-green-bright: #56d364; - --color-checks-ansi-yellow: #d29922; - --color-checks-ansi-yellow-bright: #e3b341; - --color-checks-ansi-blue: #58a6ff; - --color-checks-ansi-blue-bright: #79c0ff; - --color-checks-ansi-magenta: #bc8cff; - --color-checks-ansi-magenta-bright: #d2a8ff; - --color-checks-ansi-cyan: #76e3ea; - --color-checks-ansi-cyan-bright: #b3f0ff; - --color-project-header-bg: #0d1117; - --color-project-sidebar-bg: #161b22; - --color-project-gradient-in: #161b22; - --color-project-gradient-out: rgba(22,27,34,0); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-outline: rgb(255 255 255 / 25%) 0 0 0 1px inset; - --color-mktg-btn-shadow-focus: rgb(255 255 255 / 25%) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: rgb(255 255 255) 0 0 0 2px inset; - --color-control-border-color-emphasis: #606771; - --color-avatar-bg: rgba(255,255,255,0.1); - --color-avatar-border: rgba(240,246,252,0.1); - --color-avatar-stack-fade: #30363d; - --color-avatar-stack-fade-more: #21262d; - --color-avatar-child-shadow: 0 0 0 2px #0d1117; - --color-topic-tag-border: rgba(0,0,0,0); - --color-counter-border: rgba(0,0,0,0); - --color-select-menu-backdrop-border: #484f58; - --color-select-menu-tap-highlight: rgba(48,54,61,0.5); - --color-select-menu-tap-focus-bg: #0c2d6b; - --color-overlay-shadow: 0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85); - --color-overlay-backdrop: rgba(22,27,34,0.4); - --color-header-text: rgba(255,255,255,0.7); - --color-header-bg: #161b22; - --color-header-divider: #8b949e; - --color-header-logo: #f0f6fc; - --color-header-search-bg: #0d1117; - --color-header-search-border: #30363d; - --color-sidenav-selected-bg: #21262d; - --color-menu-bg-active: #161b22; - --color-input-disabled-bg: rgba(110,118,129,0); - --color-timeline-badge-bg: #21262d; - --color-ansi-black: #484f58; - --color-ansi-black-bright: #6e7681; - --color-ansi-white: #b1bac4; - --color-ansi-white-bright: #ffffff; - --color-ansi-gray: #6e7681; - --color-ansi-red: #ff7b72; - --color-ansi-red-bright: #ffa198; - --color-ansi-green: #3fb950; - --color-ansi-green-bright: #56d364; - --color-ansi-yellow: #d29922; - --color-ansi-yellow-bright: #e3b341; - --color-ansi-blue: #58a6ff; - --color-ansi-blue-bright: #79c0ff; - --color-ansi-magenta: #bc8cff; - --color-ansi-magenta-bright: #d2a8ff; - --color-ansi-cyan: #39c5cf; - --color-ansi-cyan-bright: #56d4dd; - --color-btn-text: #c9d1d9; - --color-btn-bg: #21262d; - --color-btn-border: rgba(240,246,252,0.1); - --color-btn-shadow: 0 0 transparent; - --color-btn-inset-shadow: 0 0 transparent; - --color-btn-hover-bg: #30363d; - --color-btn-hover-border: #8b949e; - --color-btn-active-bg: hsla(212,12%,18%,1); - --color-btn-active-border: #6e7681; - --color-btn-selected-bg: #161b22; - --color-btn-counter-bg: #30363d; - --color-btn-primary-text: #ffffff; - --color-btn-primary-bg: #238636; - --color-btn-primary-border: rgba(240,246,252,0.1); - --color-btn-primary-shadow: 0 0 transparent; - --color-btn-primary-inset-shadow: 0 0 transparent; - --color-btn-primary-hover-bg: #2ea043; - --color-btn-primary-hover-border: rgba(240,246,252,0.1); - --color-btn-primary-selected-bg: #238636; - --color-btn-primary-selected-shadow: 0 0 transparent; - --color-btn-primary-disabled-text: rgba(255,255,255,0.5); - --color-btn-primary-disabled-bg: rgba(35,134,54,0.6); - --color-btn-primary-disabled-border: rgba(240,246,252,0.1); - --color-btn-primary-icon: #ffffff; - --color-btn-primary-counter-bg: rgba(4,38,15,0.2); - --color-btn-outline-text: #388bfd; - --color-btn-outline-hover-text: #58a6ff; - --color-btn-outline-hover-bg: #30363d; - --color-btn-outline-hover-border: rgba(240,246,252,0.1); - --color-btn-outline-hover-shadow: 0 1px 0 rgba(1,4,9,0.1); - --color-btn-outline-hover-inset-shadow: inset 0 1px 0 rgba(255,255,255,0.03); - --color-btn-outline-hover-counter-bg: rgba(5,29,77,0.2); - --color-btn-outline-selected-text: #ffffff; - --color-btn-outline-selected-bg: #0d419d; - --color-btn-outline-selected-border: rgba(240,246,252,0.1); - --color-btn-outline-selected-shadow: 0 0 transparent; - --color-btn-outline-disabled-text: rgba(88,166,255,0.5); - --color-btn-outline-disabled-bg: #0d1117; - --color-btn-outline-disabled-counter-bg: rgba(31,111,235,0.05); - --color-btn-outline-counter-bg: rgba(5,29,77,0.2); - --color-btn-outline-hover-counter-fg: #58a6ff; - --color-btn-outline-disabled-counter-fg: rgba(47,129,247,0.5); - --color-btn-outline-counter-fg: #388bfd; - --color-btn-danger-text: #f85149; - --color-btn-danger-hover-text: #ffffff; - --color-btn-danger-hover-bg: #da3633; - --color-btn-danger-hover-border: #f85149; - --color-btn-danger-hover-shadow: 0 0 transparent; - --color-btn-danger-hover-inset-shadow: 0 0 transparent; - --color-btn-danger-hover-icon: #ffffff; - --color-btn-danger-hover-counter-bg: rgba(255,255,255,0.2); - --color-btn-danger-selected-text: #ffffff; - --color-btn-danger-selected-bg: #b62324; - --color-btn-danger-selected-border: #ff7b72; - --color-btn-danger-selected-shadow: 0 0 transparent; - --color-btn-danger-disabled-text: rgba(248,81,73,0.5); - --color-btn-danger-disabled-bg: #0d1117; - --color-btn-danger-disabled-counter-bg: rgba(218,54,51,0.05); - --color-btn-danger-counter-bg: rgba(73,2,2,0.2); - --color-btn-danger-icon: #f85149; - --color-btn-danger-counter-fg: #f85149; - --color-btn-danger-disabled-counter-fg: rgba(248,81,73,0.5); - --color-btn-danger-hover-counter-fg: #ffffff; - --color-underlinenav-icon: #6e7681; - --color-underlinenav-border-hover: rgba(110,118,129,0.4); - --color-action-list-item-inline-divider: rgba(48,54,61,0.48); - --color-action-list-item-default-hover-bg: rgba(177,186,196,0.12); - --color-action-list-item-default-hover-border: rgba(0,0,0,0); - --color-action-list-item-default-active-bg: rgba(177,186,196,0.2); - --color-action-list-item-default-active-border: rgba(0,0,0,0); - --color-action-list-item-default-selected-bg: rgba(177,186,196,0.08); - --color-action-list-item-danger-hover-bg: rgba(248,81,73,0.16); - --color-action-list-item-danger-active-bg: rgba(248,81,73,0.24); - --color-action-list-item-danger-hover-text: #ff7b72; - --color-switch-track-bg: rgba(110,118,129,0.1); - --color-switch-track-hover-bg: hsla(215,8%,72%,0.1); - --color-switch-track-active-bg: rgba(110,118,129,0.4); - --color-switch-track-disabled-bg: #21262d; - --color-switch-track-fg: #7d8590; - --color-switch-track-disabled-fg: #010409; - --color-switch-track-border: rgba(0,0,0,0); - --color-switch-track-checked-bg: rgba(31,111,235,0.35); - --color-switch-track-checked-hover-bg: rgba(31,111,235,0.5); - --color-switch-track-checked-active-bg: rgba(31,111,235,0.65); - --color-switch-track-checked-fg: #ffffff; - --color-switch-track-checked-disabled-fg: #010409; - --color-switch-track-checked-border: rgba(0,0,0,0); - --color-switch-knob-bg: #0d1117; - --color-switch-knob-border: #606771; - --color-switch-knob-disabled-bg: #161b22; - --color-switch-knob-checked-bg: #0d1117; - --color-switch-knob-checked-disabled-bg: #161b22; - --color-switch-knob-checked-border: rgba(31,111,235,0.35); - --color-segmented-control-bg: rgba(110,118,129,0.1); - --color-segmented-control-button-bg: #0d1117; - --color-segmented-control-button-hover-bg: #30363d; - --color-segmented-control-button-active-bg: #21262d; - --color-segmented-control-button-selected-border: #6e7681; - --color-tree-view-item-chevron-hover-bg: rgba(177,186,196,0.12); - --color-tree-view-item-directory-fill: #7d8590; - --color-fg-default: #e6edf3; - --color-fg-muted: #7d8590; - --color-fg-subtle: #6e7681; - --color-fg-on-emphasis: #ffffff; - --color-canvas-default: #0d1117; - --color-canvas-overlay: #161b22; - --color-canvas-inset: #010409; - --color-canvas-subtle: #161b22; - --color-border-default: #30363d; - --color-border-muted: #21262d; - --color-border-subtle: rgba(240,246,252,0.1); - --color-shadow-small: 0 0 transparent; - --color-shadow-medium: 0 3px 6px #010409; - --color-shadow-large: 0 8px 24px #010409; - --color-shadow-extra-large: 0 12px 48px #010409; - --color-neutral-emphasis-plus: #6e7681; - --color-neutral-emphasis: #6e7681; - --color-neutral-muted: rgba(110,118,129,0.4); - --color-neutral-subtle: rgba(110,118,129,0.1); - --color-accent-fg: #2f81f7; - --color-accent-emphasis: #1f6feb; - --color-accent-muted: rgba(56,139,253,0.4); - --color-accent-subtle: rgba(56,139,253,0.1); - --color-success-fg: #3fb950; - --color-success-emphasis: #238636; - --color-success-muted: rgba(46,160,67,0.4); - --color-success-subtle: rgba(46,160,67,0.15); - --color-attention-fg: #d29922; - --color-attention-emphasis: #9e6a03; - --color-attention-muted: rgba(187,128,9,0.4); - --color-attention-subtle: rgba(187,128,9,0.15); - --color-severe-fg: #db6d28; - --color-severe-emphasis: #bd561d; - --color-severe-muted: rgba(219,109,40,0.4); - --color-severe-subtle: rgba(219,109,40,0.1); - --color-danger-fg: #f85149; - --color-danger-emphasis: #da3633; - --color-danger-muted: rgba(248,81,73,0.4); - --color-danger-subtle: rgba(248,81,73,0.1); - --color-open-fg: #3fb950; - --color-open-emphasis: #238636; - --color-open-muted: rgba(46,160,67,0.4); - --color-open-subtle: rgba(46,160,67,0.15); - --color-closed-fg: #f85149; - --color-closed-emphasis: #da3633; - --color-closed-muted: rgba(248,81,73,0.4); - --color-closed-subtle: rgba(248,81,73,0.15); - --color-done-fg: #a371f7; - --color-done-emphasis: #8957e5; - --color-done-muted: rgba(163,113,247,0.4); - --color-done-subtle: rgba(163,113,247,0.1); - --color-sponsors-fg: #db61a2; - --color-sponsors-emphasis: #bf4b8a; - --color-sponsors-muted: rgba(219,97,162,0.4); - --color-sponsors-subtle: rgba(219,97,162,0.1); - --color-primer-fg-disabled: #484f58; - --color-primer-canvas-backdrop: rgba(1,4,9,0.8); - --color-primer-canvas-sticky: rgba(13,17,23,0.95); - --color-primer-border-active: #f78166; - --color-primer-border-contrast: rgba(255,255,255,0.2); - --color-primer-shadow-highlight: 0 0 transparent; - --color-primer-shadow-inset: 0 0 transparent; - --color-scale-black: #010409; - --color-scale-white: #ffffff; - --color-scale-gray-0: #f0f6fc; - --color-scale-gray-1: #c9d1d9; - --color-scale-gray-2: #b1bac4; - --color-scale-gray-3: #8b949e; - --color-scale-gray-4: #6e7681; - --color-scale-gray-5: #484f58; - --color-scale-gray-6: #30363d; - --color-scale-gray-7: #21262d; - --color-scale-gray-8: #161b22; - --color-scale-gray-9: #0d1117; - --color-scale-blue-0: #cae8ff; - --color-scale-blue-1: #a5d6ff; - --color-scale-blue-2: #79c0ff; - --color-scale-blue-3: #58a6ff; - --color-scale-blue-4: #388bfd; - --color-scale-blue-5: #1f6feb; - --color-scale-blue-6: #1158c7; - --color-scale-blue-7: #0d419d; - --color-scale-blue-8: #0c2d6b; - --color-scale-blue-9: #051d4d; - --color-scale-green-0: #aff5b4; - --color-scale-green-1: #7ee787; - --color-scale-green-2: #56d364; - --color-scale-green-3: #3fb950; - --color-scale-green-4: #2ea043; - --color-scale-green-5: #238636; - --color-scale-green-6: #196c2e; - --color-scale-green-7: #0f5323; - --color-scale-green-8: #033a16; - --color-scale-green-9: #04260f; - --color-scale-yellow-0: #f8e3a1; - --color-scale-yellow-1: #f2cc60; - --color-scale-yellow-2: #e3b341; - --color-scale-yellow-3: #d29922; - --color-scale-yellow-4: #bb8009; - --color-scale-yellow-5: #9e6a03; - --color-scale-yellow-6: #845306; - --color-scale-yellow-7: #693e00; - --color-scale-yellow-8: #4b2900; - --color-scale-yellow-9: #341a00; - --color-scale-orange-0: #ffdfb6; - --color-scale-orange-1: #ffc680; - --color-scale-orange-2: #ffa657; - --color-scale-orange-3: #f0883e; - --color-scale-orange-4: #db6d28; - --color-scale-orange-5: #bd561d; - --color-scale-orange-6: #9b4215; - --color-scale-orange-7: #762d0a; - --color-scale-orange-8: #5a1e02; - --color-scale-orange-9: #3d1300; - --color-scale-red-0: #ffdcd7; - --color-scale-red-1: #ffc1ba; - --color-scale-red-2: #ffa198; - --color-scale-red-3: #ff7b72; - --color-scale-red-4: #f85149; - --color-scale-red-5: #da3633; - --color-scale-red-6: #b62324; - --color-scale-red-7: #8e1519; - --color-scale-red-8: #67060c; - --color-scale-red-9: #490202; - --color-scale-purple-0: #eddeff; - --color-scale-purple-1: #e2c5ff; - --color-scale-purple-2: #d2a8ff; - --color-scale-purple-3: #bc8cff; - --color-scale-purple-4: #a371f7; - --color-scale-purple-5: #8957e5; - --color-scale-purple-6: #6e40c9; - --color-scale-purple-7: #553098; - --color-scale-purple-8: #3c1e70; - --color-scale-purple-9: #271052; - --color-scale-pink-0: #ffdaec; - --color-scale-pink-1: #ffbedd; - --color-scale-pink-2: #ff9bce; - --color-scale-pink-3: #f778ba; - --color-scale-pink-4: #db61a2; - --color-scale-pink-5: #bf4b8a; - --color-scale-pink-6: #9e3670; - --color-scale-pink-7: #7d2457; - --color-scale-pink-8: #5e103e; - --color-scale-pink-9: #42062a; - --color-scale-coral-0: #ffddd2; - --color-scale-coral-1: #ffc2b2; - --color-scale-coral-2: #ffa28b; - --color-scale-coral-3: #f78166; - --color-scale-coral-4: #ea6045; - --color-scale-coral-5: #cf462d; - --color-scale-coral-6: #ac3220; - --color-scale-coral-7: #872012; - --color-scale-coral-8: #640d04; - --color-scale-coral-9: #460701; - } -} - -:root { - --base-size-4: 0.25rem; - --base-size-8: 0.5rem; - --base-size-12: 0.75rem; - --base-size-16: 1rem; - --base-size-20: 1.25rem; - --base-size-24: 1.5rem; - --base-size-28: 1.75rem; - --base-size-32: 2rem; - --base-size-36: 2.25rem; - --base-size-40: 2.5rem; - --base-size-44: 2.75rem; - --base-size-48: 3rem; - --base-size-64: 4rem; - --base-size-80: 5rem; - --base-size-96: 6rem; - --base-size-112: 7rem; - --base-size-128: 8rem; -} - -:root { - --base-text-weight-light: 300; - --base-text-weight-normal: 400; - --base-text-weight-medium: 500; - --base-text-weight-semibold: 600; -} - -:root { - --boxShadow-thin: inset 0 0 0 max(1px, 0.0625rem); - --boxShadow-thick: inset 0 0 0 max(2px, 0.125rem); - --boxShadow-thicker: inset 0 0 0 max(4px, 0.25rem); - --borderWidth-thin: max(1px, 0.0625rem); - --borderWidth-thick: max(2px, 0.125rem); - --borderWidth-thicker: max(4px, 0.25rem); - --borderRadius-small: 0.1875rem; - --borderRadius-medium: 0.375rem; - --borderRadius-large: 0.75rem; - --borderRadius-full: 624.9375rem; - --outline-focus-offset: -0.125rem; - --outline-focus-width: 0.125rem; -} - -:root { - --breakpoint-xsmall: 20rem; - --breakpoint-small: 34rem; - --breakpoint-medium: 48rem; - --breakpoint-large: 63.25rem; - --breakpoint-xlarge: 80rem; - --breakpoint-xxlarge: 90rem; -} - -@media (pointer: coarse) { - :root { - --control-minTarget-auto: 2.75rem; - --controlStack-small-gap-auto: 1rem; - --controlStack-medium-gap-auto: 0.75rem; - } -} - -@media (pointer: fine) { - :root { - --control-minTarget-auto: 1rem; - --controlStack-small-gap-auto: 0.5rem; - --controlStack-medium-gap-auto: 0.5rem; - } -} - -:root { - --control-minTarget-fine: 1rem; - --control-minTarget-coarse: 2.75rem; - --control-xsmall-size: 1.5rem; - --control-xsmall-lineBoxHeight: 1.25rem; - --control-xsmall-paddingBlock: 0.125rem; - --control-xsmall-paddingInline-condensed: 0.25rem; - --control-xsmall-paddingInline-normal: 0.5rem; - --control-xsmall-paddingInline-spacious: 0.75rem; - --control-xsmall-gap: 0.25rem; - --control-small-size: 1.75rem; - --control-small-lineBoxHeight: 1.25rem; - --control-small-paddingBlock: 0.25rem; - --control-small-paddingInline-condensed: 0.5rem; - --control-small-paddingInline-normal: 0.75rem; - --control-small-gap: 0.25rem; - --control-medium-size: 2rem; - --control-medium-lineBoxHeight: 1.25rem; - --control-medium-paddingBlock: 0.375rem; - --control-medium-paddingInline-condensed: 0.5rem; - --control-medium-paddingInline-normal: 0.75rem; - --control-medium-paddingInline-spacious: 1rem; - --control-medium-gap: 0.5rem; - --control-large-size: 2.5rem; - --control-large-lineBoxHeight: 1.25rem; - --control-large-paddingBlock: 0.625rem; - --control-large-paddingInline-normal: 0.75rem; - --control-large-paddingInline-spacious: 1rem; - --control-large-gap: 0.5rem; - --control-xlarge-size: 3rem; - --control-xlarge-lineBoxHeight: 1.25rem; - --control-xlarge-paddingBlock: 0.875rem; - --control-xlarge-paddingInline-normal: 0.75rem; - --control-xlarge-paddingInline-spacious: 1rem; - --control-xlarge-gap: 0.5rem; - --controlStack-small-gap-condensed: 0.5rem; - --controlStack-small-gap-spacious: 1rem; - --controlStack-medium-gap-condensed: 0.5rem; - --controlStack-medium-gap-spacious: 0.75rem; - --controlStack-large-gap-auto: 0.5rem; - --controlStack-large-gap-condensed: 0.5rem; - --controlStack-large-gap-spacious: 0.75rem; - --space-xxsmall: 0.125rem; - --space-xsmall: 0.25rem; - --space-small: 0.375rem; - --space-medium: 0.5rem; - --space-large: 0.75rem; - --space-xlarge: 1rem; - --stack-padding-condensed: 0.5rem; - --stack-padding-normal: 1rem; - --stack-padding-spacious: 1.5rem; - --stack-gap-condensed: 0.5rem; - --stack-gap-normal: 1rem; - --stack-gap-spacious: 1.5rem; - --overlay-width-xsmall: 12rem; - --overlay-width-small: 20rem; - --overlay-width-medium: 30rem; - --overlay-width-large: 40rem; - --overlay-width-xlarge: 60rem; - --overlay-height-small: 16rem; - --overlay-height-medium: 20rem; - --overlay-height-large: 27rem; - --overlay-height-xlarge: 37.5rem; - --overlay-padding-normal: 1rem; - --overlay-padding-condensed: 0.5rem; - --overlay-paddingBlock-condensed: 0.25rem; - --overlay-paddingBlock-normal: 0.75rem; - --overlay-borderRadius: 0.375rem; -} - -@custom-media --viewportRange-narrow (max-width: calc(48rem - 0.02px)); - -@custom-media --viewportRange-narrowLandscape (max-width: calc(63.25rem - 0.02px) and (max-height: calc(34rem - 0.02px)) and (orientation: landscape)); - -@custom-media --viewportRange-regular (min-width: 48rem); - -@custom-media --viewportRange-wide (min-width: 90rem); - -@custom-media --viewportRange-portrait (orientation: portrait); - -@custom-media --viewportRange-landscape (orientation: landscape); - -:root { - --text-codeInline-size: 0.9285em; - --text-codeBlock-lineHeight: 1.5385; - --text-codeBlock-size: 0.8125rem; - --text-caption-lineHeight: 1.3333; - --text-caption-size: 0.75rem; - --text-body-lineHeight-small: 1.6666; - --text-body-lineHeight-medium: 1.4285; - --text-body-lineHeight-large: 1.5; - --text-body-size-small: 0.75rem; - --text-body-size-medium: 0.875rem; - --text-body-size-large: 1rem; - --text-subtitle-lineHeight: 1.6; - --text-subtitle-size: 1.25rem; - --text-title-lineHeight-small: 1.5; - --text-title-lineHeight-medium: 1.6; - --text-title-lineHeight-large: 1.5; - --text-title-size-small: 1rem; - --text-title-size-medium: 1.25rem; - --text-title-size-large: 2rem; - --text-display-lineHeight: 1.4; - --text-display-size: 2.5rem; - --text-display-lineBoxHeight: 3.5rem; - --fontStack-monospace: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace; - --fontStack-sansSerif: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; - --fontStack-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; - --text-codeInline-weight: 400; - --text-codeBlock-weight: 400; - --text-caption-weight: 400; - --text-body-weight: 400; - --text-subtitle-weight: 400; - --text-title-weight-small: 600; - --text-title-weight-medium: 600; - --text-title-weight-large: 600; - --text-display-weight: 500; - --text-codeInline-shorthand: var(--text-codeInline-weight) var(--text-codeInline-size) var(--fontStack-monospace); - --text-codeBlock-shorthand: var(--text-codeBlock-weight) var(--text-codeBlock-size)/var(--text-codeBlock-lineHeight) var(--fontStack-monospace); - --text-caption-shorthand: var(--text-caption-weight) var(--text-caption-size)/var(--text-caption-lineHeight) var(--fontStack-sansSerif); - --text-body-shorthand-small: var(--text-body-weight) var(--text-body-size-small)/var(--text-body-lineHeight-small) var(--fontStack-sansSerif); - --text-body-shorthand-medium: var(--text-body-weight) var(--text-body-size-medium)/var(--text-body-lineHeight-medium) var(--fontStack-sansSerif); - --text-body-shorthand-large: var(--text-body-weight) var(--text-body-size-large)/var(--text-body-lineHeight-large) var(--fontStack-sansSerif); - --text-subtitle-shorthand: var(--text-subtitle-weight) var(--text-subtitle-size)/var(--text-subtitle-lineHeight) var(--fontStack-sansSerif); - --text-title-shorthand-small: var(--text-title-weight-small) var(--text-title-size-small)/var(--text-title-lineHeight-small) var(--fontStack-sansSerif); - --text-title-shorthand-medium: var(--text-title-weight-medium) var(--text-title-size-medium)/var(--text-title-lineHeight-medium) var(--fontStack-sansSerif); - --text-title-shorthand-large: var(--text-title-weight-large) var(--text-title-size-large)/var(--text-title-lineHeight-large) var(--fontStack-sansSerif); - --text-display-shorthand: var(--text-display-weight) var(--text-display-size)/var(--text-display-lineHeight) var(--fontStack-sansSerif); -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - color-scheme: light; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - color-scheme: light; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - color-scheme: light; - } -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - color-scheme: dark; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - color-scheme: dark; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - color-scheme: dark; - } -} - -[data-color-mode] { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -@media (forced-colors: active) { - body { - --color-accent-emphasis: Highlight; - --color-fg-on-emphasis: LinkText; - --fgColor-onEmphasis: LinkText; - --fgColor-accent: Highlight; - } -} - -/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */ - -html { - font-size: 16px; - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -main, -menu, -nav, -section { - display: block; -} - -summary { - display: list-item; -} - -audio, -canvas, -progress, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -progress { - vertical-align: baseline; -} - -template, -[hidden] { - display: none; -} - -a { - background-color: transparent; -} - -abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -b, -strong { - font-weight: inherit; -} - -b, -strong { - font-weight: bolder; -} - -dfn { - font-style: italic; -} - -h1 { - font-size: 2em; - margin: .67em 0; -} - -mark { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -img { - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -code, -kbd, -pre, -samp { - font-family: monospace; - font-size: 1em; -} - -figure { - margin: 1em 40px; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -button, -input, -select, -textarea { - font: inherit; - margin: 0; -} - -optgroup { - font-weight: var(--base-text-weight-semibold, 600); -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html [type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; -} - -fieldset { - border: 1px solid silver; - margin: 0 2px; - padding: .35em .625em .75em; -} - -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} - -textarea { - overflow: auto; -} - -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0; -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; -} - -[type=search]::-webkit-search-cancel-button, -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-input-placeholder { - color: inherit; - opacity: .54; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -* { - box-sizing: border-box; -} - -input, -select, -textarea, -button { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -body { - font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - font-size: var(--body-font-size, 14px); - line-height: 1.5; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -a { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -b, -strong { - font-weight: var(--base-text-weight-semibold, 600); -} - -fieldset { - padding: 0; - margin: 0; - border: 0; -} - -label { - font-weight: var(--base-text-weight-semibold, 600); -} - -::placeholder { - color: var(--fgColor-muted, var(--color-fg-subtle)); - opacity: 1; -} - -hr, -.rule { - height: 0; - margin: 15px 0; - overflow: hidden; - background: transparent; - border: 0; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -hr::before, -.rule::before { - display: table; - content: ""; -} - -hr::after, -.rule::after { - display: table; - clear: both; - content: ""; -} - -table { - border-spacing: 0; - border-collapse: collapse; -} - -td, -th { - padding: 0; -} - -button { - cursor: pointer; - border-radius: 0; -} - -[hidden][hidden] { - display: none; -} - -details summary { - cursor: pointer; -} - -details:not([open]) > *:not(summary) { - display: none; -} - -a:focus, -button:focus, -[role=button]:focus, -input[type=radio]:focus, -input[type=checkbox]:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -a:focus:not(:focus-visible), -button:focus:not(:focus-visible), -[role=button]:focus:not(:focus-visible), -input[type=radio]:focus:not(:focus-visible), -input[type=checkbox]:focus:not(:focus-visible) { - outline: solid 1px transparent; -} - -a:focus-visible, -button:focus-visible, -[role=button]:focus-visible, -input[type=radio]:focus-visible, -input[type=checkbox]:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -a:not([class]):focus, -a:not([class]):focus-visible, -input[type=radio]:focus, -input[type=radio]:focus-visible, -input[type=checkbox]:focus, -input[type=checkbox]:focus-visible { - outline-offset: 0; -} - -.focus { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); -} - -@media (forced-colors: active) { - *:focus, - *:focus-visible { - outline: solid 1px transparent; - } - - input:not([type=radio], [type=checkbox]):focus, - input:not([type=radio], [type=checkbox]):focus-visible, - textarea:focus, - textarea:focus-visible, - select:focus, - select:focus-visible { - outline-offset: 2px; - } -} - -kbd { - display: inline-block; - padding: 3px 5px; - font: 11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - line-height: 10px; - color: var(--fgColor-default, var(--color-fg-default)); - vertical-align: middle; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: solid 1px var(--borderColor-neutral-muted, var(--color-neutral-muted)); - border-bottom-color: var(--borderColor-neutral-muted, var(--color-neutral-muted)); - border-radius: 6px; - box-shadow: inset 0 -1px 0 var(--borderColor-neutral-muted, var(--color-neutral-muted)); -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: 0; -} - -h1 { - font-size: var(--h1-size, 32px); - font-weight: var(--base-text-weight-semibold, 600); -} - -h2 { - font-size: var(--h2-size, 24px); - font-weight: var(--base-text-weight-semibold, 600); -} - -h3 { - font-size: var(--h3-size, 20px); - font-weight: var(--base-text-weight-semibold, 600); -} - -h4 { - font-size: var(--h4-size, 16px); - font-weight: var(--base-text-weight-semibold, 600); -} - -h5 { - font-size: var(--h5-size, 14px); - font-weight: var(--base-text-weight-semibold, 600); -} - -h6 { - font-size: var(--h6-size, 12px); - font-weight: var(--base-text-weight-semibold, 600); -} - -p { - margin-top: 0; - margin-bottom: 10px; -} - -small { - font-size: 90%; -} - -blockquote { - margin: 0; -} - -ul, -ol { - padding-left: 0; - margin-top: 0; - margin-bottom: 0; -} - -ol ol, -ul ol { - list-style-type: lower-roman; -} - -ul ul ol, -ul ol ol, -ol ul ol, -ol ol ol { - list-style-type: lower-alpha; -} - -dd { - margin-left: 0; -} - -tt, -code, -samp { - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 12px; -} - -pre { - margin-top: 0; - margin-bottom: 0; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 12px; -} - -.octicon { - vertical-align: text-bottom; -} - -.octicon { - display: inline-block; - overflow: visible; - vertical-align: text-bottom; - fill: currentColor; -} - -.Box--overlay { - width: 448px; - margin-right: auto; - margin-left: auto; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-clip: padding-box; - border-color: var(--borderColor-default, var(--color-border-default)); - box-shadow: 0 0 18px rgba(0,0,0,.4); -} - -.Box--overlay .Box-header { - margin: 0; - border-width: 0; - border-bottom-width: 1px; - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.Box-overlay--narrow { - width: 320px; -} - -.Box-overlay--wide { - width: 640px; -} - -.Box-body.scrollable-overlay { - max-height: 400px; - overflow-y: scroll; -} - -.Box-body .help { - padding-top: 8px; - margin: 0; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.btn { - position: relative; - display: inline-block; - padding: 5px 16px; - font-size: 14px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 20px; - white-space: nowrap; - vertical-align: middle; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - border: 1px solid; - border-radius: 6px; - -webkit-appearance: none; - appearance: none; -} - -.btn:hover { - text-decoration: none; -} - -.btn:disabled, -.btn.disabled, -.btn[aria-disabled=true] { - cursor: default; -} - -.btn i { - font-style: normal; - font-weight: var(--base-text-weight-medium, 500); - opacity: .75; -} - -.btn .octicon { - margin-right: 4px; - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: text-bottom; -} - -.btn .octicon:only-child { - margin-right: 0; -} - -.btn .Counter { - margin-left: 2px; - color: inherit; - text-shadow: none; - vertical-align: top; - background-color: var(--buttonCounter-default-bgColor-rest, var(--color-btn-counter-bg)); -} - -.btn .dropdown-caret { - margin-left: 4px; - opacity: .8; -} - -.btn { - color: var(--button-default-fgColor-rest, var(--color-btn-text)); - background-color: var(--button-default-bgColor-rest, var(--color-btn-bg)); - border-color: var(--button-default-borderColor-rest, var(--color-btn-border)); - box-shadow: var(--button-default-shadow-resting, var(--color-btn-shadow)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow)); - transition: 80ms cubic-bezier(0.33, 1, 0.68, 1); - transition-property: color,background-color,box-shadow,border-color; -} - -.btn:hover, -.btn.hover, -[open] > .btn { - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); - border-color: var(--button-default-borderColor-hover, var(--color-btn-hover-border)); - transition-duration: .1s; -} - -.btn:active { - background-color: var(--button-default-bgColor-active, var(--color-btn-active-bg)); - border-color: var(--button-default-borderColor-active, var(--color-btn-active-border)); - transition: none; -} - -.btn.selected, -.btn[aria-selected=true] { - background-color: var(--button-default-bgColor-selected, var(--color-btn-selected-bg)); - box-shadow: var(--shadow-inset, var(--color-primer-shadow-inset)); -} - -.btn:disabled, -.btn.disabled, -.btn[aria-disabled=true] { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--button-default-bgColor-rest, var(--color-btn-bg)); - border-color: var(--button-default-borderColor-rest, var(--color-btn-border)); -} - -.btn:disabled .octicon, -.btn.disabled .octicon, -.btn[aria-disabled=true] .octicon { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.btn-primary { - color: var(--button-primary-fgColor-rest, var(--color-btn-primary-text)); - background-color: var(--button-primary-bgColor-rest, var(--color-btn-primary-bg)); - border-color: var(--button-primary-borderColor-rest, var(--color-btn-primary-border)); - box-shadow: var(--shadow-resting-small, var(--color-btn-primary-shadow)),var(--shadow-highlight, var(--color-btn-primary-inset-shadow)); -} - -.btn-primary:hover, -.btn-primary.hover, -[open] > .btn-primary { - background-color: var(--button-primary-bgColor-hover, var(--color-btn-primary-hover-bg)); - border-color: var(--button-primary-borderColor-hover, var(--color-btn-primary-hover-border)); -} - -.btn-primary:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.btn-primary:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.btn-primary:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.btn-primary:active, -.btn-primary.selected, -.btn-primary[aria-selected=true] { - background-color: var(--button-primary-bgColor-active, var(--color-btn-primary-selected-bg)); - box-shadow: var(--button-primary-shadow-selected, var(--color-btn-primary-selected-shadow)); -} - -.btn-primary:disabled, -.btn-primary.disabled, -.btn-primary[aria-disabled=true] { - color: var(--button-primary-fgColor-disabled, var(--color-btn-primary-disabled-text)); - background-color: var(--button-primary-bgColor-disabled, var(--color-btn-primary-disabled-bg)); - border-color: var(--button-primary-borderColor-disabled, var(--color-btn-primary-disabled-border)); -} - -.btn-primary:disabled .octicon, -.btn-primary.disabled .octicon, -.btn-primary[aria-disabled=true] .octicon { - color: var(--button-primary-fgColor-disabled, var(--color-btn-primary-disabled-text)); -} - -.btn-primary .Counter { - color: inherit; - background-color: var(--buttonCounter-primary-bgColor-rest, var(--color-btn-primary-counter-bg)); -} - -.btn-primary .octicon { - color: var(--button-primary-iconColor-rest, var(--color-btn-primary-icon)); -} - -a.btn-primary:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -a.btn-primary:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -a.btn-primary:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.btn-outline { - color: var(--button-outline-fgColor-rest, var(--color-btn-outline-text)); -} - -.btn-outline:hover, -[open] > .btn-outline { - color: var(--button-outline-fgColor-hover, var(--color-btn-outline-hover-text)); - background-color: var(--button-outline-bgColor-hover, var(--color-btn-outline-hover-bg)); - border-color: var(--button-outline-borderColor-hover, var(--color-btn-outline-hover-border)); - box-shadow: var(--shadow-resting-small, var(--color-btn-outline-hover-shadow)),var(--shadow-highlight, var(--color-btn-outline-hover-inset-shadow)); -} - -.btn-outline:hover .Counter, -[open] > .btn-outline .Counter { - background-color: var(--buttonCounter-outline-bgColor-hover, var(--color-btn-outline-hover-counter-bg)); -} - -.btn-outline:hover .octicon, -[open] > .btn-outline .octicon { - color: inherit; -} - -.btn-outline:active, -.btn-outline.selected, -.btn-outline[aria-selected=true] { - color: var(--button-outline-fgColor-active, var(--color-btn-outline-selected-text)); - background-color: var(--button-outline-bgColor-active, var(--color-btn-outline-selected-bg)); - border-color: var(--button-outline-borderColor-active, var(--color-btn-outline-selected-border)); - box-shadow: var(--button-outline-shadow-selected, var(--color-btn-outline-selected-shadow)); -} - -.btn-outline:active:focus, -.btn-outline.selected:focus, -.btn-outline[aria-selected=true]:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.btn-outline:active:focus:not(:focus-visible), -.btn-outline.selected:focus:not(:focus-visible), -.btn-outline[aria-selected=true]:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.btn-outline:active:focus-visible, -.btn-outline.selected:focus-visible, -.btn-outline[aria-selected=true]:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.btn-outline:disabled, -.btn-outline.disabled, -.btn-outline[aria-disabled=true] { - color: var(--button-outline-fgColor-disabled, var(--color-btn-outline-disabled-text)); - background-color: var(--button-outline-bgColor-disabled, var(--color-btn-outline-disabled-bg)); - border-color: var(--button-default-borderColor-rest, var(--color-btn-border)); - box-shadow: none; -} - -.btn-outline:disabled .Counter, -.btn-outline.disabled .Counter, -.btn-outline[aria-disabled=true] .Counter { - background-color: var(--buttonCounter-outline-bgColor-disabled, var(--color-btn-outline-disabled-counter-bg)); -} - -.btn-outline .Counter { - color: inherit; - background-color: var(--buttonCounter-outline-bgColor-rest, var(--color-btn-outline-counter-bg)); -} - -.btn-danger { - color: var(--button-danger-fgColor-rest, var(--color-btn-danger-text)); -} - -.btn-danger .octicon { - color: var(--button-danger-iconColor-rest, var(--color-btn-danger-icon)); -} - -.btn-danger:hover, -[open] > .btn-danger { - color: var(--button-danger-fgColor-hover, var(--color-btn-danger-hover-text)); - background-color: var(--button-danger-bgColor-hover, var(--color-btn-danger-hover-bg)); - border-color: var(--button-danger-borderColor-hover, var(--color-btn-danger-hover-border)); - box-shadow: var(--shadow-resting-small, var(--color-btn-danger-hover-shadow)),var(--shadow-highlight, var(--color-btn-danger-hover-inset-shadow)); -} - -.btn-danger:hover .Counter, -[open] > .btn-danger .Counter { - background-color: var(--buttonCounter-danger-bgColor-hover, var(--color-btn-danger-hover-counter-bg)); -} - -.btn-danger:hover .octicon, -[open] > .btn-danger .octicon { - color: var(--button-danger-iconColor-hover, var(--color-btn-danger-hover-icon)); -} - -.btn-danger:active, -.btn-danger.selected, -.btn-danger[aria-selected=true] { - color: var(--button-danger-fgColor-active, var(--color-btn-danger-selected-text)); - background-color: var(--button-danger-bgColor-active, var(--color-btn-danger-selected-bg)); - border-color: var(--button-danger-borderColor-active, var(--color-btn-danger-selected-border)); - box-shadow: var(--button-danger-shadow-selected, var(--color-btn-danger-selected-shadow)); -} - -.btn-danger:disabled, -.btn-danger.disabled, -.btn-danger[aria-disabled=true] { - color: var(--button-danger-fgColor-disabled, var(--color-btn-danger-disabled-text)); - background-color: var(--button-danger-bgColor-disabled, var(--color-btn-danger-disabled-bg)); - border-color: var(--button-default-borderColor-rest, var(--color-btn-border)); - box-shadow: none; -} - -.btn-danger:disabled .Counter, -.btn-danger.disabled .Counter, -.btn-danger[aria-disabled=true] .Counter { - background-color: var(--buttonCounter-danger-bgColor-disabled, var(--color-btn-danger-disabled-counter-bg)); -} - -.btn-danger:disabled .octicon, -.btn-danger.disabled .octicon, -.btn-danger[aria-disabled=true] .octicon { - color: var(--button-danger-fgColor-disabled, var(--color-btn-danger-disabled-text)); -} - -.btn-danger .Counter { - color: inherit; - background-color: var(--buttonCounter-danger-bgColor-rest, var(--color-btn-danger-counter-bg)); -} - -.btn-sm { - padding: 3px 12px; - font-size: 12px; - line-height: 20px; -} - -.btn-sm .octicon { - vertical-align: text-top; -} - -.btn-large { - padding: .75em 1.5em; - font-size: inherit; - line-height: 1.5; - border-radius: .5em; -} - -.btn-block { - display: block; - width: 100%; - text-align: center; -} - -.BtnGroup { - display: inline-block; - vertical-align: middle; -} - -.BtnGroup::before { - display: table; - content: ""; -} - -.BtnGroup::after { - display: table; - clear: both; - content: ""; -} - -.BtnGroup + .BtnGroup, -.BtnGroup + .btn { - margin-left: 4px; -} - -.BtnGroup-item { - position: relative; - float: left; - border-right-width: 0; - border-radius: 0; -} - -.BtnGroup-item:first-child { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.BtnGroup-item:last-child { - border-right-width: 1px; - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.BtnGroup-item.selected, -.BtnGroup-item[aria-selected=true], -.BtnGroup-item:focus, -.BtnGroup-item:active, -.BtnGroup-item:hover { - border-right-width: 1px; -} - -.BtnGroup-item.selected + .BtnGroup-item, -.BtnGroup-item.selected + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-item[aria-selected=true] + .BtnGroup-item, -.BtnGroup-item[aria-selected=true] + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-item:focus + .BtnGroup-item, -.BtnGroup-item:focus + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-item:active + .BtnGroup-item, -.BtnGroup-item:active + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-item:hover + .BtnGroup-item, -.BtnGroup-item:hover + .BtnGroup-parent .BtnGroup-item { - border-left-width: 0; -} - -.BtnGroup-parent { - float: left; -} - -.BtnGroup-parent:first-child .BtnGroup-item { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.BtnGroup-parent:last-child .BtnGroup-item { - border-right-width: 1px; - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.BtnGroup-parent .BtnGroup-item { - border-right-width: 0; - border-radius: 0; -} - -.BtnGroup-parent.selected .BtnGroup-item, -.BtnGroup-parent[aria-selected=true] .BtnGroup-item, -.BtnGroup-parent:focus .BtnGroup-item, -.BtnGroup-parent:active .BtnGroup-item, -.BtnGroup-parent:hover .BtnGroup-item { - border-right-width: 1px; -} - -.BtnGroup-parent.selected + .BtnGroup-item, -.BtnGroup-parent.selected + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-parent[aria-selected=true] + .BtnGroup-item, -.BtnGroup-parent[aria-selected=true] + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-parent:focus + .BtnGroup-item, -.BtnGroup-parent:focus + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-parent:active + .BtnGroup-item, -.BtnGroup-parent:active + .BtnGroup-parent .BtnGroup-item, -.BtnGroup-parent:hover + .BtnGroup-item, -.BtnGroup-parent:hover + .BtnGroup-parent .BtnGroup-item { - border-left-width: 0; -} - -.BtnGroup-item:focus, -.BtnGroup-item:active, -.BtnGroup-parent:focus, -.BtnGroup-parent:active { - z-index: 1; -} - -.btn-link { - display: inline-block; - padding: 0; - font-size: inherit; - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - white-space: nowrap; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - background-color: transparent; - border: 0; - -webkit-appearance: none; - appearance: none; -} - -.btn-link:hover { - text-decoration: underline; -} - -.btn-link:disabled, -.btn-link:disabled:hover, -.btn-link[aria-disabled=true], -.btn-link[aria-disabled=true]:hover { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: default; -} - -.btn-link:not(.dropdown-item):focus, -.btn-link:not(.dropdown-item):focus-visible { - border-radius: 6px; - outline-offset: 0; -} - -.btn-invisible { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: transparent; - border: 0; - border-radius: 6px; - box-shadow: none; -} - -.btn-invisible:hover, -.btn-invisible.zeroclipboard-is-hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); - outline: none; - box-shadow: none; -} - -.btn-invisible:active, -.btn-invisible.selected, -.btn-invisible[aria-selected=true], -.btn-invisible.zeroclipboard-is-active { - color: var(--fgColor-accent, var(--color-accent-fg)); - background: none; - border-color: var(--button-default-borderColor-active, var(--color-btn-active-border)); - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.btn-invisible:active .btn-invisible.zeroclipboard-is-active { - background-color: var(--button-default-bgColor-selected, var(--color-btn-selected-bg)); -} - -.btn-invisible:disabled, -.btn-invisible.disabled, -.btn-invisible[aria-disabled=true] { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: transparent; -} - -.btn-octicon { - display: inline-block; - padding: 5px; - margin-left: 5px; - line-height: 1; - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: middle; - background: transparent; - border: 0; - box-shadow: none; -} - -.btn-octicon:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.btn-octicon:focus, -.btn-octicon:focus-visible { - border-radius: 6px; -} - -.btn-octicon.disabled, -.btn-octicon[aria-disabled=true] { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: default; -} - -.btn-octicon.disabled:hover, -.btn-octicon[aria-disabled=true]:hover { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.btn-octicon-danger:hover { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.close-button { - padding: 0; - color: var(--fgColor-muted, var(--color-fg-muted)); - background: transparent; - border: 0; -} - -.close-button:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.close-button:active { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.hidden-text-expander { - display: block; -} - -.hidden-text-expander.inline { - position: relative; - top: -1px; - display: inline-block; - margin-left: 5px; - line-height: 0; -} - -.hidden-text-expander a, -.ellipsis-expander { - display: inline-block; - height: 12px; - padding: 0 5px 5px; - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 6px; - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - vertical-align: middle; - background: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - border: 0; - border-radius: 1px; -} - -.hidden-text-expander a:hover, -.ellipsis-expander:hover { - text-decoration: none; - background-color: var(--bgColor-accent-muted, var(--color-accent-muted)); -} - -.hidden-text-expander a:active, -.ellipsis-expander:active { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.btn-with-count { - float: left; - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn-with-count:focus { - z-index: 1; -} - -.social-count { - position: relative; - float: left; - padding: 3px 12px; - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 20px; - color: var(--fgColor-default, var(--color-fg-default)); - vertical-align: middle; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--button-default-borderColor-rest, var(--color-btn-border)); - border-left: 0; - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; - box-shadow: var(--shadow-resting-small, var(--color-shadow-small)),var(--shadow-highlight, var(--color-primer-shadow-highlight)); -} - -.social-count:hover, -.social-count:active { - text-decoration: none; -} - -.social-count:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - cursor: pointer; -} - -.TableObject { - display: table; -} - -.TableObject-item { - display: table-cell; - width: 1%; - white-space: nowrap; - vertical-align: middle; -} - -.TableObject-item--primary { - width: 99%; -} - -.form-control, -.form-select { - padding: 5px 12px; - font-size: 14px; - line-height: 20px; - color: var(--fgColor-default, var(--color-fg-default)); - vertical-align: middle; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-repeat: no-repeat; - background-position: right 8px center; - border: 1px solid var(--control-borderColor-rest, var(--color-border-default)); - border-radius: 6px; - box-shadow: var(--shadow-inset, var(--color-primer-shadow-inset)); - transition: 80ms cubic-bezier(0.33, 1, 0.68, 1); - transition-property: color,background-color,box-shadow,border-color; -} - -.form-control:focus, -.form-select:focus { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); -} - -.form-control:focus:not(:focus-visible), -.form-select:focus:not(:focus-visible) { - border-color: transparent; - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px transparent; -} - -.form-control:focus-visible, -.form-select:focus-visible { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); -} - -.form-control.border-0:focus, -.form-control.border-0:focus-visible, -.form-select.border-0:focus, -.form-select.border-0:focus-visible { - border: 1px solid var(--borderColor-accent-emphasis, var(--color-accent-fg)); -} - -.form-control[disabled], -fieldset[disabled] .form-control, -.form-select[disabled], -fieldset[disabled] .form-select { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--control-bgColor-disabled, var(--color-input-disabled-bg)); - border-color: var(--control-borderColor-disabled, var(--color-border-default)); - -webkit-text-fill-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - opacity: 1; -} - -.form-control[disabled]::placeholder, -fieldset[disabled] .form-control::placeholder, -.form-select[disabled]::placeholder, -fieldset[disabled] .form-select::placeholder { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -@supports (-webkit-touch-callout: none) { - .form-control, - .form-select { - font-size: 16px; - } - - @media (min-width: 768px) { - .form-control, - .form-select { - font-size: 14px; - } - } -} - -textarea.form-control { - padding-top: 8px; - padding-bottom: 8px; - line-height: 1.5; -} - -.input-contrast { - background-color: var(--bgColor-muted, var(--color-canvas-inset)); -} - -.input-contrast:focus { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.input-sm { - min-height: 28px; - padding-top: 3px; - padding-bottom: 3px; - font-size: 12px; - line-height: 20px; -} - -.input-lg { - font-size: 16px; -} - -.input-block { - display: block; - width: 100%; -} - -.input-monospace { - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; -} - -.input-hide-webkit-autofill::-webkit-contacts-auto-fill-button { - position: absolute; - right: 0; - display: none; - pointer-events: none; - visibility: hidden; -} - -.form-checkbox { - padding-left: 20px; - margin: 15px 0; - vertical-align: middle; -} - -.form-checkbox label em.highlight { - position: relative; - left: -4px; - padding: 2px 4px; - font-style: normal; - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); - border-radius: 6px; -} - -.form-checkbox input[type=checkbox], -.form-checkbox input[type=radio] { - float: left; - margin: 5px 0 0 -20px; - vertical-align: middle; -} - -.form-checkbox .note { - display: block; - margin: 0; - font-size: 12px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.form-checkbox-details { - display: none; -} - -.form-checkbox-details-trigger:checked ~ * .form-checkbox-details, -.form-checkbox-details-trigger:checked ~ .form-checkbox-details { - display: block; -} - -.hfields { - margin: 15px 0; -} - -.hfields::before { - display: table; - content: ""; -} - -.hfields::after { - display: table; - clear: both; - content: ""; -} - -.hfields .form-group { - float: left; - margin: 0 30px 0 0; -} - -.hfields .form-group dt label, -.hfields .form-group .form-group-header label { - display: inline-block; - margin: 5px 0 0; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.hfields .form-group dt img, -.hfields .form-group .form-group-header img { - position: relative; - top: -2px; -} - -.hfields .btn { - float: left; - margin: 28px 25px 0 -20px; -} - -.hfields .form-select { - margin-top: 5px; -} - -input::-webkit-outer-spin-button, -input::-webkit-inner-spin-button { - margin: 0; - -webkit-appearance: none; - appearance: none; -} - -.form-actions::before { - display: table; - content: ""; -} - -.form-actions::after { - display: table; - clear: both; - content: ""; -} - -.form-actions .btn { - float: right; -} - -.form-actions .btn + .btn { - margin-right: 5px; -} - -.form-warning { - padding: 8px 10px; - margin: 10px 0; - font-size: 14px; - color: var(--fgColor-attention, var(--color-attention-fg)); - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); - border: 1px solid var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); - border-radius: 6px; -} - -.form-warning p { - margin: 0; - line-height: 1.5; -} - -.form-warning a { - font-weight: var(--base-text-weight-semibold, 600); -} - -.form-select { - display: inline-block; - max-width: 100%; - height: 32px; - padding-right: 24px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzU4NjA2OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4="); - background-repeat: no-repeat; - background-position: right 4px center; - background-size: 16px; - -webkit-appearance: none; - appearance: none; -} - -.form-select::-ms-expand { - opacity: 0; -} - -.form-select[multiple] { - height: auto; -} - -[data-color-mode=light][data-light-theme*=dark] .form-select, -[data-color-mode=dark][data-dark-theme*=dark] .form-select { - background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzZlNzY4MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4="); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] .form-select { - background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzZlNzY4MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4="); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] .form-select { - background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzZlNzY4MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNC40MjcgOS40MjdsMy4zOTYgMy4zOTZhLjI1MS4yNTEgMCAwMC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwMDExLjM5NiA5SDQuNjA0YS4yNS4yNSAwIDAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3TDcuODIgMy4wNzJhLjI1LjI1IDAgMDEuMzU0IDBMMTEuNTcgNi40N2EuMjUuMjUgMCAwMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMDEtLjE3Ny0uNDI3eiIgLz48L3N2Zz4="); - } -} - -.select-sm { - height: 28px; - padding-top: 3px; - padding-bottom: 3px; - font-size: 12px; -} - -.select-sm[multiple] { - height: auto; - min-height: 0; -} - -.form-group { - margin: 15px 0; -} - -.form-group .form-control.autocomplete-embedded-icon-wrap:focus-within { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.form-group .form-control { - width: 440px; - max-width: 100%; - margin-right: 5px; - background-color: var(--bgColor-muted, var(--color-canvas-inset)); -} - -.form-group .form-control:focus { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.form-group .form-control.shorter { - width: 130px; -} - -.form-group .form-control.short { - width: 250px; -} - -.form-group .form-control.input-block, -.form-group .form-control.long { - width: 100%; -} - -.form-group textarea.form-control { - width: 100%; - height: 200px; - min-height: 200px; -} - -.form-group textarea.form-control.short { - height: 50px; - min-height: 50px; -} - -.form-group dt, -.form-group .form-group-header { - margin: 0 0 6px; -} - -.form-group label { - position: static; -} - -.form-group.flattened dt, -.form-group.flattened .form-group-header { - float: left; - margin: 0; - line-height: 32px; -} - -.form-group.flattened dd, -.form-group.flattened .form-group-body { - line-height: 32px; -} - -.form-group dd h4, -.form-group .form-group-body h4 { - margin: 4px 0 0; -} - -.form-group dd h4.is-error, -.form-group .form-group-body h4.is-error { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.form-group dd h4.is-success, -.form-group .form-group-body h4.is-success { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.form-group dd h4 + .note, -.form-group .form-group-body h4 + .note { - margin-top: 0; -} - -.form-group.required dt label::after, -.form-group.required .form-group-header label::after { - padding-left: 5px; - color: var(--fgColor-danger, var(--color-danger-fg)); - content: "*"; -} - -.form-group .success, -.form-group .error, -.form-group .indicator { - display: none; - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); -} - -.form-group.loading { - opacity: .5; -} - -.form-group.loading .indicator { - display: inline; -} - -.form-group.loading .spinner { - display: inline-block; - vertical-align: middle; -} - -.form-group.successful .success { - display: inline; - color: var(--fgColor-success, var(--color-success-fg)); -} - -.form-group.successed .success, -.form-group.successed .warning, -.form-group.successed .error, -.form-group.warn .success, -.form-group.warn .warning, -.form-group.warn .error, -.form-group.errored .success, -.form-group.errored .warning, -.form-group.errored .error { - position: absolute; - z-index: 10; - display: block; - max-width: 450px; - padding: 4px 8px; - margin: 8px 0 0; - font-size: 12px; - font-weight: var(--base-text-weight-normal, 400); - border-style: solid; - border-width: 1px; - border-radius: 6px; -} - -.form-group.successed .success::after, -.form-group.successed .success::before, -.form-group.successed .warning::after, -.form-group.successed .warning::before, -.form-group.successed .error::after, -.form-group.successed .error::before, -.form-group.warn .success::after, -.form-group.warn .success::before, -.form-group.warn .warning::after, -.form-group.warn .warning::before, -.form-group.warn .error::after, -.form-group.warn .error::before, -.form-group.errored .success::after, -.form-group.errored .success::before, -.form-group.errored .warning::after, -.form-group.errored .warning::before, -.form-group.errored .error::after, -.form-group.errored .error::before { - position: absolute; - bottom: 100%; - left: 10px; - z-index: 15; - width: 0; - height: 0; - pointer-events: none; - content: " "; - border: solid transparent; -} - -.form-group.successed .success::after, -.form-group.successed .warning::after, -.form-group.successed .error::after, -.form-group.warn .success::after, -.form-group.warn .warning::after, -.form-group.warn .error::after, -.form-group.errored .success::after, -.form-group.errored .warning::after, -.form-group.errored .error::after { - border-width: 5px; -} - -.form-group.successed .success::before, -.form-group.successed .warning::before, -.form-group.successed .error::before, -.form-group.warn .success::before, -.form-group.warn .warning::before, -.form-group.warn .error::before, -.form-group.errored .success::before, -.form-group.errored .warning::before, -.form-group.errored .error::before { - margin-left: -1px; - border-width: 6px; -} - -.form-group.successed .success { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--bgColor-success-muted, var(--bgColor-success-muted, var(--color-success-subtle))), var(--color-success-subtle)); - border-color: var(--borderColor-success-muted, var(--color-success-muted)); -} - -.form-group.successed .success::after { - border-bottom-color: var(--borderColor-success-muted, var(--color-success-muted)); -} - -.form-group.successed .success::before { - border-bottom-color: var(--borderColor-success-muted, var(--color-success-muted)); -} - -.form-group.warn .form-control:not(:focus, :focus-visible) { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.form-group.warn .warning { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--bgColor-attention-muted, var(--bgColor-attention-muted, var(--color-attention-subtle))), var(--color-attention-subtle)); - border-color: var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.form-group.warn .warning::after { - border-bottom-color: var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.form-group.warn .warning::before { - border-bottom-color: var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.form-group.errored .form-control:not(:focus, :focus-visible) { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.form-group.errored label { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.form-group.errored .error { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--bgColor-danger-muted, var(--bgColor-danger-muted, var(--color-danger-subtle))), var(--color-danger-subtle)); - border-color: var(--borderColor-danger-muted, var(--color-danger-muted)); -} - -.form-group.errored .error::after { - border-bottom-color: var(--borderColor-danger-muted, var(--color-danger-muted)); -} - -.form-group.errored .error::before { - border-bottom-color: var(--borderColor-danger-muted, var(--color-danger-muted)); -} - -.note { - min-height: 17px; - margin: 4px 0 2px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.note .spinner { - margin-right: 3px; - vertical-align: middle; -} - -.input-group { - display: table; -} - -.input-group .form-control { - position: relative; - width: 100%; -} - -.input-group .form-control:focus { - z-index: 2; -} - -.input-group .form-control + .btn { - margin-left: 0; -} - -.input-group.inline { - display: inline-table; -} - -.input-group:focus-within button { - outline-offset: 0; -} - -.input-group .form-control.autocomplete-embedded-icon-wrap { - display: inline-flex; - padding: 5px 8px; -} - -.input-group .form-control, -.input-group-button { - display: table-cell; -} - -.input-group-button { - width: 1%; - vertical-align: middle; -} - -.input-group-button--autocomplete-embedded-icon { - vertical-align: bottom; -} - -.input-group .form-control:first-child, -.input-group-button:first-child .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group .form-control:first-child, -.input-group-button:first-child .btn:not(.btn-primary) { - border-color: var(--control-borderColor-rest, var(--color-border-default)); -} - -.input-group-button:first-child .btn { - margin-right: -1px; -} - -.input-group .form-control:last-child, -.input-group-button:last-child .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group .form-control:last-child, -.input-group-button:last-child .btn:not(.btn-primary) { - border-color: var(--control-borderColor-rest, var(--color-border-default)); -} - -.input-group-button:last-child .btn { - margin-left: -1px; -} - -.radio-group::before { - display: table; - content: ""; -} - -.radio-group::after { - display: table; - clear: both; - content: ""; -} - -.radio-label { - float: left; - padding: 6px 16px 6px 36px; - margin-left: -1px; - font-size: 14px; - line-height: 20px; - color: var(--fgColor-default, var(--color-fg-default)); - cursor: pointer; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -:checked + .radio-label { - position: relative; - z-index: 1; - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.radio-label:first-of-type { - margin-left: 0; - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.radio-label:last-of-type { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.radio-label .octicon { - margin-left: 4px; - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.radio-input { - z-index: 3; - float: left; - margin: 10px -32px 0 16px; -} - -.radio-input:disabled { - position: relative; -} - -.radio-input:disabled + .radio-label { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: default; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.radio-input:disabled + .radio-label .octicon { - color: inherit; -} - -.AppFrame .AppFrame-a11yNav { - position: absolute; - z-index: 1000; - display: flex; - width: 100%; - padding: var(--base-size-16, 16px); - background: var(--bgColor-inset, var(--color-canvas-inset)); - padding-block-end: calc(var(--base-size-16, 16px) - var(--borderWidth-thin, 1px)); - isolation: isolate; - align-items: center; - gap: var(--base-size-8, 8px); -} - -.AppFrame .AppFrame-a11yNav:not(:focus-within) { - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(1px, 1px, 1px, 1px); - border: 0; -} - -.AppFrame .AppFrame-a11yNav:focus-within { - top: 0; - left: 0; -} - -@media (max-width: 767.98px) { - .AppFrame .AppFrame-a11yNav:focus-within { - justify-content: center; - } -} - -.AppFrame .AppFrame-a11yLink { - transition: none; -} - -.AppFrame .AppFrame-a11yLink:not(:focus) { - display: block; - width: var(--base-size-8, 8px); - height: var(--base-size-8, 8px); - overflow: hidden; - text-indent: var(--base-size-128, 128px); - pointer-events: none; - background: var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-full, 100vh); -} - -.AppFrame .AppFrame-a11yLink:focus { - z-index: 20; - display: grid; - width: auto; - height: auto; - min-height: var(--control-medium-size, 32px); - padding: 0 var(--control-medium-paddingInline-spacious, 16px); - overflow: auto; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: var(--borderRadius-full, 100vh); - align-items: center; -} - -@media (pointer: coarse) { - .AppFrame .AppFrame-a11yLink:focus::after { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - height: 100%; - min-height: var(--control-minTarget-coarse, 44px); - content: ""; - transform: translateX(-50%) translateY(-50%); - } -} - -@media (prefers-reduced-motion: no-preference) { - .AppFrame .AppFrame-a11yLink:focus { - animation: AppFrame-a11yLink-focus 200ms ease-out; - } -} - -@keyframes AppFrame-a11yLink-focus { - 0% { - color: var(--fgColor-accent, var(--color-accent-emphasis)); - transform: scale(0.3, 0.25); - } - - 50% { - color: var(--fgColor-accent, var(--color-accent-emphasis)); - transform: scale(1, 1); - } - - 55% { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - } - - 100% { - transform: scaleX(1); - } -} - -.AppFrame .AppFrame-main { - display: flex; - min-height: 100vh; - flex-direction: column; -} - -@supports (height: 100dvh) { - .AppFrame .AppFrame-main { - min-height: 100dvh; - } -} - -.AppFrame .AppFrame-header-wrapper { - position: relative; - height: min-content; - overflow: visible; -} - -.AppFrame .AppFrame-header-wrapper .AppFrame-header { - position: sticky; - top: 0; - z-index: 1; -} - -.AppFrame .AppFrame-header { - flex: 0 0 auto; -} - -.AppFrame .AppFrame-subheader { - flex: 0 0 auto; -} - -.AppFrame .AppFrame-body { - flex: 1 0; - height: 100%; -} - -.AppFrame .AppFrame-footer { - flex: 0 0 auto; -} - -.container-sm { - max-width: 544px; - margin-right: auto; - margin-left: auto; -} - -.container-md { - max-width: 768px; - margin-right: auto; - margin-left: auto; -} - -.container-lg { - max-width: 1012px; - margin-right: auto; - margin-left: auto; -} - -.container-xl { - max-width: 1280px; - margin-right: auto; - margin-left: auto; -} - -.col-1 { - width: 8.33333333%; -} - -.col-2 { - width: 16.66666666%; -} - -.col-3 { - width: 24.99999999%; -} - -.col-4 { - width: 33.33333332%; -} - -.col-5 { - width: 41.66666665%; -} - -.col-6 { - width: 49.99999998%; -} - -.col-7 { - width: 58.33333331%; -} - -.col-8 { - width: 66.66666664%; -} - -.col-9 { - width: 74.99999997%; -} - -.col-10 { - width: 83.3333333%; -} - -.col-11 { - width: 91.66666663%; -} - -.col-12 { - width: 100%; -} - -@media (min-width: 544px) { - .col-sm-1 { - width: 8.33333333%; - } - - .col-sm-2 { - width: 16.66666666%; - } - - .col-sm-3 { - width: 24.99999999%; - } - - .col-sm-4 { - width: 33.33333332%; - } - - .col-sm-5 { - width: 41.66666665%; - } - - .col-sm-6 { - width: 49.99999998%; - } - - .col-sm-7 { - width: 58.33333331%; - } - - .col-sm-8 { - width: 66.66666664%; - } - - .col-sm-9 { - width: 74.99999997%; - } - - .col-sm-10 { - width: 83.3333333%; - } - - .col-sm-11 { - width: 91.66666663%; - } - - .col-sm-12 { - width: 100%; - } -} - -@media (min-width: 768px) { - .col-md-1 { - width: 8.33333333%; - } - - .col-md-2 { - width: 16.66666666%; - } - - .col-md-3 { - width: 24.99999999%; - } - - .col-md-4 { - width: 33.33333332%; - } - - .col-md-5 { - width: 41.66666665%; - } - - .col-md-6 { - width: 49.99999998%; - } - - .col-md-7 { - width: 58.33333331%; - } - - .col-md-8 { - width: 66.66666664%; - } - - .col-md-9 { - width: 74.99999997%; - } - - .col-md-10 { - width: 83.3333333%; - } - - .col-md-11 { - width: 91.66666663%; - } - - .col-md-12 { - width: 100%; - } -} - -@media (min-width: 1012px) { - .col-lg-1 { - width: 8.33333333%; - } - - .col-lg-2 { - width: 16.66666666%; - } - - .col-lg-3 { - width: 24.99999999%; - } - - .col-lg-4 { - width: 33.33333332%; - } - - .col-lg-5 { - width: 41.66666665%; - } - - .col-lg-6 { - width: 49.99999998%; - } - - .col-lg-7 { - width: 58.33333331%; - } - - .col-lg-8 { - width: 66.66666664%; - } - - .col-lg-9 { - width: 74.99999997%; - } - - .col-lg-10 { - width: 83.3333333%; - } - - .col-lg-11 { - width: 91.66666663%; - } - - .col-lg-12 { - width: 100%; - } -} - -@media (min-width: 1280px) { - .col-xl-1 { - width: 8.33333333%; - } - - .col-xl-2 { - width: 16.66666666%; - } - - .col-xl-3 { - width: 24.99999999%; - } - - .col-xl-4 { - width: 33.33333332%; - } - - .col-xl-5 { - width: 41.66666665%; - } - - .col-xl-6 { - width: 49.99999998%; - } - - .col-xl-7 { - width: 58.33333331%; - } - - .col-xl-8 { - width: 66.66666664%; - } - - .col-xl-9 { - width: 74.99999997%; - } - - .col-xl-10 { - width: 83.3333333%; - } - - .col-xl-11 { - width: 91.66666663%; - } - - .col-xl-12 { - width: 100%; - } -} - -.gutter { - margin-right: -16px; - margin-left: -16px; -} - -.gutter > [class*=col-] { - padding-right: 16px; - padding-left: 16px; -} - -.gutter-condensed { - margin-right: -8px; - margin-left: -8px; -} - -.gutter-condensed > [class*=col-] { - padding-right: 8px; - padding-left: 8px; -} - -.gutter-spacious { - margin-right: -24px; - margin-left: -24px; -} - -.gutter-spacious > [class*=col-] { - padding-right: 24px; - padding-left: 24px; -} - -@media (min-width: 544px) { - .gutter-sm { - margin-right: -16px; - margin-left: -16px; - } - - .gutter-sm > [class*=col-] { - padding-right: 16px; - padding-left: 16px; - } - - .gutter-sm-condensed { - margin-right: -8px; - margin-left: -8px; - } - - .gutter-sm-condensed > [class*=col-] { - padding-right: 8px; - padding-left: 8px; - } - - .gutter-sm-spacious { - margin-right: -24px; - margin-left: -24px; - } - - .gutter-sm-spacious > [class*=col-] { - padding-right: 24px; - padding-left: 24px; - } -} - -@media (min-width: 768px) { - .gutter-md { - margin-right: -16px; - margin-left: -16px; - } - - .gutter-md > [class*=col-] { - padding-right: 16px; - padding-left: 16px; - } - - .gutter-md-condensed { - margin-right: -8px; - margin-left: -8px; - } - - .gutter-md-condensed > [class*=col-] { - padding-right: 8px; - padding-left: 8px; - } - - .gutter-md-spacious { - margin-right: -24px; - margin-left: -24px; - } - - .gutter-md-spacious > [class*=col-] { - padding-right: 24px; - padding-left: 24px; - } -} - -@media (min-width: 1012px) { - .gutter-lg { - margin-right: -16px; - margin-left: -16px; - } - - .gutter-lg > [class*=col-] { - padding-right: 16px; - padding-left: 16px; - } - - .gutter-lg-condensed { - margin-right: -8px; - margin-left: -8px; - } - - .gutter-lg-condensed > [class*=col-] { - padding-right: 8px; - padding-left: 8px; - } - - .gutter-lg-spacious { - margin-right: -24px; - margin-left: -24px; - } - - .gutter-lg-spacious > [class*=col-] { - padding-right: 24px; - padding-left: 24px; - } -} - -@media (min-width: 1280px) { - .gutter-xl { - margin-right: -16px; - margin-left: -16px; - } - - .gutter-xl > [class*=col-] { - padding-right: 16px; - padding-left: 16px; - } - - .gutter-xl-condensed { - margin-right: -8px; - margin-left: -8px; - } - - .gutter-xl-condensed > [class*=col-] { - padding-right: 8px; - padding-left: 8px; - } - - .gutter-xl-spacious { - margin-right: -24px; - margin-left: -24px; - } - - .gutter-xl-spacious > [class*=col-] { - padding-right: 24px; - padding-left: 24px; - } -} - -.offset-1 { - margin-left: 8.33333333%; -} - -.offset-2 { - margin-left: 16.66666666%; -} - -.offset-3 { - margin-left: 24.99999999%; -} - -.offset-4 { - margin-left: 33.33333332%; -} - -.offset-5 { - margin-left: 41.66666665%; -} - -.offset-6 { - margin-left: 49.99999998%; -} - -.offset-7 { - margin-left: 58.33333331%; -} - -.offset-8 { - margin-left: 66.66666664%; -} - -.offset-9 { - margin-left: 74.99999997%; -} - -.offset-10 { - margin-left: 83.3333333%; -} - -.offset-11 { - margin-left: 91.66666663%; -} - -@media (min-width: 544px) { - .offset-sm-1 { - margin-left: 8.33333333%; - } - - .offset-sm-2 { - margin-left: 16.66666666%; - } - - .offset-sm-3 { - margin-left: 24.99999999%; - } - - .offset-sm-4 { - margin-left: 33.33333332%; - } - - .offset-sm-5 { - margin-left: 41.66666665%; - } - - .offset-sm-6 { - margin-left: 49.99999998%; - } - - .offset-sm-7 { - margin-left: 58.33333331%; - } - - .offset-sm-8 { - margin-left: 66.66666664%; - } - - .offset-sm-9 { - margin-left: 74.99999997%; - } - - .offset-sm-10 { - margin-left: 83.3333333%; - } - - .offset-sm-11 { - margin-left: 91.66666663%; - } -} - -@media (min-width: 768px) { - .offset-md-1 { - margin-left: 8.33333333%; - } - - .offset-md-2 { - margin-left: 16.66666666%; - } - - .offset-md-3 { - margin-left: 24.99999999%; - } - - .offset-md-4 { - margin-left: 33.33333332%; - } - - .offset-md-5 { - margin-left: 41.66666665%; - } - - .offset-md-6 { - margin-left: 49.99999998%; - } - - .offset-md-7 { - margin-left: 58.33333331%; - } - - .offset-md-8 { - margin-left: 66.66666664%; - } - - .offset-md-9 { - margin-left: 74.99999997%; - } - - .offset-md-10 { - margin-left: 83.3333333%; - } - - .offset-md-11 { - margin-left: 91.66666663%; - } -} - -@media (min-width: 1012px) { - .offset-lg-1 { - margin-left: 8.33333333%; - } - - .offset-lg-2 { - margin-left: 16.66666666%; - } - - .offset-lg-3 { - margin-left: 24.99999999%; - } - - .offset-lg-4 { - margin-left: 33.33333332%; - } - - .offset-lg-5 { - margin-left: 41.66666665%; - } - - .offset-lg-6 { - margin-left: 49.99999998%; - } - - .offset-lg-7 { - margin-left: 58.33333331%; - } - - .offset-lg-8 { - margin-left: 66.66666664%; - } - - .offset-lg-9 { - margin-left: 74.99999997%; - } - - .offset-lg-10 { - margin-left: 83.3333333%; - } - - .offset-lg-11 { - margin-left: 91.66666663%; - } -} - -@media (min-width: 1280px) { - .offset-xl-1 { - margin-left: 8.33333333%; - } - - .offset-xl-2 { - margin-left: 16.66666666%; - } - - .offset-xl-3 { - margin-left: 24.99999999%; - } - - .offset-xl-4 { - margin-left: 33.33333332%; - } - - .offset-xl-5 { - margin-left: 41.66666665%; - } - - .offset-xl-6 { - margin-left: 49.99999998%; - } - - .offset-xl-7 { - margin-left: 58.33333331%; - } - - .offset-xl-8 { - margin-left: 66.66666664%; - } - - .offset-xl-9 { - margin-left: 74.99999997%; - } - - .offset-xl-10 { - margin-left: 83.3333333%; - } - - .offset-xl-11 { - margin-left: 91.66666663%; - } -} - -:root { - --Layout-pane-width: 220px; - --Layout-content-width: 100%; - --Layout-template-columns: 1fr var(--Layout-pane-width); - --Layout-template-areas: "content pane"; - --Layout-column-gap: 16px; - --Layout-row-gap: 16px; - --Layout-outer-spacing-x: 0px; - --Layout-outer-spacing-y: 0px; - --Layout-inner-spacing-min: 0px; - --Layout-inner-spacing-max: 0px; -} - -.PageLayout { - display: block; - margin: var(--Layout-outer-spacing-y) var(--Layout-outer-spacing-x); -} - -@media (min-width: 768px) { - .PageLayout.PageLayout--panePos-start { - --Layout-template-columns: var(--Layout-pane-width) minmax(0, calc(100% - var(--Layout-pane-width) - var(--Layout-column-gap))); - --Layout-template-areas: "pane content"; - } - - .PageLayout.PageLayout--panePos-end { - --Layout-template-columns: minmax(0, calc(100% - var(--Layout-pane-width) - var(--Layout-column-gap))) var(--Layout-pane-width); - --Layout-template-areas: "content pane"; - } - - .PageLayout .PageLayout-header--hasDivider { - padding-bottom: max(var(--Layout-row-gap),var(--Layout-inner-spacing-min)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); - } - - .PageLayout .PageLayout-footer--hasDivider { - padding-top: max(var(--Layout-row-gap),var(--Layout-inner-spacing-min)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); - } - - .PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start .PageLayout-pane { - border-right: 1px solid var(--borderColor-default, var(--color-border-default)); - } - - .PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start:not(.PageLayout--columnGap-none) .PageLayout-pane { - padding-right: calc(var(--Layout-column-gap) - 1px); - margin-right: calc(var(--Layout-column-gap)*-1); - } - - .PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-start:not(.PageLayout--columnGap-none) .PageLayout-content { - margin-left: var(--Layout-column-gap); - } - - .PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end .PageLayout-pane { - border-left: 1px solid var(--borderColor-default, var(--color-border-default)); - } - - .PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end:not(.PageLayout--columnGap-none) .PageLayout-pane { - padding-left: calc(var(--Layout-column-gap) - 1px); - margin-left: calc(var(--Layout-column-gap)*-1); - } - - .PageLayout.PageLayout--hasPaneDivider.PageLayout--panePos-end:not(.PageLayout--columnGap-none) .PageLayout-content { - margin-right: var(--Layout-column-gap); - } - - .PageLayout .PageLayout-pane--sticky { - position: sticky; - top: 0; - max-height: 100vh; - overflow: auto; - scrollbar-width: thin; - } - - @supports (max-height: 100dvh) { - .PageLayout .PageLayout-pane--sticky { - max-height: 100dvh; - } - } - - .PageLayout [class^=PageLayout-content-centered-] { - max-width: calc(var(--Layout-content-width) + var(--Layout-pane-width) + var(--Layout-column-gap)); - margin-right: auto; - margin-left: auto; - } - - .PageLayout.PageLayout--hasPaneDivider [class^=PageLayout-content-centered-] { - max-width: calc(var(--Layout-content-width) + var(--Layout-pane-width) + var(--Layout-column-gap)*2); - } - - .PageLayout.PageLayout--panePos-start [class^=PageLayout-content-centered-] > [class^=container-] { - margin-left: 0; - } - - .PageLayout.PageLayout--panePos-end [class^=PageLayout-content-centered-] > [class^=container-] { - margin-right: 0; - } - - .PageLayout .PageLayout-content-centered-sm { - --Layout-content-width: 544px; - } - - .PageLayout .PageLayout-content-centered-md { - --Layout-content-width: 768px; - } - - .PageLayout .PageLayout-content-centered-lg { - --Layout-content-width: 1012px; - } - - .PageLayout .PageLayout-content-centered-xl { - --Layout-content-width: 1280px; - } -} - -@media (min-width: 768px)and (min-width: 544px) { - .PageLayout { - --Layout-pane-width: 220px; - } -} - -@media (min-width: 768px)and (min-width: 768px) { - .PageLayout { - --Layout-pane-width: 256px; - } -} - -@media (min-width: 768px)and (min-width: 1012px) { - .PageLayout { - --Layout-pane-width: 296px; - } -} - -@media (min-width: 768px)and (min-width: 768px) { - .PageLayout.PageLayout--paneWidth-narrow { - --Layout-pane-width: 240px; - } -} - -@media (min-width: 768px)and (min-width: 1012px) { - .PageLayout.PageLayout--paneWidth-narrow { - --Layout-pane-width: 256px; - } -} - -@media (min-width: 768px)and (min-width: 1012px) { - .PageLayout.PageLayout--paneWidth-wide { - --Layout-pane-width: 320px; - } -} - -@media (min-width: 768px)and (min-width: 1280px) { - .PageLayout.PageLayout--paneWidth-wide { - --Layout-pane-width: 336px; - } -} - -@media (max-width: 767.98px) { - .PageLayout.PageLayout--responsive-stackRegions { - --Layout-template-columns: 1fr; - --Layout-template-areas: "content" "pane"; - } - - .PageLayout.PageLayout--responsive-stackRegions.PageLayout--responsive-panePos-start { - --Layout-template-areas: "pane" "content"; - } - - .PageLayout.PageLayout--responsive-separateRegions { - --Layout-template-columns: 1fr; - --Layout-template-areas: "content"; - } - - .PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-content { - --Layout-template-areas: "content"; - } - - .PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-content .PageLayout-pane { - display: none; - } - - .PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane { - --Layout-template-areas: "pane"; - } - - .PageLayout.PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .PageLayout-content { - display: none; - } - - .PageLayout .PageLayout-region--dividerNarrow-line-before { - position: relative; - margin-top: var(--Layout-row-gap); - } - - .PageLayout .PageLayout-region--dividerNarrow-line-before::before { - position: absolute; - left: calc(var(--Layout-outer-spacing-x)*-1); - display: block; - width: calc(100% + var(--Layout-outer-spacing-x)*2); - height: 1px; - content: ""; - background-color: var(--borderColor-default, var(--color-border-default)); - top: calc(-1px - var(--Layout-row-gap)); - } - - .PageLayout .PageLayout-region--dividerNarrow-line-after { - position: relative; - margin-bottom: var(--Layout-row-gap); - } - - .PageLayout .PageLayout-region--dividerNarrow-line-after::after { - position: absolute; - left: calc(var(--Layout-outer-spacing-x)*-1); - display: block; - width: calc(100% + var(--Layout-outer-spacing-x)*2); - height: 1px; - content: ""; - background-color: var(--borderColor-default, var(--color-border-default)); - bottom: calc(-1px - var(--Layout-row-gap)); - } - - .PageLayout .PageLayout-region--dividerNarrow-filled-before { - position: relative; - margin-top: calc(8px + var(--Layout-row-gap)); - } - - .PageLayout .PageLayout-region--dividerNarrow-filled-before::after { - position: absolute; - bottom: calc(8px * -1); - left: calc(var(--Layout-outer-spacing-x)*-1); - display: block; - width: calc(100% + var(--Layout-outer-spacing-x)*2); - height: 8px; - content: ""; - background-color: var(--bgColor-inset, var(--color-canvas-inset)); - box-shadow: inset 0 1px var(--borderColor-default, var(--color-border-default)),inset 0 -1px var(--borderColor-default, var(--color-border-default)); - top: calc(-8px - var(--Layout-row-gap)); - } - - .PageLayout .PageLayout-region--dividerNarrow-filled-after { - position: relative; - margin-bottom: calc(8px + var(--Layout-row-gap)); - } - - .PageLayout .PageLayout-region--dividerNarrow-filled-after::before { - position: absolute; - bottom: calc(8px * -1); - left: calc(var(--Layout-outer-spacing-x)*-1); - display: block; - width: calc(100% + var(--Layout-outer-spacing-x)*2); - height: 8px; - content: ""; - background-color: var(--bgColor-inset, var(--color-canvas-inset)); - box-shadow: inset 0 1px var(--borderColor-default, var(--color-border-default)),inset 0 -1px var(--borderColor-default, var(--color-border-default)); - bottom: calc(-8px - var(--Layout-row-gap)); - } -} - -.PageLayout-wrapper { - display: grid; - grid: auto-flow/1fr; - row-gap: var(--Layout-row-gap); -} - -.PageLayout-columns { - display: grid; - column-gap: var(--Layout-column-gap); - row-gap: var(--Layout-row-gap); - grid-template-columns: var(--Layout-template-columns); - grid-template-rows: 1fr; - grid-template-areas: var(--Layout-template-areas); -} - -.PageLayout-columns .PageLayout-content { - padding-right: var(--Layout-inner-spacing-max); - padding-left: var(--Layout-inner-spacing-max); - grid-area: content; -} - -.PageLayout-columns .PageLayout-pane { - grid-area: pane; -} - -.PageLayout--outerSpacing-normal { - --Layout-outer-spacing-x: 16px; - --Layout-outer-spacing-y: 16px; -} - -@media (min-width: 1012px) { - .PageLayout--outerSpacing-normal { - --Layout-outer-spacing-x: 24px; - --Layout-outer-spacing-y: 24px; - } -} - -.PageLayout--outerSpacing-condensed { - --Layout-outer-spacing-x: 16px; - --Layout-outer-spacing-y: 16px; -} - -.PageLayout--innerSpacing-normal { - --Layout-inner-spacing-min: 16px; - --Layout-inner-spacing-max: 16px; -} - -@media (min-width: 1012px) { - .PageLayout--innerSpacing-normal { - --Layout-inner-spacing-max: 24px; - } -} - -.PageLayout--innerSpacing-condensed { - --Layout-inner-spacing-min: 16px; - --Layout-inner-spacing-max: 16px; -} - -.PageLayout--columnGap-normal { - --Layout-column-gap: 16px; -} - -@media (min-width: 1012px) { - .PageLayout--columnGap-normal { - --Layout-column-gap: 24px; - } -} - -.PageLayout--columnGap-condensed { - --Layout-column-gap: 16px; -} - -.PageLayout--columnGap-none { - --Layout-column-gap: 0px; -} - -.PageLayout--rowGap-normal { - --Layout-row-gap: 16px; -} - -@media (min-width: 1012px) { - .PageLayout--rowGap-normal { - --Layout-row-gap: 24px; - } -} - -.PageLayout--rowGap-none { - --Layout-row-gap: 0px; -} - -.PageLayout--rowGap-condensed { - --Layout-row-gap: 16px; -} - -.PageLayout-header, -.PageLayout-content, -.PageLayout-pane, -.PageLayout-footer { - padding: var(--Layout-inner-spacing-min); -} - -.Stack { - --Stack-gap-whenRegular: var(--stack-gap-normal, 16px); - --Stack-gap-whenNarrow: var(--stack-gap-normal, 16px); - --Stack-gap-whenWide: var(--Stack-gap-whenRegular); - --Stack-divider-color: var(--borderColor-default, var(--color-border-default)); - display: flex; - flex-flow: column; - align-items: stretch; - align-content: flex-start; - gap: var(--Stack-gap-whenRegular); -} - -@media (max-width: 767.98px) { - .Stack { - gap: var(--Stack-gap-whenNarrow); - } -} - -@media (min-width: 1400px) { - .Stack { - gap: var(--Stack-gap-whenWide); - } -} - -.Stack-divider { - display: none; - padding: 0; - margin: 0; - border: 0; - align-self: stretch; -} - -.Stack-item { - flex: 0 1 auto; - min-inline-size: 0; -} - -@media (max-width: 767.98px) { - .Stack--dir-inline-whenNarrow { - flex-flow: row; - } - - .Stack--dir-block-whenNarrow { - flex-flow: column; - } - - .Stack--gap-none-whenNarrow { - --Stack-gap-whenNarrow: 0; - } - - .Stack--gap-condensed-whenNarrow { - --Stack-gap-whenNarrow: var(--stack-gap-condensed, 8px); - } - - .Stack--gap-normal-whenNarrow { - --Stack-gap-whenNarrow: var(--stack-gap-normal, 16px); - } - - .Stack--align-start-whenNarrow { - align-items: flex-start; - } - - .Stack--align-center-whenNarrow { - align-items: center; - } - - .Stack--align-end-whenNarrow { - align-items: flex-end; - } - - .Stack--align-baseline-whenNarrow { - align-items: baseline; - } - - .Stack--alignWrap-start-whenNarrow { - align-content: flex-start; - } - - .Stack--alignWrap-center-whenNarrow { - align-content: center; - } - - .Stack--alignWrap-end-whenNarrow { - align-content: flex-end; - } - - .Stack--alignWrap-distribute-whenNarrow { - align-content: space-between; - } - - .Stack--alignWrap-distributeEvenly-whenNarrow { - align-content: space-evenly; - } - - .Stack--spread-start-whenNarrow { - justify-content: flex-start; - } - - .Stack--spread-center-whenNarrow { - justify-content: center; - } - - .Stack--spread-end-whenNarrow { - justify-content: flex-end; - } - - .Stack--spread-distribute-whenNarrow { - justify-content: space-between; - } - - .Stack--spread-distributeEvenly-whenNarrow { - justify-content: space-evenly; - } - - .Stack--wrap-whenNarrow { - flex-wrap: wrap; - } - - .Stack--nowrap-whenNarrow { - flex-wrap: nowrap; - } - - .Stack--showDividers-whenNarrow > .Stack-divider, - .Stack--showDividers-whenNarrow > .Stack-item > .Stack-divider { - display: block; - } - - :not(.Stack--dir-inline-whenNarrow) > .Stack-divider, - :not(.Stack--dir-inline-whenNarrow) > .Stack-item > .Stack-divider { - border-block-end: var(--borderWidth-thin, 1px) solid var(--Stack-divider-color); - inline-size: auto; - block-size: 0; - } - - .Stack--dir-inline-whenNarrow > .Stack-divider, - .Stack--dir-inline-whenNarrow > .Stack-item > .Stack-divider { - border-inline-end: var(--borderWidth-thin, 1px) solid var(--Stack-divider-color); - inline-size: 0; - block-size: auto; - } - - .Stack-item--expand-whenNarrow { - flex-grow: 1; - } - - .Stack-item--keepSize-whenNarrow { - flex-shrink: 0; - } -} - -@media (min-width: 768px) { - .Stack--dir-inline-whenRegular { - flex-flow: row; - } - - .Stack--dir-block-whenRegular { - flex-flow: column; - } - - .Stack--gap-none-whenRegular { - --Stack-gap-whenRegular: 0; - } - - .Stack--gap-condensed-whenRegular { - --Stack-gap-whenRegular: var(--stack-gap-condensed, 8px); - } - - .Stack--gap-normal-whenRegular { - --Stack-gap-whenRegular: var(--stack-gap-normal, 16px); - } - - .Stack--gap-spacious-whenRegular { - --Stack-gap-whenRegular: var(--stack-gap-spacious, 24px); - } - - .Stack--align-start-whenRegular { - align-items: flex-start; - } - - .Stack--align-center-whenRegular { - align-items: center; - } - - .Stack--align-end-whenRegular { - align-items: flex-end; - } - - .Stack--align-baseline-whenRegular { - align-items: baseline; - } - - .Stack--alignWrap-start-whenRegular { - align-content: flex-start; - } - - .Stack--alignWrap-center-whenRegular { - align-content: center; - } - - .Stack--alignWrap-end-whenRegular { - align-content: flex-end; - } - - .Stack--alignWrap-distribute-whenRegular { - align-content: space-between; - } - - .Stack--alignWrap-distributeEvenly-whenRegular { - align-content: space-evenly; - } - - .Stack--spread-start-whenRegular { - justify-content: flex-start; - } - - .Stack--spread-center-whenRegular { - justify-content: center; - } - - .Stack--spread-end-whenRegular { - justify-content: flex-end; - } - - .Stack--spread-distribute-whenRegular { - justify-content: space-between; - } - - .Stack--spread-distributeEvenly-whenRegular { - justify-content: space-evenly; - } - - .Stack--wrap-whenRegular { - flex-wrap: wrap; - } - - .Stack--nowrap-whenRegular { - flex-wrap: nowrap; - } - - .Stack--showDividers-whenRegular > .Stack-divider, - .Stack--showDividers-whenRegular > .Stack-item > .Stack-divider { - display: block; - } - - :not(.Stack--dir-inline-whenRegular) > .Stack-divider, - :not(.Stack--dir-inline-whenRegular) > .Stack-item > .Stack-divider { - border-block-end: var(--borderWidth-thin, 1px) solid var(--Stack-divider-color); - inline-size: auto; - block-size: 0; - } - - .Stack--dir-inline-whenRegular > .Stack-divider, - .Stack--dir-inline-whenRegular > .Stack-item > .Stack-divider { - border-inline-end: var(--borderWidth-thin, 1px) solid var(--Stack-divider-color); - inline-size: 0; - block-size: auto; - } - - .Stack-item--expand-whenRegular { - flex-grow: 1; - } - - .Stack-item--keepSize-whenRegular { - flex-shrink: 0; - } -} - -@media (min-width: 1400px) { - .Stack--dir-inline-whenWide { - flex-flow: row; - } - - .Stack--dir-block-whenWide { - flex-flow: column; - } - - .Stack--gap-none-whenWide { - --Stack-gap-whenWide: 0; - } - - .Stack--gap-condensed-whenWide { - --Stack-gap-whenWide: var(--stack-gap-condensed, 8px); - } - - .Stack--gap-normal-whenWide { - --Stack-gap-whenWide: var(--stack-gap-normal, 16px); - } - - .Stack--gap-spacious-whenWide { - --Stack-gap-whenWide: var(--stack-gap-spacious, 24px); - } - - .Stack--align-start-whenWide { - align-items: flex-start; - } - - .Stack--align-center-whenWide { - align-items: center; - } - - .Stack--align-end-whenWide { - align-items: flex-end; - } - - .Stack--align-baseline-whenWide { - align-items: baseline; - } - - .Stack--alignWrap-start-whenWide { - align-content: flex-start; - } - - .Stack--alignWrap-center-whenWide { - align-content: center; - } - - .Stack--alignWrap-end-whenWide { - align-content: flex-end; - } - - .Stack--alignWrap-distribute-whenWide { - align-content: space-between; - } - - .Stack--alignWrap-distributeEvenly-whenWide { - align-content: space-evenly; - } - - .Stack--spread-start-whenWide { - justify-content: flex-start; - } - - .Stack--spread-center-whenWide { - justify-content: center; - } - - .Stack--spread-end-whenWide { - justify-content: flex-end; - } - - .Stack--spread-distribute-whenWide { - justify-content: space-between; - } - - .Stack--spread-distributeEvenly-whenWide { - justify-content: space-evenly; - } - - .Stack--wrap-whenWide { - flex-wrap: wrap; - } - - .Stack--nowrap-whenWide { - flex-wrap: nowrap; - } - - .Stack--showDividers-whenWide > .Stack-divider, - .Stack--showDividers-whenWide > .Stack-item > .Stack-divider { - display: block; - } - - :not(.Stack--dir-inline-whenWide) > .Stack-divider, - :not(.Stack--dir-inline-whenWide) > .Stack-item > .Stack-divider { - border-block-end: var(--borderWidth-thin, 1px) solid var(--Stack-divider-color); - inline-size: auto; - block-size: 0; - } - - .Stack--dir-inline-whenWide > .Stack-divider, - .Stack--dir-inline-whenWide > .Stack-item > .Stack-divider { - border-inline-end: var(--borderWidth-thin, 1px) solid var(--Stack-divider-color); - inline-size: 0; - block-size: auto; - } - - .Stack-item--expand-whenWide { - flex-grow: 1; - } - - .Stack-item--keepSize-whenWide { - flex-shrink: 0; - } -} - -.filter-list { - list-style-type: none; -} - -.filter-list.small .filter-item { - padding: 6px 12px; - font-size: 12px; -} - -.filter-list.pjax-active .filter-item { - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: transparent; -} - -.filter-list.pjax-active .filter-item.pjax-active { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.filter-item { - position: relative; - display: block; - padding: 8px 16px; - margin-bottom: 4px; - overflow: hidden; - font-size: 14px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: none; - text-overflow: ellipsis; - white-space: nowrap; - cursor: pointer; - border-radius: 6px; -} - -.filter-item:hover { - text-decoration: none; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.filter-item.selected, -.filter-item[aria-selected=true], -.filter-item[aria-current]:not([aria-current=false]) { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.filter-item.selected:focus, -.filter-item[aria-selected=true]:focus, -.filter-item[aria-current]:not([aria-current=false]):focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.filter-item.selected:focus:not(:focus-visible), -.filter-item[aria-selected=true]:focus:not(:focus-visible), -.filter-item[aria-current]:not([aria-current=false]):focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.filter-item.selected:focus-visible, -.filter-item[aria-selected=true]:focus-visible, -.filter-item[aria-current]:not([aria-current=false]):focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.filter-item .count { - float: right; - font-weight: var(--base-text-weight-semibold, 600); -} - -.filter-item .bar { - position: absolute; - top: 2px; - right: 0; - bottom: 2px; - z-index: -1; - display: inline-block; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.SideNav { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.SideNav-item { - position: relative; - display: block; - width: 100%; - padding: 12px 16px; - color: var(--fgColor-default, var(--color-fg-default)); - text-align: left; - background-color: transparent; - border: 0; - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.SideNav-item:first-child { - border-top: 0; -} - -.SideNav-item:last-child { - box-shadow: 0 1px 0 var(--borderColor-default, var(--color-border-default)); -} - -.SideNav-item::before { - position: absolute; - top: 0; - bottom: 0; - left: 0; - z-index: 1; - width: 2px; - pointer-events: none; - content: ""; -} - -.SideNav-item:hover { - text-decoration: none; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.SideNav-item:active { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.SideNav-item[aria-current]:not([aria-current=false]), -.SideNav-item[aria-selected=true] { - background-color: var(--sideNav-bgColor-selected, var(--color-sidenav-selected-bg)); -} - -.SideNav-item[aria-current]:not([aria-current=false])::before, -.SideNav-item[aria-selected=true]::before { - background-color: var(--underlineNav-borderColor-active, var(--color-primer-border-active)); -} - -.SideNav-icon { - width: 16px; - margin-right: 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.SideNav-subItem { - position: relative; - display: block; - width: 100%; - padding: 4px 0; - color: var(--fgColor-accent, var(--color-accent-fg)); - text-align: left; - background-color: transparent; - border: 0; -} - -.SideNav-subItem:hover { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; -} - -.SideNav-subItem[aria-current]:not([aria-current=false]), -.SideNav-subItem[aria-selected=true] { - font-weight: var(--base-text-weight-medium, 500); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.subnav { - margin-bottom: 20px; -} - -.subnav::before { - display: table; - content: ""; -} - -.subnav::after { - display: table; - clear: both; - content: ""; -} - -.subnav-bordered { - padding-bottom: 20px; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.subnav-flush { - margin-bottom: 0; -} - -.subnav-item { - position: relative; - float: left; - padding: 5px 16px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 20px; - color: var(--fgColor-default, var(--color-fg-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.subnav-item + .subnav-item { - margin-left: -1px; -} - -.subnav-item:hover, -.subnav-item:focus { - text-decoration: none; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.subnav-item.selected, -.subnav-item[aria-selected=true], -.subnav-item[aria-current]:not([aria-current=false]) { - z-index: 2; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.subnav-item.selected:focus, -.subnav-item[aria-selected=true]:focus, -.subnav-item[aria-current]:not([aria-current=false]):focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.subnav-item.selected:focus:not(:focus-visible), -.subnav-item[aria-selected=true]:focus:not(:focus-visible), -.subnav-item[aria-current]:not([aria-current=false]):focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.subnav-item.selected:focus-visible, -.subnav-item[aria-selected=true]:focus-visible, -.subnav-item[aria-current]:not([aria-current=false]):focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.subnav-item:first-child { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.subnav-item:last-child { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.subnav-search { - position: relative; - margin-left: 12px; -} - -.subnav-search-input { - width: 320px; - padding-left: 32px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.subnav-search-input-wide { - width: 500px; -} - -.subnav-search-icon { - position: absolute; - top: 9px; - left: 8px; - display: block; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - pointer-events: none; -} - -.subnav-search-context .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.subnav-search-context .btn:hover, -.subnav-search-context .btn:focus, -.subnav-search-context .btn:active, -.subnav-search-context .btn.selected { - z-index: 2; -} - -.subnav-search-context + .subnav-search { - margin-left: -1px; -} - -.subnav-search-context + .subnav-search .subnav-search-input { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.subnav-search-context .select-menu-modal-holder { - z-index: 30; -} - -.subnav-search-context .select-menu-modal { - width: 220px; -} - -.subnav-search-context .select-menu-item-icon { - color: inherit; -} - -.subnav-spacer-right { - padding-right: 12px; -} - -.pagination a, -.pagination span, -.pagination em { - min-width: 32px; - padding: 5px 10px; - font-style: normal; - line-height: 20px; - color: var(--fgColor-default, var(--color-fg-default)); - text-align: center; - white-space: nowrap; - vertical-align: middle; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - border: 1px solid transparent; - border-radius: 6px; - transition: border-color .2s cubic-bezier(0.3, 0, 0.5, 1); -} - -.pagination a:hover, -.pagination a:focus, -.pagination span:hover, -.pagination span:focus, -.pagination em:hover, -.pagination em:focus { - text-decoration: none; - border-color: var(--borderColor-default, var(--color-border-default)); - transition-duration: .1s; -} - -.pagination a:active, -.pagination span:active, -.pagination em:active { - border-color: var(--borderColor-muted, var(--color-border-muted)); - transition: none; -} - -.pagination .previous_page, -.pagination .next_page { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.pagination .current, -.pagination .current:hover, -.pagination [aria-current]:not([aria-current=false]) { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-color: transparent; -} - -.pagination .gap, -.pagination .disabled, -.pagination [aria-disabled=true], -.pagination .gap:hover, -.pagination .disabled:hover, -.pagination [aria-disabled=true]:hover { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: default; - border-color: transparent; -} - -@supports (clip-path: polygon(50% 0, 100% 50%, 50% 100%)) { - .pagination .previous_page::before, - .pagination .next_page::after { - display: inline-block; - width: 16px; - height: 16px; - vertical-align: text-bottom; - content: ""; - background-color: currentColor; - } - - .pagination .previous_page::before { - margin-right: 4px; - clip-path: polygon(9.8px 12.8px, 8.7px 12.8px, 4.5px 8.5px, 4.5px 7.5px, 8.7px 3.2px, 9.8px 4.3px, 6.1px 8px, 9.8px 11.7px, 9.8px 12.8px); - } - - .pagination .next_page::after { - margin-left: 4px; - clip-path: polygon(6.2px 3.2px, 7.3px 3.2px, 11.5px 7.5px, 11.5px 8.5px, 7.3px 12.8px, 6.2px 11.7px, 9.9px 8px, 6.2px 4.3px, 6.2px 3.2px); - } -} - -.pagination > * { - display: none; -} - -.pagination > :first-child, -.pagination > :last-child, -.pagination > .previous_page, -.pagination > .next_page { - display: inline-block; -} - -@media (min-width: 544px) { - .pagination > :nth-child(2), - .pagination > :nth-last-child(2), - .pagination > .current, - .pagination > .gap { - display: inline-block; - } -} - -@media (min-width: 768px) { - .pagination > * { - display: inline-block; - } -} - -.paginate-container { - margin-top: 16px; - margin-bottom: 16px; - text-align: center; -} - -.paginate-container .pagination { - display: inline-block; -} - -.tooltipped { - position: relative; -} - -.tooltipped::after { - position: absolute; - z-index: 1000000; - display: none; - padding: .5em .75em; - font: normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - -webkit-font-smoothing: subpixel-antialiased; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-align: center; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-wrap: break-word; - white-space: pre; - pointer-events: none; - content: attr(aria-label); - background: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); - border-radius: 6px; - opacity: 0; -} - -.tooltipped::before { - position: absolute; - z-index: 1000001; - display: none; - width: 0; - height: 0; - color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); - pointer-events: none; - content: ""; - border: 6px solid transparent; - opacity: 0; -} - -@keyframes tooltip-appear { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} - -.tooltipped:hover::before, -.tooltipped:hover::after, -.tooltipped:active::before, -.tooltipped:active::after, -.tooltipped:focus::before, -.tooltipped:focus::after { - display: inline-block; - text-decoration: none; - animation-name: tooltip-appear; - animation-duration: .1s; - animation-fill-mode: forwards; - animation-timing-function: ease-in; - animation-delay: .4s; -} - -.tooltipped-no-delay:hover::before, -.tooltipped-no-delay:hover::after, -.tooltipped-no-delay:active::before, -.tooltipped-no-delay:active::after, -.tooltipped-no-delay:focus::before, -.tooltipped-no-delay:focus::after { - animation-delay: 0s; -} - -.tooltipped-multiline:hover::after, -.tooltipped-multiline:active::after, -.tooltipped-multiline:focus::after { - display: table-cell; -} - -.tooltipped-s::after, -.tooltipped-se::after, -.tooltipped-sw::after { - top: 100%; - right: 50%; - margin-top: 6px; -} - -.tooltipped-s::before, -.tooltipped-se::before, -.tooltipped-sw::before { - top: auto; - right: 50%; - bottom: -7px; - margin-right: -6px; - border-bottom-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); -} - -.tooltipped-se::after { - right: auto; - left: 50%; - margin-left: -16px; -} - -.tooltipped-sw::after { - margin-right: -16px; -} - -.tooltipped-n::after, -.tooltipped-ne::after, -.tooltipped-nw::after { - right: 50%; - bottom: 100%; - margin-bottom: 6px; -} - -.tooltipped-n::before, -.tooltipped-ne::before, -.tooltipped-nw::before { - top: -7px; - right: 50%; - bottom: auto; - margin-right: -6px; - border-top-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); -} - -.tooltipped-ne::after { - right: auto; - left: 50%; - margin-left: -16px; -} - -.tooltipped-nw::after { - margin-right: -16px; -} - -.tooltipped-s::after, -.tooltipped-n::after { - transform: translateX(50%); -} - -.tooltipped-w::after { - right: 100%; - bottom: 50%; - margin-right: 6px; - transform: translateY(50%); -} - -.tooltipped-w::before { - top: 50%; - bottom: 50%; - left: -7px; - margin-top: -6px; - border-left-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); -} - -.tooltipped-e::after { - bottom: 50%; - left: 100%; - margin-left: 6px; - transform: translateY(50%); -} - -.tooltipped-e::before { - top: 50%; - right: -7px; - bottom: 50%; - margin-top: -6px; - border-right-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); -} - -.tooltipped-align-right-1::after, -.tooltipped-align-right-2::after { - right: 0; - margin-right: 0; -} - -.tooltipped-align-right-1::before { - right: 10px; -} - -.tooltipped-align-right-2::before { - right: 15px; -} - -.tooltipped-align-left-1::after, -.tooltipped-align-left-2::after { - left: 0; - margin-left: 0; -} - -.tooltipped-align-left-1::before { - left: 5px; -} - -.tooltipped-align-left-2::before { - left: 10px; -} - -.tooltipped-multiline::after { - width: max-content; - max-width: 250px; - word-wrap: break-word; - white-space: pre-line; - border-collapse: separate; -} - -.tooltipped-multiline.tooltipped-s::after, -.tooltipped-multiline.tooltipped-n::after { - right: auto; - left: 50%; - transform: translateX(-50%); -} - -.tooltipped-multiline.tooltipped-w::after, -.tooltipped-multiline.tooltipped-e::after { - right: 100%; -} - -.tooltipped-sticky::before, -.tooltipped-sticky::after { - display: inline-block; -} - -.tooltipped-sticky.tooltipped-multiline::after { - display: table-cell; -} - -.anim-fade-in { - animation-name: fade-in; - animation-duration: 1s; - animation-timing-function: ease-in-out; -} - -.anim-fade-in.fast { - animation-duration: 300ms; -} - -@keyframes fade-in { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -.anim-fade-out { - animation-name: fade-out; - animation-duration: 1s; - animation-fill-mode: forwards; - animation-timing-function: ease-out; -} - -.anim-fade-out.fast { - animation-duration: .3s; -} - -@keyframes fade-out { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -.anim-fade-up { - opacity: 0; - animation-name: fade-up; - animation-duration: .3s; - animation-fill-mode: forwards; - animation-timing-function: ease-out; - animation-delay: 1s; -} - -@keyframes fade-up { - 0% { - opacity: .8; - transform: translateY(100%); - } - - 100% { - opacity: 1; - transform: translateY(0); - } -} - -.anim-fade-down { - animation-name: fade-down; - animation-duration: .3s; - animation-fill-mode: forwards; - animation-timing-function: ease-in; -} - -@keyframes fade-down { - 0% { - opacity: 1; - transform: translateY(0); - } - - 100% { - opacity: .5; - transform: translateY(100%); - } -} - -.anim-grow-x { - width: 0%; - animation-name: grow-x; - animation-duration: .3s; - animation-fill-mode: forwards; - animation-timing-function: ease; - animation-delay: .5s; -} - -@keyframes grow-x { - to { - width: 100%; - } -} - -.anim-shrink-x { - animation-name: shrink-x; - animation-duration: .3s; - animation-fill-mode: forwards; - animation-timing-function: ease-in-out; - animation-delay: .5s; -} - -@keyframes shrink-x { - to { - width: 0%; - } -} - -.anim-scale-in { - animation-name: scale-in; - animation-duration: .15s; - animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5); -} - -@keyframes scale-in { - 0% { - opacity: 0; - transform: scale(0.5); - } - - 100% { - opacity: 1; - transform: scale(1); - } -} - -.anim-pulse { - animation-name: pulse; - animation-duration: 2s; - animation-timing-function: linear; - animation-iteration-count: infinite; -} - -@keyframes pulse { - 0% { - opacity: .3; - } - - 10% { - opacity: 1; - } - - 100% { - opacity: .3; - } -} - -.anim-pulse-in { - animation-name: pulse-in; - animation-duration: .5s; -} - -@keyframes pulse-in { - 0% { - transform: scale3d(1, 1, 1); - } - - 50% { - transform: scale3d(1.1, 1.1, 1.1); - } - - 100% { - transform: scale3d(1, 1, 1); - } -} - -.hover-grow, -.anim-hover-grow { - transition: transform .3s; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.hover-grow:hover, -.anim-hover-grow:hover { - transform: scale(1.025); -} - -.anim-rotate { - animation: rotate-keyframes 1s linear infinite; -} - -@keyframes rotate-keyframes { - 100% { - transform: rotate(360deg); - } -} - -.border-x { - border-right: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - border-left: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border-y { - border-top: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - border-bottom: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border { - border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border-0 { - border: 0; -} - -.border-top { - border-top: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border-right { - border-right: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border-bottom { - border-bottom: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border-left { - border-left: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); -} - -.border-top-0 { - border-top: 0; -} - -.border-right-0 { - border-right: 0; -} - -.border-bottom-0 { - border-bottom: 0; -} - -.border-left-0 { - border-left: 0; -} - -.rounded { - border-radius: var(--borderRadius-medium, 6px); -} - -.rounded-0 { - border-radius: 0; -} - -.rounded-1 { - border-radius: var(--borderRadius-small, 4px); -} - -.rounded-2 { - border-radius: var(--borderRadius-medium, 6px); -} - -.rounded-3 { - border-radius: var(--borderRadius-large, 8px); -} - -.rounded-top-0 { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.rounded-top-1 { - border-top-left-radius: var(--borderRadius-small, 4px); - border-top-right-radius: var(--borderRadius-small, 4px); -} - -.rounded-top-2 { - border-top-left-radius: var(--borderRadius-medium, 6px); - border-top-right-radius: var(--borderRadius-medium, 6px); -} - -.rounded-top-3 { - border-top-left-radius: var(--borderRadius-medium, 8px); - border-top-right-radius: var(--borderRadius-medium, 8px); -} - -.rounded-right-0 { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.rounded-right-1 { - border-top-right-radius: var(--borderRadius-small, 4px); - border-bottom-right-radius: var(--borderRadius-small, 4px); -} - -.rounded-right-2 { - border-top-right-radius: var(--borderRadius-medium, 6px); - border-bottom-right-radius: var(--borderRadius-medium, 6px); -} - -.rounded-right-3 { - border-top-right-radius: var(--borderRadius-medium, 8px); - border-bottom-right-radius: var(--borderRadius-medium, 8px); -} - -.rounded-bottom-0 { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.rounded-bottom-1 { - border-bottom-right-radius: var(--borderRadius-small, 4px); - border-bottom-left-radius: var(--borderRadius-small, 4px); -} - -.rounded-bottom-2 { - border-bottom-right-radius: var(--borderRadius-medium, 6px); - border-bottom-left-radius: var(--borderRadius-medium, 6px); -} - -.rounded-bottom-3 { - border-bottom-right-radius: var(--borderRadius-medium, 8px); - border-bottom-left-radius: var(--borderRadius-medium, 8px); -} - -.rounded-left-0 { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.rounded-left-1 { - border-bottom-left-radius: var(--borderRadius-small, 4px); - border-top-left-radius: var(--borderRadius-small, 4px); -} - -.rounded-left-2 { - border-bottom-left-radius: var(--borderRadius-medium, 6px); - border-top-left-radius: var(--borderRadius-medium, 6px); -} - -.rounded-left-3 { - border-bottom-left-radius: var(--borderRadius-medium, 8px); - border-top-left-radius: var(--borderRadius-medium, 8px); -} - -@media (min-width: 544px) { - .border-sm { - border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-sm-0 { - border: 0; - } - - .border-sm-top { - border-top: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-sm-right { - border-right: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-sm-bottom { - border-bottom: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-sm-left { - border-left: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-sm-top-0 { - border-top: 0; - } - - .border-sm-right-0 { - border-right: 0; - } - - .border-sm-bottom-0 { - border-bottom: 0; - } - - .border-sm-left-0 { - border-left: 0; - } - - .rounded-sm { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-sm-0 { - border-radius: 0; - } - - .rounded-sm-1 { - border-radius: var(--borderRadius-small, 4px); - } - - .rounded-sm-2 { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-sm-3 { - border-radius: var(--borderRadius-large, 8px); - } - - .rounded-sm-top-0 { - border-top-left-radius: 0; - border-top-right-radius: 0; - } - - .rounded-sm-top-1 { - border-top-left-radius: var(--borderRadius-small, 4px); - border-top-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-sm-top-2 { - border-top-left-radius: var(--borderRadius-medium, 6px); - border-top-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-sm-top-3 { - border-top-left-radius: var(--borderRadius-medium, 8px); - border-top-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-sm-right-0 { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - - .rounded-sm-right-1 { - border-top-right-radius: var(--borderRadius-small, 4px); - border-bottom-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-sm-right-2 { - border-top-right-radius: var(--borderRadius-medium, 6px); - border-bottom-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-sm-right-3 { - border-top-right-radius: var(--borderRadius-medium, 8px); - border-bottom-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-sm-bottom-0 { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - - .rounded-sm-bottom-1 { - border-bottom-right-radius: var(--borderRadius-small, 4px); - border-bottom-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-sm-bottom-2 { - border-bottom-right-radius: var(--borderRadius-medium, 6px); - border-bottom-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-sm-bottom-3 { - border-bottom-right-radius: var(--borderRadius-medium, 8px); - border-bottom-left-radius: var(--borderRadius-medium, 8px); - } - - .rounded-sm-left-0 { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .rounded-sm-left-1 { - border-bottom-left-radius: var(--borderRadius-small, 4px); - border-top-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-sm-left-2 { - border-bottom-left-radius: var(--borderRadius-medium, 6px); - border-top-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-sm-left-3 { - border-bottom-left-radius: var(--borderRadius-medium, 8px); - border-top-left-radius: var(--borderRadius-medium, 8px); - } -} - -@media (min-width: 768px) { - .border-md { - border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-md-0 { - border: 0; - } - - .border-md-top { - border-top: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-md-right { - border-right: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-md-bottom { - border-bottom: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-md-left { - border-left: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-md-top-0 { - border-top: 0; - } - - .border-md-right-0 { - border-right: 0; - } - - .border-md-bottom-0 { - border-bottom: 0; - } - - .border-md-left-0 { - border-left: 0; - } - - .rounded-md { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-md-0 { - border-radius: 0; - } - - .rounded-md-1 { - border-radius: var(--borderRadius-small, 4px); - } - - .rounded-md-2 { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-md-3 { - border-radius: var(--borderRadius-large, 8px); - } - - .rounded-md-top-0 { - border-top-left-radius: 0; - border-top-right-radius: 0; - } - - .rounded-md-top-1 { - border-top-left-radius: var(--borderRadius-small, 4px); - border-top-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-md-top-2 { - border-top-left-radius: var(--borderRadius-medium, 6px); - border-top-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-md-top-3 { - border-top-left-radius: var(--borderRadius-medium, 8px); - border-top-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-md-right-0 { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - - .rounded-md-right-1 { - border-top-right-radius: var(--borderRadius-small, 4px); - border-bottom-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-md-right-2 { - border-top-right-radius: var(--borderRadius-medium, 6px); - border-bottom-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-md-right-3 { - border-top-right-radius: var(--borderRadius-medium, 8px); - border-bottom-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-md-bottom-0 { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - - .rounded-md-bottom-1 { - border-bottom-right-radius: var(--borderRadius-small, 4px); - border-bottom-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-md-bottom-2 { - border-bottom-right-radius: var(--borderRadius-medium, 6px); - border-bottom-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-md-bottom-3 { - border-bottom-right-radius: var(--borderRadius-medium, 8px); - border-bottom-left-radius: var(--borderRadius-medium, 8px); - } - - .rounded-md-left-0 { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .rounded-md-left-1 { - border-bottom-left-radius: var(--borderRadius-small, 4px); - border-top-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-md-left-2 { - border-bottom-left-radius: var(--borderRadius-medium, 6px); - border-top-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-md-left-3 { - border-bottom-left-radius: var(--borderRadius-medium, 8px); - border-top-left-radius: var(--borderRadius-medium, 8px); - } -} - -@media (min-width: 1012px) { - .border-lg { - border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-lg-0 { - border: 0; - } - - .border-lg-top { - border-top: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-lg-right { - border-right: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-lg-bottom { - border-bottom: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-lg-left { - border-left: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-lg-top-0 { - border-top: 0; - } - - .border-lg-right-0 { - border-right: 0; - } - - .border-lg-bottom-0 { - border-bottom: 0; - } - - .border-lg-left-0 { - border-left: 0; - } - - .rounded-lg { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-lg-0 { - border-radius: 0; - } - - .rounded-lg-1 { - border-radius: var(--borderRadius-small, 4px); - } - - .rounded-lg-2 { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-lg-3 { - border-radius: var(--borderRadius-large, 8px); - } - - .rounded-lg-top-0 { - border-top-left-radius: 0; - border-top-right-radius: 0; - } - - .rounded-lg-top-1 { - border-top-left-radius: var(--borderRadius-small, 4px); - border-top-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-lg-top-2 { - border-top-left-radius: var(--borderRadius-medium, 6px); - border-top-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-lg-top-3 { - border-top-left-radius: var(--borderRadius-medium, 8px); - border-top-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-lg-right-0 { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - - .rounded-lg-right-1 { - border-top-right-radius: var(--borderRadius-small, 4px); - border-bottom-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-lg-right-2 { - border-top-right-radius: var(--borderRadius-medium, 6px); - border-bottom-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-lg-right-3 { - border-top-right-radius: var(--borderRadius-medium, 8px); - border-bottom-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-lg-bottom-0 { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - - .rounded-lg-bottom-1 { - border-bottom-right-radius: var(--borderRadius-small, 4px); - border-bottom-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-lg-bottom-2 { - border-bottom-right-radius: var(--borderRadius-medium, 6px); - border-bottom-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-lg-bottom-3 { - border-bottom-right-radius: var(--borderRadius-medium, 8px); - border-bottom-left-radius: var(--borderRadius-medium, 8px); - } - - .rounded-lg-left-0 { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .rounded-lg-left-1 { - border-bottom-left-radius: var(--borderRadius-small, 4px); - border-top-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-lg-left-2 { - border-bottom-left-radius: var(--borderRadius-medium, 6px); - border-top-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-lg-left-3 { - border-bottom-left-radius: var(--borderRadius-medium, 8px); - border-top-left-radius: var(--borderRadius-medium, 8px); - } -} - -@media (min-width: 1280px) { - .border-xl { - border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-xl-0 { - border: 0; - } - - .border-xl-top { - border-top: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-xl-right { - border-right: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-xl-bottom { - border-bottom: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-xl-left { - border-left: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)); - } - - .border-xl-top-0 { - border-top: 0; - } - - .border-xl-right-0 { - border-right: 0; - } - - .border-xl-bottom-0 { - border-bottom: 0; - } - - .border-xl-left-0 { - border-left: 0; - } - - .rounded-xl { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-xl-0 { - border-radius: 0; - } - - .rounded-xl-1 { - border-radius: var(--borderRadius-small, 4px); - } - - .rounded-xl-2 { - border-radius: var(--borderRadius-medium, 6px); - } - - .rounded-xl-3 { - border-radius: var(--borderRadius-large, 8px); - } - - .rounded-xl-top-0 { - border-top-left-radius: 0; - border-top-right-radius: 0; - } - - .rounded-xl-top-1 { - border-top-left-radius: var(--borderRadius-small, 4px); - border-top-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-xl-top-2 { - border-top-left-radius: var(--borderRadius-medium, 6px); - border-top-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-xl-top-3 { - border-top-left-radius: var(--borderRadius-medium, 8px); - border-top-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-xl-right-0 { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - - .rounded-xl-right-1 { - border-top-right-radius: var(--borderRadius-small, 4px); - border-bottom-right-radius: var(--borderRadius-small, 4px); - } - - .rounded-xl-right-2 { - border-top-right-radius: var(--borderRadius-medium, 6px); - border-bottom-right-radius: var(--borderRadius-medium, 6px); - } - - .rounded-xl-right-3 { - border-top-right-radius: var(--borderRadius-medium, 8px); - border-bottom-right-radius: var(--borderRadius-medium, 8px); - } - - .rounded-xl-bottom-0 { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - } - - .rounded-xl-bottom-1 { - border-bottom-right-radius: var(--borderRadius-small, 4px); - border-bottom-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-xl-bottom-2 { - border-bottom-right-radius: var(--borderRadius-medium, 6px); - border-bottom-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-xl-bottom-3 { - border-bottom-right-radius: var(--borderRadius-medium, 8px); - border-bottom-left-radius: var(--borderRadius-medium, 8px); - } - - .rounded-xl-left-0 { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .rounded-xl-left-1 { - border-bottom-left-radius: var(--borderRadius-small, 4px); - border-top-left-radius: var(--borderRadius-small, 4px); - } - - .rounded-xl-left-2 { - border-bottom-left-radius: var(--borderRadius-medium, 6px); - border-top-left-radius: var(--borderRadius-medium, 6px); - } - - .rounded-xl-left-3 { - border-bottom-left-radius: var(--borderRadius-medium, 8px); - border-top-left-radius: var(--borderRadius-medium, 8px); - } -} - -.circle { - border-radius: var(--borderRadius-full, 50%); -} - -.border-dashed { - border-style: dashed; -} - -.color-shadow-small { - box-shadow: var(--shadow-resting-small, var(--color-shadow-small)); -} - -.color-shadow-medium { - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)); -} - -.color-shadow-large { - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); -} - -.color-shadow-extra-large { - box-shadow: var(--shadow-floating-xlarge, var(--color-shadow-extra-large)); -} - -.box-shadow-none { - box-shadow: none; -} - -.color-fg-default { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.color-fg-muted { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.color-fg-subtle { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.color-fg-accent { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.color-fg-success { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.color-fg-attention { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.color-fg-severe { - color: var(--fgColor-severe, var(--color-severe-fg)); -} - -.color-fg-danger { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.color-fg-open { - color: var(--fgColor-open, var(--color-open-fg)); -} - -.color-fg-closed { - color: var(--fgColor-closed, var(--color-closed-fg)); -} - -.color-fg-done { - color: var(--fgColor-done, var(--color-done-fg)); -} - -.color-fg-sponsors { - color: var(--fgColor-sponsors, var(--color-sponsors-fg)); -} - -.color-fg-on-emphasis { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.color-bg-default { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.color-bg-overlay { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.color-bg-inset { - background-color: var(--bgColor-inset, var(--color-canvas-inset)); -} - -.color-bg-subtle { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.color-bg-emphasis { - background-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); -} - -.color-bg-accent { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.color-bg-accent-emphasis { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.color-bg-success { - background-color: var(--bgColor-success-muted, var(--color-success-subtle)); -} - -.color-bg-success-emphasis { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.color-bg-attention { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.color-bg-attention-emphasis { - background-color: var(--bgColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.color-bg-severe { - background-color: var(--bgColor-severe-muted, var(--color-severe-subtle)); -} - -.color-bg-severe-emphasis { - background-color: var(--bgColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.color-bg-danger { - background-color: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.color-bg-danger-emphasis { - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.color-bg-open { - background-color: var(--bgColor-open-muted, var(--color-open-subtle)); -} - -.color-bg-open-emphasis { - background-color: var(--bgColor-open-emphasis, var(--color-open-emphasis)); -} - -.color-bg-closed { - background-color: var(--bgColor-closed-muted, var(--color-closed-subtle)); -} - -.color-bg-closed-emphasis { - background-color: var(--bgColor-closed-emphasis, var(--color-closed-emphasis)); -} - -.color-bg-done { - background-color: var(--bgColor-done-muted, var(--color-done-subtle)); -} - -.color-bg-done-emphasis { - background-color: var(--bgColor-done-emphasis, var(--color-done-emphasis)); -} - -.color-bg-sponsors { - background-color: var(--bgColor-sponsors-muted, var(--color-sponsors-subtle)); -} - -.color-bg-sponsors-emphasis { - background-color: var(--bgColor-sponsors-emphasis, var(--color-sponsors-emphasis)); -} - -.color-bg-transparent { - background-color: transparent; -} - -.color-border-default { - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.color-border-muted { - border-color: var(--borderColor-muted, var(--color-border-muted)); -} - -.color-border-subtle { - border-color: var(--borderColor-muted, var(--color-border-subtle)); -} - -.color-border-accent { - border-color: var(--borderColor-accent-muted, var(--color-accent-muted)); -} - -.color-border-accent-emphasis { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.color-border-success { - border-color: var(--borderColor-success-muted, var(--color-success-muted)); -} - -.color-border-success-emphasis { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.color-border-attention { - border-color: var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.color-border-attention-emphasis { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.color-border-severe { - border-color: var(--borderColor-severe-muted, var(--color-severe-muted)); -} - -.color-border-severe-emphasis { - border-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.color-border-danger { - border-color: var(--borderColor-danger-muted, var(--color-danger-muted)); -} - -.color-border-danger-emphasis { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.color-border-open { - border-color: var(--borderColor-open-muted, var(--color-open-muted)); -} - -.color-border-open-emphasis { - border-color: var(--borderColor-open-emphasis, var(--color-open-emphasis)); -} - -.color-border-closed { - border-color: var(--borderColor-closed-muted, var(--color-closed-muted)); -} - -.color-border-closed-emphasis { - border-color: var(--borderColor-closed-emphasis, var(--color-closed-emphasis)); -} - -.color-border-done { - border-color: var(--borderColor-done-muted, var(--color-done-muted)); -} - -.color-border-done-emphasis { - border-color: var(--borderColor-done-emphasis, var(--color-done-emphasis)); -} - -.color-border-sponsors { - border-color: var(--borderColor-sponsors-muted, var(--color-sponsors-muted)); -} - -.color-border-sponsors-emphasis { - border-color: var(--borderColor-sponsors-emphasis, var(--color-sponsors-emphasis)); -} - -.color-fg-inherit { - color: inherit; -} - -.details-overlay[open] > summary::before { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 80; - display: block; - cursor: default; - content: " "; - background: transparent; -} - -.details-overlay-dark[open] > summary::before { - z-index: 111; - background: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); -} - -.details-reset > summary { - list-style: none; - transition: 80ms cubic-bezier(0.33, 1, 0.68, 1); - transition-property: color,background-color,box-shadow,border-color; -} - -.details-reset > summary:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.details-reset > summary:focus:not(:focus-visible) { - outline: solid 1px transparent; -} - -.details-reset > summary:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.details-reset > summary.btn-primary:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.details-reset > summary.btn-primary:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.details-reset > summary.btn-primary:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.details-reset > summary::before { - display: none; -} - -.details-reset > summary::-webkit-details-marker { - display: none; -} - -.details-overlay > summary { - transition: 80ms cubic-bezier(0.33, 1, 0.68, 1); - transition-property: color,background-color,box-shadow,border-color; -} - -.details-overlay > summary:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.details-overlay > summary:focus:not(:focus-visible) { - outline: solid 1px transparent; -} - -.details-overlay > summary:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.details-overlay > summary.btn-primary:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.details-overlay > summary.btn-primary:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.details-overlay > summary.btn-primary:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.flex-row { - flex-direction: row; -} - -.flex-row-reverse { - flex-direction: row-reverse; -} - -.flex-column { - flex-direction: column; -} - -.flex-column-reverse { - flex-direction: column-reverse; -} - -.flex-wrap { - flex-wrap: wrap; -} - -.flex-nowrap { - flex-wrap: nowrap; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse; -} - -.flex-justify-start { - justify-content: flex-start; -} - -.flex-justify-end { - justify-content: flex-end; -} - -.flex-justify-center { - justify-content: center; -} - -.flex-justify-between { - justify-content: space-between; -} - -.flex-justify-around { - justify-content: space-around; -} - -.flex-items-start { - align-items: flex-start; -} - -.flex-items-end { - align-items: flex-end; -} - -.flex-items-center { - align-items: center; -} - -.flex-items-baseline { - align-items: baseline; -} - -.flex-items-stretch { - align-items: stretch; -} - -.flex-content-start { - align-content: flex-start; -} - -.flex-content-end { - align-content: flex-end; -} - -.flex-content-center { - align-content: center; -} - -.flex-content-between { - align-content: space-between; -} - -.flex-content-around { - align-content: space-around; -} - -.flex-content-stretch { - align-content: stretch; -} - -.flex-1 { - flex: 1; -} - -.flex-auto { - flex: auto; -} - -.flex-grow-0 { - flex-grow: 0; -} - -.flex-shrink-0 { - flex-shrink: 0; -} - -.flex-self-auto { - align-self: auto; -} - -.flex-self-start { - align-self: flex-start; -} - -.flex-self-end { - align-self: flex-end; -} - -.flex-self-center { - align-self: center; -} - -.flex-self-baseline { - align-self: baseline; -} - -.flex-self-stretch { - align-self: stretch; -} - -.flex-order-1 { - order: 1; -} - -.flex-order-2 { - order: 2; -} - -.flex-order-none { - order: inherit; -} - -@media (min-width: 544px) { - .flex-sm-row { - flex-direction: row; - } - - .flex-sm-row-reverse { - flex-direction: row-reverse; - } - - .flex-sm-column { - flex-direction: column; - } - - .flex-sm-column-reverse { - flex-direction: column-reverse; - } - - .flex-sm-wrap { - flex-wrap: wrap; - } - - .flex-sm-nowrap { - flex-wrap: nowrap; - } - - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .flex-sm-justify-start { - justify-content: flex-start; - } - - .flex-sm-justify-end { - justify-content: flex-end; - } - - .flex-sm-justify-center { - justify-content: center; - } - - .flex-sm-justify-between { - justify-content: space-between; - } - - .flex-sm-justify-around { - justify-content: space-around; - } - - .flex-sm-items-start { - align-items: flex-start; - } - - .flex-sm-items-end { - align-items: flex-end; - } - - .flex-sm-items-center { - align-items: center; - } - - .flex-sm-items-baseline { - align-items: baseline; - } - - .flex-sm-items-stretch { - align-items: stretch; - } - - .flex-sm-content-start { - align-content: flex-start; - } - - .flex-sm-content-end { - align-content: flex-end; - } - - .flex-sm-content-center { - align-content: center; - } - - .flex-sm-content-between { - align-content: space-between; - } - - .flex-sm-content-around { - align-content: space-around; - } - - .flex-sm-content-stretch { - align-content: stretch; - } - - .flex-sm-1 { - flex: 1; - } - - .flex-sm-auto { - flex: auto; - } - - .flex-sm-grow-0 { - flex-grow: 0; - } - - .flex-sm-shrink-0 { - flex-shrink: 0; - } - - .flex-sm-self-auto { - align-self: auto; - } - - .flex-sm-self-start { - align-self: flex-start; - } - - .flex-sm-self-end { - align-self: flex-end; - } - - .flex-sm-self-center { - align-self: center; - } - - .flex-sm-self-baseline { - align-self: baseline; - } - - .flex-sm-self-stretch { - align-self: stretch; - } - - .flex-sm-order-1 { - order: 1; - } - - .flex-sm-order-2 { - order: 2; - } - - .flex-sm-order-none { - order: inherit; - } -} - -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row; - } - - .flex-md-row-reverse { - flex-direction: row-reverse; - } - - .flex-md-column { - flex-direction: column; - } - - .flex-md-column-reverse { - flex-direction: column-reverse; - } - - .flex-md-wrap { - flex-wrap: wrap; - } - - .flex-md-nowrap { - flex-wrap: nowrap; - } - - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .flex-md-justify-start { - justify-content: flex-start; - } - - .flex-md-justify-end { - justify-content: flex-end; - } - - .flex-md-justify-center { - justify-content: center; - } - - .flex-md-justify-between { - justify-content: space-between; - } - - .flex-md-justify-around { - justify-content: space-around; - } - - .flex-md-items-start { - align-items: flex-start; - } - - .flex-md-items-end { - align-items: flex-end; - } - - .flex-md-items-center { - align-items: center; - } - - .flex-md-items-baseline { - align-items: baseline; - } - - .flex-md-items-stretch { - align-items: stretch; - } - - .flex-md-content-start { - align-content: flex-start; - } - - .flex-md-content-end { - align-content: flex-end; - } - - .flex-md-content-center { - align-content: center; - } - - .flex-md-content-between { - align-content: space-between; - } - - .flex-md-content-around { - align-content: space-around; - } - - .flex-md-content-stretch { - align-content: stretch; - } - - .flex-md-1 { - flex: 1; - } - - .flex-md-auto { - flex: auto; - } - - .flex-md-grow-0 { - flex-grow: 0; - } - - .flex-md-shrink-0 { - flex-shrink: 0; - } - - .flex-md-self-auto { - align-self: auto; - } - - .flex-md-self-start { - align-self: flex-start; - } - - .flex-md-self-end { - align-self: flex-end; - } - - .flex-md-self-center { - align-self: center; - } - - .flex-md-self-baseline { - align-self: baseline; - } - - .flex-md-self-stretch { - align-self: stretch; - } - - .flex-md-order-1 { - order: 1; - } - - .flex-md-order-2 { - order: 2; - } - - .flex-md-order-none { - order: inherit; - } -} - -@media (min-width: 1012px) { - .flex-lg-row { - flex-direction: row; - } - - .flex-lg-row-reverse { - flex-direction: row-reverse; - } - - .flex-lg-column { - flex-direction: column; - } - - .flex-lg-column-reverse { - flex-direction: column-reverse; - } - - .flex-lg-wrap { - flex-wrap: wrap; - } - - .flex-lg-nowrap { - flex-wrap: nowrap; - } - - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .flex-lg-justify-start { - justify-content: flex-start; - } - - .flex-lg-justify-end { - justify-content: flex-end; - } - - .flex-lg-justify-center { - justify-content: center; - } - - .flex-lg-justify-between { - justify-content: space-between; - } - - .flex-lg-justify-around { - justify-content: space-around; - } - - .flex-lg-items-start { - align-items: flex-start; - } - - .flex-lg-items-end { - align-items: flex-end; - } - - .flex-lg-items-center { - align-items: center; - } - - .flex-lg-items-baseline { - align-items: baseline; - } - - .flex-lg-items-stretch { - align-items: stretch; - } - - .flex-lg-content-start { - align-content: flex-start; - } - - .flex-lg-content-end { - align-content: flex-end; - } - - .flex-lg-content-center { - align-content: center; - } - - .flex-lg-content-between { - align-content: space-between; - } - - .flex-lg-content-around { - align-content: space-around; - } - - .flex-lg-content-stretch { - align-content: stretch; - } - - .flex-lg-1 { - flex: 1; - } - - .flex-lg-auto { - flex: auto; - } - - .flex-lg-grow-0 { - flex-grow: 0; - } - - .flex-lg-shrink-0 { - flex-shrink: 0; - } - - .flex-lg-self-auto { - align-self: auto; - } - - .flex-lg-self-start { - align-self: flex-start; - } - - .flex-lg-self-end { - align-self: flex-end; - } - - .flex-lg-self-center { - align-self: center; - } - - .flex-lg-self-baseline { - align-self: baseline; - } - - .flex-lg-self-stretch { - align-self: stretch; - } - - .flex-lg-order-1 { - order: 1; - } - - .flex-lg-order-2 { - order: 2; - } - - .flex-lg-order-none { - order: inherit; - } -} - -@media (min-width: 1280px) { - .flex-xl-row { - flex-direction: row; - } - - .flex-xl-row-reverse { - flex-direction: row-reverse; - } - - .flex-xl-column { - flex-direction: column; - } - - .flex-xl-column-reverse { - flex-direction: column-reverse; - } - - .flex-xl-wrap { - flex-wrap: wrap; - } - - .flex-xl-nowrap { - flex-wrap: nowrap; - } - - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse; - } - - .flex-xl-justify-start { - justify-content: flex-start; - } - - .flex-xl-justify-end { - justify-content: flex-end; - } - - .flex-xl-justify-center { - justify-content: center; - } - - .flex-xl-justify-between { - justify-content: space-between; - } - - .flex-xl-justify-around { - justify-content: space-around; - } - - .flex-xl-items-start { - align-items: flex-start; - } - - .flex-xl-items-end { - align-items: flex-end; - } - - .flex-xl-items-center { - align-items: center; - } - - .flex-xl-items-baseline { - align-items: baseline; - } - - .flex-xl-items-stretch { - align-items: stretch; - } - - .flex-xl-content-start { - align-content: flex-start; - } - - .flex-xl-content-end { - align-content: flex-end; - } - - .flex-xl-content-center { - align-content: center; - } - - .flex-xl-content-between { - align-content: space-between; - } - - .flex-xl-content-around { - align-content: space-around; - } - - .flex-xl-content-stretch { - align-content: stretch; - } - - .flex-xl-1 { - flex: 1; - } - - .flex-xl-auto { - flex: auto; - } - - .flex-xl-grow-0 { - flex-grow: 0; - } - - .flex-xl-shrink-0 { - flex-shrink: 0; - } - - .flex-xl-self-auto { - align-self: auto; - } - - .flex-xl-self-start { - align-self: flex-start; - } - - .flex-xl-self-end { - align-self: flex-end; - } - - .flex-xl-self-center { - align-self: center; - } - - .flex-xl-self-baseline { - align-self: baseline; - } - - .flex-xl-self-stretch { - align-self: stretch; - } - - .flex-xl-order-1 { - order: 1; - } - - .flex-xl-order-2 { - order: 2; - } - - .flex-xl-order-none { - order: inherit; - } -} - -.position-static { - position: static; -} - -.position-relative { - position: relative; -} - -.position-absolute { - position: absolute; -} - -.position-fixed { - position: fixed; -} - -.position-sticky { - position: sticky; -} - -@media (min-width: 544px) { - .position-sm-static { - position: static; - } - - .position-sm-relative { - position: relative; - } - - .position-sm-absolute { - position: absolute; - } - - .position-sm-fixed { - position: fixed; - } - - .position-sm-sticky { - position: sticky; - } -} - -@media (min-width: 768px) { - .position-md-static { - position: static; - } - - .position-md-relative { - position: relative; - } - - .position-md-absolute { - position: absolute; - } - - .position-md-fixed { - position: fixed; - } - - .position-md-sticky { - position: sticky; - } -} - -@media (min-width: 1012px) { - .position-lg-static { - position: static; - } - - .position-lg-relative { - position: relative; - } - - .position-lg-absolute { - position: absolute; - } - - .position-lg-fixed { - position: fixed; - } - - .position-lg-sticky { - position: sticky; - } -} - -@media (min-width: 1280px) { - .position-xl-static { - position: static; - } - - .position-xl-relative { - position: relative; - } - - .position-xl-absolute { - position: absolute; - } - - .position-xl-fixed { - position: fixed; - } - - .position-xl-sticky { - position: sticky; - } -} - -.top-0 { - top: 0; -} - -.right-0 { - right: 0; -} - -.bottom-0 { - bottom: 0; -} - -.left-0 { - left: 0; -} - -.top-auto { - top: auto; -} - -.right-auto { - right: auto; -} - -.bottom-auto { - bottom: auto; -} - -.left-auto { - left: auto; -} - -@media (min-width: 544px) { - .top-sm-0 { - top: 0; - } - - .right-sm-0 { - right: 0; - } - - .bottom-sm-0 { - bottom: 0; - } - - .left-sm-0 { - left: 0; - } - - .top-sm-auto { - top: auto; - } - - .right-sm-auto { - right: auto; - } - - .bottom-sm-auto { - bottom: auto; - } - - .left-sm-auto { - left: auto; - } -} - -@media (min-width: 768px) { - .top-md-0 { - top: 0; - } - - .right-md-0 { - right: 0; - } - - .bottom-md-0 { - bottom: 0; - } - - .left-md-0 { - left: 0; - } - - .top-md-auto { - top: auto; - } - - .right-md-auto { - right: auto; - } - - .bottom-md-auto { - bottom: auto; - } - - .left-md-auto { - left: auto; - } -} - -@media (min-width: 1012px) { - .top-lg-0 { - top: 0; - } - - .right-lg-0 { - right: 0; - } - - .bottom-lg-0 { - bottom: 0; - } - - .left-lg-0 { - left: 0; - } - - .top-lg-auto { - top: auto; - } - - .right-lg-auto { - right: auto; - } - - .bottom-lg-auto { - bottom: auto; - } - - .left-lg-auto { - left: auto; - } -} - -@media (min-width: 1280px) { - .top-xl-0 { - top: 0; - } - - .right-xl-0 { - right: 0; - } - - .bottom-xl-0 { - bottom: 0; - } - - .left-xl-0 { - left: 0; - } - - .top-xl-auto { - top: auto; - } - - .right-xl-auto { - right: auto; - } - - .bottom-xl-auto { - bottom: auto; - } - - .left-xl-auto { - left: auto; - } -} - -.v-align-middle { - vertical-align: middle; -} - -.v-align-top { - vertical-align: top; -} - -.v-align-bottom { - vertical-align: bottom; -} - -.v-align-text-top { - vertical-align: text-top; -} - -.v-align-text-bottom { - vertical-align: text-bottom; -} - -.v-align-baseline { - vertical-align: baseline; -} - -.overflow-visible { - overflow: visible; -} - -.overflow-x-visible { - overflow-x: visible; -} - -.overflow-y-visible { - overflow-y: visible; -} - -.overflow-hidden { - overflow: hidden; -} - -.overflow-x-hidden { - overflow-x: hidden; -} - -.overflow-y-hidden { - overflow-y: hidden; -} - -.overflow-auto { - overflow: auto; -} - -.overflow-x-auto { - overflow-x: auto; -} - -.overflow-y-auto { - overflow-y: auto; -} - -.overflow-scroll { - overflow: scroll; -} - -.overflow-x-scroll { - overflow-x: scroll; -} - -.overflow-y-scroll { - overflow-y: scroll; -} - -@media (min-width: 544px) { - .overflow-sm-visible { - overflow: visible; - } - - .overflow-sm-x-visible { - overflow-x: visible; - } - - .overflow-sm-y-visible { - overflow-y: visible; - } - - .overflow-sm-hidden { - overflow: hidden; - } - - .overflow-sm-x-hidden { - overflow-x: hidden; - } - - .overflow-sm-y-hidden { - overflow-y: hidden; - } - - .overflow-sm-auto { - overflow: auto; - } - - .overflow-sm-x-auto { - overflow-x: auto; - } - - .overflow-sm-y-auto { - overflow-y: auto; - } - - .overflow-sm-scroll { - overflow: scroll; - } - - .overflow-sm-x-scroll { - overflow-x: scroll; - } - - .overflow-sm-y-scroll { - overflow-y: scroll; - } -} - -@media (min-width: 768px) { - .overflow-md-visible { - overflow: visible; - } - - .overflow-md-x-visible { - overflow-x: visible; - } - - .overflow-md-y-visible { - overflow-y: visible; - } - - .overflow-md-hidden { - overflow: hidden; - } - - .overflow-md-x-hidden { - overflow-x: hidden; - } - - .overflow-md-y-hidden { - overflow-y: hidden; - } - - .overflow-md-auto { - overflow: auto; - } - - .overflow-md-x-auto { - overflow-x: auto; - } - - .overflow-md-y-auto { - overflow-y: auto; - } - - .overflow-md-scroll { - overflow: scroll; - } - - .overflow-md-x-scroll { - overflow-x: scroll; - } - - .overflow-md-y-scroll { - overflow-y: scroll; - } -} - -@media (min-width: 1012px) { - .overflow-lg-visible { - overflow: visible; - } - - .overflow-lg-x-visible { - overflow-x: visible; - } - - .overflow-lg-y-visible { - overflow-y: visible; - } - - .overflow-lg-hidden { - overflow: hidden; - } - - .overflow-lg-x-hidden { - overflow-x: hidden; - } - - .overflow-lg-y-hidden { - overflow-y: hidden; - } - - .overflow-lg-auto { - overflow: auto; - } - - .overflow-lg-x-auto { - overflow-x: auto; - } - - .overflow-lg-y-auto { - overflow-y: auto; - } - - .overflow-lg-scroll { - overflow: scroll; - } - - .overflow-lg-x-scroll { - overflow-x: scroll; - } - - .overflow-lg-y-scroll { - overflow-y: scroll; - } -} - -@media (min-width: 1280px) { - .overflow-xl-visible { - overflow: visible; - } - - .overflow-xl-x-visible { - overflow-x: visible; - } - - .overflow-xl-y-visible { - overflow-y: visible; - } - - .overflow-xl-hidden { - overflow: hidden; - } - - .overflow-xl-x-hidden { - overflow-x: hidden; - } - - .overflow-xl-y-hidden { - overflow-y: hidden; - } - - .overflow-xl-auto { - overflow: auto; - } - - .overflow-xl-x-auto { - overflow-x: auto; - } - - .overflow-xl-y-auto { - overflow-y: auto; - } - - .overflow-xl-scroll { - overflow: scroll; - } - - .overflow-xl-x-scroll { - overflow-x: scroll; - } - - .overflow-xl-y-scroll { - overflow-y: scroll; - } -} - -.clearfix::before { - display: table; - content: ""; -} - -.clearfix::after { - display: table; - clear: both; - content: ""; -} - -.float-left { - float: left; -} - -.float-right { - float: right; -} - -.float-none { - float: none; -} - -@media (min-width: 544px) { - .float-sm-left { - float: left; - } - - .float-sm-right { - float: right; - } - - .float-sm-none { - float: none; - } -} - -@media (min-width: 768px) { - .float-md-left { - float: left; - } - - .float-md-right { - float: right; - } - - .float-md-none { - float: none; - } -} - -@media (min-width: 1012px) { - .float-lg-left { - float: left; - } - - .float-lg-right { - float: right; - } - - .float-lg-none { - float: none; - } -} - -@media (min-width: 1280px) { - .float-xl-left { - float: left; - } - - .float-xl-right { - float: right; - } - - .float-xl-none { - float: none; - } -} - -.width-fit { - max-width: 100%; -} - -.width-full { - width: 100%; -} - -.width-comfortable { - max-width: 65ch; -} - -.height-fit { - max-height: 100%; -} - -.height-full { - height: 100%; -} - -.min-width-0 { - min-width: 0; -} - -.width-auto { - width: auto; -} - -.direction-rtl { - direction: rtl; -} - -.direction-ltr { - direction: ltr; -} - -@media (min-width: 544px) { - .width-sm-auto { - width: auto; - } - - .direction-sm-rtl { - direction: rtl; - } - - .direction-sm-ltr { - direction: ltr; - } -} - -@media (min-width: 768px) { - .width-md-auto { - width: auto; - } - - .direction-md-rtl { - direction: rtl; - } - - .direction-md-ltr { - direction: ltr; - } -} - -@media (min-width: 1012px) { - .width-lg-auto { - width: auto; - } - - .direction-lg-rtl { - direction: rtl; - } - - .direction-lg-ltr { - direction: ltr; - } -} - -@media (min-width: 1280px) { - .width-xl-auto { - width: auto; - } - - .direction-xl-rtl { - direction: rtl; - } - - .direction-xl-ltr { - direction: ltr; - } -} - -.m-0 { - margin: 0; -} - -.mt-0 { - margin-top: 0; -} - -.mb-0 { - margin-bottom: 0; -} - -.mr-0 { - margin-right: 0; -} - -.ml-0 { - margin-left: 0; -} - -.mx-0 { - margin-right: 0; - margin-left: 0; -} - -.my-0 { - margin-top: 0; - margin-bottom: 0; -} - -.m-1 { - margin: var(--base-size-4, 4px); -} - -.mt-1 { - margin-top: var(--base-size-4, 4px); -} - -.mb-1 { - margin-bottom: var(--base-size-4, 4px); -} - -.mr-1 { - margin-right: var(--base-size-4, 4px); -} - -.ml-1 { - margin-left: var(--base-size-4, 4px); -} - -.mt-n1 { - margin-top: calc(-1*var(--base-size-4, 4px)); -} - -.mb-n1 { - margin-bottom: calc(-1*var(--base-size-4, 4px)); -} - -.mr-n1 { - margin-right: calc(-1*var(--base-size-4, 4px)); -} - -.ml-n1 { - margin-left: calc(-1*var(--base-size-4, 4px)); -} - -.mx-1 { - margin-right: var(--base-size-4, 4px); - margin-left: var(--base-size-4, 4px); -} - -.my-1 { - margin-top: var(--base-size-4, 4px); - margin-bottom: var(--base-size-4, 4px); -} - -.m-2 { - margin: var(--base-size-8, 8px); -} - -.mt-2 { - margin-top: var(--base-size-8, 8px); -} - -.mb-2 { - margin-bottom: var(--base-size-8, 8px); -} - -.mr-2 { - margin-right: var(--base-size-8, 8px); -} - -.ml-2 { - margin-left: var(--base-size-8, 8px); -} - -.mt-n2 { - margin-top: calc(-1*var(--base-size-8, 8px)); -} - -.mb-n2 { - margin-bottom: calc(-1*var(--base-size-8, 8px)); -} - -.mr-n2 { - margin-right: calc(-1*var(--base-size-8, 8px)); -} - -.ml-n2 { - margin-left: calc(-1*var(--base-size-8, 8px)); -} - -.mx-2 { - margin-right: var(--base-size-8, 8px); - margin-left: var(--base-size-8, 8px); -} - -.my-2 { - margin-top: var(--base-size-8, 8px); - margin-bottom: var(--base-size-8, 8px); -} - -.m-3 { - margin: var(--base-size-16, 16px); -} - -.mt-3 { - margin-top: var(--base-size-16, 16px); -} - -.mb-3 { - margin-bottom: var(--base-size-16, 16px); -} - -.mr-3 { - margin-right: var(--base-size-16, 16px); -} - -.ml-3 { - margin-left: var(--base-size-16, 16px); -} - -.mt-n3 { - margin-top: calc(-1*var(--base-size-16, 16px)); -} - -.mb-n3 { - margin-bottom: calc(-1*var(--base-size-16, 16px)); -} - -.mr-n3 { - margin-right: calc(-1*var(--base-size-16, 16px)); -} - -.ml-n3 { - margin-left: calc(-1*var(--base-size-16, 16px)); -} - -.mx-3 { - margin-right: var(--base-size-16, 16px); - margin-left: var(--base-size-16, 16px); -} - -.my-3 { - margin-top: var(--base-size-16, 16px); - margin-bottom: var(--base-size-16, 16px); -} - -.m-4 { - margin: var(--base-size-24, 24px); -} - -.mt-4 { - margin-top: var(--base-size-24, 24px); -} - -.mb-4 { - margin-bottom: var(--base-size-24, 24px); -} - -.mr-4 { - margin-right: var(--base-size-24, 24px); -} - -.ml-4 { - margin-left: var(--base-size-24, 24px); -} - -.mt-n4 { - margin-top: calc(-1*var(--base-size-24, 24px)); -} - -.mb-n4 { - margin-bottom: calc(-1*var(--base-size-24, 24px)); -} - -.mr-n4 { - margin-right: calc(-1*var(--base-size-24, 24px)); -} - -.ml-n4 { - margin-left: calc(-1*var(--base-size-24, 24px)); -} - -.mx-4 { - margin-right: var(--base-size-24, 24px); - margin-left: var(--base-size-24, 24px); -} - -.my-4 { - margin-top: var(--base-size-24, 24px); - margin-bottom: var(--base-size-24, 24px); -} - -.m-5 { - margin: var(--base-size-32, 32px); -} - -.mt-5 { - margin-top: var(--base-size-32, 32px); -} - -.mb-5 { - margin-bottom: var(--base-size-32, 32px); -} - -.mr-5 { - margin-right: var(--base-size-32, 32px); -} - -.ml-5 { - margin-left: var(--base-size-32, 32px); -} - -.mt-n5 { - margin-top: calc(-1*var(--base-size-32, 32px)); -} - -.mb-n5 { - margin-bottom: calc(-1*var(--base-size-32, 32px)); -} - -.mr-n5 { - margin-right: calc(-1*var(--base-size-32, 32px)); -} - -.ml-n5 { - margin-left: calc(-1*var(--base-size-32, 32px)); -} - -.mx-5 { - margin-right: var(--base-size-32, 32px); - margin-left: var(--base-size-32, 32px); -} - -.my-5 { - margin-top: var(--base-size-32, 32px); - margin-bottom: var(--base-size-32, 32px); -} - -.m-6 { - margin: var(--base-size-40, 40px); -} - -.mt-6 { - margin-top: var(--base-size-40, 40px); -} - -.mb-6 { - margin-bottom: var(--base-size-40, 40px); -} - -.mr-6 { - margin-right: var(--base-size-40, 40px); -} - -.ml-6 { - margin-left: var(--base-size-40, 40px); -} - -.mt-n6 { - margin-top: calc(-1*var(--base-size-40, 40px)); -} - -.mb-n6 { - margin-bottom: calc(-1*var(--base-size-40, 40px)); -} - -.mr-n6 { - margin-right: calc(-1*var(--base-size-40, 40px)); -} - -.ml-n6 { - margin-left: calc(-1*var(--base-size-40, 40px)); -} - -.mx-6 { - margin-right: var(--base-size-40, 40px); - margin-left: var(--base-size-40, 40px); -} - -.my-6 { - margin-top: var(--base-size-40, 40px); - margin-bottom: var(--base-size-40, 40px); -} - -.mt-7 { - margin-top: var(--base-size-48, 48px); -} - -.mb-7 { - margin-bottom: var(--base-size-48, 48px); -} - -.mt-n7 { - margin-top: calc(-1*var(--base-size-48, 48px)); -} - -.mb-n7 { - margin-bottom: calc(-1*var(--base-size-48, 48px)); -} - -.my-7 { - margin-top: var(--base-size-48, 48px); - margin-bottom: var(--base-size-48, 48px); -} - -.mt-8 { - margin-top: var(--base-size-64, 64px); -} - -.mb-8 { - margin-bottom: var(--base-size-64, 64px); -} - -.mt-n8 { - margin-top: calc(-1*var(--base-size-64, 64px)); -} - -.mb-n8 { - margin-bottom: calc(-1*var(--base-size-64, 64px)); -} - -.my-8 { - margin-top: var(--base-size-64, 64px); - margin-bottom: var(--base-size-64, 64px); -} - -.mt-9 { - margin-top: var(--base-size-80, 80px); -} - -.mb-9 { - margin-bottom: var(--base-size-80, 80px); -} - -.mt-n9 { - margin-top: calc(-1*var(--base-size-80, 80px)); -} - -.mb-n9 { - margin-bottom: calc(-1*var(--base-size-80, 80px)); -} - -.my-9 { - margin-top: var(--base-size-80, 80px); - margin-bottom: var(--base-size-80, 80px); -} - -.mt-10 { - margin-top: var(--base-size-96, 96px); -} - -.mb-10 { - margin-bottom: var(--base-size-96, 96px); -} - -.mt-n10 { - margin-top: calc(-1*var(--base-size-96, 96px)); -} - -.mb-n10 { - margin-bottom: calc(-1*var(--base-size-96, 96px)); -} - -.my-10 { - margin-top: var(--base-size-96, 96px); - margin-bottom: var(--base-size-96, 96px); -} - -.mt-11 { - margin-top: var(--base-size-112, 112px); -} - -.mb-11 { - margin-bottom: var(--base-size-112, 112px); -} - -.mt-n11 { - margin-top: calc(-1*var(--base-size-112, 112px)); -} - -.mb-n11 { - margin-bottom: calc(-1*var(--base-size-112, 112px)); -} - -.my-11 { - margin-top: var(--base-size-112, 112px); - margin-bottom: var(--base-size-112, 112px); -} - -.mt-12 { - margin-top: var(--base-size-128, 128px); -} - -.mb-12 { - margin-bottom: var(--base-size-128, 128px); -} - -.mt-n12 { - margin-top: calc(-1*var(--base-size-128, 128px)); -} - -.mb-n12 { - margin-bottom: calc(-1*var(--base-size-128, 128px)); -} - -.my-12 { - margin-top: var(--base-size-128, 128px); - margin-bottom: var(--base-size-128, 128px); -} - -.mx-auto { - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 544px) { - .m-sm-0 { - margin: 0; - } - - .mt-sm-0 { - margin-top: 0; - } - - .mb-sm-0 { - margin-bottom: 0; - } - - .mr-sm-0 { - margin-right: 0; - } - - .ml-sm-0 { - margin-left: 0; - } - - .mx-sm-0 { - margin-right: 0; - margin-left: 0; - } - - .my-sm-0 { - margin-top: 0; - margin-bottom: 0; - } - - .m-sm-1 { - margin: var(--base-size-4, 4px); - } - - .mt-sm-1 { - margin-top: var(--base-size-4, 4px); - } - - .mb-sm-1 { - margin-bottom: var(--base-size-4, 4px); - } - - .mr-sm-1 { - margin-right: var(--base-size-4, 4px); - } - - .ml-sm-1 { - margin-left: var(--base-size-4, 4px); - } - - .mt-sm-n1 { - margin-top: calc(-1*var(--base-size-4, 4px)); - } - - .mb-sm-n1 { - margin-bottom: calc(-1*var(--base-size-4, 4px)); - } - - .mr-sm-n1 { - margin-right: calc(-1*var(--base-size-4, 4px)); - } - - .ml-sm-n1 { - margin-left: calc(-1*var(--base-size-4, 4px)); - } - - .mx-sm-1 { - margin-right: var(--base-size-4, 4px); - margin-left: var(--base-size-4, 4px); - } - - .my-sm-1 { - margin-top: var(--base-size-4, 4px); - margin-bottom: var(--base-size-4, 4px); - } - - .m-sm-2 { - margin: var(--base-size-8, 8px); - } - - .mt-sm-2 { - margin-top: var(--base-size-8, 8px); - } - - .mb-sm-2 { - margin-bottom: var(--base-size-8, 8px); - } - - .mr-sm-2 { - margin-right: var(--base-size-8, 8px); - } - - .ml-sm-2 { - margin-left: var(--base-size-8, 8px); - } - - .mt-sm-n2 { - margin-top: calc(-1*var(--base-size-8, 8px)); - } - - .mb-sm-n2 { - margin-bottom: calc(-1*var(--base-size-8, 8px)); - } - - .mr-sm-n2 { - margin-right: calc(-1*var(--base-size-8, 8px)); - } - - .ml-sm-n2 { - margin-left: calc(-1*var(--base-size-8, 8px)); - } - - .mx-sm-2 { - margin-right: var(--base-size-8, 8px); - margin-left: var(--base-size-8, 8px); - } - - .my-sm-2 { - margin-top: var(--base-size-8, 8px); - margin-bottom: var(--base-size-8, 8px); - } - - .m-sm-3 { - margin: var(--base-size-16, 16px); - } - - .mt-sm-3 { - margin-top: var(--base-size-16, 16px); - } - - .mb-sm-3 { - margin-bottom: var(--base-size-16, 16px); - } - - .mr-sm-3 { - margin-right: var(--base-size-16, 16px); - } - - .ml-sm-3 { - margin-left: var(--base-size-16, 16px); - } - - .mt-sm-n3 { - margin-top: calc(-1*var(--base-size-16, 16px)); - } - - .mb-sm-n3 { - margin-bottom: calc(-1*var(--base-size-16, 16px)); - } - - .mr-sm-n3 { - margin-right: calc(-1*var(--base-size-16, 16px)); - } - - .ml-sm-n3 { - margin-left: calc(-1*var(--base-size-16, 16px)); - } - - .mx-sm-3 { - margin-right: var(--base-size-16, 16px); - margin-left: var(--base-size-16, 16px); - } - - .my-sm-3 { - margin-top: var(--base-size-16, 16px); - margin-bottom: var(--base-size-16, 16px); - } - - .m-sm-4 { - margin: var(--base-size-24, 24px); - } - - .mt-sm-4 { - margin-top: var(--base-size-24, 24px); - } - - .mb-sm-4 { - margin-bottom: var(--base-size-24, 24px); - } - - .mr-sm-4 { - margin-right: var(--base-size-24, 24px); - } - - .ml-sm-4 { - margin-left: var(--base-size-24, 24px); - } - - .mt-sm-n4 { - margin-top: calc(-1*var(--base-size-24, 24px)); - } - - .mb-sm-n4 { - margin-bottom: calc(-1*var(--base-size-24, 24px)); - } - - .mr-sm-n4 { - margin-right: calc(-1*var(--base-size-24, 24px)); - } - - .ml-sm-n4 { - margin-left: calc(-1*var(--base-size-24, 24px)); - } - - .mx-sm-4 { - margin-right: var(--base-size-24, 24px); - margin-left: var(--base-size-24, 24px); - } - - .my-sm-4 { - margin-top: var(--base-size-24, 24px); - margin-bottom: var(--base-size-24, 24px); - } - - .m-sm-5 { - margin: var(--base-size-32, 32px); - } - - .mt-sm-5 { - margin-top: var(--base-size-32, 32px); - } - - .mb-sm-5 { - margin-bottom: var(--base-size-32, 32px); - } - - .mr-sm-5 { - margin-right: var(--base-size-32, 32px); - } - - .ml-sm-5 { - margin-left: var(--base-size-32, 32px); - } - - .mt-sm-n5 { - margin-top: calc(-1*var(--base-size-32, 32px)); - } - - .mb-sm-n5 { - margin-bottom: calc(-1*var(--base-size-32, 32px)); - } - - .mr-sm-n5 { - margin-right: calc(-1*var(--base-size-32, 32px)); - } - - .ml-sm-n5 { - margin-left: calc(-1*var(--base-size-32, 32px)); - } - - .mx-sm-5 { - margin-right: var(--base-size-32, 32px); - margin-left: var(--base-size-32, 32px); - } - - .my-sm-5 { - margin-top: var(--base-size-32, 32px); - margin-bottom: var(--base-size-32, 32px); - } - - .m-sm-6 { - margin: var(--base-size-40, 40px); - } - - .mt-sm-6 { - margin-top: var(--base-size-40, 40px); - } - - .mb-sm-6 { - margin-bottom: var(--base-size-40, 40px); - } - - .mr-sm-6 { - margin-right: var(--base-size-40, 40px); - } - - .ml-sm-6 { - margin-left: var(--base-size-40, 40px); - } - - .mt-sm-n6 { - margin-top: calc(-1*var(--base-size-40, 40px)); - } - - .mb-sm-n6 { - margin-bottom: calc(-1*var(--base-size-40, 40px)); - } - - .mr-sm-n6 { - margin-right: calc(-1*var(--base-size-40, 40px)); - } - - .ml-sm-n6 { - margin-left: calc(-1*var(--base-size-40, 40px)); - } - - .mx-sm-6 { - margin-right: var(--base-size-40, 40px); - margin-left: var(--base-size-40, 40px); - } - - .my-sm-6 { - margin-top: var(--base-size-40, 40px); - margin-bottom: var(--base-size-40, 40px); - } - - .mt-sm-7 { - margin-top: var(--base-size-48, 48px); - } - - .mb-sm-7 { - margin-bottom: var(--base-size-48, 48px); - } - - .mt-sm-n7 { - margin-top: calc(-1*var(--base-size-48, 48px)); - } - - .mb-sm-n7 { - margin-bottom: calc(-1*var(--base-size-48, 48px)); - } - - .my-sm-7 { - margin-top: var(--base-size-48, 48px); - margin-bottom: var(--base-size-48, 48px); - } - - .mt-sm-8 { - margin-top: var(--base-size-64, 64px); - } - - .mb-sm-8 { - margin-bottom: var(--base-size-64, 64px); - } - - .mt-sm-n8 { - margin-top: calc(-1*var(--base-size-64, 64px)); - } - - .mb-sm-n8 { - margin-bottom: calc(-1*var(--base-size-64, 64px)); - } - - .my-sm-8 { - margin-top: var(--base-size-64, 64px); - margin-bottom: var(--base-size-64, 64px); - } - - .mt-sm-9 { - margin-top: var(--base-size-80, 80px); - } - - .mb-sm-9 { - margin-bottom: var(--base-size-80, 80px); - } - - .mt-sm-n9 { - margin-top: calc(-1*var(--base-size-80, 80px)); - } - - .mb-sm-n9 { - margin-bottom: calc(-1*var(--base-size-80, 80px)); - } - - .my-sm-9 { - margin-top: var(--base-size-80, 80px); - margin-bottom: var(--base-size-80, 80px); - } - - .mt-sm-10 { - margin-top: var(--base-size-96, 96px); - } - - .mb-sm-10 { - margin-bottom: var(--base-size-96, 96px); - } - - .mt-sm-n10 { - margin-top: calc(-1*var(--base-size-96, 96px)); - } - - .mb-sm-n10 { - margin-bottom: calc(-1*var(--base-size-96, 96px)); - } - - .my-sm-10 { - margin-top: var(--base-size-96, 96px); - margin-bottom: var(--base-size-96, 96px); - } - - .mt-sm-11 { - margin-top: var(--base-size-112, 112px); - } - - .mb-sm-11 { - margin-bottom: var(--base-size-112, 112px); - } - - .mt-sm-n11 { - margin-top: calc(-1*var(--base-size-112, 112px)); - } - - .mb-sm-n11 { - margin-bottom: calc(-1*var(--base-size-112, 112px)); - } - - .my-sm-11 { - margin-top: var(--base-size-112, 112px); - margin-bottom: var(--base-size-112, 112px); - } - - .mt-sm-12 { - margin-top: var(--base-size-128, 128px); - } - - .mb-sm-12 { - margin-bottom: var(--base-size-128, 128px); - } - - .mt-sm-n12 { - margin-top: calc(-1*var(--base-size-128, 128px)); - } - - .mb-sm-n12 { - margin-bottom: calc(-1*var(--base-size-128, 128px)); - } - - .my-sm-12 { - margin-top: var(--base-size-128, 128px); - margin-bottom: var(--base-size-128, 128px); - } - - .mx-sm-auto { - margin-right: auto; - margin-left: auto; - } -} - -@media (min-width: 768px) { - .m-md-0 { - margin: 0; - } - - .mt-md-0 { - margin-top: 0; - } - - .mb-md-0 { - margin-bottom: 0; - } - - .mr-md-0 { - margin-right: 0; - } - - .ml-md-0 { - margin-left: 0; - } - - .mx-md-0 { - margin-right: 0; - margin-left: 0; - } - - .my-md-0 { - margin-top: 0; - margin-bottom: 0; - } - - .m-md-1 { - margin: var(--base-size-4, 4px); - } - - .mt-md-1 { - margin-top: var(--base-size-4, 4px); - } - - .mb-md-1 { - margin-bottom: var(--base-size-4, 4px); - } - - .mr-md-1 { - margin-right: var(--base-size-4, 4px); - } - - .ml-md-1 { - margin-left: var(--base-size-4, 4px); - } - - .mt-md-n1 { - margin-top: calc(-1*var(--base-size-4, 4px)); - } - - .mb-md-n1 { - margin-bottom: calc(-1*var(--base-size-4, 4px)); - } - - .mr-md-n1 { - margin-right: calc(-1*var(--base-size-4, 4px)); - } - - .ml-md-n1 { - margin-left: calc(-1*var(--base-size-4, 4px)); - } - - .mx-md-1 { - margin-right: var(--base-size-4, 4px); - margin-left: var(--base-size-4, 4px); - } - - .my-md-1 { - margin-top: var(--base-size-4, 4px); - margin-bottom: var(--base-size-4, 4px); - } - - .m-md-2 { - margin: var(--base-size-8, 8px); - } - - .mt-md-2 { - margin-top: var(--base-size-8, 8px); - } - - .mb-md-2 { - margin-bottom: var(--base-size-8, 8px); - } - - .mr-md-2 { - margin-right: var(--base-size-8, 8px); - } - - .ml-md-2 { - margin-left: var(--base-size-8, 8px); - } - - .mt-md-n2 { - margin-top: calc(-1*var(--base-size-8, 8px)); - } - - .mb-md-n2 { - margin-bottom: calc(-1*var(--base-size-8, 8px)); - } - - .mr-md-n2 { - margin-right: calc(-1*var(--base-size-8, 8px)); - } - - .ml-md-n2 { - margin-left: calc(-1*var(--base-size-8, 8px)); - } - - .mx-md-2 { - margin-right: var(--base-size-8, 8px); - margin-left: var(--base-size-8, 8px); - } - - .my-md-2 { - margin-top: var(--base-size-8, 8px); - margin-bottom: var(--base-size-8, 8px); - } - - .m-md-3 { - margin: var(--base-size-16, 16px); - } - - .mt-md-3 { - margin-top: var(--base-size-16, 16px); - } - - .mb-md-3 { - margin-bottom: var(--base-size-16, 16px); - } - - .mr-md-3 { - margin-right: var(--base-size-16, 16px); - } - - .ml-md-3 { - margin-left: var(--base-size-16, 16px); - } - - .mt-md-n3 { - margin-top: calc(-1*var(--base-size-16, 16px)); - } - - .mb-md-n3 { - margin-bottom: calc(-1*var(--base-size-16, 16px)); - } - - .mr-md-n3 { - margin-right: calc(-1*var(--base-size-16, 16px)); - } - - .ml-md-n3 { - margin-left: calc(-1*var(--base-size-16, 16px)); - } - - .mx-md-3 { - margin-right: var(--base-size-16, 16px); - margin-left: var(--base-size-16, 16px); - } - - .my-md-3 { - margin-top: var(--base-size-16, 16px); - margin-bottom: var(--base-size-16, 16px); - } - - .m-md-4 { - margin: var(--base-size-24, 24px); - } - - .mt-md-4 { - margin-top: var(--base-size-24, 24px); - } - - .mb-md-4 { - margin-bottom: var(--base-size-24, 24px); - } - - .mr-md-4 { - margin-right: var(--base-size-24, 24px); - } - - .ml-md-4 { - margin-left: var(--base-size-24, 24px); - } - - .mt-md-n4 { - margin-top: calc(-1*var(--base-size-24, 24px)); - } - - .mb-md-n4 { - margin-bottom: calc(-1*var(--base-size-24, 24px)); - } - - .mr-md-n4 { - margin-right: calc(-1*var(--base-size-24, 24px)); - } - - .ml-md-n4 { - margin-left: calc(-1*var(--base-size-24, 24px)); - } - - .mx-md-4 { - margin-right: var(--base-size-24, 24px); - margin-left: var(--base-size-24, 24px); - } - - .my-md-4 { - margin-top: var(--base-size-24, 24px); - margin-bottom: var(--base-size-24, 24px); - } - - .m-md-5 { - margin: var(--base-size-32, 32px); - } - - .mt-md-5 { - margin-top: var(--base-size-32, 32px); - } - - .mb-md-5 { - margin-bottom: var(--base-size-32, 32px); - } - - .mr-md-5 { - margin-right: var(--base-size-32, 32px); - } - - .ml-md-5 { - margin-left: var(--base-size-32, 32px); - } - - .mt-md-n5 { - margin-top: calc(-1*var(--base-size-32, 32px)); - } - - .mb-md-n5 { - margin-bottom: calc(-1*var(--base-size-32, 32px)); - } - - .mr-md-n5 { - margin-right: calc(-1*var(--base-size-32, 32px)); - } - - .ml-md-n5 { - margin-left: calc(-1*var(--base-size-32, 32px)); - } - - .mx-md-5 { - margin-right: var(--base-size-32, 32px); - margin-left: var(--base-size-32, 32px); - } - - .my-md-5 { - margin-top: var(--base-size-32, 32px); - margin-bottom: var(--base-size-32, 32px); - } - - .m-md-6 { - margin: var(--base-size-40, 40px); - } - - .mt-md-6 { - margin-top: var(--base-size-40, 40px); - } - - .mb-md-6 { - margin-bottom: var(--base-size-40, 40px); - } - - .mr-md-6 { - margin-right: var(--base-size-40, 40px); - } - - .ml-md-6 { - margin-left: var(--base-size-40, 40px); - } - - .mt-md-n6 { - margin-top: calc(-1*var(--base-size-40, 40px)); - } - - .mb-md-n6 { - margin-bottom: calc(-1*var(--base-size-40, 40px)); - } - - .mr-md-n6 { - margin-right: calc(-1*var(--base-size-40, 40px)); - } - - .ml-md-n6 { - margin-left: calc(-1*var(--base-size-40, 40px)); - } - - .mx-md-6 { - margin-right: var(--base-size-40, 40px); - margin-left: var(--base-size-40, 40px); - } - - .my-md-6 { - margin-top: var(--base-size-40, 40px); - margin-bottom: var(--base-size-40, 40px); - } - - .mt-md-7 { - margin-top: var(--base-size-48, 48px); - } - - .mb-md-7 { - margin-bottom: var(--base-size-48, 48px); - } - - .mt-md-n7 { - margin-top: calc(-1*var(--base-size-48, 48px)); - } - - .mb-md-n7 { - margin-bottom: calc(-1*var(--base-size-48, 48px)); - } - - .my-md-7 { - margin-top: var(--base-size-48, 48px); - margin-bottom: var(--base-size-48, 48px); - } - - .mt-md-8 { - margin-top: var(--base-size-64, 64px); - } - - .mb-md-8 { - margin-bottom: var(--base-size-64, 64px); - } - - .mt-md-n8 { - margin-top: calc(-1*var(--base-size-64, 64px)); - } - - .mb-md-n8 { - margin-bottom: calc(-1*var(--base-size-64, 64px)); - } - - .my-md-8 { - margin-top: var(--base-size-64, 64px); - margin-bottom: var(--base-size-64, 64px); - } - - .mt-md-9 { - margin-top: var(--base-size-80, 80px); - } - - .mb-md-9 { - margin-bottom: var(--base-size-80, 80px); - } - - .mt-md-n9 { - margin-top: calc(-1*var(--base-size-80, 80px)); - } - - .mb-md-n9 { - margin-bottom: calc(-1*var(--base-size-80, 80px)); - } - - .my-md-9 { - margin-top: var(--base-size-80, 80px); - margin-bottom: var(--base-size-80, 80px); - } - - .mt-md-10 { - margin-top: var(--base-size-96, 96px); - } - - .mb-md-10 { - margin-bottom: var(--base-size-96, 96px); - } - - .mt-md-n10 { - margin-top: calc(-1*var(--base-size-96, 96px)); - } - - .mb-md-n10 { - margin-bottom: calc(-1*var(--base-size-96, 96px)); - } - - .my-md-10 { - margin-top: var(--base-size-96, 96px); - margin-bottom: var(--base-size-96, 96px); - } - - .mt-md-11 { - margin-top: var(--base-size-112, 112px); - } - - .mb-md-11 { - margin-bottom: var(--base-size-112, 112px); - } - - .mt-md-n11 { - margin-top: calc(-1*var(--base-size-112, 112px)); - } - - .mb-md-n11 { - margin-bottom: calc(-1*var(--base-size-112, 112px)); - } - - .my-md-11 { - margin-top: var(--base-size-112, 112px); - margin-bottom: var(--base-size-112, 112px); - } - - .mt-md-12 { - margin-top: var(--base-size-128, 128px); - } - - .mb-md-12 { - margin-bottom: var(--base-size-128, 128px); - } - - .mt-md-n12 { - margin-top: calc(-1*var(--base-size-128, 128px)); - } - - .mb-md-n12 { - margin-bottom: calc(-1*var(--base-size-128, 128px)); - } - - .my-md-12 { - margin-top: var(--base-size-128, 128px); - margin-bottom: var(--base-size-128, 128px); - } - - .mx-md-auto { - margin-right: auto; - margin-left: auto; - } -} - -@media (min-width: 1012px) { - .m-lg-0 { - margin: 0; - } - - .mt-lg-0 { - margin-top: 0; - } - - .mb-lg-0 { - margin-bottom: 0; - } - - .mr-lg-0 { - margin-right: 0; - } - - .ml-lg-0 { - margin-left: 0; - } - - .mx-lg-0 { - margin-right: 0; - margin-left: 0; - } - - .my-lg-0 { - margin-top: 0; - margin-bottom: 0; - } - - .m-lg-1 { - margin: var(--base-size-4, 4px); - } - - .mt-lg-1 { - margin-top: var(--base-size-4, 4px); - } - - .mb-lg-1 { - margin-bottom: var(--base-size-4, 4px); - } - - .mr-lg-1 { - margin-right: var(--base-size-4, 4px); - } - - .ml-lg-1 { - margin-left: var(--base-size-4, 4px); - } - - .mt-lg-n1 { - margin-top: calc(-1*var(--base-size-4, 4px)); - } - - .mb-lg-n1 { - margin-bottom: calc(-1*var(--base-size-4, 4px)); - } - - .mr-lg-n1 { - margin-right: calc(-1*var(--base-size-4, 4px)); - } - - .ml-lg-n1 { - margin-left: calc(-1*var(--base-size-4, 4px)); - } - - .mx-lg-1 { - margin-right: var(--base-size-4, 4px); - margin-left: var(--base-size-4, 4px); - } - - .my-lg-1 { - margin-top: var(--base-size-4, 4px); - margin-bottom: var(--base-size-4, 4px); - } - - .m-lg-2 { - margin: var(--base-size-8, 8px); - } - - .mt-lg-2 { - margin-top: var(--base-size-8, 8px); - } - - .mb-lg-2 { - margin-bottom: var(--base-size-8, 8px); - } - - .mr-lg-2 { - margin-right: var(--base-size-8, 8px); - } - - .ml-lg-2 { - margin-left: var(--base-size-8, 8px); - } - - .mt-lg-n2 { - margin-top: calc(-1*var(--base-size-8, 8px)); - } - - .mb-lg-n2 { - margin-bottom: calc(-1*var(--base-size-8, 8px)); - } - - .mr-lg-n2 { - margin-right: calc(-1*var(--base-size-8, 8px)); - } - - .ml-lg-n2 { - margin-left: calc(-1*var(--base-size-8, 8px)); - } - - .mx-lg-2 { - margin-right: var(--base-size-8, 8px); - margin-left: var(--base-size-8, 8px); - } - - .my-lg-2 { - margin-top: var(--base-size-8, 8px); - margin-bottom: var(--base-size-8, 8px); - } - - .m-lg-3 { - margin: var(--base-size-16, 16px); - } - - .mt-lg-3 { - margin-top: var(--base-size-16, 16px); - } - - .mb-lg-3 { - margin-bottom: var(--base-size-16, 16px); - } - - .mr-lg-3 { - margin-right: var(--base-size-16, 16px); - } - - .ml-lg-3 { - margin-left: var(--base-size-16, 16px); - } - - .mt-lg-n3 { - margin-top: calc(-1*var(--base-size-16, 16px)); - } - - .mb-lg-n3 { - margin-bottom: calc(-1*var(--base-size-16, 16px)); - } - - .mr-lg-n3 { - margin-right: calc(-1*var(--base-size-16, 16px)); - } - - .ml-lg-n3 { - margin-left: calc(-1*var(--base-size-16, 16px)); - } - - .mx-lg-3 { - margin-right: var(--base-size-16, 16px); - margin-left: var(--base-size-16, 16px); - } - - .my-lg-3 { - margin-top: var(--base-size-16, 16px); - margin-bottom: var(--base-size-16, 16px); - } - - .m-lg-4 { - margin: var(--base-size-24, 24px); - } - - .mt-lg-4 { - margin-top: var(--base-size-24, 24px); - } - - .mb-lg-4 { - margin-bottom: var(--base-size-24, 24px); - } - - .mr-lg-4 { - margin-right: var(--base-size-24, 24px); - } - - .ml-lg-4 { - margin-left: var(--base-size-24, 24px); - } - - .mt-lg-n4 { - margin-top: calc(-1*var(--base-size-24, 24px)); - } - - .mb-lg-n4 { - margin-bottom: calc(-1*var(--base-size-24, 24px)); - } - - .mr-lg-n4 { - margin-right: calc(-1*var(--base-size-24, 24px)); - } - - .ml-lg-n4 { - margin-left: calc(-1*var(--base-size-24, 24px)); - } - - .mx-lg-4 { - margin-right: var(--base-size-24, 24px); - margin-left: var(--base-size-24, 24px); - } - - .my-lg-4 { - margin-top: var(--base-size-24, 24px); - margin-bottom: var(--base-size-24, 24px); - } - - .m-lg-5 { - margin: var(--base-size-32, 32px); - } - - .mt-lg-5 { - margin-top: var(--base-size-32, 32px); - } - - .mb-lg-5 { - margin-bottom: var(--base-size-32, 32px); - } - - .mr-lg-5 { - margin-right: var(--base-size-32, 32px); - } - - .ml-lg-5 { - margin-left: var(--base-size-32, 32px); - } - - .mt-lg-n5 { - margin-top: calc(-1*var(--base-size-32, 32px)); - } - - .mb-lg-n5 { - margin-bottom: calc(-1*var(--base-size-32, 32px)); - } - - .mr-lg-n5 { - margin-right: calc(-1*var(--base-size-32, 32px)); - } - - .ml-lg-n5 { - margin-left: calc(-1*var(--base-size-32, 32px)); - } - - .mx-lg-5 { - margin-right: var(--base-size-32, 32px); - margin-left: var(--base-size-32, 32px); - } - - .my-lg-5 { - margin-top: var(--base-size-32, 32px); - margin-bottom: var(--base-size-32, 32px); - } - - .m-lg-6 { - margin: var(--base-size-40, 40px); - } - - .mt-lg-6 { - margin-top: var(--base-size-40, 40px); - } - - .mb-lg-6 { - margin-bottom: var(--base-size-40, 40px); - } - - .mr-lg-6 { - margin-right: var(--base-size-40, 40px); - } - - .ml-lg-6 { - margin-left: var(--base-size-40, 40px); - } - - .mt-lg-n6 { - margin-top: calc(-1*var(--base-size-40, 40px)); - } - - .mb-lg-n6 { - margin-bottom: calc(-1*var(--base-size-40, 40px)); - } - - .mr-lg-n6 { - margin-right: calc(-1*var(--base-size-40, 40px)); - } - - .ml-lg-n6 { - margin-left: calc(-1*var(--base-size-40, 40px)); - } - - .mx-lg-6 { - margin-right: var(--base-size-40, 40px); - margin-left: var(--base-size-40, 40px); - } - - .my-lg-6 { - margin-top: var(--base-size-40, 40px); - margin-bottom: var(--base-size-40, 40px); - } - - .mt-lg-7 { - margin-top: var(--base-size-48, 48px); - } - - .mb-lg-7 { - margin-bottom: var(--base-size-48, 48px); - } - - .mt-lg-n7 { - margin-top: calc(-1*var(--base-size-48, 48px)); - } - - .mb-lg-n7 { - margin-bottom: calc(-1*var(--base-size-48, 48px)); - } - - .my-lg-7 { - margin-top: var(--base-size-48, 48px); - margin-bottom: var(--base-size-48, 48px); - } - - .mt-lg-8 { - margin-top: var(--base-size-64, 64px); - } - - .mb-lg-8 { - margin-bottom: var(--base-size-64, 64px); - } - - .mt-lg-n8 { - margin-top: calc(-1*var(--base-size-64, 64px)); - } - - .mb-lg-n8 { - margin-bottom: calc(-1*var(--base-size-64, 64px)); - } - - .my-lg-8 { - margin-top: var(--base-size-64, 64px); - margin-bottom: var(--base-size-64, 64px); - } - - .mt-lg-9 { - margin-top: var(--base-size-80, 80px); - } - - .mb-lg-9 { - margin-bottom: var(--base-size-80, 80px); - } - - .mt-lg-n9 { - margin-top: calc(-1*var(--base-size-80, 80px)); - } - - .mb-lg-n9 { - margin-bottom: calc(-1*var(--base-size-80, 80px)); - } - - .my-lg-9 { - margin-top: var(--base-size-80, 80px); - margin-bottom: var(--base-size-80, 80px); - } - - .mt-lg-10 { - margin-top: var(--base-size-96, 96px); - } - - .mb-lg-10 { - margin-bottom: var(--base-size-96, 96px); - } - - .mt-lg-n10 { - margin-top: calc(-1*var(--base-size-96, 96px)); - } - - .mb-lg-n10 { - margin-bottom: calc(-1*var(--base-size-96, 96px)); - } - - .my-lg-10 { - margin-top: var(--base-size-96, 96px); - margin-bottom: var(--base-size-96, 96px); - } - - .mt-lg-11 { - margin-top: var(--base-size-112, 112px); - } - - .mb-lg-11 { - margin-bottom: var(--base-size-112, 112px); - } - - .mt-lg-n11 { - margin-top: calc(-1*var(--base-size-112, 112px)); - } - - .mb-lg-n11 { - margin-bottom: calc(-1*var(--base-size-112, 112px)); - } - - .my-lg-11 { - margin-top: var(--base-size-112, 112px); - margin-bottom: var(--base-size-112, 112px); - } - - .mt-lg-12 { - margin-top: var(--base-size-128, 128px); - } - - .mb-lg-12 { - margin-bottom: var(--base-size-128, 128px); - } - - .mt-lg-n12 { - margin-top: calc(-1*var(--base-size-128, 128px)); - } - - .mb-lg-n12 { - margin-bottom: calc(-1*var(--base-size-128, 128px)); - } - - .my-lg-12 { - margin-top: var(--base-size-128, 128px); - margin-bottom: var(--base-size-128, 128px); - } - - .mx-lg-auto { - margin-right: auto; - margin-left: auto; - } -} - -@media (min-width: 1280px) { - .m-xl-0 { - margin: 0; - } - - .mt-xl-0 { - margin-top: 0; - } - - .mb-xl-0 { - margin-bottom: 0; - } - - .mr-xl-0 { - margin-right: 0; - } - - .ml-xl-0 { - margin-left: 0; - } - - .mx-xl-0 { - margin-right: 0; - margin-left: 0; - } - - .my-xl-0 { - margin-top: 0; - margin-bottom: 0; - } - - .m-xl-1 { - margin: var(--base-size-4, 4px); - } - - .mt-xl-1 { - margin-top: var(--base-size-4, 4px); - } - - .mb-xl-1 { - margin-bottom: var(--base-size-4, 4px); - } - - .mr-xl-1 { - margin-right: var(--base-size-4, 4px); - } - - .ml-xl-1 { - margin-left: var(--base-size-4, 4px); - } - - .mt-xl-n1 { - margin-top: calc(-1*var(--base-size-4, 4px)); - } - - .mb-xl-n1 { - margin-bottom: calc(-1*var(--base-size-4, 4px)); - } - - .mr-xl-n1 { - margin-right: calc(-1*var(--base-size-4, 4px)); - } - - .ml-xl-n1 { - margin-left: calc(-1*var(--base-size-4, 4px)); - } - - .mx-xl-1 { - margin-right: var(--base-size-4, 4px); - margin-left: var(--base-size-4, 4px); - } - - .my-xl-1 { - margin-top: var(--base-size-4, 4px); - margin-bottom: var(--base-size-4, 4px); - } - - .m-xl-2 { - margin: var(--base-size-8, 8px); - } - - .mt-xl-2 { - margin-top: var(--base-size-8, 8px); - } - - .mb-xl-2 { - margin-bottom: var(--base-size-8, 8px); - } - - .mr-xl-2 { - margin-right: var(--base-size-8, 8px); - } - - .ml-xl-2 { - margin-left: var(--base-size-8, 8px); - } - - .mt-xl-n2 { - margin-top: calc(-1*var(--base-size-8, 8px)); - } - - .mb-xl-n2 { - margin-bottom: calc(-1*var(--base-size-8, 8px)); - } - - .mr-xl-n2 { - margin-right: calc(-1*var(--base-size-8, 8px)); - } - - .ml-xl-n2 { - margin-left: calc(-1*var(--base-size-8, 8px)); - } - - .mx-xl-2 { - margin-right: var(--base-size-8, 8px); - margin-left: var(--base-size-8, 8px); - } - - .my-xl-2 { - margin-top: var(--base-size-8, 8px); - margin-bottom: var(--base-size-8, 8px); - } - - .m-xl-3 { - margin: var(--base-size-16, 16px); - } - - .mt-xl-3 { - margin-top: var(--base-size-16, 16px); - } - - .mb-xl-3 { - margin-bottom: var(--base-size-16, 16px); - } - - .mr-xl-3 { - margin-right: var(--base-size-16, 16px); - } - - .ml-xl-3 { - margin-left: var(--base-size-16, 16px); - } - - .mt-xl-n3 { - margin-top: calc(-1*var(--base-size-16, 16px)); - } - - .mb-xl-n3 { - margin-bottom: calc(-1*var(--base-size-16, 16px)); - } - - .mr-xl-n3 { - margin-right: calc(-1*var(--base-size-16, 16px)); - } - - .ml-xl-n3 { - margin-left: calc(-1*var(--base-size-16, 16px)); - } - - .mx-xl-3 { - margin-right: var(--base-size-16, 16px); - margin-left: var(--base-size-16, 16px); - } - - .my-xl-3 { - margin-top: var(--base-size-16, 16px); - margin-bottom: var(--base-size-16, 16px); - } - - .m-xl-4 { - margin: var(--base-size-24, 24px); - } - - .mt-xl-4 { - margin-top: var(--base-size-24, 24px); - } - - .mb-xl-4 { - margin-bottom: var(--base-size-24, 24px); - } - - .mr-xl-4 { - margin-right: var(--base-size-24, 24px); - } - - .ml-xl-4 { - margin-left: var(--base-size-24, 24px); - } - - .mt-xl-n4 { - margin-top: calc(-1*var(--base-size-24, 24px)); - } - - .mb-xl-n4 { - margin-bottom: calc(-1*var(--base-size-24, 24px)); - } - - .mr-xl-n4 { - margin-right: calc(-1*var(--base-size-24, 24px)); - } - - .ml-xl-n4 { - margin-left: calc(-1*var(--base-size-24, 24px)); - } - - .mx-xl-4 { - margin-right: var(--base-size-24, 24px); - margin-left: var(--base-size-24, 24px); - } - - .my-xl-4 { - margin-top: var(--base-size-24, 24px); - margin-bottom: var(--base-size-24, 24px); - } - - .m-xl-5 { - margin: var(--base-size-32, 32px); - } - - .mt-xl-5 { - margin-top: var(--base-size-32, 32px); - } - - .mb-xl-5 { - margin-bottom: var(--base-size-32, 32px); - } - - .mr-xl-5 { - margin-right: var(--base-size-32, 32px); - } - - .ml-xl-5 { - margin-left: var(--base-size-32, 32px); - } - - .mt-xl-n5 { - margin-top: calc(-1*var(--base-size-32, 32px)); - } - - .mb-xl-n5 { - margin-bottom: calc(-1*var(--base-size-32, 32px)); - } - - .mr-xl-n5 { - margin-right: calc(-1*var(--base-size-32, 32px)); - } - - .ml-xl-n5 { - margin-left: calc(-1*var(--base-size-32, 32px)); - } - - .mx-xl-5 { - margin-right: var(--base-size-32, 32px); - margin-left: var(--base-size-32, 32px); - } - - .my-xl-5 { - margin-top: var(--base-size-32, 32px); - margin-bottom: var(--base-size-32, 32px); - } - - .m-xl-6 { - margin: var(--base-size-40, 40px); - } - - .mt-xl-6 { - margin-top: var(--base-size-40, 40px); - } - - .mb-xl-6 { - margin-bottom: var(--base-size-40, 40px); - } - - .mr-xl-6 { - margin-right: var(--base-size-40, 40px); - } - - .ml-xl-6 { - margin-left: var(--base-size-40, 40px); - } - - .mt-xl-n6 { - margin-top: calc(-1*var(--base-size-40, 40px)); - } - - .mb-xl-n6 { - margin-bottom: calc(-1*var(--base-size-40, 40px)); - } - - .mr-xl-n6 { - margin-right: calc(-1*var(--base-size-40, 40px)); - } - - .ml-xl-n6 { - margin-left: calc(-1*var(--base-size-40, 40px)); - } - - .mx-xl-6 { - margin-right: var(--base-size-40, 40px); - margin-left: var(--base-size-40, 40px); - } - - .my-xl-6 { - margin-top: var(--base-size-40, 40px); - margin-bottom: var(--base-size-40, 40px); - } - - .mt-xl-7 { - margin-top: var(--base-size-48, 48px); - } - - .mb-xl-7 { - margin-bottom: var(--base-size-48, 48px); - } - - .mt-xl-n7 { - margin-top: calc(-1*var(--base-size-48, 48px)); - } - - .mb-xl-n7 { - margin-bottom: calc(-1*var(--base-size-48, 48px)); - } - - .my-xl-7 { - margin-top: var(--base-size-48, 48px); - margin-bottom: var(--base-size-48, 48px); - } - - .mt-xl-8 { - margin-top: var(--base-size-64, 64px); - } - - .mb-xl-8 { - margin-bottom: var(--base-size-64, 64px); - } - - .mt-xl-n8 { - margin-top: calc(-1*var(--base-size-64, 64px)); - } - - .mb-xl-n8 { - margin-bottom: calc(-1*var(--base-size-64, 64px)); - } - - .my-xl-8 { - margin-top: var(--base-size-64, 64px); - margin-bottom: var(--base-size-64, 64px); - } - - .mt-xl-9 { - margin-top: var(--base-size-80, 80px); - } - - .mb-xl-9 { - margin-bottom: var(--base-size-80, 80px); - } - - .mt-xl-n9 { - margin-top: calc(-1*var(--base-size-80, 80px)); - } - - .mb-xl-n9 { - margin-bottom: calc(-1*var(--base-size-80, 80px)); - } - - .my-xl-9 { - margin-top: var(--base-size-80, 80px); - margin-bottom: var(--base-size-80, 80px); - } - - .mt-xl-10 { - margin-top: var(--base-size-96, 96px); - } - - .mb-xl-10 { - margin-bottom: var(--base-size-96, 96px); - } - - .mt-xl-n10 { - margin-top: calc(-1*var(--base-size-96, 96px)); - } - - .mb-xl-n10 { - margin-bottom: calc(-1*var(--base-size-96, 96px)); - } - - .my-xl-10 { - margin-top: var(--base-size-96, 96px); - margin-bottom: var(--base-size-96, 96px); - } - - .mt-xl-11 { - margin-top: var(--base-size-112, 112px); - } - - .mb-xl-11 { - margin-bottom: var(--base-size-112, 112px); - } - - .mt-xl-n11 { - margin-top: calc(-1*var(--base-size-112, 112px)); - } - - .mb-xl-n11 { - margin-bottom: calc(-1*var(--base-size-112, 112px)); - } - - .my-xl-11 { - margin-top: var(--base-size-112, 112px); - margin-bottom: var(--base-size-112, 112px); - } - - .mt-xl-12 { - margin-top: var(--base-size-128, 128px); - } - - .mb-xl-12 { - margin-bottom: var(--base-size-128, 128px); - } - - .mt-xl-n12 { - margin-top: calc(-1*var(--base-size-128, 128px)); - } - - .mb-xl-n12 { - margin-bottom: calc(-1*var(--base-size-128, 128px)); - } - - .my-xl-12 { - margin-top: var(--base-size-128, 128px); - margin-bottom: var(--base-size-128, 128px); - } - - .mx-xl-auto { - margin-right: auto; - margin-left: auto; - } -} - -.m-auto { - margin: auto; -} - -.mt-auto { - margin-top: auto; -} - -.mr-auto { - margin-right: auto; -} - -.mb-auto { - margin-bottom: auto; -} - -.ml-auto { - margin-left: auto; -} - -.p-0 { - padding: 0; -} - -.pt-0 { - padding-top: 0; -} - -.pr-0 { - padding-right: 0; -} - -.pb-0 { - padding-bottom: 0; -} - -.pl-0 { - padding-left: 0; -} - -.px-0 { - padding-right: 0; - padding-left: 0; -} - -.py-0 { - padding-top: 0; - padding-bottom: 0; -} - -.p-1 { - padding: var(--base-size-4, 4px); -} - -.pt-1 { - padding-top: var(--base-size-4, 4px); -} - -.pr-1 { - padding-right: var(--base-size-4, 4px); -} - -.pb-1 { - padding-bottom: var(--base-size-4, 4px); -} - -.pl-1 { - padding-left: var(--base-size-4, 4px); -} - -.px-1 { - padding-right: var(--base-size-4, 4px); - padding-left: var(--base-size-4, 4px); -} - -.py-1 { - padding-top: var(--base-size-4, 4px); - padding-bottom: var(--base-size-4, 4px); -} - -.p-2 { - padding: var(--base-size-8, 8px); -} - -.pt-2 { - padding-top: var(--base-size-8, 8px); -} - -.pr-2 { - padding-right: var(--base-size-8, 8px); -} - -.pb-2 { - padding-bottom: var(--base-size-8, 8px); -} - -.pl-2 { - padding-left: var(--base-size-8, 8px); -} - -.px-2 { - padding-right: var(--base-size-8, 8px); - padding-left: var(--base-size-8, 8px); -} - -.py-2 { - padding-top: var(--base-size-8, 8px); - padding-bottom: var(--base-size-8, 8px); -} - -.p-3 { - padding: var(--base-size-16, 16px); -} - -.pt-3 { - padding-top: var(--base-size-16, 16px); -} - -.pr-3 { - padding-right: var(--base-size-16, 16px); -} - -.pb-3 { - padding-bottom: var(--base-size-16, 16px); -} - -.pl-3 { - padding-left: var(--base-size-16, 16px); -} - -.px-3 { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); -} - -.py-3 { - padding-top: var(--base-size-16, 16px); - padding-bottom: var(--base-size-16, 16px); -} - -.p-4 { - padding: var(--base-size-24, 24px); -} - -.pt-4 { - padding-top: var(--base-size-24, 24px); -} - -.pr-4 { - padding-right: var(--base-size-24, 24px); -} - -.pb-4 { - padding-bottom: var(--base-size-24, 24px); -} - -.pl-4 { - padding-left: var(--base-size-24, 24px); -} - -.px-4 { - padding-right: var(--base-size-24, 24px); - padding-left: var(--base-size-24, 24px); -} - -.py-4 { - padding-top: var(--base-size-24, 24px); - padding-bottom: var(--base-size-24, 24px); -} - -.p-5 { - padding: var(--base-size-32, 32px); -} - -.pt-5 { - padding-top: var(--base-size-32, 32px); -} - -.pr-5 { - padding-right: var(--base-size-32, 32px); -} - -.pb-5 { - padding-bottom: var(--base-size-32, 32px); -} - -.pl-5 { - padding-left: var(--base-size-32, 32px); -} - -.px-5 { - padding-right: var(--base-size-32, 32px); - padding-left: var(--base-size-32, 32px); -} - -.py-5 { - padding-top: var(--base-size-32, 32px); - padding-bottom: var(--base-size-32, 32px); -} - -.p-6 { - padding: var(--base-size-40, 40px); -} - -.pt-6 { - padding-top: var(--base-size-40, 40px); -} - -.pr-6 { - padding-right: var(--base-size-40, 40px); -} - -.pb-6 { - padding-bottom: var(--base-size-40, 40px); -} - -.pl-6 { - padding-left: var(--base-size-40, 40px); -} - -.px-6 { - padding-right: var(--base-size-40, 40px); - padding-left: var(--base-size-40, 40px); -} - -.py-6 { - padding-top: var(--base-size-40, 40px); - padding-bottom: var(--base-size-40, 40px); -} - -.pt-7 { - padding-top: var(--base-size-48, 48px); -} - -.pr-7 { - padding-right: var(--base-size-48, 48px); -} - -.pb-7 { - padding-bottom: var(--base-size-48, 48px); -} - -.pl-7 { - padding-left: var(--base-size-48, 48px); -} - -.py-7 { - padding-top: var(--base-size-48, 48px); - padding-bottom: var(--base-size-48, 48px); -} - -.pt-8 { - padding-top: var(--base-size-64, 64px); -} - -.pr-8 { - padding-right: var(--base-size-64, 64px); -} - -.pb-8 { - padding-bottom: var(--base-size-64, 64px); -} - -.pl-8 { - padding-left: var(--base-size-64, 64px); -} - -.py-8 { - padding-top: var(--base-size-64, 64px); - padding-bottom: var(--base-size-64, 64px); -} - -.pt-9 { - padding-top: var(--base-size-80, 80px); -} - -.pr-9 { - padding-right: var(--base-size-80, 80px); -} - -.pb-9 { - padding-bottom: var(--base-size-80, 80px); -} - -.pl-9 { - padding-left: var(--base-size-80, 80px); -} - -.py-9 { - padding-top: var(--base-size-80, 80px); - padding-bottom: var(--base-size-80, 80px); -} - -.pt-10 { - padding-top: var(--base-size-96, 96px); -} - -.pr-10 { - padding-right: var(--base-size-96, 96px); -} - -.pb-10 { - padding-bottom: var(--base-size-96, 96px); -} - -.pl-10 { - padding-left: var(--base-size-96, 96px); -} - -.py-10 { - padding-top: var(--base-size-96, 96px); - padding-bottom: var(--base-size-96, 96px); -} - -.pt-11 { - padding-top: var(--base-size-112, 112px); -} - -.pr-11 { - padding-right: var(--base-size-112, 112px); -} - -.pb-11 { - padding-bottom: var(--base-size-112, 112px); -} - -.pl-11 { - padding-left: var(--base-size-112, 112px); -} - -.py-11 { - padding-top: var(--base-size-112, 112px); - padding-bottom: var(--base-size-112, 112px); -} - -.pt-12 { - padding-top: var(--base-size-128, 128px); -} - -.pr-12 { - padding-right: var(--base-size-128, 128px); -} - -.pb-12 { - padding-bottom: var(--base-size-128, 128px); -} - -.pl-12 { - padding-left: var(--base-size-128, 128px); -} - -.py-12 { - padding-top: var(--base-size-128, 128px); - padding-bottom: var(--base-size-128, 128px); -} - -@media (min-width: 544px) { - .p-sm-0 { - padding: 0; - } - - .pt-sm-0 { - padding-top: 0; - } - - .pr-sm-0 { - padding-right: 0; - } - - .pb-sm-0 { - padding-bottom: 0; - } - - .pl-sm-0 { - padding-left: 0; - } - - .px-sm-0 { - padding-right: 0; - padding-left: 0; - } - - .py-sm-0 { - padding-top: 0; - padding-bottom: 0; - } - - .p-sm-1 { - padding: var(--base-size-4, 4px); - } - - .pt-sm-1 { - padding-top: var(--base-size-4, 4px); - } - - .pr-sm-1 { - padding-right: var(--base-size-4, 4px); - } - - .pb-sm-1 { - padding-bottom: var(--base-size-4, 4px); - } - - .pl-sm-1 { - padding-left: var(--base-size-4, 4px); - } - - .px-sm-1 { - padding-right: var(--base-size-4, 4px); - padding-left: var(--base-size-4, 4px); - } - - .py-sm-1 { - padding-top: var(--base-size-4, 4px); - padding-bottom: var(--base-size-4, 4px); - } - - .p-sm-2 { - padding: var(--base-size-8, 8px); - } - - .pt-sm-2 { - padding-top: var(--base-size-8, 8px); - } - - .pr-sm-2 { - padding-right: var(--base-size-8, 8px); - } - - .pb-sm-2 { - padding-bottom: var(--base-size-8, 8px); - } - - .pl-sm-2 { - padding-left: var(--base-size-8, 8px); - } - - .px-sm-2 { - padding-right: var(--base-size-8, 8px); - padding-left: var(--base-size-8, 8px); - } - - .py-sm-2 { - padding-top: var(--base-size-8, 8px); - padding-bottom: var(--base-size-8, 8px); - } - - .p-sm-3 { - padding: var(--base-size-16, 16px); - } - - .pt-sm-3 { - padding-top: var(--base-size-16, 16px); - } - - .pr-sm-3 { - padding-right: var(--base-size-16, 16px); - } - - .pb-sm-3 { - padding-bottom: var(--base-size-16, 16px); - } - - .pl-sm-3 { - padding-left: var(--base-size-16, 16px); - } - - .px-sm-3 { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); - } - - .py-sm-3 { - padding-top: var(--base-size-16, 16px); - padding-bottom: var(--base-size-16, 16px); - } - - .p-sm-4 { - padding: var(--base-size-24, 24px); - } - - .pt-sm-4 { - padding-top: var(--base-size-24, 24px); - } - - .pr-sm-4 { - padding-right: var(--base-size-24, 24px); - } - - .pb-sm-4 { - padding-bottom: var(--base-size-24, 24px); - } - - .pl-sm-4 { - padding-left: var(--base-size-24, 24px); - } - - .px-sm-4 { - padding-right: var(--base-size-24, 24px); - padding-left: var(--base-size-24, 24px); - } - - .py-sm-4 { - padding-top: var(--base-size-24, 24px); - padding-bottom: var(--base-size-24, 24px); - } - - .p-sm-5 { - padding: var(--base-size-32, 32px); - } - - .pt-sm-5 { - padding-top: var(--base-size-32, 32px); - } - - .pr-sm-5 { - padding-right: var(--base-size-32, 32px); - } - - .pb-sm-5 { - padding-bottom: var(--base-size-32, 32px); - } - - .pl-sm-5 { - padding-left: var(--base-size-32, 32px); - } - - .px-sm-5 { - padding-right: var(--base-size-32, 32px); - padding-left: var(--base-size-32, 32px); - } - - .py-sm-5 { - padding-top: var(--base-size-32, 32px); - padding-bottom: var(--base-size-32, 32px); - } - - .p-sm-6 { - padding: var(--base-size-40, 40px); - } - - .pt-sm-6 { - padding-top: var(--base-size-40, 40px); - } - - .pr-sm-6 { - padding-right: var(--base-size-40, 40px); - } - - .pb-sm-6 { - padding-bottom: var(--base-size-40, 40px); - } - - .pl-sm-6 { - padding-left: var(--base-size-40, 40px); - } - - .px-sm-6 { - padding-right: var(--base-size-40, 40px); - padding-left: var(--base-size-40, 40px); - } - - .py-sm-6 { - padding-top: var(--base-size-40, 40px); - padding-bottom: var(--base-size-40, 40px); - } - - .pt-sm-7 { - padding-top: var(--base-size-48, 48px); - } - - .pr-sm-7 { - padding-right: var(--base-size-48, 48px); - } - - .pb-sm-7 { - padding-bottom: var(--base-size-48, 48px); - } - - .pl-sm-7 { - padding-left: var(--base-size-48, 48px); - } - - .py-sm-7 { - padding-top: var(--base-size-48, 48px); - padding-bottom: var(--base-size-48, 48px); - } - - .pt-sm-8 { - padding-top: var(--base-size-64, 64px); - } - - .pr-sm-8 { - padding-right: var(--base-size-64, 64px); - } - - .pb-sm-8 { - padding-bottom: var(--base-size-64, 64px); - } - - .pl-sm-8 { - padding-left: var(--base-size-64, 64px); - } - - .py-sm-8 { - padding-top: var(--base-size-64, 64px); - padding-bottom: var(--base-size-64, 64px); - } - - .pt-sm-9 { - padding-top: var(--base-size-80, 80px); - } - - .pr-sm-9 { - padding-right: var(--base-size-80, 80px); - } - - .pb-sm-9 { - padding-bottom: var(--base-size-80, 80px); - } - - .pl-sm-9 { - padding-left: var(--base-size-80, 80px); - } - - .py-sm-9 { - padding-top: var(--base-size-80, 80px); - padding-bottom: var(--base-size-80, 80px); - } - - .pt-sm-10 { - padding-top: var(--base-size-96, 96px); - } - - .pr-sm-10 { - padding-right: var(--base-size-96, 96px); - } - - .pb-sm-10 { - padding-bottom: var(--base-size-96, 96px); - } - - .pl-sm-10 { - padding-left: var(--base-size-96, 96px); - } - - .py-sm-10 { - padding-top: var(--base-size-96, 96px); - padding-bottom: var(--base-size-96, 96px); - } - - .pt-sm-11 { - padding-top: var(--base-size-112, 112px); - } - - .pr-sm-11 { - padding-right: var(--base-size-112, 112px); - } - - .pb-sm-11 { - padding-bottom: var(--base-size-112, 112px); - } - - .pl-sm-11 { - padding-left: var(--base-size-112, 112px); - } - - .py-sm-11 { - padding-top: var(--base-size-112, 112px); - padding-bottom: var(--base-size-112, 112px); - } - - .pt-sm-12 { - padding-top: var(--base-size-128, 128px); - } - - .pr-sm-12 { - padding-right: var(--base-size-128, 128px); - } - - .pb-sm-12 { - padding-bottom: var(--base-size-128, 128px); - } - - .pl-sm-12 { - padding-left: var(--base-size-128, 128px); - } - - .py-sm-12 { - padding-top: var(--base-size-128, 128px); - padding-bottom: var(--base-size-128, 128px); - } -} - -@media (min-width: 768px) { - .p-md-0 { - padding: 0; - } - - .pt-md-0 { - padding-top: 0; - } - - .pr-md-0 { - padding-right: 0; - } - - .pb-md-0 { - padding-bottom: 0; - } - - .pl-md-0 { - padding-left: 0; - } - - .px-md-0 { - padding-right: 0; - padding-left: 0; - } - - .py-md-0 { - padding-top: 0; - padding-bottom: 0; - } - - .p-md-1 { - padding: var(--base-size-4, 4px); - } - - .pt-md-1 { - padding-top: var(--base-size-4, 4px); - } - - .pr-md-1 { - padding-right: var(--base-size-4, 4px); - } - - .pb-md-1 { - padding-bottom: var(--base-size-4, 4px); - } - - .pl-md-1 { - padding-left: var(--base-size-4, 4px); - } - - .px-md-1 { - padding-right: var(--base-size-4, 4px); - padding-left: var(--base-size-4, 4px); - } - - .py-md-1 { - padding-top: var(--base-size-4, 4px); - padding-bottom: var(--base-size-4, 4px); - } - - .p-md-2 { - padding: var(--base-size-8, 8px); - } - - .pt-md-2 { - padding-top: var(--base-size-8, 8px); - } - - .pr-md-2 { - padding-right: var(--base-size-8, 8px); - } - - .pb-md-2 { - padding-bottom: var(--base-size-8, 8px); - } - - .pl-md-2 { - padding-left: var(--base-size-8, 8px); - } - - .px-md-2 { - padding-right: var(--base-size-8, 8px); - padding-left: var(--base-size-8, 8px); - } - - .py-md-2 { - padding-top: var(--base-size-8, 8px); - padding-bottom: var(--base-size-8, 8px); - } - - .p-md-3 { - padding: var(--base-size-16, 16px); - } - - .pt-md-3 { - padding-top: var(--base-size-16, 16px); - } - - .pr-md-3 { - padding-right: var(--base-size-16, 16px); - } - - .pb-md-3 { - padding-bottom: var(--base-size-16, 16px); - } - - .pl-md-3 { - padding-left: var(--base-size-16, 16px); - } - - .px-md-3 { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); - } - - .py-md-3 { - padding-top: var(--base-size-16, 16px); - padding-bottom: var(--base-size-16, 16px); - } - - .p-md-4 { - padding: var(--base-size-24, 24px); - } - - .pt-md-4 { - padding-top: var(--base-size-24, 24px); - } - - .pr-md-4 { - padding-right: var(--base-size-24, 24px); - } - - .pb-md-4 { - padding-bottom: var(--base-size-24, 24px); - } - - .pl-md-4 { - padding-left: var(--base-size-24, 24px); - } - - .px-md-4 { - padding-right: var(--base-size-24, 24px); - padding-left: var(--base-size-24, 24px); - } - - .py-md-4 { - padding-top: var(--base-size-24, 24px); - padding-bottom: var(--base-size-24, 24px); - } - - .p-md-5 { - padding: var(--base-size-32, 32px); - } - - .pt-md-5 { - padding-top: var(--base-size-32, 32px); - } - - .pr-md-5 { - padding-right: var(--base-size-32, 32px); - } - - .pb-md-5 { - padding-bottom: var(--base-size-32, 32px); - } - - .pl-md-5 { - padding-left: var(--base-size-32, 32px); - } - - .px-md-5 { - padding-right: var(--base-size-32, 32px); - padding-left: var(--base-size-32, 32px); - } - - .py-md-5 { - padding-top: var(--base-size-32, 32px); - padding-bottom: var(--base-size-32, 32px); - } - - .p-md-6 { - padding: var(--base-size-40, 40px); - } - - .pt-md-6 { - padding-top: var(--base-size-40, 40px); - } - - .pr-md-6 { - padding-right: var(--base-size-40, 40px); - } - - .pb-md-6 { - padding-bottom: var(--base-size-40, 40px); - } - - .pl-md-6 { - padding-left: var(--base-size-40, 40px); - } - - .px-md-6 { - padding-right: var(--base-size-40, 40px); - padding-left: var(--base-size-40, 40px); - } - - .py-md-6 { - padding-top: var(--base-size-40, 40px); - padding-bottom: var(--base-size-40, 40px); - } - - .pt-md-7 { - padding-top: var(--base-size-48, 48px); - } - - .pr-md-7 { - padding-right: var(--base-size-48, 48px); - } - - .pb-md-7 { - padding-bottom: var(--base-size-48, 48px); - } - - .pl-md-7 { - padding-left: var(--base-size-48, 48px); - } - - .py-md-7 { - padding-top: var(--base-size-48, 48px); - padding-bottom: var(--base-size-48, 48px); - } - - .pt-md-8 { - padding-top: var(--base-size-64, 64px); - } - - .pr-md-8 { - padding-right: var(--base-size-64, 64px); - } - - .pb-md-8 { - padding-bottom: var(--base-size-64, 64px); - } - - .pl-md-8 { - padding-left: var(--base-size-64, 64px); - } - - .py-md-8 { - padding-top: var(--base-size-64, 64px); - padding-bottom: var(--base-size-64, 64px); - } - - .pt-md-9 { - padding-top: var(--base-size-80, 80px); - } - - .pr-md-9 { - padding-right: var(--base-size-80, 80px); - } - - .pb-md-9 { - padding-bottom: var(--base-size-80, 80px); - } - - .pl-md-9 { - padding-left: var(--base-size-80, 80px); - } - - .py-md-9 { - padding-top: var(--base-size-80, 80px); - padding-bottom: var(--base-size-80, 80px); - } - - .pt-md-10 { - padding-top: var(--base-size-96, 96px); - } - - .pr-md-10 { - padding-right: var(--base-size-96, 96px); - } - - .pb-md-10 { - padding-bottom: var(--base-size-96, 96px); - } - - .pl-md-10 { - padding-left: var(--base-size-96, 96px); - } - - .py-md-10 { - padding-top: var(--base-size-96, 96px); - padding-bottom: var(--base-size-96, 96px); - } - - .pt-md-11 { - padding-top: var(--base-size-112, 112px); - } - - .pr-md-11 { - padding-right: var(--base-size-112, 112px); - } - - .pb-md-11 { - padding-bottom: var(--base-size-112, 112px); - } - - .pl-md-11 { - padding-left: var(--base-size-112, 112px); - } - - .py-md-11 { - padding-top: var(--base-size-112, 112px); - padding-bottom: var(--base-size-112, 112px); - } - - .pt-md-12 { - padding-top: var(--base-size-128, 128px); - } - - .pr-md-12 { - padding-right: var(--base-size-128, 128px); - } - - .pb-md-12 { - padding-bottom: var(--base-size-128, 128px); - } - - .pl-md-12 { - padding-left: var(--base-size-128, 128px); - } - - .py-md-12 { - padding-top: var(--base-size-128, 128px); - padding-bottom: var(--base-size-128, 128px); - } -} - -@media (min-width: 1012px) { - .p-lg-0 { - padding: 0; - } - - .pt-lg-0 { - padding-top: 0; - } - - .pr-lg-0 { - padding-right: 0; - } - - .pb-lg-0 { - padding-bottom: 0; - } - - .pl-lg-0 { - padding-left: 0; - } - - .px-lg-0 { - padding-right: 0; - padding-left: 0; - } - - .py-lg-0 { - padding-top: 0; - padding-bottom: 0; - } - - .p-lg-1 { - padding: var(--base-size-4, 4px); - } - - .pt-lg-1 { - padding-top: var(--base-size-4, 4px); - } - - .pr-lg-1 { - padding-right: var(--base-size-4, 4px); - } - - .pb-lg-1 { - padding-bottom: var(--base-size-4, 4px); - } - - .pl-lg-1 { - padding-left: var(--base-size-4, 4px); - } - - .px-lg-1 { - padding-right: var(--base-size-4, 4px); - padding-left: var(--base-size-4, 4px); - } - - .py-lg-1 { - padding-top: var(--base-size-4, 4px); - padding-bottom: var(--base-size-4, 4px); - } - - .p-lg-2 { - padding: var(--base-size-8, 8px); - } - - .pt-lg-2 { - padding-top: var(--base-size-8, 8px); - } - - .pr-lg-2 { - padding-right: var(--base-size-8, 8px); - } - - .pb-lg-2 { - padding-bottom: var(--base-size-8, 8px); - } - - .pl-lg-2 { - padding-left: var(--base-size-8, 8px); - } - - .px-lg-2 { - padding-right: var(--base-size-8, 8px); - padding-left: var(--base-size-8, 8px); - } - - .py-lg-2 { - padding-top: var(--base-size-8, 8px); - padding-bottom: var(--base-size-8, 8px); - } - - .p-lg-3 { - padding: var(--base-size-16, 16px); - } - - .pt-lg-3 { - padding-top: var(--base-size-16, 16px); - } - - .pr-lg-3 { - padding-right: var(--base-size-16, 16px); - } - - .pb-lg-3 { - padding-bottom: var(--base-size-16, 16px); - } - - .pl-lg-3 { - padding-left: var(--base-size-16, 16px); - } - - .px-lg-3 { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); - } - - .py-lg-3 { - padding-top: var(--base-size-16, 16px); - padding-bottom: var(--base-size-16, 16px); - } - - .p-lg-4 { - padding: var(--base-size-24, 24px); - } - - .pt-lg-4 { - padding-top: var(--base-size-24, 24px); - } - - .pr-lg-4 { - padding-right: var(--base-size-24, 24px); - } - - .pb-lg-4 { - padding-bottom: var(--base-size-24, 24px); - } - - .pl-lg-4 { - padding-left: var(--base-size-24, 24px); - } - - .px-lg-4 { - padding-right: var(--base-size-24, 24px); - padding-left: var(--base-size-24, 24px); - } - - .py-lg-4 { - padding-top: var(--base-size-24, 24px); - padding-bottom: var(--base-size-24, 24px); - } - - .p-lg-5 { - padding: var(--base-size-32, 32px); - } - - .pt-lg-5 { - padding-top: var(--base-size-32, 32px); - } - - .pr-lg-5 { - padding-right: var(--base-size-32, 32px); - } - - .pb-lg-5 { - padding-bottom: var(--base-size-32, 32px); - } - - .pl-lg-5 { - padding-left: var(--base-size-32, 32px); - } - - .px-lg-5 { - padding-right: var(--base-size-32, 32px); - padding-left: var(--base-size-32, 32px); - } - - .py-lg-5 { - padding-top: var(--base-size-32, 32px); - padding-bottom: var(--base-size-32, 32px); - } - - .p-lg-6 { - padding: var(--base-size-40, 40px); - } - - .pt-lg-6 { - padding-top: var(--base-size-40, 40px); - } - - .pr-lg-6 { - padding-right: var(--base-size-40, 40px); - } - - .pb-lg-6 { - padding-bottom: var(--base-size-40, 40px); - } - - .pl-lg-6 { - padding-left: var(--base-size-40, 40px); - } - - .px-lg-6 { - padding-right: var(--base-size-40, 40px); - padding-left: var(--base-size-40, 40px); - } - - .py-lg-6 { - padding-top: var(--base-size-40, 40px); - padding-bottom: var(--base-size-40, 40px); - } - - .pt-lg-7 { - padding-top: var(--base-size-48, 48px); - } - - .pr-lg-7 { - padding-right: var(--base-size-48, 48px); - } - - .pb-lg-7 { - padding-bottom: var(--base-size-48, 48px); - } - - .pl-lg-7 { - padding-left: var(--base-size-48, 48px); - } - - .py-lg-7 { - padding-top: var(--base-size-48, 48px); - padding-bottom: var(--base-size-48, 48px); - } - - .pt-lg-8 { - padding-top: var(--base-size-64, 64px); - } - - .pr-lg-8 { - padding-right: var(--base-size-64, 64px); - } - - .pb-lg-8 { - padding-bottom: var(--base-size-64, 64px); - } - - .pl-lg-8 { - padding-left: var(--base-size-64, 64px); - } - - .py-lg-8 { - padding-top: var(--base-size-64, 64px); - padding-bottom: var(--base-size-64, 64px); - } - - .pt-lg-9 { - padding-top: var(--base-size-80, 80px); - } - - .pr-lg-9 { - padding-right: var(--base-size-80, 80px); - } - - .pb-lg-9 { - padding-bottom: var(--base-size-80, 80px); - } - - .pl-lg-9 { - padding-left: var(--base-size-80, 80px); - } - - .py-lg-9 { - padding-top: var(--base-size-80, 80px); - padding-bottom: var(--base-size-80, 80px); - } - - .pt-lg-10 { - padding-top: var(--base-size-96, 96px); - } - - .pr-lg-10 { - padding-right: var(--base-size-96, 96px); - } - - .pb-lg-10 { - padding-bottom: var(--base-size-96, 96px); - } - - .pl-lg-10 { - padding-left: var(--base-size-96, 96px); - } - - .py-lg-10 { - padding-top: var(--base-size-96, 96px); - padding-bottom: var(--base-size-96, 96px); - } - - .pt-lg-11 { - padding-top: var(--base-size-112, 112px); - } - - .pr-lg-11 { - padding-right: var(--base-size-112, 112px); - } - - .pb-lg-11 { - padding-bottom: var(--base-size-112, 112px); - } - - .pl-lg-11 { - padding-left: var(--base-size-112, 112px); - } - - .py-lg-11 { - padding-top: var(--base-size-112, 112px); - padding-bottom: var(--base-size-112, 112px); - } - - .pt-lg-12 { - padding-top: var(--base-size-128, 128px); - } - - .pr-lg-12 { - padding-right: var(--base-size-128, 128px); - } - - .pb-lg-12 { - padding-bottom: var(--base-size-128, 128px); - } - - .pl-lg-12 { - padding-left: var(--base-size-128, 128px); - } - - .py-lg-12 { - padding-top: var(--base-size-128, 128px); - padding-bottom: var(--base-size-128, 128px); - } -} - -@media (min-width: 1280px) { - .p-xl-0 { - padding: 0; - } - - .pt-xl-0 { - padding-top: 0; - } - - .pr-xl-0 { - padding-right: 0; - } - - .pb-xl-0 { - padding-bottom: 0; - } - - .pl-xl-0 { - padding-left: 0; - } - - .px-xl-0 { - padding-right: 0; - padding-left: 0; - } - - .py-xl-0 { - padding-top: 0; - padding-bottom: 0; - } - - .p-xl-1 { - padding: var(--base-size-4, 4px); - } - - .pt-xl-1 { - padding-top: var(--base-size-4, 4px); - } - - .pr-xl-1 { - padding-right: var(--base-size-4, 4px); - } - - .pb-xl-1 { - padding-bottom: var(--base-size-4, 4px); - } - - .pl-xl-1 { - padding-left: var(--base-size-4, 4px); - } - - .px-xl-1 { - padding-right: var(--base-size-4, 4px); - padding-left: var(--base-size-4, 4px); - } - - .py-xl-1 { - padding-top: var(--base-size-4, 4px); - padding-bottom: var(--base-size-4, 4px); - } - - .p-xl-2 { - padding: var(--base-size-8, 8px); - } - - .pt-xl-2 { - padding-top: var(--base-size-8, 8px); - } - - .pr-xl-2 { - padding-right: var(--base-size-8, 8px); - } - - .pb-xl-2 { - padding-bottom: var(--base-size-8, 8px); - } - - .pl-xl-2 { - padding-left: var(--base-size-8, 8px); - } - - .px-xl-2 { - padding-right: var(--base-size-8, 8px); - padding-left: var(--base-size-8, 8px); - } - - .py-xl-2 { - padding-top: var(--base-size-8, 8px); - padding-bottom: var(--base-size-8, 8px); - } - - .p-xl-3 { - padding: var(--base-size-16, 16px); - } - - .pt-xl-3 { - padding-top: var(--base-size-16, 16px); - } - - .pr-xl-3 { - padding-right: var(--base-size-16, 16px); - } - - .pb-xl-3 { - padding-bottom: var(--base-size-16, 16px); - } - - .pl-xl-3 { - padding-left: var(--base-size-16, 16px); - } - - .px-xl-3 { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); - } - - .py-xl-3 { - padding-top: var(--base-size-16, 16px); - padding-bottom: var(--base-size-16, 16px); - } - - .p-xl-4 { - padding: var(--base-size-24, 24px); - } - - .pt-xl-4 { - padding-top: var(--base-size-24, 24px); - } - - .pr-xl-4 { - padding-right: var(--base-size-24, 24px); - } - - .pb-xl-4 { - padding-bottom: var(--base-size-24, 24px); - } - - .pl-xl-4 { - padding-left: var(--base-size-24, 24px); - } - - .px-xl-4 { - padding-right: var(--base-size-24, 24px); - padding-left: var(--base-size-24, 24px); - } - - .py-xl-4 { - padding-top: var(--base-size-24, 24px); - padding-bottom: var(--base-size-24, 24px); - } - - .p-xl-5 { - padding: var(--base-size-32, 32px); - } - - .pt-xl-5 { - padding-top: var(--base-size-32, 32px); - } - - .pr-xl-5 { - padding-right: var(--base-size-32, 32px); - } - - .pb-xl-5 { - padding-bottom: var(--base-size-32, 32px); - } - - .pl-xl-5 { - padding-left: var(--base-size-32, 32px); - } - - .px-xl-5 { - padding-right: var(--base-size-32, 32px); - padding-left: var(--base-size-32, 32px); - } - - .py-xl-5 { - padding-top: var(--base-size-32, 32px); - padding-bottom: var(--base-size-32, 32px); - } - - .p-xl-6 { - padding: var(--base-size-40, 40px); - } - - .pt-xl-6 { - padding-top: var(--base-size-40, 40px); - } - - .pr-xl-6 { - padding-right: var(--base-size-40, 40px); - } - - .pb-xl-6 { - padding-bottom: var(--base-size-40, 40px); - } - - .pl-xl-6 { - padding-left: var(--base-size-40, 40px); - } - - .px-xl-6 { - padding-right: var(--base-size-40, 40px); - padding-left: var(--base-size-40, 40px); - } - - .py-xl-6 { - padding-top: var(--base-size-40, 40px); - padding-bottom: var(--base-size-40, 40px); - } - - .pt-xl-7 { - padding-top: var(--base-size-48, 48px); - } - - .pr-xl-7 { - padding-right: var(--base-size-48, 48px); - } - - .pb-xl-7 { - padding-bottom: var(--base-size-48, 48px); - } - - .pl-xl-7 { - padding-left: var(--base-size-48, 48px); - } - - .py-xl-7 { - padding-top: var(--base-size-48, 48px); - padding-bottom: var(--base-size-48, 48px); - } - - .pt-xl-8 { - padding-top: var(--base-size-64, 64px); - } - - .pr-xl-8 { - padding-right: var(--base-size-64, 64px); - } - - .pb-xl-8 { - padding-bottom: var(--base-size-64, 64px); - } - - .pl-xl-8 { - padding-left: var(--base-size-64, 64px); - } - - .py-xl-8 { - padding-top: var(--base-size-64, 64px); - padding-bottom: var(--base-size-64, 64px); - } - - .pt-xl-9 { - padding-top: var(--base-size-80, 80px); - } - - .pr-xl-9 { - padding-right: var(--base-size-80, 80px); - } - - .pb-xl-9 { - padding-bottom: var(--base-size-80, 80px); - } - - .pl-xl-9 { - padding-left: var(--base-size-80, 80px); - } - - .py-xl-9 { - padding-top: var(--base-size-80, 80px); - padding-bottom: var(--base-size-80, 80px); - } - - .pt-xl-10 { - padding-top: var(--base-size-96, 96px); - } - - .pr-xl-10 { - padding-right: var(--base-size-96, 96px); - } - - .pb-xl-10 { - padding-bottom: var(--base-size-96, 96px); - } - - .pl-xl-10 { - padding-left: var(--base-size-96, 96px); - } - - .py-xl-10 { - padding-top: var(--base-size-96, 96px); - padding-bottom: var(--base-size-96, 96px); - } - - .pt-xl-11 { - padding-top: var(--base-size-112, 112px); - } - - .pr-xl-11 { - padding-right: var(--base-size-112, 112px); - } - - .pb-xl-11 { - padding-bottom: var(--base-size-112, 112px); - } - - .pl-xl-11 { - padding-left: var(--base-size-112, 112px); - } - - .py-xl-11 { - padding-top: var(--base-size-112, 112px); - padding-bottom: var(--base-size-112, 112px); - } - - .pt-xl-12 { - padding-top: var(--base-size-128, 128px); - } - - .pr-xl-12 { - padding-right: var(--base-size-128, 128px); - } - - .pb-xl-12 { - padding-bottom: var(--base-size-128, 128px); - } - - .pl-xl-12 { - padding-left: var(--base-size-128, 128px); - } - - .py-xl-12 { - padding-top: var(--base-size-128, 128px); - padding-bottom: var(--base-size-128, 128px); - } -} - -.p-responsive { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); -} - -@media (min-width: 544px) { - .p-responsive { - padding-right: var(--base-size-40, 40px); - padding-left: var(--base-size-40, 40px); - } -} - -@media (min-width: 1012px) { - .p-responsive { - padding-right: var(--base-size-16, 16px); - padding-left: var(--base-size-16, 16px); - } -} - -.h1 { - font-size: var(--h1-size-mobile, 26px); -} - -@media (min-width: 768px) { - .h1 { - font-size: var(--h1-size, 32px); - } -} - -.h2 { - font-size: var(--h2-size-mobile, 22px); -} - -@media (min-width: 768px) { - .h2 { - font-size: var(--h2-size, 24px); - } -} - -.h3 { - font-size: var(--h3-size-mobile, 18px); -} - -@media (min-width: 768px) { - .h3 { - font-size: var(--h3-size, 20px); - } -} - -.h4 { - font-size: var(--h4-size, 16px); -} - -.h5 { - font-size: var(--h5-size, 14px); -} - -.h6 { - font-size: var(--h6-size, 12px); -} - -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-weight: var(--base-text-weight-semibold, 600); -} - -.f1 { - font-size: var(--h1-size-mobile, 26px); -} - -@media (min-width: 768px) { - .f1 { - font-size: var(--h1-size, 32px); - } -} - -.f2 { - font-size: var(--h2-size-mobile, 22px); -} - -@media (min-width: 768px) { - .f2 { - font-size: var(--h2-size, 24px); - } -} - -.f3 { - font-size: var(--h3-size-mobile, 18px); -} - -@media (min-width: 768px) { - .f3 { - font-size: var(--h3-size, 20px); - } -} - -.f4 { - font-size: var(--h4-size, 16px); -} - -@media (min-width: 768px) { - .f4 { - font-size: var(--h4-size, 16px); - } -} - -.f5 { - font-size: var(--h5-size, 14px); -} - -.f6 { - font-size: var(--h6-size, 12px); -} - -.f00-light { - font-size: var(--h00-size-mobile, 40px); - font-weight: var(--base-text-weight-light, 300); -} - -@media (min-width: 768px) { - .f00-light { - font-size: var(--h00-size, 48px); - } -} - -.f0-light { - font-size: var(--h0-size-mobile, 32px); - font-weight: var(--base-text-weight-light, 300); -} - -@media (min-width: 768px) { - .f0-light { - font-size: var(--h0-size, 40px); - } -} - -.f1-light { - font-size: var(--h1-size-mobile, 26px); - font-weight: var(--base-text-weight-light, 300); -} - -@media (min-width: 768px) { - .f1-light { - font-size: var(--h1-size, 32px); - } -} - -.f2-light { - font-size: var(--h2-size-mobile, 22px); - font-weight: var(--base-text-weight-light, 300); -} - -@media (min-width: 768px) { - .f2-light { - font-size: var(--h2-size, 24px); - } -} - -.f3-light { - font-size: var(--h3-size-mobile, 18px); - font-weight: var(--base-text-weight-light, 300); -} - -@media (min-width: 768px) { - .f3-light { - font-size: var(--h3-size, 20px); - } -} - -.text-small { - font-size: var(--h6-size, 12px); -} - -.lead { - margin-bottom: 30px; - font-size: var(--h3-size, 20px); - font-weight: var(--base-text-weight-light, 300); -} - -.lh-condensed-ultra { - line-height: 1; -} - -.lh-condensed { - line-height: 1.25; -} - -.lh-default { - line-height: 1.5; -} - -.lh-0 { - line-height: 0; -} - -@media (min-width: 544px) { - .lh-sm-condensed-ultra { - line-height: 1; - } - - .lh-sm-condensed { - line-height: 1.25; - } - - .lh-sm-default { - line-height: 1.5; - } - - .lh-sm-0 { - line-height: 0; - } -} - -@media (min-width: 768px) { - .lh-md-condensed-ultra { - line-height: 1; - } - - .lh-md-condensed { - line-height: 1.25; - } - - .lh-md-default { - line-height: 1.5; - } - - .lh-md-0 { - line-height: 0; - } -} - -@media (min-width: 1012px) { - .lh-lg-condensed-ultra { - line-height: 1; - } - - .lh-lg-condensed { - line-height: 1.25; - } - - .lh-lg-default { - line-height: 1.5; - } - - .lh-lg-0 { - line-height: 0; - } -} - -@media (min-width: 1280px) { - .lh-xl-condensed-ultra { - line-height: 1; - } - - .lh-xl-condensed { - line-height: 1.25; - } - - .lh-xl-default { - line-height: 1.5; - } - - .lh-xl-0 { - line-height: 0; - } -} - -.text-right { - text-align: right; -} - -.text-left { - text-align: left; -} - -.text-center { - text-align: center; -} - -@media (min-width: 544px) { - .text-sm-right { - text-align: right; - } - - .text-sm-left { - text-align: left; - } - - .text-sm-center { - text-align: center; - } -} - -@media (min-width: 768px) { - .text-md-right { - text-align: right; - } - - .text-md-left { - text-align: left; - } - - .text-md-center { - text-align: center; - } -} - -@media (min-width: 1012px) { - .text-lg-right { - text-align: right; - } - - .text-lg-left { - text-align: left; - } - - .text-lg-center { - text-align: center; - } -} - -@media (min-width: 1280px) { - .text-xl-right { - text-align: right; - } - - .text-xl-left { - text-align: left; - } - - .text-xl-center { - text-align: center; - } -} - -.text-normal { - font-weight: var(--base-text-weight-normal, 400); -} - -.text-bold { - font-weight: var(--base-text-weight-semibold, 600); -} - -.text-semibold { - font-weight: var(--base-text-weight-medium, 500); -} - -.text-light { - font-weight: var(--base-text-weight-light, 300); -} - -.text-italic { - font-style: italic; -} - -.text-uppercase { - text-transform: uppercase; -} - -.text-underline { - text-decoration: underline; -} - -.no-underline { - text-decoration: none; -} - -.no-wrap { - white-space: nowrap; -} - -.ws-normal { - white-space: normal; -} - -.wb-break-word { - word-break: break-word; - word-wrap: break-word; - overflow-wrap: break-word; -} - -.wb-break-all { - word-break: break-all; -} - -.text-emphasized { - font-weight: var(--base-text-weight-semibold, 600); -} - -.list-style-none { - list-style: none; -} - -.text-mono { - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; -} - -.user-select-none { - -webkit-user-select: none; - user-select: none; -} - -.text-capitalize { - text-transform: capitalize; -} - -.d-block { - display: block; -} - -.d-flex { - display: flex; -} - -.d-inline { - display: inline; -} - -.d-inline-block { - display: inline-block; -} - -.d-inline-flex { - display: inline-flex; -} - -.d-none { - display: none; -} - -.d-table { - display: table; -} - -.d-table-cell { - display: table-cell; -} - -@media (min-width: 544px) { - .d-sm-block { - display: block; - } - - .d-sm-flex { - display: flex; - } - - .d-sm-inline { - display: inline; - } - - .d-sm-inline-block { - display: inline-block; - } - - .d-sm-inline-flex { - display: inline-flex; - } - - .d-sm-none { - display: none; - } - - .d-sm-table { - display: table; - } - - .d-sm-table-cell { - display: table-cell; - } -} - -@media (min-width: 768px) { - .d-md-block { - display: block; - } - - .d-md-flex { - display: flex; - } - - .d-md-inline { - display: inline; - } - - .d-md-inline-block { - display: inline-block; - } - - .d-md-inline-flex { - display: inline-flex; - } - - .d-md-none { - display: none; - } - - .d-md-table { - display: table; - } - - .d-md-table-cell { - display: table-cell; - } -} - -@media (min-width: 1012px) { - .d-lg-block { - display: block; - } - - .d-lg-flex { - display: flex; - } - - .d-lg-inline { - display: inline; - } - - .d-lg-inline-block { - display: inline-block; - } - - .d-lg-inline-flex { - display: inline-flex; - } - - .d-lg-none { - display: none; - } - - .d-lg-table { - display: table; - } - - .d-lg-table-cell { - display: table-cell; - } -} - -@media (min-width: 1280px) { - .d-xl-block { - display: block; - } - - .d-xl-flex { - display: flex; - } - - .d-xl-inline { - display: inline; - } - - .d-xl-inline-block { - display: inline-block; - } - - .d-xl-inline-flex { - display: inline-flex; - } - - .d-xl-none { - display: none; - } - - .d-xl-table { - display: table; - } - - .d-xl-table-cell { - display: table-cell; - } -} - -.v-hidden { - visibility: hidden; -} - -.v-visible { - visibility: visible; -} - -@media (max-width: 543.98px) { - .hide-sm { - display: none; - } -} - -@media (min-width: 544px)and (max-width: 767.98px) { - .hide-md { - display: none; - } -} - -@media (min-width: 768px)and (max-width: 1011.98px) { - .hide-lg { - display: none; - } -} - -@media (min-width: 1012px) { - .hide-xl { - display: none; - } -} - -.show-whenNarrow, -.show-whenRegular, -.show-whenWide, -.show-whenRegular.hide-whenWide { - display: none; -} - -.hide-whenNarrow, -.hide-whenRegular, -.hide-whenWide { - display: block; -} - -@media (max-width: 767.98px) { - .show-whenNarrow { - display: block; - } - - .hide-whenNarrow { - display: none; - } -} - -@media (min-width: 768px) { - .show-whenRegular, - .show-whenRegular.hide-whenWide { - display: block; - } - - .hide-whenRegular { - display: none; - } -} - -@media (min-width: 1280px) { - .show-whenWide { - display: block; - } - - .hide-whenWide, - .show-whenRegular.hide-whenWide { - display: none; - } -} - -.table-fixed { - table-layout: fixed; -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - word-wrap: normal; - border: 0; -} - -.show-on-focus { - position: absolute; -} - -.show-on-focus:not(:focus) { - width: 1px; - height: 1px; - padding: 0; - overflow: hidden; - clip: rect(1px, 1px, 1px, 1px); - border: 0; -} - -.show-on-focus:focus { - z-index: 999; -} - -.suggester { - position: relative; - top: 0; - left: 0; - min-width: 180px; - padding: 0; - margin: 0; - margin-top: 24px; - list-style: none; - cursor: pointer; - background: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)); -} - -.suggester li { - display: block; - padding: 4px 8px; - font-weight: var(--base-text-weight-medium, 500); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.suggester li small { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.suggester li:last-child { - border-bottom: 0; - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.suggester li:first-child { - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.suggester li:hover { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-decoration: none; - background: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.suggester li:hover small { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.suggester li:hover .octicon { - color: inherit; -} - -.suggester li[aria-selected=true], -.suggester li.navigation-focus { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-decoration: none; - background: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.suggester li[aria-selected=true] small, -.suggester li.navigation-focus small { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.suggester li[aria-selected=true] .octicon, -.suggester li.navigation-focus .octicon { - color: inherit; -} - -.suggester-container { - position: absolute; - top: 0; - left: 0; - z-index: 30; -} - -@media (max-width: 544px) { - .page-responsive .suggester-container { - right: 8px; - left: 8px; - } - - .page-responsive .suggester li { - padding: 8px 16px; - } -} - -.avatar-parent-child { - position: relative; -} - -.avatar-child { - position: absolute; - right: -15%; - bottom: -9%; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 4px; - box-shadow: var(--avatar-shadow, var(--color-avatar-child-shadow)); -} - -.CircleBadge { - display: flex; - align-items: center; - justify-content: center; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 50%; - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)); -} - -.CircleBadge-icon { - max-width: 60%; - height: auto; - max-height: 55%; -} - -.CircleBadge--small { - width: 56px; - height: 56px; -} - -.CircleBadge--medium { - width: 96px; - height: 96px; -} - -.CircleBadge--large { - width: 128px; - height: 128px; -} - -.DashedConnection { - position: relative; -} - -.DashedConnection::before { - position: absolute; - top: 50%; - left: 0; - width: 100%; - content: ""; - border-bottom: 2px dashed var(--borderColor-default, var(--color-border-default)); -} - -.DashedConnection .CircleBadge { - position: relative; -} - -.branch-name { - display: inline-block; - padding: 2px 6px; - font: 12px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - color: var(--fgColor-muted, var(--color-fg-muted)); - word-break: break-all; - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: 6px; -} - -.branch-name .octicon { - margin: 1px -2px 0 0; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -a.branch-name { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -a.branch-name .octicon { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.Header { - z-index: 32; - display: flex; - padding: 16px; - font-size: 14px; - line-height: 1.5; - color: var(--header-fgColor-default, var(--color-header-text)); - background-color: var(--header-bgColor, var(--color-header-bg)); - align-items: center; - flex-wrap: nowrap; -} - -.Header-item { - display: flex; - margin-right: 16px; - align-self: stretch; - align-items: center; - flex-wrap: nowrap; -} - -.Header-item--full { - flex: auto; -} - -.Header-link { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--header-fgColor-logo, var(--color-header-logo)); - white-space: nowrap; -} - -.Header-link:hover, -.Header-link:focus { - color: var(--header-fgColor-default, var(--color-header-text)); - text-decoration: none; -} - -.Header-input { - color: var(--header-fgColor-default, var(--color-header-text)); - background-color: var(--headerSearch-bgColor, var(--color-header-search-bg)); - border: 1px solid var(--headerSearch-borderColor, var(--color-header-search-border)); - box-shadow: none; -} - -.Header-input::placeholder { - color: rgba(255,255,255,.75); -} - -.IssueLabel { - display: inline-block; - padding: 0 7px; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 18px; - white-space: nowrap; - border: 1px solid transparent; - border-radius: 2em; -} - -.IssueLabel .g-emoji { - position: relative; - top: -0.05em; - display: inline-block; - font-size: 1em; - line-height: 1; -} - -.IssueLabel:hover { - text-decoration: none; -} - -.IssueLabel--big { - padding-right: 10px; - padding-left: 10px; - line-height: 22px; -} - -.AnimatedEllipsis { - display: inline-block; - overflow: hidden; - vertical-align: bottom; -} - -.AnimatedEllipsis::after { - display: inline-block; - content: "..."; - animation: AnimatedEllipsis-keyframes 1.2s steps(4, jump-none) infinite; -} - -@keyframes AnimatedEllipsis-keyframes { - 0% { - transform: translateX(-100%); - } -} - -.markdown-body { - font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - font-size: 16px; - line-height: 1.5; - word-wrap: break-word; -} - -.markdown-body::before { - display: table; - content: ""; -} - -.markdown-body::after { - display: table; - clear: both; - content: ""; -} - -.markdown-body > *:first-child { - margin-top: 0; -} - -.markdown-body > *:last-child { - margin-bottom: 0; -} - -.markdown-body a:not([href]) { - color: inherit; - text-decoration: none; -} - -.markdown-body .absent { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.markdown-body .anchor { - float: left; - padding-right: 4px; - margin-left: -20px; - line-height: 1; -} - -.markdown-body .anchor:focus { - outline: none; -} - -.markdown-body p, -.markdown-body blockquote, -.markdown-body ul, -.markdown-body ol, -.markdown-body dl, -.markdown-body table, -.markdown-body pre, -.markdown-body details { - margin-top: 0; - margin-bottom: 16px; -} - -.markdown-body hr { - height: .25em; - padding: 0; - margin: 24px 0; - background-color: var(--borderColor-default, var(--color-border-default)); - border: 0; -} - -.markdown-body blockquote { - padding: 0 1em; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-left: .25em solid var(--borderColor-default, var(--color-border-default)); -} - -.markdown-body blockquote > :first-child { - margin-top: 0; -} - -.markdown-body blockquote > :last-child { - margin-bottom: 0; -} - -.markdown-body h1, -.markdown-body h2, -.markdown-body h3, -.markdown-body h4, -.markdown-body h5, -.markdown-body h6 { - margin-top: 24px; - margin-bottom: 16px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1.25; -} - -.markdown-body h1 .octicon-link, -.markdown-body h2 .octicon-link, -.markdown-body h3 .octicon-link, -.markdown-body h4 .octicon-link, -.markdown-body h5 .octicon-link, -.markdown-body h6 .octicon-link { - color: var(--fgColor-default, var(--color-fg-default)); - vertical-align: middle; - visibility: hidden; -} - -.markdown-body h1:hover .anchor, -.markdown-body h2:hover .anchor, -.markdown-body h3:hover .anchor, -.markdown-body h4:hover .anchor, -.markdown-body h5:hover .anchor, -.markdown-body h6:hover .anchor { - text-decoration: none; -} - -.markdown-body h1:hover .anchor .octicon-link, -.markdown-body h2:hover .anchor .octicon-link, -.markdown-body h3:hover .anchor .octicon-link, -.markdown-body h4:hover .anchor .octicon-link, -.markdown-body h5:hover .anchor .octicon-link, -.markdown-body h6:hover .anchor .octicon-link { - visibility: visible; -} - -.markdown-body h1 tt, -.markdown-body h1 code, -.markdown-body h2 tt, -.markdown-body h2 code, -.markdown-body h3 tt, -.markdown-body h3 code, -.markdown-body h4 tt, -.markdown-body h4 code, -.markdown-body h5 tt, -.markdown-body h5 code, -.markdown-body h6 tt, -.markdown-body h6 code { - padding: 0 .2em; - font-size: inherit; -} - -.markdown-body h1 { - padding-bottom: .3em; - font-size: 2em; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.markdown-body h2 { - padding-bottom: .3em; - font-size: 1.5em; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.markdown-body h3 { - font-size: 1.25em; -} - -.markdown-body h4 { - font-size: 1em; -} - -.markdown-body h5 { - font-size: .875em; -} - -.markdown-body h6 { - font-size: .85em; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.markdown-body summary h1, -.markdown-body summary h2, -.markdown-body summary h3, -.markdown-body summary h4, -.markdown-body summary h5, -.markdown-body summary h6 { - display: inline-block; -} - -.markdown-body summary h1 .anchor, -.markdown-body summary h2 .anchor, -.markdown-body summary h3 .anchor, -.markdown-body summary h4 .anchor, -.markdown-body summary h5 .anchor, -.markdown-body summary h6 .anchor { - margin-left: -40px; -} - -.markdown-body summary h1, -.markdown-body summary h2 { - padding-bottom: 0; - border-bottom: 0; -} - -.markdown-body ul, -.markdown-body ol { - padding-left: 2em; -} - -.markdown-body ul.no-list, -.markdown-body ol.no-list { - padding: 0; - list-style-type: none; -} - -.markdown-body ol[type="a s"] { - list-style-type: lower-alpha; -} - -.markdown-body ol[type="A s"] { - list-style-type: upper-alpha; -} - -.markdown-body ol[type="i s"] { - list-style-type: lower-roman; -} - -.markdown-body ol[type="I s"] { - list-style-type: upper-roman; -} - -.markdown-body ol[type="1"] { - list-style-type: decimal; -} - -.markdown-body div > ol:not([type]) { - list-style-type: decimal; -} - -.markdown-body ul ul, -.markdown-body ul ol, -.markdown-body ol ol, -.markdown-body ol ul { - margin-top: 0; - margin-bottom: 0; -} - -.markdown-body li > p { - margin-top: 16px; -} - -.markdown-body li + li { - margin-top: .25em; -} - -.markdown-body dl { - padding: 0; -} - -.markdown-body dl dt { - padding: 0; - margin-top: 16px; - font-size: 1em; - font-style: italic; - font-weight: var(--base-text-weight-semibold, 600); -} - -.markdown-body dl dd { - padding: 0 16px; - margin-bottom: 16px; -} - -.markdown-body table { - display: block; - width: 100%; - width: max-content; - max-width: 100%; - overflow: auto; -} - -.markdown-body table th { - font-weight: var(--base-text-weight-semibold, 600); -} - -.markdown-body table th, -.markdown-body table td { - padding: 6px 13px; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.markdown-body table td > :last-child { - margin-bottom: 0; -} - -.markdown-body table tr { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.markdown-body table tr:nth-child(2n) { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.markdown-body table img { - background-color: transparent; -} - -.markdown-body img { - max-width: 100%; - box-sizing: content-box; - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.markdown-body img[align=right] { - padding-left: 20px; -} - -.markdown-body img[align=left] { - padding-right: 20px; -} - -.markdown-body .emoji { - max-width: none; - vertical-align: text-top; - background-color: transparent; -} - -.markdown-body span.frame { - display: block; - overflow: hidden; -} - -.markdown-body span.frame > span { - display: block; - float: left; - width: auto; - padding: 7px; - margin: 13px 0 0; - overflow: hidden; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.markdown-body span.frame span img { - display: block; - float: left; -} - -.markdown-body span.frame span span { - display: block; - padding: 5px 0 0; - clear: both; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.markdown-body span.align-center { - display: block; - overflow: hidden; - clear: both; -} - -.markdown-body span.align-center > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: center; -} - -.markdown-body span.align-center span img { - margin: 0 auto; - text-align: center; -} - -.markdown-body span.align-right { - display: block; - overflow: hidden; - clear: both; -} - -.markdown-body span.align-right > span { - display: block; - margin: 13px 0 0; - overflow: hidden; - text-align: right; -} - -.markdown-body span.align-right span img { - margin: 0; - text-align: right; -} - -.markdown-body span.float-left { - display: block; - float: left; - margin-right: 13px; - overflow: hidden; -} - -.markdown-body span.float-left span { - margin: 13px 0 0; -} - -.markdown-body span.float-right { - display: block; - float: right; - margin-left: 13px; - overflow: hidden; -} - -.markdown-body span.float-right > span { - display: block; - margin: 13px auto 0; - overflow: hidden; - text-align: right; -} - -.markdown-body code, -.markdown-body tt { - padding: .2em .4em; - margin: 0; - font-size: 85%; - white-space: break-spaces; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - border-radius: 6px; -} - -.markdown-body code br, -.markdown-body tt br { - display: none; -} - -.markdown-body del code { - text-decoration: inherit; -} - -.markdown-body samp { - font-size: 85%; -} - -.markdown-body pre { - word-wrap: normal; -} - -.markdown-body pre code { - font-size: 100%; -} - -.markdown-body pre > code { - padding: 0; - margin: 0; - word-break: normal; - white-space: pre; - background: transparent; - border: 0; -} - -.markdown-body .highlight { - margin-bottom: 16px; -} - -.markdown-body .highlight pre { - margin-bottom: 0; - word-break: normal; -} - -.markdown-body .highlight pre, -.markdown-body pre { - padding: 16px; - overflow: auto; - font-size: 85%; - line-height: 1.45; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-radius: 6px; -} - -.markdown-body pre code, -.markdown-body pre tt { - display: inline; - max-width: auto; - padding: 0; - margin: 0; - overflow: visible; - line-height: inherit; - word-wrap: normal; - background-color: transparent; - border: 0; -} - -.markdown-body .csv-data td, -.markdown-body .csv-data th { - padding: 5px; - overflow: hidden; - font-size: 12px; - line-height: 1; - text-align: left; - white-space: nowrap; -} - -.markdown-body .csv-data .blob-num { - padding: 10px 8px 9px; - text-align: right; - background: var(--bgColor-default, var(--color-canvas-default)); - border: 0; -} - -.markdown-body .csv-data tr { - border-top: 0; -} - -.markdown-body .csv-data th { - font-weight: var(--base-text-weight-semibold, 600); - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top: 0; -} - -.markdown-body [data-footnote-ref]::before { - content: "["; -} - -.markdown-body [data-footnote-ref]::after { - content: "]"; -} - -.markdown-body .footnotes { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.markdown-body .footnotes ol { - padding-left: 16px; -} - -.markdown-body .footnotes ol ul { - display: inline-block; - padding-left: 16px; - margin-top: 16px; -} - -.markdown-body .footnotes li { - position: relative; -} - -.markdown-body .footnotes li:target::before { - position: absolute; - top: -8px; - right: -8px; - bottom: -8px; - left: -24px; - pointer-events: none; - content: ""; - border: 2px solid var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: 6px; -} - -.markdown-body .footnotes li:target { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.markdown-body .footnotes .data-footnote-backref g-emoji { - font-family: monospace; -} - -.SelectMenu { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 99; - display: flex; - padding: 16px; - pointer-events: none; - flex-direction: column; -} - -@media (min-width: 544px) { - .SelectMenu { - position: absolute; - top: auto; - right: auto; - bottom: auto; - left: auto; - padding: 0; - } -} - -.SelectMenu::before { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - pointer-events: none; - content: ""; - background-color: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); -} - -@media (min-width: 544px) { - .SelectMenu::before { - display: none; - } -} - -.SelectMenu-modal { - position: relative; - z-index: 99; - display: flex; - max-height: 66%; - margin: auto 0; - overflow: hidden; - pointer-events: auto; - flex-direction: column; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: 1px solid var(--selectMenu-borderColor, var(--color-select-menu-backdrop-border)); - border-radius: 12px; - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); - animation: SelectMenu-modal-animation .12s cubic-bezier(0, 0.1, 0.1, 1) backwards; -} - -@keyframes SelectMenu-modal-animation { - 0% { - opacity: 0; - transform: scale(0.9); - } -} - -@keyframes SelectMenu-modal-animation--sm { - 0% { - opacity: 0; - transform: translateY(-16px); - } -} - -@media (min-width: 544px) { - .SelectMenu-modal { - width: 300px; - height: auto; - max-height: 480px; - margin: 8px 0 16px 0; - font-size: 12px; - border-color: var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); - animation-name: SelectMenu-modal-animation--sm; - } -} - -.SelectMenu-header { - display: flex; - padding: 16px; - flex: none; - align-items: center; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 544px) { - .SelectMenu-header { - padding: 7px 7px 7px 16px; - } -} - -.SelectMenu-title { - flex: 1; - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); -} - -@media (min-width: 544px) { - .SelectMenu-title { - font-size: inherit; - } -} - -.SelectMenu-closeButton { - padding: 16px; - margin: -16px; - line-height: 1; - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: transparent; - border: 0; -} - -@media (min-width: 544px) { - .SelectMenu-closeButton { - padding: 8px; - margin: -8px -7px; - } -} - -.SelectMenu-filter { - padding: 16px; - margin: 0; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 544px) { - .SelectMenu-filter { - padding: 8px; - } -} - -.SelectMenu-input { - display: block; - width: 100%; -} - -@media (min-width: 544px) { - .SelectMenu-input { - font-size: 14px; - } -} - -.SelectMenu-list { - position: relative; - padding: 0; - margin: 0; - margin-bottom: -1px; - flex: auto; - overflow-x: hidden; - overflow-y: auto; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - -webkit-overflow-scrolling: touch; -} - -.SelectMenu-item { - display: flex; - align-items: center; - width: 100%; - padding: 16px; - overflow: hidden; - color: var(--fgColor-default, var(--color-fg-default)); - text-align: left; - cursor: pointer; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: 0; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 544px) { - .SelectMenu-item { - padding-top: 7px; - padding-bottom: 7px; - } -} - -.SelectMenu-list--borderless .SelectMenu-item { - border-bottom: 0; -} - -.SelectMenu-icon { - width: 16px; - margin-right: 8px; - flex-shrink: 0; -} - -.SelectMenu-icon--check { - visibility: hidden; - transition: transform .12s cubic-bezier(0.5, 0.1, 1, 0.5),visibility 0s .12s linear; - transform: scale(0); -} - -.SelectMenu-tabs { - display: flex; - flex-shrink: 0; - overflow-x: auto; - overflow-y: hidden; - box-shadow: inset 0 -1px 0 var(--borderColor-muted, var(--color-border-muted)); - -webkit-overflow-scrolling: touch; -} - -.SelectMenu-tabs::-webkit-scrollbar { - display: none; -} - -@media (min-width: 544px) { - .SelectMenu-tabs { - padding: 8px 8px 0 8px; - } -} - -.SelectMenu-tab { - flex: 1; - padding: 8px 16px; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - background-color: transparent; - border: 0; - box-shadow: inset 0 -1px 0 var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 544px) { - .SelectMenu-tab { - flex: none; - padding: 4px 16px; - border: 1px solid transparent; - border-bottom-width: 0; - border-top-left-radius: 6px; - border-top-right-radius: 6px; - } -} - -.SelectMenu-tab[aria-selected=true] { - z-index: 1; - color: var(--fgColor-default, var(--color-fg-default)); - cursor: default; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - box-shadow: 0 0 0 1px var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 544px) { - .SelectMenu-tab[aria-selected=true] { - border-color: var(--borderColor-muted, var(--color-border-muted)); - box-shadow: none; - } -} - -.SelectMenu-message { - padding: 7px 16px; - text-align: center; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.SelectMenu-blankslate, -.SelectMenu-loading { - padding: 24px 16px; - text-align: center; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.SelectMenu-divider { - padding: 4px 16px; - margin: 0; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.SelectMenu-list--borderless .SelectMenu-divider { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.SelectMenu-list--borderless .SelectMenu-divider:empty { - padding: 0; - border-top: 0; -} - -.SelectMenu-footer { - z-index: 0; - padding: 8px 16px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 544px) { - .SelectMenu-footer { - padding: 7px 16px; - } -} - -.SelectMenu--hasFilter .SelectMenu-modal { - height: 80%; - max-height: none; - margin-top: 0; -} - -@media (min-width: 544px) { - .SelectMenu--hasFilter .SelectMenu-modal { - height: auto; - max-height: 480px; - margin-top: 8px; - } -} - -.SelectMenu-tab:focus, -.SelectMenu-item:focus { - outline: 0; -} - -.SelectMenu-item:hover { - text-decoration: none; -} - -.SelectMenu-item[aria-checked=true] { - font-weight: var(--base-text-weight-medium, 500); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.SelectMenu-item[aria-checked=true] .SelectMenu-icon--check { - visibility: visible; - transition: transform .12s cubic-bezier(0, 0, 0.2, 1),visibility 0s linear; - transform: scale(1); -} - -.SelectMenu-item:disabled, -.SelectMenu-item[aria-disabled=true] { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - pointer-events: none; -} - -@media (hover: hover) { - body:not(.intent-mouse) .SelectMenu-closeButton:focus, - .SelectMenu-closeButton:hover { - color: var(--fgColor-default, var(--color-fg-default)); - } - - .SelectMenu-closeButton:active { - color: var(--fgColor-muted, var(--color-fg-muted)); - } - - body:not(.intent-mouse) .SelectMenu-item:focus, - .SelectMenu-item:hover { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); - } - - .SelectMenu-item:active { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - } - - body:not(.intent-mouse) .SelectMenu-tab:focus { - background-color: var(--selectMenu-bgColor-active, var(--color-select-menu-tap-focus-bg)); - } - - .SelectMenu-tab:hover { - color: var(--fgColor-default, var(--color-fg-default)); - } - - .SelectMenu-tab:not([aria-selected=true]):active { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - } -} - -@media (hover: none) { - .SelectMenu-item:focus, - .SelectMenu-item:active { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - } - - .SelectMenu-item { - -webkit-tap-highlight-color: var(--control-bgColor-active, var(--color-select-menu-tap-highlight)); - } -} - -.Toast { - display: flex; - margin: 8px; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 6px; - box-shadow: inset 0 0 0 1px var(--borderColor-default, var(--color-border-default)),var(--shadow-floating-large, var(--color-shadow-large)); -} - -@media (min-width: 544px) { - .Toast { - width: max-content; - max-width: 450px; - margin: 16px; - } -} - -.Toast-icon { - display: flex; - align-items: center; - justify-content: center; - width: 48px; - flex-shrink: 0; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border: 1px solid transparent; - border-right: 0; - border-top-left-radius: inherit; - border-bottom-left-radius: inherit; -} - -.Toast-content { - padding: 16px; -} - -.Toast-dismissButton { - max-height: 54px; - padding: 16px; - color: inherit; - background-color: transparent; - border: 0; -} - -.Toast-dismissButton:hover { - opacity: .7; -} - -.Toast-dismissButton:active { - opacity: .5; -} - -.Toast--loading { - color: var(--fgColor-default, var(--color-fg-default)); - box-shadow: inset 0 0 0 1px var(--borderColor-default, var(--color-border-default)),var(--shadow-floating-large, var(--color-shadow-large)); -} - -.Toast--loading .Toast-icon { - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); -} - -.Toast--error { - color: var(--fgColor-default, var(--color-fg-default)); - box-shadow: inset 0 0 0 1px var(--borderColor-default, var(--color-border-default)),var(--shadow-floating-large, var(--color-shadow-large)); -} - -.Toast--error .Toast-icon { - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.Toast--warning { - color: var(--fgColor-default, var(--color-fg-default)); - box-shadow: inset 0 0 0 1px var(--borderColor-default, var(--color-border-default)),var(--shadow-floating-large, var(--color-shadow-large)); -} - -.Toast--warning .Toast-icon { - background-color: var(--bgColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.Toast--success { - color: var(--fgColor-default, var(--color-fg-default)); - box-shadow: inset 0 0 0 1px var(--borderColor-default, var(--color-border-default)),var(--shadow-floating-large, var(--color-shadow-large)); -} - -.Toast--success .Toast-icon { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.Toast--animateIn { - animation: Toast--animateIn .18s cubic-bezier(0.22, 0.61, 0.36, 1) backwards; -} - -@keyframes Toast--animateIn { - 0% { - opacity: 0; - transform: translateY(100%); - } -} - -.Toast--animateOut { - animation: Toast--animateOut .18s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards; -} - -@keyframes Toast--animateOut { - 100% { - pointer-events: none; - opacity: 0; - transform: translateY(100%); - } -} - -.Toast--spinner { - animation: Toast--spinner 1000ms linear infinite; -} - -@keyframes Toast--spinner { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -[popover] { - background-color: canvas; - border: initial solid; - border-color: initial; - border-image: initial; - color: initial; - height: -moz-fit-content; - height: fit-content; - inset: 0; - margin: auto; - overflow: auto; - padding: .25em; - position: fixed; - width: -moz-fit-content; - width: fit-content; - z-index: 2147483647; -} - -[popover]:not(.\:popover-open) { - display: none; -} - -[popover]:is(dialog[open]) { - display: revert; -} - -[anchor].\:popover-open { - inset: auto; -} - -@supports selector([popover]:popover-open) { - [popover]:not(.\:popover-open, dialog[open]) { - display: revert; - } - - [anchor]:is(:popover-open) { - inset: auto; - } -} - -@supports not (background-color: canvas) { - [popover] { - background-color: #fff; - color: #000; - } -} - -@supports (width: -moz-fit-content) { - [popover] { - height: -moz-fit-content; - width: -moz-fit-content; - } -} - -@supports not (inset: 0) { - [popover] { - bottom: 0; - left: 0; - right: 0; - top: 0; - } -} - -:root { - --actionListContent-paddingBlock: var(--control-medium-paddingBlock,0.375rem); -} - -.ActionListHeader { - margin-bottom: var(--base-size-16, 1rem); - margin-left: var(--base-size-8, 0.5rem); -} - -.ActionListWrap { - list-style: none; -} - -.ActionListWrap--inset { - padding: var(--base-size-8, 0.5rem); -} - -.ActionListWrap--divided .ActionListItem-label:before { - height: 1px; -} - -.ActionListWrap--divided .ActionListItem-descriptionWrap--inline:before, -.ActionListWrap--divided .ActionListItem-label:before { - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - content: ""; - display: block; - position: absolute; - top: calc(var(--actionListContent-paddingBlock)*-1); - width: 100%; -} - -.ActionListWrap--divided .ActionListItem-descriptionWrap--inline:before { - height: var(--borderWidth-thin, max(1px, 0.0625rem)); -} - -.ActionListWrap--divided .ActionListItem-descriptionWrap--inline .ActionListItem-label:before { - content: unset; -} - -.ActionList-sectionDivider + .ActionListItem .ActionListItem-descriptionWrap--inline:before, -.ActionList-sectionDivider + .ActionListItem .ActionListItem-label:before, -.ActionListItem:first-of-type .ActionListItem-descriptionWrap--inline:before, -.ActionListItem:first-of-type .ActionListItem-label:before, -.ActionListWrap--divided .ActionListItem--navActive .ActionListItem-label:before, -.ActionListWrap--divided .ActionListItem--navActive + .ActionListItem .ActionListItem-label:before { - visibility: hidden; -} - -.ActionListItem { - background-color: var(--control-transparent-bgColor-rest, #0000); - border-radius: var(--borderRadius-medium, 0.375rem); - list-style: none; - position: relative; -} - -.ActionListItem:active, -.ActionListItem:hover { - cursor: pointer; -} - -@media (hover: hover) { - .ActionListItem:hover .ActionListItem-descriptionWrap--inline:before, - .ActionListItem:hover .ActionListItem-label:before, - .ActionListItem:hover + .ActionListItem .ActionListItem-descriptionWrap--inline:before, - .ActionListItem:hover + .ActionListItem .ActionListItem-label:before { - visibility: hidden; - } -} - -.ActionListItem[hidden] + .ActionList-sectionDivider { - display: none; -} - -.ActionListItem.ActionListItem--hasSubItem > .ActionListContent { - z-index: 1; -} - -@media (hover: hover) { - .ActionListItem.ActionListItem--hasSubItem > .ActionListContent:hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.ActionListItem.ActionListItem--hasSubItem > .ActionListContent:active { - background-color: var(--control-transparent-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -@media (hover: hover) { - .ActionListItem.ActionListItem--hasSubItem > .ActionListContent:hover, - .ActionListItem:not(.ActionListItem--hasSubItem):hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - cursor: pointer; - } - - .ActionListItem.ActionListItem--hasSubItem > .ActionListContent:hover:not(.ActionListItem--navActive, :focus-visible), - .ActionListItem:not(.ActionListItem--hasSubItem):hover:not(.ActionListItem--navActive, :focus-visible) { - box-shadow: var(--boxShadow-thin, inset 0 0 0 max(1px, 0.0625rem)) var(--control-transparent-borderColor-active, var(--color-action-list-item-default-active-border)); - outline: solid var(--borderWidth-thin, max(1px, 0.0625rem)) #0000; - outline-offset: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); - } -} - -.ActionListItem.ActionListItem--hasSubItem > .ActionListContent:active, -.ActionListItem:not(.ActionListItem--hasSubItem):active { - background: var(--control-transparent-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -.ActionListItem.ActionListItem--hasSubItem > .ActionListContent:active:not(.ActionListItem--navActive), -.ActionListItem:not(.ActionListItem--hasSubItem):active:not(.ActionListItem--navActive) { - box-shadow: var(--boxShadow-thin, inset 0 0 0 max(1px, 0.0625rem)) var(--control-transparent-borderColor-active, var(--color-action-list-item-default-active-border)); - outline: solid var(--borderWidth-thin, max(1px, 0.0625rem)) #0000; - outline-offset: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); -} - -.ActionListItem.ActionListItem--hasSubItem > .ActionListContent:active .ActionListItem-label:before, -.ActionListItem.ActionListItem--hasSubItem > .ActionListContent:active + .ActionListItem .ActionListItem-label:before, -.ActionListItem:not(.ActionListItem--hasSubItem):active .ActionListItem-label:before, -.ActionListItem:not(.ActionListItem--hasSubItem):active + .ActionListItem .ActionListItem-label:before { - visibility: hidden; -} - -.ActionListItem[aria-selected=true] { - background: var(--control-transparent-bgColor-selected, var(--color-action-list-item-default-selected-bg)); - font-weight: var(--base-text-weight-normal, 400); -} - -@media (hover: hover) { - .ActionListItem[aria-selected=true]:hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.ActionListItem[aria-selected=true] + .ActionListItem:before, -.ActionListItem[aria-selected=true]:before { - visibility: hidden; -} - -.ActionListItem[aria-selected=true]:after { - background: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: var(--borderRadius-medium, 0.375rem); - content: ""; - height: var(--base-size-24, 1.5rem); - left: calc(var(--base-size-4, 0.25rem)*-1); - position: absolute; - top: calc(50% - 12px); - width: var(--base-size-4, 0.25rem); -} - -.ActionListItem.ActionListItem--navActive { - outline: 2px solid #0000; -} - -.ActionListItem.ActionListItem--navActive:not(.ActionListItem--subItem) .ActionListItem-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger) { - background: var(--control-transparent-bgColor-selected, var(--color-action-list-item-default-selected-bg)); -} - -@media (hover: hover) { - .ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger) + .ActionListItem:before, -.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):before { - visibility: hidden; -} - -.ActionListItem.ActionListItem--navActive:not(.ActionListItem--danger):after { - background: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: var(--borderRadius-medium, 0.375rem); - content: ""; - height: var(--base-size-24, 1.5rem); - left: calc(var(--base-size-8, 0.5rem)*-1); - position: absolute; - top: calc(50% - 12px); - width: var(--base-size-4, 0.25rem); -} - -.ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-description, -.ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-label, -.ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-description, -.ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-label { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.ActionListItem.ActionListItem--disabled .ActionListContent .ActionListItem-visual, -.ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-visual { - fill: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -@media (hover: hover) { - .ActionListItem.ActionListItem--disabled:hover, - .ActionListItem[aria-disabled=true]:hover { - background-color: initial; - cursor: not-allowed; - } -} - -.ActionListItem.ActionListItem--danger .ActionListItem-label, -.ActionListItem.ActionListItem--danger .ActionListItem-visual { - color: var(--control-danger-fgColor-rest, var(--color-danger-fg)); -} - -@media (hover: hover) { - .ActionListItem.ActionListItem--danger:hover { - background: var(--control-danger-bgColor-hover, var(--color-action-list-item-danger-hover-bg)); - } - - .ActionListItem.ActionListItem--danger:hover .ActionListItem-description, - .ActionListItem.ActionListItem--danger:hover .ActionListItem-label, - .ActionListItem.ActionListItem--danger:hover .ActionListItem-visual { - color: var(--control-danger-fgColor-hover, var(--color-action-list-item-danger-hover-text)); - } -} - -.ActionListItem.ActionListItem--danger .ActionListContent:active { - background: var(--control-danger-bgColor-active, var(--color-action-list-item-danger-active-bg)); -} - -.ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-description, -.ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-label, -.ActionListItem.ActionListItem--danger .ActionListContent:active .ActionListItem-visual { - color: var(--control-danger-fgColor-hover, var(--color-action-list-item-danger-hover-text)); -} - -.ActionListContent { - -webkit-tap-highlight-color: transparent; - align-items: start; - background-color: initial; - border: none; - border-radius: var(--borderRadius-medium, 0.375rem); - color: var(--control-fgColor-rest, var(--color-fg-default)); - display: grid; - grid-template-areas: "leadingAction leadingVisual label trailingVisual trailingAction"; - grid-template-columns: min-content min-content minmax(0, auto) min-content min-content; - grid-template-rows: min-content; - padding-block: var(--actionListContent-paddingBlock); - padding-inline: var(--control-medium-paddingInline-condensed, 0.5rem); - position: relative; - text-align: left; - touch-action: manipulation; - transition: background 33.333ms linear; - -webkit-user-select: none; - user-select: none; - width: 100%; -} - -.ActionListContent > :not(:last-child) { - margin-right: var(--control-medium-gap, 0.5rem); -} - -.ActionListContent:hover { - text-decoration: none; -} - -.ActionListContent[aria-disabled=true] .ActionListItem-description, -.ActionListContent[aria-disabled=true] .ActionListItem-label { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.ActionListContent[aria-disabled=true] .ActionListItem-visual { - fill: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -@media (hover: hover) { - .ActionListContent[aria-disabled=true]:hover { - background-color: initial; - cursor: not-allowed; - } -} - -@media screen and (prefers-reduced-motion: no-preference) { - .ActionListContent[aria-expanded] + .ActionList--subGroup { - transition: opacity .16s cubic-bezier(0.25, 1, 0.5, 1),transform .16s cubic-bezier(0.25, 1, 0.5, 1); - } -} - -.ActionListContent[aria-expanded] + .ActionList--subGroup .ActionListContent { - padding-left: var(--base-size-24, 1.5rem); -} - -.ActionListContent.ActionListContent--visual16[aria-expanded] + .ActionList--subGroup .ActionListContent { - padding-left: var(--base-size-32, 2rem); -} - -.ActionListContent.ActionListContent--visual20[aria-expanded] + .ActionList--subGroup .ActionListContent { - padding-left: var(--base-size-36, 2.25rem); -} - -.ActionListContent.ActionListContent--visual24[aria-expanded] + .ActionList--subGroup .ActionListContent { - padding-left: var(--base-size-40, 2.5rem); -} - -.ActionListContent[aria-expanded=true] .ActionListItem-collapseIcon { - transform: scaleY(-1); - transition: transform .12s linear; -} - -.ActionListContent[aria-expanded=true] + .ActionList--subGroup { - height: auto; - opacity: 1; - overflow: visible; - transform: translateY(0); - visibility: visible; -} - -.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=true] > .ActionListItem-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionListContent[aria-expanded=false] .ActionListItem-collapseIcon { - transform: scaleY(1); - transition: transform .12s linear; -} - -.ActionListContent[aria-expanded=false] + .ActionList--subGroup { - height: 0; - opacity: 0; - overflow: hidden; - transform: translateY(calc(var(--base-size-16, 1rem) * -1)); - visibility: hidden; -} - -.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] { - background: var(--control-transparent-bgColor-selected, var(--color-action-list-item-default-selected-bg)); -} - -.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] .ActionListItem-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] + .ActionListItem:before, -.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:before { - visibility: hidden; -} - -.ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:after { - background: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: var(--borderRadius-medium, 0.375rem); - content: ""; - height: var(--base-size-24, 1.5rem); - left: calc(var(--base-size-8, 0.5rem)*-1); - position: absolute; - top: calc(50% - 12px); - width: var(--base-size-4, 0.25rem); -} - -.ActionListContent[aria-checked=true] .ActionListItem-multiSelectCheckmark, -.ActionListContent[aria-selected=true] .ActionListItem-multiSelectCheckmark { - opacity: 1; - transition: visibility 0 linear 0,opacity 50ms; - visibility: visible; -} - -.ActionListContent[aria-checked=true] .ActionListItem-singleSelectCheckmark, -.ActionListContent[aria-selected=true] .ActionListItem-singleSelectCheckmark { - visibility: visible; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .ActionListContent[aria-checked=true] .ActionListItem-singleSelectCheckmark, - .ActionListContent[aria-selected=true] .ActionListItem-singleSelectCheckmark { - animation: checkmarkIn .2s cubic-bezier(0.11, 0, 0.5, 0) forwards; - } - - @keyframes checkmarkIn { - 0% { - clip-path: inset(16px 0 0 0); - } - - to { - clip-path: inset(0 0 0 0); - } - } -} - -.ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect, -.ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect { - fill: var(--control-checked-bgColor-rest, var(--color-switch-track-checked-bg)); - stroke: var(--control-checked-bgColor-rest, var(--color-switch-track-checked-bg)); - stroke-width: var(--borderWidth-thin, 1px); -} - -.ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark, -.ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark { - fill: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.ActionListContent[aria-checked=false] .ActionListItem-multiSelectCheckmark, -.ActionListContent[aria-selected=false] .ActionListItem-multiSelectCheckmark { - opacity: 0; - transition: visibility 0 linear 50ms,opacity 50ms; - visibility: hidden; -} - -.ActionListContent[aria-checked=false] .ActionListItem-singleSelectCheckmark, -.ActionListContent[aria-selected=false] .ActionListItem-singleSelectCheckmark { - clip-path: inset(16px 0 0 0); - transition: visibility 0s linear .2s; - visibility: hidden; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .ActionListContent[aria-checked=false] .ActionListItem-singleSelectCheckmark, - .ActionListContent[aria-selected=false] .ActionListItem-singleSelectCheckmark { - animation: checkmarkOut .2s cubic-bezier(0.11, 0, 0.5, 0) forwards; - } - - @keyframes checkmarkOut { - 0% { - clip-path: inset(0 0 0 0); - } - - to { - clip-path: inset(16px 0 0 0); - } - } -} - -.ActionListContent[aria-checked=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect, -.ActionListContent[aria-selected=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect { - fill: var(--bgColor-default, var(--color-canvas-default)); - stroke: var(--control-borderColor-rest, var(--color-btn-border)); - stroke-width: var(--borderWidth-thin, 1px); -} - -.ActionListContent[aria-checked=false] .ActionListItem-multiSelectIconRect, -.ActionListContent[aria-selected=false] .ActionListItem-multiSelectIconRect { - fill: var(--bgColor-default, var(--color-canvas-default)); - border: var(--borderWidth-thin, 1px) solid var(--control-borderColor-rest, var(--color-btn-border)); -} - -.ActionListContent.ActionListContent--sizeLarge { - --actionListContent-paddingBlock: var(--control-large-paddingBlock,0.625rem); -} - -.ActionListContent.ActionListContent--sizeXLarge { - --actionListContent-paddingBlock: var(--control-xlarge-paddingBlock,0.875rem); -} - -@media (pointer: coarse) { - .ActionListContent { - --actionListContent-paddingBlock: var(--control-large-paddingBlock,0.625rem); - } -} - -.ActionListContent.ActionListContent--blockDescription .ActionListItem-visual { - place-self: start; -} - -.ActionListItem-action--leading { - grid-area: leadingAction; -} - -.ActionListItem-visual--leading { - grid-area: leadingVisual; -} - -.ActionListItem-visual--trailing { - grid-area: trailingVisual; -} - -.ActionListItem-action--trailing { - grid-area: trailingAction; -} - -.ActionListItem-visual--leading svg { - fill: currentcolor; -} - -.ActionListItem-descriptionWrap { - display: flex; - flex-direction: column; - gap: var(--base-size-4, 0.25rem); - grid-area: label; -} - -.ActionListItem-descriptionWrap .ActionListItem-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionListItem-descriptionWrap--inline { - align-items: baseline; - flex-direction: row; - gap: var(--base-size-8, 0.5rem); - position: relative; -} - -.ActionListItem-description { - color: var(--fgColor-muted, var(--color-fg-muted)); - font-size: var(--text-body-size-small, 0.75rem); - font-weight: var(--base-text-weight-normal, 400); - line-height: var(--text-body-lineHeight-small, 1.6666); -} - -.ActionListItem-action, -.ActionListItem-visual { - fill: var(--fgColor-muted, var(--color-fg-muted)); - align-items: center; - color: var(--fgColor-muted, var(--color-fg-muted)); - display: flex; - min-height: var(--control-medium-lineBoxHeight, 1.25rem); - pointer-events: none; -} - -.ActionListItem-label { - color: var(--fgColor-default, var(--color-fg-default)); - font-size: var(--text-body-size-medium, 0.875rem); - font-weight: var(--base-text-weight-normal, 400); - grid-area: label; - line-height: var(--text-body-lineHeight-medium, 1.4285); - position: relative; -} - -.ActionListItem-label--truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.ActionListItem--subItem > .ActionListContent > .ActionListItem-label { - font-size: var(--text-body-size-small, 0.75rem); - line-height: var(--text-body-lineHeight-small, 1.6666); -} - -.ActionListItem--withActions { - align-items: center; - display: flex; - flex-wrap: nowrap; -} - -.ActionListItem-trailingAction { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.ActionListItem--trailingActionHover .ActionListItem-trailingAction { - visibility: hidden; -} - -.ActionListItem--trailingActionHover:focus-within .ActionListItem-trailingAction, -.ActionListItem--trailingActionHover:hover .ActionListItem-trailingAction { - visibility: visible; -} - -.ActionList-sectionDivider:not(:empty) { - color: var(--fgColor-muted, var(--color-fg-muted)); - display: flex; - flex-direction: column; - font-size: var(--text-body-size-small, 0.75rem); - font-weight: var(--base-text-weight-semibold, 600); - line-height: var(--text-body-lineHeight-small, 1.6666); - padding-block: var(--base-size-8, 0.5rem); - padding-inline: var(--actionListContent-paddingBlock); -} - -.ActionList-sectionDivider:empty { - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - border: 0; - display: block; - height: var(--borderWidth-thin, max(1px, 0.0625rem)); - list-style: none; - margin-block-end: var(--base-size-8, 0.5rem); - margin-block-start: calc(var(--base-size-8, 0.5rem) - var(--borderWidth-thin, max(1px, 0.0625rem))); - margin-inline: calc(var(--base-size-8, 0.5rem)*-1); - padding: 0; -} - -.ActionList-sectionDivider .ActionList-sectionDivider-title { - color: var(--fgColor-muted, var(--color-fg-muted)); - font-size: var(--text-body-size-small, 0.75rem); - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionList-sectionDivider--filled { - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: solid var(--borderWidth-thin, max(1px, 0.0625rem)) var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - border-top: solid var(--borderWidth-thin, max(1px, 0.0625rem)) var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - margin-block-end: var(--base-size-8, 0.5rem); - margin-block-start: calc(var(--base-size-8, 0.5rem) - var(--borderWidth-thin, max(1px, 0.0625rem))); - margin-inline: calc(var(--base-size-8, 0.5rem)*-1); -} - -.ActionList-sectionDivider--filled:empty { - box-sizing: border-box; - height: var(--base-size-8, 0.5rem); -} - -.ActionList-sectionDivider--filled:first-child { - margin-block-start: 0; -} - -.autocomplete-label-stacked { - display: block; - margin-bottom: 6px; -} - -.autocomplete-label-inline { - display: inline; - margin-right: 6px; -} - -@media (max-width: 543.98px) { - .autocomplete-label-inline { - display: block; - margin-bottom: 6px; - } -} - -.autocomplete-body { - display: inline; - position: relative; -} - -.autocomplete-embedded-icon-wrap { - align-items: center; - display: inline-flex; - padding: 4px 8px; -} - -.autocomplete-embedded-icon-wrap:focus-within { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -.autocomplete-embedded-icon-wrap .form-control { - border: none; - box-shadow: none; - margin-left: 8px; - padding: 0; -} - -.autocomplete-embedded-icon-wrap .form-control:focus { - box-shadow: none; -} - -.autocomplete-embedded-icon-wrap .form-control:focus-visible { - box-shadow: none; -} - -.autocomplete-results { - background: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 0.375rem); - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)); - font-size: 13px; - left: 0; - list-style: none; - max-height: 20em; - min-width: 100%; - overflow-y: auto; - position: absolute; - width: max-content; - z-index: 99; -} - -.autocomplete-item { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: 0; - color: var(--fgColor-default, var(--color-fg-default)); - cursor: pointer; - display: block; - font-weight: var(--base-text-weight-semibold, 600); - overflow: hidden; - padding: 4px 8px; - text-align: left; - text-decoration: none; - text-overflow: ellipsis; - white-space: nowrap; - width: 100%; -} - -.autocomplete-item:hover { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-decoration: none; -} - -.autocomplete-item:hover * { - color: inherit; -} - -.autocomplete-item.navigation-focus, -.autocomplete-item.selected, -.autocomplete-item[aria-selected=true] { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-decoration: none; -} - -.autocomplete-item.navigation-focus *, -.autocomplete-item.selected *, -.autocomplete-item[aria-selected=true] * { - color: inherit; -} - -.Banner { - background-image: linear-gradient(var(--bgColor-accent-muted, var(--color-accent-subtle)), var(--bgColor-accent-muted, var(--color-accent-subtle))); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-accent-muted, var(--color-accent-muted)); - border-radius: var(--borderRadius-medium, 0.375rem); - color: var(--fgColor-default, var(--color-fg-default)); - display: grid; - grid-auto-flow: column; - grid-template-areas: "visual message actions close"; - grid-template-columns: min-content 1fr minmax(0, auto) min-content; - grid-template-rows: min-content; - padding: var(--base-size-8, 0.5rem); - position: relative; -} - -@media (max-width: 543.98px) { - .Banner { - grid-template-areas: "visual message close" ". actions actions"; - grid-template-columns: min-content 1fr min-content; - grid-template-rows: min-content min-content; - } - - .Banner .Banner-actions { - margin: var(--base-size-8, 0.5rem) 0 0 var(--base-size-8, 0.5rem); - } -} - -.Banner .Banner-visual { - align-self: start; - display: grid; - grid-area: visual; - padding: .375rem var(--base-size-8, 0.5rem); -} - -.Banner .Banner-visual > .octicon { - margin-block: calc(var(--base-size-4, 0.25rem)/2); -} - -.Banner .Banner-visual > * { - align-self: center; -} - -.Banner .Banner-message { - align-self: center; - grid-area: message; - padding: .375rem var(--base-size-8, 0.5rem); -} - -.Banner .Banner-message p:last-child { - margin-bottom: 0; -} - -.Banner .Banner-message .Banner-title:not(:only-child) { - font-weight: var(--base-text-weight-semibold, 600); - margin-bottom: 0; -} - -.Banner .Banner-actions { - grid-area: actions; -} - -.Banner .Banner-actions:last-child { - align-self: center; -} - -.Banner .Banner-close { - grid-area: close; - margin-left: var(--controlStack-medium-gap-condensed, 0.5rem); -} - -.Banner .Banner-visual .octicon { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.Banner.Banner--warning { - background-image: linear-gradient(var(--bgColor-attention-muted, var(--color-attention-subtle)), var(--bgColor-attention-muted, var(--color-attention-subtle))); - border-color: var(--borderColor-attention-muted, var(--color-attention-muted)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Banner.Banner--warning .Banner-visual .octicon { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.Banner.Banner--error { - background-image: linear-gradient(var(--bgColor-danger-muted, var(--color-danger-subtle)), var(--bgColor-danger-muted, var(--color-danger-subtle))); - border-color: var(--borderColor-danger-muted, var(--color-danger-muted)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Banner.Banner--error .Banner-visual .octicon { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.Banner.Banner--success { - background-image: linear-gradient(var(--bgColor-success-muted, var(--color-success-subtle)), var(--bgColor-success-muted, var(--color-success-subtle))); - border-color: var(--borderColor-success-muted, var(--color-success-muted)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Banner.Banner--success .Banner-visual .octicon { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.Banner.Banner--full { - border-left: 0; - border-radius: 0; - border-right: 0; - margin-top: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); -} - -@media (max-width: 767.98px) { - .Banner.Banner--full-whenNarrow { - border-left: 0; - border-radius: 0; - border-right: 0; - margin-top: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); - } -} - -.Overlay--hidden { - display: none; -} - -.Overlay--visibilityHidden { - height: 0; - opacity: 0; - overflow: hidden; - visibility: hidden; -} - -.Overlay { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border-radius: var(--borderRadius-large, 0.75rem); - box-shadow: var(--shadow-floating-small, var(--color-overlay-shadow)); - flex-direction: column; - max-height: min(100vh - 2rem,var(--overlay-height)); - min-width: 192px; - opacity: 1; - white-space: normal; - width: min(var(--overlay-width),100vw - 2rem); -} - -.Overlay.Overlay--size-auto { - max-height: calc(100vh - 2rem); - max-width: calc(100vw - 2rem); - min-width: 192px; -} - -.Overlay.Overlay--size-full { - height: 100vh; - width: 100vw; -} - -.Overlay.Overlay--size-xsmall { - --overlay-width: 192px; - max-height: calc(100vh - 2rem); -} - -.Overlay.Overlay--size-small { - --overlay-height: 256px; - --overlay-width: 320px; -} - -.Overlay.Overlay--size-small-portrait { - --overlay-height: 432px; - --overlay-width: 320px; -} - -.Overlay.Overlay--size-medium { - --overlay-height: 320px; - --overlay-width: 480px; -} - -.Overlay.Overlay--size-medium-portrait { - --overlay-height: 600px; - --overlay-width: 480px; -} - -.Overlay.Overlay--size-large { - --overlay-height: 432px; - --overlay-width: 640px; -} - -.Overlay.Overlay--size-xlarge { - --overlay-height: 600px; - --overlay-width: 960px; -} - -.Overlay.Overlay--height-auto { - height: auto; -} - -.Overlay.Overlay--height-xsmall { - height: min(192px,100vh - 2rem); -} - -.Overlay.Overlay--height-small { - height: min(256px,100vh - 2rem); -} - -.Overlay.Overlay--height-medium { - height: min(320px,100vh - 2rem); -} - -.Overlay.Overlay--height-large { - height: min(432px,100vh - 2rem); -} - -.Overlay.Overlay--height-xlarge { - height: min(600px,100vh - 2rem); -} - -.Overlay.Overlay--width-auto { - width: auto; -} - -.Overlay.Overlay--width-small { - width: min(256px,100vw - 2rem); -} - -.Overlay.Overlay--width-medium { - width: min(320px,100vw - 2rem); -} - -.Overlay.Overlay--width-large { - width: min(480px,100vw - 2rem); -} - -.Overlay.Overlay--width-xlarge { - width: min(640px,100vw - 2rem); -} - -.Overlay.Overlay--width-xxlarge { - width: min(960px,100vw - 2rem); -} - -@media screen and (prefers-reduced-motion: no-preference) { - .Overlay.Overlay--motion-scaleFade { - animation: Overlay--motion-scaleFade .2s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -@keyframes Overlay--motion-scaleFade { - 0% { - opacity: 0; - transform: scale(0.5); - } - - to { - opacity: 1; - transform: scale(1); - } -} - -.Overlay-form { - flex-grow: 1; - overflow: auto; -} - -.Overlay-form, -.Overlay-header { - display: flex; - flex-direction: column; -} - -.Overlay-header { - color: var(--fgColor-default, var(--color-fg-default)); - z-index: 1; -} - -.Overlay-header.Overlay-header--divided { - box-shadow: inset 0 calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1) var(--borderColor-default, var(--color-border-default)); - padding-bottom: var(--stack-padding-condensed, 0.5rem); -} - -.Overlay-header.Overlay-header--divided + .Overlay-body { - padding-top: var(--stack-padding-normal, 1rem); -} - -.Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap { - gap: var(--stack-gap-condensed, 0.5rem); -} - -.Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-title { - font-size: var(--text-title-size-medium, 1.25rem); -} - -.Overlay-header.Overlay-header--large .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-description { - font-size: var(--text-body-size-medium, 0.875rem); -} - -.Overlay-header .Overlay-headerContentWrap { - align-items: flex-start; - display: flex; - gap: var(--stack-gap-condensed, 0.5rem); - padding: var(--stack-gap-condensed, 0.5rem) var(--stack-gap-condensed, 0.5rem) 0 var(--stack-gap-condensed, 0.5rem); -} - -.Overlay-header .Overlay-headerContentWrap .Overlay-actionWrap { - display: flex; - flex-direction: row; - gap: var(--stack-gap-condensed, 0.5rem); -} - -.Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap { - display: flex; - flex-direction: column; - flex-grow: 1; - gap: var(--control-small-gap, 0.25rem); - padding: calc(var(--stack-gap-condensed, 0.5rem)*.75) 0 calc(var(--stack-gap-condensed, 0.5rem)*.75) var(--stack-gap-condensed, 0.5rem); -} - -.Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-title { - font-size: var(--text-body-size-medium, 0.875rem); - font-weight: var(--base-text-weight-semibold, 600); - margin: 0; -} - -.Overlay-header .Overlay-headerContentWrap .Overlay-titleWrap .Overlay-description { - color: var(--fgColor-muted, var(--color-fg-muted)); - font-size: var(--text-body-size-small, 0.75rem); - font-weight: var(--base-text-weight-normal, 400); - margin: 0; -} - -.Overlay-body { - flex-grow: 1; - font-size: var(--text-body-size-medium, 0.875rem); - overflow-y: auto; - padding: var(--stack-padding-normal, 1rem); - padding-top: 0; - scrollbar-width: thin; -} - -.Overlay-body.Overlay-body--paddingCondensed { - padding: var(--stack-padding-condensed, 0.5rem); - padding-top: 0; -} - -.Overlay-body.Overlay-body--paddingNone { - padding: 0; -} - -.Overlay-footer { - display: flex; - flex-direction: row; - flex-shrink: 0; - flex-wrap: wrap; - padding: 0 var(--stack-padding-normal, 1rem) var(--stack-padding-normal, 1rem) var(--stack-padding-normal, 1rem); - z-index: 1; -} - -.Overlay-footer.Overlay-footer--divided { - box-shadow: inset 0 var(--borderWidth-thin, max(1px, 0.0625rem)) var(--borderColor-default, var(--color-border-default)); - padding-top: var(--stack-padding-normal, 1rem); -} - -.Overlay-footer.Overlay-footer--alignStart { - gap: var(--stack-gap-condensed, 0.5rem); - justify-content: flex-start; -} - -.Overlay-footer.Overlay-footer--alignCenter { - gap: var(--stack-gap-condensed, 0.5rem); - justify-content: center; -} - -.Overlay-footer.Overlay-footer--alignEnd { - gap: var(--stack-gap-condensed, 0.5rem); - justify-content: flex-end; -} - -.Overlay-closeButton { - align-self: flex-start; - background-color: initial; - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid #0000; - border-radius: var(--borderRadius-medium, 0.375rem); - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: pointer; - display: grid; - flex-shrink: 0; - height: var(--base-size-32, 2rem); - padding: 0; - place-content: center; - position: relative; - transition: .2s cubic-bezier(0.3, 0, 0.5, 1); - transition-property: color,background-color,border-color; - -webkit-user-select: none; - user-select: none; - width: var(--base-size-32, 2rem); -} - -.Overlay-closeButton:focus, -.Overlay-closeButton:hover { - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--control-bgColor-hover, var(--color-btn-hover-bg)); -} - -.Overlay-closeButton.close-button { - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid #0000; -} - -.Overlay-backdrop--center { - align-items: center; - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); - bottom: 0; - display: flex; - justify-content: center; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 999; -} - -.Overlay-backdrop--anchor { - background-color: initial; - position: absolute; - z-index: 999; -} - -.Overlay-backdrop--side { - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); - bottom: 0; - display: flex; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 999; -} - -.Overlay-backdrop--side, -.Overlay-backdrop--side.Overlay-backdrop--placement-left { - align-items: center; - justify-content: left; -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-left > .Overlay { - border-radius: var(--borderRadius-large, 0.75rem); - border-bottom-left-radius: 0; - border-top-left-radius: 0; - height: 100vh; - max-height: unset; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side.Overlay-backdrop--placement-left > .Overlay { - animation: Overlay--motion-slideInRight .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-right { - align-items: center; - justify-content: right; -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-right > .Overlay { - border-radius: var(--borderRadius-large, 0.75rem); - border-bottom-right-radius: 0; - border-top-right-radius: 0; - height: 100vh; - max-height: unset; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side.Overlay-backdrop--placement-right > .Overlay { - animation: Overlay--motion-slideInLeft .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-bottom { - align-items: end; - justify-content: center; -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-bottom > .Overlay { - border-radius: var(--borderRadius-large, 0.75rem); - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - height: auto; - max-height: calc(100vh - 2rem); - width: 100vw; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side.Overlay-backdrop--placement-bottom > .Overlay { - animation: Overlay--motion-slideUp .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-top { - align-items: start; - justify-content: center; -} - -.Overlay-backdrop--side.Overlay-backdrop--placement-top > .Overlay { - border-radius: var(--borderRadius-large, 0.75rem); - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side.Overlay-backdrop--placement-top > .Overlay { - animation: Overlay--motion-slideDown .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -.Overlay-backdrop--full { - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); - bottom: 0; - display: flex; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 999; -} - -.Overlay-backdrop--full .Overlay { - border-radius: unset; - flex-grow: 1; - height: 100%; - max-height: 100vh; - max-width: 100vw; - width: 100%; -} - -@media (max-width: 767px) { - .Overlay-backdrop--center-whenNarrow { - align-items: center; - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); - bottom: 0; - display: flex; - justify-content: center; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 999; - } - - .Overlay-backdrop--anchor-whenNarrow { - background-color: initial; - position: absolute; - z-index: 999; - } - - .Overlay-backdrop--side-whenNarrow { - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); - bottom: 0; - display: flex; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 999; - } - - .Overlay-backdrop--side-whenNarrow, - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow { - align-items: center; - justify-content: left; - } - - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow > .Overlay-whenNarrow { - border-radius: var(--borderRadius-large, 0.75rem); - border-bottom-left-radius: 0; - border-top-left-radius: 0; - height: 100vh; - max-height: unset; - } -} - -@media screen and (max-width: 767px)and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-left-whenNarrow > .Overlay-whenNarrow { - animation: Overlay--motion-slideInRight .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow { - align-items: center; - justify-content: right; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow > .Overlay-whenNarrow { - border-radius: var(--borderRadius-large, 0.75rem); - border-bottom-right-radius: 0; - border-top-right-radius: 0; - height: 100vh; - max-height: unset; - } -} - -@media screen and (max-width: 767px)and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-right-whenNarrow > .Overlay-whenNarrow { - animation: Overlay--motion-slideInLeft .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow { - align-items: end; - justify-content: center; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow > .Overlay-whenNarrow { - border-radius: var(--borderRadius-large, 0.75rem); - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - height: auto; - max-height: calc(100vh - 2rem); - width: 100vw; - } -} - -@media screen and (max-width: 767px)and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-bottom-whenNarrow > .Overlay-whenNarrow { - animation: Overlay--motion-slideUp .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow { - align-items: start; - justify-content: center; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow > .Overlay-whenNarrow { - border-radius: var(--borderRadius-large, 0.75rem); - border-top-left-radius: 0; - border-top-right-radius: 0; - } -} - -@media screen and (max-width: 767px)and (prefers-reduced-motion: no-preference) { - .Overlay-backdrop--side-whenNarrow.Overlay-backdrop--placement-top-whenNarrow > .Overlay-whenNarrow { - animation: Overlay--motion-slideDown .25s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--full-whenNarrow { - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); - bottom: 0; - display: flex; - left: 0; - position: fixed; - right: 0; - top: 0; - z-index: 999; - } -} - -@media (max-width: 767px) { - .Overlay-backdrop--full-whenNarrow .Overlay { - border-radius: unset; - flex-grow: 1; - height: 100%; - max-height: 100vh; - max-width: 100vw; - width: 100%; - } -} - -@keyframes Overlay--motion-slideDown { - 0% { - transform: translateY(-100%); - } -} - -@keyframes Overlay--motion-slideUp { - 0% { - transform: translateY(100%); - } -} - -@keyframes Overlay--motion-slideInRight { - 0% { - transform: translateX(-100%); - } -} - -@keyframes Overlay--motion-slideInLeft { - 0% { - transform: translateX(100%); - } -} - -.dropdown { - position: relative; -} - -.dropdown-caret { - border-bottom-color: #0000; - border-left-color: #0000; - border-right-color: #0000; - border-style: solid; - border-width: var(--borderWidth-thicker, max(4px, 0.25rem)) var(--borderWidth-thicker, max(4px, 0.25rem)) 0; - content: ""; - display: inline-block; - height: 0; - vertical-align: middle; - width: 0; -} - -.dropdown-menu { - background-clip: padding-box; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 0.375rem); - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); - left: 0; - list-style: none; - margin-top: 2px; - padding-bottom: var(--control-small-paddingBlock, 0.25rem); - padding-top: var(--control-small-paddingBlock, 0.25rem); - position: absolute; - top: 100%; - width: 160px; - z-index: 100; -} - -.dropdown-menu:after, -.dropdown-menu:before { - content: ""; - display: inline-block; - position: absolute; -} - -.dropdown-menu:before { - border: 8px solid #0000; - border-bottom: 8px solid var(--borderColor-default, var(--color-border-default)); -} - -.dropdown-menu:after { - border: 7px solid #0000; - border-bottom: 7px solid var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.dropdown-menu > ul { - list-style: none; -} - -.dropdown-menu-no-overflow { - width: auto; -} - -.dropdown-menu-no-overflow .dropdown-item { - overflow: visible; - padding: var(--control-small-paddingBlock, 0.25rem) var(--control-medium-paddingInline-spacious, 1rem); - text-overflow: inherit; -} - -.dropdown-item { - color: var(--fgColor-default, var(--color-fg-default)); - display: block; - overflow: hidden; - padding: var(--control-small-paddingBlock, 0.25rem) var(--control-medium-paddingInline-condensed, 0.5rem) var(--control-small-paddingBlock, 0.25rem) var(--control-medium-paddingInline-spacious, 1rem); - text-overflow: ellipsis; - white-space: nowrap; -} - -.dropdown-item:hover { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-decoration: none; -} - -.dropdown-item:hover > .octicon { - color: inherit; - opacity: 1; -} - -.dropdown-item:hover [class*=color-fg-], -.dropdown-item:hover > .Label { - color: inherit; -} - -.dropdown-item:hover > .Label { - border-color: currentcolor; -} - -.dropdown-item.btn-link, -.dropdown-signout { - text-align: left; - width: 100%; -} - -.dropdown-signout { - background: none; - border: 0; -} - -.dropdown-divider { - border-top: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - display: block; - height: 0; - margin: var(--stack-gap-condensed, 0.5rem) 0; -} - -.dropdown-header { - color: var(--fgColor-muted, var(--color-fg-muted)); - font-size: var(--text-body-size-small, 0.75rem); - padding: var(--control-small-paddingBlock, 0.25rem) var(--control-medium-paddingInline-spacious, 1rem); -} - -.dropdown-item[aria-checked=false] .octicon-check { - display: none; -} - -.dropdown-menu-w { - left: auto; - margin-right: 8px; - margin-top: 0; - right: 100%; - top: 0; - width: auto; -} - -.dropdown-menu-w:before { - border-color: #0000; - border-left-color: var(--borderColor-default, var(--color-border-default)); - left: auto; - right: -16px; - top: 10px; -} - -.dropdown-menu-w:after { - border-color: #0000; - border-left-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - left: auto; - right: -14px; - top: 11px; -} - -.dropdown-menu-e { - left: 100%; - margin-left: 8px; - margin-top: 0; - top: 0; - width: auto; -} - -.dropdown-menu-e:before { - border-color: #0000; - border-right-color: var(--borderColor-default, var(--color-border-default)); - left: -16px; - top: 10px; -} - -.dropdown-menu-e:after { - border-color: #0000; - border-right-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - left: -14px; - top: 11px; -} - -.dropdown-menu-ne { - bottom: 100%; - left: 0; - margin-bottom: 3px; - top: auto; -} - -.dropdown-menu-ne:after, -.dropdown-menu-ne:before { - right: auto; - top: auto; -} - -.dropdown-menu-ne:before { - border-bottom: 0; - border-left: 8px solid #0000; - border-right: 8px solid #0000; - border-top: 8px solid var(--borderColor-default, var(--color-border-default)); - bottom: -8px; - left: 9px; -} - -.dropdown-menu-ne:after { - border-bottom: 0; - border-left: 7px solid #0000; - border-right: 7px solid #0000; - border-top: 7px solid var(--overlay-bgColor, var(--color-canvas-overlay)); - bottom: -7px; - left: 10px; -} - -.dropdown-menu-s { - left: auto; - right: 50%; - transform: translateX(50%); -} - -.dropdown-menu-s:before { - right: 50%; - top: -16px; - transform: translateX(50%); -} - -.dropdown-menu-s:after { - right: 50%; - top: -14px; - transform: translateX(50%); -} - -.dropdown-menu-sw { - left: auto; - right: 0; -} - -.dropdown-menu-sw:before { - left: auto; - right: 9px; - top: -16px; -} - -.dropdown-menu-sw:after { - left: auto; - right: 10px; - top: -14px; -} - -.dropdown-menu-se:before { - left: 9px; - top: -16px; -} - -.dropdown-menu-se:after { - left: 10px; - top: -14px; -} - -.Layout { - --Layout-sidebar-width: 220px; - --Layout-gutter: 16px; - display: grid; -} - -@media (max-width: 543.98px) { - .Layout { - grid-auto-flow: row; - grid-template-columns: 1fr; - } - - .Layout .Layout-divider, - .Layout .Layout-main, - .Layout .Layout-sidebar { - grid-column: 1; - width: 100%; - } - - .Layout.Layout--sidebarPosition-flowRow-start .Layout-sidebar { - grid-row: 1; - } - - .Layout.Layout--sidebarPosition-flowRow-end .Layout-sidebar, - .Layout.Layout--sidebarPosition-flowRow-start .Layout-main { - grid-row: 2/span 2; - } - - .Layout.Layout--sidebarPosition-flowRow-end .Layout-main { - grid-row: 1; - } - - .Layout.Layout--sidebarPosition-flowRow-none .Layout-sidebar { - display: none; - } - - .Layout.Layout--divided { - --Layout-gutter: 0; - } - - .Layout.Layout--divided .Layout-divider { - grid-row: 2; - height: 1px; - } - - .Layout.Layout--divided .Layout-divider.Layout-divider--flowRow-hidden { - display: none; - } - - .Layout.Layout--divided .Layout-divider.Layout-divider--flowRow-shallow { - background: var(--bgColor-inset, var(--color-canvas-inset)); - border-color: var(--borderColor-default, var(--color-border-default)); - border-style: solid; - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)) 0; - height: 8px; - margin-right: 0; - } - - .Layout.Layout--divided .Layout-main, - .Layout.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar { - grid-row: 3/span 1; - } - - .Layout.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main { - grid-row: 1; - } -} - -@media (max-width: 767.98px) { - .Layout.Layout--flowRow-until-md { - grid-auto-flow: row; - grid-template-columns: 1fr; - } - - .Layout.Layout--flowRow-until-md .Layout-divider, - .Layout.Layout--flowRow-until-md .Layout-main, - .Layout.Layout--flowRow-until-md .Layout-sidebar { - grid-column: 1; - width: 100%; - } - - .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-start .Layout-sidebar { - grid-row: 1; - } - - .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-end .Layout-sidebar, - .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-start .Layout-main { - grid-row: 2/span 2; - } - - .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-end .Layout-main { - grid-row: 1; - } - - .Layout.Layout--flowRow-until-md.Layout--sidebarPosition-flowRow-none .Layout-sidebar { - display: none; - } - - .Layout.Layout--flowRow-until-md.Layout--divided { - --Layout-gutter: 0; - } - - .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider { - grid-row: 2; - height: 1px; - } - - .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider.Layout-divider--flowRow-hidden { - display: none; - } - - .Layout.Layout--flowRow-until-md.Layout--divided .Layout-divider.Layout-divider--flowRow-shallow { - background: var(--bgColor-inset, var(--color-canvas-inset)); - border-color: var(--borderColor-default, var(--color-border-default)); - border-style: solid; - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)) 0; - height: 8px; - margin-right: 0; - } - - .Layout.Layout--flowRow-until-md.Layout--divided .Layout-main, - .Layout.Layout--flowRow-until-md.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar { - grid-row: 3/span 1; - } - - .Layout.Layout--flowRow-until-md.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main { - grid-row: 1; - } -} - -@media (max-width: 1011.98px) { - .Layout.Layout--flowRow-until-lg { - grid-auto-flow: row; - grid-template-columns: 1fr; - } - - .Layout.Layout--flowRow-until-lg .Layout-divider, - .Layout.Layout--flowRow-until-lg .Layout-main, - .Layout.Layout--flowRow-until-lg .Layout-sidebar { - grid-column: 1; - width: 100%; - } - - .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-start .Layout-sidebar { - grid-row: 1; - } - - .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-end .Layout-sidebar, - .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-start .Layout-main { - grid-row: 2/span 2; - } - - .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-end .Layout-main { - grid-row: 1; - } - - .Layout.Layout--flowRow-until-lg.Layout--sidebarPosition-flowRow-none .Layout-sidebar { - display: none; - } - - .Layout.Layout--flowRow-until-lg.Layout--divided { - --Layout-gutter: 0; - } - - .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider { - grid-row: 2; - height: 1px; - } - - .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider.Layout-divider--flowRow-hidden { - display: none; - } - - .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-divider.Layout-divider--flowRow-shallow { - background: var(--bgColor-inset, var(--color-canvas-inset)); - border-color: var(--borderColor-default, var(--color-border-default)); - border-style: solid; - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)) 0; - height: 8px; - margin-right: 0; - } - - .Layout.Layout--flowRow-until-lg.Layout--divided .Layout-main, - .Layout.Layout--flowRow-until-lg.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-sidebar { - grid-row: 3/span 1; - } - - .Layout.Layout--flowRow-until-lg.Layout--divided.Layout--sidebarPosition-flowRow-end .Layout-main { - grid-row: 1; - } -} - -.Layout { - grid-gap: var(--Layout-gutter); - grid-auto-flow: column; - grid-template-columns: auto 0 minmax(0, calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter))); -} - -.Layout .Layout-sidebar { - grid-column: 1; -} - -.Layout .Layout-divider { - display: none; -} - -.Layout .Layout-main { - grid-column: 2/span 2; -} - -@media (min-width: 1012px) { - .Layout { - --Layout-gutter: 24px; - } -} - -.Layout.Layout--gutter-none { - --Layout-gutter: 0px; -} - -.Layout.Layout--gutter-condensed { - --Layout-gutter: 16px; -} - -@media (min-width: 1012px) { - .Layout.Layout--gutter-spacious { - --Layout-gutter: 32px; - } -} - -@media (min-width: 1280px) { - .Layout.Layout--gutter-spacious { - --Layout-gutter: 40px; - } -} - -@media (min-width: 544px) { - .Layout { - --Layout-sidebar-width: 220px; - } -} - -@media (min-width: 768px) { - .Layout { - --Layout-sidebar-width: 256px; - } -} - -@media (min-width: 1012px) { - .Layout { - --Layout-sidebar-width: 296px; - } -} - -@media (min-width: 768px) { - .Layout.Layout--sidebar-narrow { - --Layout-sidebar-width: 240px; - } -} - -@media (min-width: 1012px) { - .Layout.Layout--sidebar-narrow { - --Layout-sidebar-width: 256px; - } - - .Layout.Layout--sidebar-wide { - --Layout-sidebar-width: 320px; - } -} - -@media (min-width: 1280px) { - .Layout.Layout--sidebar-wide { - --Layout-sidebar-width: 336px; - } -} - -.Layout.Layout--sidebarPosition-start .Layout-sidebar { - grid-column: 1; -} - -.Layout.Layout--sidebarPosition-start .Layout-main { - grid-column: 2/span 2; -} - -.Layout.Layout--sidebarPosition-end { - grid-template-columns: minmax(0, calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter))) 0 auto; -} - -.Layout.Layout--sidebarPosition-end .Layout-main { - grid-column: 1; -} - -.Layout.Layout--sidebarPosition-end .Layout-sidebar { - grid-column: 2/span 2; -} - -.Layout.Layout--divided .Layout-divider { - background: var(--borderColor-default, var(--color-border-default)); - display: block; - grid-column: 2; - margin-right: -1px; - width: 1px; -} - -.Layout.Layout--divided .Layout-main, -.Layout.Layout--divided.Layout--sidebarPosition-end .Layout-sidebar { - grid-column: 3/span 1; -} - -.Layout.Layout--divided.Layout--sidebarPosition-end .Layout-main { - grid-column: 1; -} - -.Layout-divider { - display: none; - width: 1px; -} - -.Layout-sidebar { - width: var(--Layout-sidebar-width); -} - -.Layout-main { - min-width: 0; -} - -.Layout-main .Layout-main-centered-lg, -.Layout-main .Layout-main-centered-md, -.Layout-main .Layout-main-centered-xl { - margin-left: auto; - margin-right: auto; -} - -.Layout-main .Layout-main-centered-lg > .container-lg, -.Layout-main .Layout-main-centered-lg > .container-md, -.Layout-main .Layout-main-centered-lg > .container-xl, -.Layout-main .Layout-main-centered-md > .container-lg, -.Layout-main .Layout-main-centered-md > .container-md, -.Layout-main .Layout-main-centered-md > .container-xl, -.Layout-main .Layout-main-centered-xl > .container-lg, -.Layout-main .Layout-main-centered-xl > .container-md, -.Layout-main .Layout-main-centered-xl > .container-xl { - margin-left: 0; -} - -.Layout-main .Layout-main-centered-md { - max-width: calc(var(--breakpoint-medium, 48rem) + var(--Layout-sidebar-width) + var(--Layout-gutter)); -} - -.Layout-main .Layout-main-centered-lg { - max-width: calc(var(--breakpoint-large, 63.25rem) + var(--Layout-sidebar-width) + var(--Layout-gutter)); -} - -.Layout-main .Layout-main-centered-xl { - max-width: calc(var(--breakpoint-xlarge, 80rem) + var(--Layout-sidebar-width) + var(--Layout-gutter)); -} - -.tabnav { - border-bottom: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - margin-bottom: var(--stack-gap-normal, 1rem); - margin-top: 0; -} - -.tabnav-tabs { - display: flex; - margin-bottom: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); - overflow: auto; -} - -.tabnav-tab { - background-color: initial; - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid #0000; - border-bottom: 0; - color: var(--fgColor-muted, var(--color-fg-muted)); - display: inline-block; - flex-shrink: 0; - font-size: var(--text-body-size-medium, 0.875rem); - line-height: 23px; - padding: var(--base-size-8, 0.5rem) var(--control-medium-paddingInline-spacious, 1rem); - text-decoration: none; - transition: color .2s cubic-bezier(0.3, 0, 0.5, 1); -} - -.tabnav-tab.selected, -.tabnav-tab[aria-current]:not([aria-current=false]), -.tabnav-tab[aria-selected=true] { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-color: var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem) 0 0; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.tabnav-tab.selected .octicon, -.tabnav-tab[aria-current]:not([aria-current=false]) .octicon, -.tabnav-tab[aria-selected=true] .octicon { - color: inherit; -} - -.tabnav-tab:hover { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - transition-duration: .1s; -} - -.tabnav-tab:focus, -.tabnav-tab:focus-visible { - border-radius: var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem) 0 0; -} - -.tabnav-tab:focus, -.tabnav-tab:focus-visible { - outline-offset: -6px; -} - -.tabnav-tab .octicon, -.tabnav-tab:active { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.tabnav-tab .octicon { - margin-right: var(--control-small-gap, 0.25rem); -} - -.tabnav-tab .Counter { - color: inherit; - margin-left: var(--control-small-gap, 0.25rem); -} - -.tabnav-extra { - color: var(--fgColor-muted, var(--color-fg-muted)); - display: inline-block; - font-size: var(--text-body-size-small, 0.75rem); - margin-left: 10px; - padding-top: 10px; -} - -.tabnav-extra > .octicon { - margin-right: 2px; -} - -a.tabnav-extra:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.tabnav-btn { - margin-left: var(--controlStack-medium-gap-condensed, 0.5rem); -} - -.FormControl { - display: inline-flex; - flex-direction: column; - gap: var(--base-size-4, 0.25rem); -} - -.FormControl--fullWidth { - display: flex; -} - -.FormControl-label { - color: var(--fgColor-default, var(--color-fg-default)); - font-size: var(--text-body-size-medium, 0.875rem); - font-weight: var(--base-text-weight-semibold, 600); - line-height: var(--text-body-lineHeight-medium, 1.4285); - -webkit-user-select: none; - user-select: none; -} - -.FormControl-caption { - color: var(--fgColor-muted, var(--color-fg-muted)); - font-weight: var(--text-caption-weight, 400); - margin-bottom: 0; -} - -.FormControl-caption, -.FormControl-inlineValidation { - font-size: var(--text-caption-size, 0.75rem); - line-height: var(--text-caption-lineHeight, 1.3333); -} - -.FormControl-inlineValidation { - fill: var(--control-borderColor-danger, var(--color-danger-emphasis)); - align-items: flex-start; - color: var(--control-borderColor-danger, var(--color-danger-emphasis)); - display: flex; - flex-direction: row; - font-weight: var(--base-text-weight-semibold, 600); - gap: var(--base-size-4, 0.25rem); -} - -.FormControl-inlineValidation p { - margin-bottom: 0; -} - -.FormControl-inlineValidation--visual { - align-items: center; - display: flex; - min-height: var(--base-size-16, 1rem); -} - -.FormControl-spacingWrapper { - display: flex; - flex-direction: column; - row-gap: .5rem; -} - -.FormControl-horizontalGroup { - column-gap: .5rem; - display: flex; -} - -.FormControl-input, -.FormControl-select, -.FormControl-textarea { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--control-borderColor-rest, var(--color-border-default)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.FormControl-input[disabled], -.FormControl-select[disabled], -.FormControl-textarea[disabled] { - -webkit-text-fill-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--control-bgColor-disabled, var(--color-input-disabled-bg)); - border-color: var(--control-borderColor-disabled, var(--color-btn-border)); - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; - opacity: 1; -} - -.FormControl-input[invalid]:not(:focus), -.FormControl-select[invalid]:not(:focus), -.FormControl-textarea[invalid]:not(:focus) { - border-color: var(--control-borderColor-danger, var(--color-danger-emphasis)); -} - -.FormControl-input:not([type=checkbox], [type=radio]):focus, -.FormControl-select:not([type=checkbox], [type=radio]):focus, -.FormControl-textarea:not([type=checkbox], [type=radio]):focus { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -.FormControl-input:not([type=checkbox], [type=radio]):focus:not(:focus-visible), -.FormControl-select:not([type=checkbox], [type=radio]):focus:not(:focus-visible), -.FormControl-textarea:not([type=checkbox], [type=radio]):focus:not(:focus-visible) { - border-color: #0000; - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px #0000 var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -.FormControl-input:not([type=checkbox], [type=radio]):focus-visible, -.FormControl-select:not([type=checkbox], [type=radio]):focus-visible, -.FormControl-textarea:not([type=checkbox], [type=radio]):focus-visible { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -.FormControl-input, -.FormControl-select, -.FormControl-textarea { - border-radius: var(--borderRadius-medium, 0.375rem); - font-size: var(--text-body-size-medium, 0.875rem); - line-height: var(--text-body-lineHeight-medium, 1.4285); - padding-block: calc(var(--control-medium-paddingBlock, 6px) - var(--borderWidth-thin, 1px)); - padding-inline: var(--control-medium-paddingInline-condensed, 0.5rem); - transition: 80ms cubic-bezier(0.33, 1, 0.68, 1); - transition-property: color,background-color,box-shadow,border-color; - width: 100%; -} - -.FormControl-input[disabled]::placeholder, -.FormControl-select[disabled]::placeholder, -.FormControl-textarea[disabled]::placeholder { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.FormControl-input[readonly], -.FormControl-select[readonly], -.FormControl-textarea[readonly] { - background-color: var(--control-bgColor-disabled, var(--color-input-disabled-bg)); -} - -.FormControl-input::placeholder, -.FormControl-select::placeholder, -.FormControl-textarea::placeholder { - color: var(--control-fgColor-placeholder, var(--color-fg-subtle)); - opacity: 1; -} - -.FormControl-input.FormControl-small, -.FormControl-select.FormControl-small, -.FormControl-textarea.FormControl-small { - font-size: var(--text-body-size-small, 0.75rem); - height: var(--control-small-size, 1.75rem); - padding-block: var(--control-small-paddingBlock, 0.25rem); - padding-inline: var(--control-small-paddingInline-normal, 0.75rem); -} - -.FormControl-input.FormControl-medium, -.FormControl-select.FormControl-medium, -.FormControl-textarea.FormControl-medium { - height: var(--control-medium-size, 2rem); -} - -.FormControl-input.FormControl-large, -.FormControl-select.FormControl-large, -.FormControl-textarea.FormControl-large { - height: var(--control-large-size, 2.5rem); - padding-block: var(--control-large-paddingBlock, 0.625rem); - padding-inline: var(--control-large-paddingInline-normal, 0.75rem); -} - -.FormControl-input.FormControl-inset, -.FormControl-select.FormControl-inset, -.FormControl-textarea.FormControl-inset { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.FormControl-input.FormControl-inset:focus, -.FormControl-input.FormControl-inset:focus-visible, -.FormControl-select.FormControl-inset:focus, -.FormControl-select.FormControl-inset:focus-visible, -.FormControl-textarea.FormControl-inset:focus, -.FormControl-textarea.FormControl-inset:focus-visible { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.FormControl-input.FormControl-monospace, -.FormControl-select.FormControl-monospace, -.FormControl-textarea.FormControl-monospace { - font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace); -} - -.FormControl-input.FormControl-error, -.FormControl-select.FormControl-error, -.FormControl-textarea.FormControl-error { - border-color: var(--control-borderColor-danger, var(--color-danger-emphasis)); -} - -.FormControl-input.FormControl-success, -.FormControl-select.FormControl-success, -.FormControl-textarea.FormControl-success { - border-color: var(--control-borderColor-success, var(--color-success-emphasis)); -} - -.FormControl-input.FormControl-warning, -.FormControl-select.FormControl-warning, -.FormControl-textarea.FormControl-warning { - border-color: var(--control-borderColor-warning, var(--color-attention-emphasis)); -} - -.FormControl-toggleSwitchInput { - align-items: flex-start; - display: flex; - gap: var(--base-size-16, 1rem); -} - -.FormControl-input-wrap { - display: grid; - position: relative; -} - -.FormControl-input-wrap .FormControl-input-leadingVisualWrap { - color: var(--fgColor-muted, var(--color-fg-muted)); - display: block; - height: var(--base-size-16, 1rem); - left: var(--base-size-8, 0.5rem); - pointer-events: none; - position: absolute; - top: var(--base-size-8, 0.5rem); - width: var(--base-size-16, 1rem); -} - -.FormControl-input-wrap .FormControl-input-leadingVisualWrap .FormControl-input-leadingVisual { - display: block; - -webkit-user-select: none; - user-select: none; -} - -.FormControl-input-wrap .FormControl-input-trailingAction { - align-items: center; - background: #0000; - border: 0; - border-radius: var(--borderRadius-small, 0.1875rem); - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: pointer; - display: grid; - height: var(--control-xsmall-size, 1.5rem); - justify-content: center; - padding: 0; - position: absolute; - right: var(--base-size-4, 0.25rem); - top: var(--base-size-4, 0.25rem); - transition: .2s cubic-bezier(0.3, 0, 0.5, 1); - transition-property: color,background-color,border-color; - width: var(--control-xsmall-size, 1.5rem); - z-index: 4; -} - -.FormControl-input-wrap .FormControl-input-trailingAction svg { - -webkit-user-select: none; - user-select: none; -} - -.FormControl-input-wrap .FormControl-input-trailingAction[disabled] { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - pointer-events: none; -} - -.FormControl-input-wrap .FormControl-input-trailingAction:hover { - background: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); -} - -.FormControl-input-wrap .FormControl-input-trailingAction:active { - background: var(--control-transparent-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -.FormControl-input-wrap .FormControl-input-trailingAction.FormControl-input-trailingAction--divider:before { - background: var(--borderColor-default, var(--color-border-default)); - content: ""; - display: block; - height: var(--base-size-16, 1rem); - left: calc(var(--base-size-4, 0.25rem)*-1); - position: absolute; - top: calc((var(--control-xsmall-size, 1.5rem) - var(--base-size-16, 1rem))/2); - width: var(--borderWidth-thin, max(1px, 0.0625rem)); -} - -.FormControl-input-wrap .FormControl-input-trailingAction:after { - content: ""; - height: 100%; - left: 50%; - min-height: var(--control-medium-size, 2rem) var(--control-medium-size, 2rem); - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -@media (pointer: coarse) { - .FormControl-input-wrap .FormControl-input-trailingAction:after { - min-height: var(--control-minTarget-coarse, 2.75rem); - min-width: var(--control-minTarget-coarse, 2.75rem); - } -} - -.FormControl-input-wrap.FormControl-input-wrap--leadingVisual .FormControl-input { - padding-inline-start: calc(var(--control-medium-paddingInline-condensed, 0.5rem) + var(--base-size-16, 1rem) + var(--control-medium-gap, 0.5rem)); -} - -.FormControl-input-wrap.FormControl-input-wrap--trailingAction .FormControl-input { - padding-inline-end: calc(var(--control-medium-paddingInline-condensed, 0.5rem) + var(--base-size-16, 1rem) + var(--control-medium-gap, 0.5rem)); -} - -.FormControl-input-wrap.FormControl-input-wrap--trailingAction.FormControl-input-wrap-trailingAction--divider .FormControl-input { - padding-inline-end: calc(var(--control-medium-paddingInline-condensed, 0.5rem) + var(--base-size-16, 1rem) + var(--control-medium-gap, 0.5rem) + var(--borderWidth-thin, max(1px, 0.0625rem))); -} - -.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-leadingVisualWrap { - left: calc(var(--control-medium-paddingInline-condensed, 0.5rem) - .125rem); - top: calc(var(--control-medium-paddingInline-condensed, 0.5rem) - .125rem); -} - -.FormControl-input-wrap.FormControl-input-wrap--small.FormControl-input-wrap--trailingAction .FormControl-input.FormControl-small { - padding-inline-end: calc(var(--control-small-paddingInline-condensed, 0.5rem) + var(--base-size-16, 1rem) + var(--control-small-gap, 0.25rem)); -} - -.FormControl-input-wrap.FormControl-input-wrap--small.FormControl-input-wrap--trailingAction.FormControl-input-wrap-trailingAction--divider .FormControl-input.FormControl-small { - padding-inline-end: calc(var(--control-small-paddingInline-condensed, 0.5rem) + var(--base-size-16, 1rem) + var(--control-small-gap, 0.25rem) + var(--borderWidth-thin, max(1px, 0.0625rem))); -} - -.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-trailingAction { - height: calc(var(--control-small-size, 1.75rem) - var(--base-size-8, 0.5rem)); - width: calc(var(--control-small-size, 1.75rem) - var(--base-size-8, 0.5rem)); -} - -.FormControl-input-wrap.FormControl-input-wrap--small .FormControl-input-trailingAction:before { - top: calc((var(--control-xsmall-size, 1.5rem) - var(--base-size-16, 1rem))/4); -} - -.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-leadingVisualWrap { - left: var(--control-medium-paddingInline-normal, 0.75rem); - top: var(--control-medium-paddingInline-normal, 0.75rem); -} - -.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--leadingVisual .FormControl-input.FormControl-large { - padding-inline-start: calc(var(--control-large-paddingInline-normal, 0.75rem) + var(--base-size-16, 1rem) + var(--control-large-gap, 0.5rem)); -} - -.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingAction .FormControl-input.FormControl-large { - padding-inline-end: calc(var(--control-large-paddingInline-normal, 0.75rem) + var(--base-size-16, 1rem) + var(--control-large-gap, 0.5rem)); -} - -.FormControl-input-wrap.FormControl-input-wrap--large.FormControl-input-wrap--trailingAction.FormControl-input-wrap-trailingAction--divider .FormControl-input.FormControl-large { - padding-inline-end: calc(var(--control-large-paddingInline-normal, 0.75rem) + var(--base-size-16, 1rem) + var(--control-large-gap, 0.5rem) + var(--borderWidth-thin, max(1px, 0.0625rem))); -} - -.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-trailingAction { - height: var(--control-small-size, 1.75rem); - right: calc(var(--control-medium-paddingInline-condensed, 0.5rem) - .125rem); - top: calc(var(--control-medium-paddingInline-condensed, 0.5rem) - .125rem); - width: var(--control-small-size, 1.75rem); -} - -.FormControl-input-wrap.FormControl-input-wrap--large .FormControl-input-trailingAction:before { - height: var(--base-size-20, 1.25rem); - top: unset; -} - -.FormControl-select-wrap { - display: grid; - grid-template-columns: minmax(0, auto) var(--base-size-16, 1rem); -} - -.FormControl-select-wrap:after { - background-color: var(--bgColor-neutral-emphasis, var(--color-fg-subtle)); - content: ""; - grid-column: 2; - grid-row: 1; - height: var(--base-size-16, 1rem); - -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiM1ODYwNjkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTQuNDI3IDkuNDI3IDMuMzk2IDMuMzk2YS4yNTEuMjUxIDAgMCAwIC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwIDAgMTEuMzk2IDlINC42MDRhLjI1LjI1IDAgMCAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3IDcuODIgMy4wNzJhLjI1LjI1IDAgMCAxIC4zNTQgMEwxMS41NyA2LjQ3YS4yNS4yNSAwIDAgMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMCAxLS4xNzctLjQyN3oiLz48L3N2Zz4="); - mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiM1ODYwNjkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTQuNDI3IDkuNDI3IDMuMzk2IDMuMzk2YS4yNTEuMjUxIDAgMCAwIC4zNTQgMGwzLjM5Ni0zLjM5NkEuMjUuMjUgMCAwIDAgMTEuMzk2IDlINC42MDRhLjI1LjI1IDAgMCAwLS4xNzcuNDI3ek00LjQyMyA2LjQ3IDcuODIgMy4wNzJhLjI1LjI1IDAgMCAxIC4zNTQgMEwxMS41NyA2LjQ3YS4yNS4yNSAwIDAgMS0uMTc3LjQyN0g0LjZhLjI1LjI1IDAgMCAxLS4xNzctLjQyN3oiLz48L3N2Zz4="); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: contain; - mask-size: contain; - padding-right: var(--base-size-4, 0.25rem); - place-self: center end; - pointer-events: none; - width: var(--base-size-16, 1rem); -} - -.FormControl-select-wrap .FormControl-select { - -webkit-appearance: none; - appearance: none; - grid-column: 1/-1; - grid-row: 1; - padding-right: var(--base-size-20, 1.25rem); -} - -.FormControl-checkbox-wrap, -.FormControl-radio-wrap { - display: inline-grid; - gap: var(--base-size-8, 0.5rem); - grid-template-columns: min-content auto; -} - -.FormControl-checkbox-wrap .FormControl-checkbox-labelWrap, -.FormControl-checkbox-wrap .FormControl-radio-labelWrap, -.FormControl-radio-wrap .FormControl-checkbox-labelWrap, -.FormControl-radio-wrap .FormControl-radio-labelWrap { - display: flex; - flex-direction: column; - gap: var(--base-size-4, 0.25rem); -} - -.FormControl-checkbox-wrap .FormControl-label, -.FormControl-radio-wrap .FormControl-label { - cursor: pointer; -} - -.FormControl-check-group-wrap fieldset, -.FormControl-radio-group-wrap fieldset { - border: 0; - margin: 0; - padding: 0; -} - -input[type=checkbox].FormControl-checkbox { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--control-borderColor-rest, var(--color-border-default)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -input.FormControl-checkbox[type=checkbox][disabled] { - -webkit-text-fill-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--control-bgColor-disabled, var(--color-input-disabled-bg)); - border-color: var(--control-borderColor-disabled, var(--color-btn-border)); - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; - opacity: 1; -} - -input.FormControl-checkbox[type=checkbox][invalid]:not(:focus) { - border-color: var(--control-borderColor-danger, var(--color-danger-emphasis)); -} - -input.FormControl-checkbox[type=checkbox]:not([type=checkbox], [type=radio]):focus { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -input.FormControl-checkbox[type=checkbox]:not([type=checkbox], [type=radio]):focus:not(:focus-visible) { - border-color: #0000; - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px #0000 var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -input.FormControl-checkbox[type=checkbox]:not([type=checkbox], [type=radio]):focus-visible { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -input[type=checkbox].FormControl-checkbox { - -webkit-appearance: none; - appearance: none; - border-color: var(--control-borderColor-emphasis, var(--color-switch-knob-border)); - border-radius: var(--borderRadius-small, 0.1875rem); - cursor: pointer; - display: grid; - height: var(--base-size-16, 1rem); - margin: .125rem 0 0; - place-content: center; - position: relative; - transition: background-color,border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); - width: var(--base-size-16, 1rem); -} - -input.FormControl-checkbox[type=checkbox]:before { - background-color: var(--control-checked-fgColor-rest, var(--color-switch-track-checked-fg)); - clip-path: inset(var(--base-size-16, 1rem) 0 0 0); - content: ""; - height: var(--base-size-16, 1rem); - -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTExLjc4LjIyYS43NS43NSAwIDAgMSAwIDEuMDYxTDQuNTIgOC41NDFhLjc1Mi43NTIgMCAwIDEtMS4wNjIgMEwuMjAyIDUuMjg1YS43NS43NSAwIDAgMSAxLjA2MS0xLjA2MWwyLjcyNSAyLjcyM0wxMC43MTguMjJhLjc1MS43NTEgMCAwIDEgMS4wNjIgMFoiIGZpbGw9IiNmZmYiLz48L3N2Zz4="); - mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTExLjc4LjIyYS43NS43NSAwIDAgMSAwIDEuMDYxTDQuNTIgOC41NDFhLjc1Mi43NTIgMCAwIDEtMS4wNjIgMEwuMjAyIDUuMjg1YS43NS43NSAwIDAgMSAxLjA2MS0xLjA2MWwyLjcyNSAyLjcyM0wxMC43MTguMjJhLjc1MS43NTEgMCAwIDEgMS4wNjIgMFoiIGZpbGw9IiNmZmYiLz48L3N2Zz4="); - -webkit-mask-position: center; - mask-position: center; - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 75%; - mask-size: 75%; - transition: visibility 0s linear .23s; - visibility: hidden; - width: var(--base-size-16, 1rem); -} - -@media screen and (prefers-reduced-motion: no-preference) { - input.FormControl-checkbox[type=checkbox]:before { - animation: checkmarkOut 80ms cubic-bezier(0.65, 0, 0.35, 1) forwards; - } -} - -input.FormControl-checkbox[type=checkbox]:after { - content: ""; - height: 100%; - left: 50%; - min-height: var(--control-medium-size, 2rem) var(--control-medium-size, 2rem); - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -input.FormControl-checkbox[type=checkbox][disabled] ~ .FormControl-checkbox-labelWrap .FormControl-label { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; -} - -input.FormControl-checkbox[type=checkbox]:checked { - background: var(--control-checked-bgColor-rest, var(--color-accent-fg)); - border-color: var(--control-checked-borderColor-rest, var(--color-accent-fg)); - transition: background-color,border-color 80ms cubic-bezier(0.32, 0, 0.67, 0) 0ms; -} - -input.FormControl-checkbox[type=checkbox]:checked:before { - transition: visibility 0s linear 0s; - visibility: visible; -} - -@media screen and (prefers-reduced-motion: no-preference) { - input.FormControl-checkbox[type=checkbox]:checked:before { - animation: checkmarkIn 80ms cubic-bezier(0.65, 0, 0.35, 1) 80ms forwards; - } -} - -input.FormControl-checkbox[type=checkbox]:checked:disabled { - background-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - border-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; - opacity: 1; -} - -input.FormControl-checkbox[type=checkbox]:checked:disabled:before { - background-color: var(--control-checked-fgColor-rest, var(--color-switch-track-checked-fg)); -} - -@media (forced-colors: active) { - input.FormControl-checkbox[type=checkbox]:checked { - background-color: canvastext; - border-color: canvastext; - } -} - -input.FormControl-checkbox[type=checkbox]:focus-visible { - box-shadow: none; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; -} - -input.FormControl-checkbox[type=checkbox]:indeterminate:before { - -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgMWExIDEgMCAwIDEgMS0xaDhhMSAxIDAgMSAxIDAgMkgxYTEgMSAwIDAgMS0xLTFaIiBmaWxsPSIjZmZmIi8+PC9zdmc+"); - mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgMWExIDEgMCAwIDEgMS0xaDhhMSAxIDAgMSAxIDAgMkgxYTEgMSAwIDAgMS0xLTFaIiBmaWxsPSIjZmZmIi8+PC9zdmc+"); - visibility: visible; -} - -input[type=radio].FormControl-radio { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--control-borderColor-rest, var(--color-border-default)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -input.FormControl-radio[type=radio][disabled] { - -webkit-text-fill-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--control-bgColor-disabled, var(--color-input-disabled-bg)); - border-color: var(--control-borderColor-disabled, var(--color-btn-border)); - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; - opacity: 1; -} - -input.FormControl-radio[type=radio][invalid]:not(:focus) { - border-color: var(--control-borderColor-danger, var(--color-danger-emphasis)); -} - -input.FormControl-radio[type=radio]:not([type=checkbox], [type=radio]):focus { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -input.FormControl-radio[type=radio]:not([type=checkbox], [type=radio]):focus:not(:focus-visible) { - border-color: #0000; - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px #0000 var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -input.FormControl-radio[type=radio]:not([type=checkbox], [type=radio]):focus-visible { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; -} - -input[type=radio].FormControl-radio { - -webkit-appearance: none; - appearance: none; - border-color: var(--control-borderColor-emphasis, var(--color-switch-knob-border)); - border-radius: var(--borderRadius-full, 624.9375rem); - cursor: pointer; - height: var(--base-size-16, 1rem); - margin: .125rem 0 0; - position: relative; - transition: background-color,border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); - width: var(--base-size-16, 1rem); -} - -input.FormControl-radio[type=radio]:after { - content: ""; - height: 100%; - left: 50%; - min-height: var(--control-medium-size, 2rem) var(--control-medium-size, 2rem); - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -input.FormControl-radio[type=radio][disabled] ~ .FormControl-radio-labelWrap .FormControl-label { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; -} - -input.FormControl-radio[type=radio]:checked { - border-color: var(--control-checked-borderColor-rest, var(--color-accent-fg)); - border-width: var(--base-size-4, 0.25rem); -} - -input.FormControl-radio[type=radio]:checked:disabled, -input.FormControl-radio[type=radio][disabled]:checked { - border-color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; -} - -input.FormControl-radio[type=radio]:checked:disabled ~ .FormControl-radio-labelWrap .FormControl-label, -input.FormControl-radio[type=radio][disabled]:checked ~ .FormControl-radio-labelWrap .FormControl-label { - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: not-allowed; -} - -input.FormControl-radio[type=radio]:focus-visible { - box-shadow: none; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; -} - -@media (forced-colors: active) { - input[type=radio].FormControl-radio { - background-color: canvastext; - border-color: canvastext; - } -} - -@keyframes checkmarkIn { - 0% { - clip-path: inset(var(--base-size-16, 1rem) 0 0 0); - } - - to { - clip-path: inset(0 0 0 0); - } -} - -@keyframes checkmarkOut { - 0% { - clip-path: inset(0 0 0 0); - } - - to { - clip-path: inset(var(--base-size-16, 1rem) 0 0 0); - } -} - -.btn-mktg { - -webkit-appearance: none; - appearance: none; - background: linear-gradient(180deg, #ffffff26 0, #fff0 100%),var(--color-mktg-btn-bg); - border: 0; - border-radius: .375rem; - color: var(--bgColor-default, var(--color-canvas-default)); - display: inline-block; - font-size: 1rem; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1; - padding: .9rem 1.5rem 1.1rem; - position: relative; - text-align: center; - transition: box-shadow .2s,outline .2s ease; - -webkit-user-select: none; - user-select: none; - vertical-align: middle; - white-space: nowrap; - z-index: 1; -} - -.btn-mktg:before { - background: linear-gradient(180deg, #ffffff26, #fff0); - background-blend-mode: normal; - border-radius: inherit; - bottom: 0; - content: ""; - left: 0; - opacity: 0; - position: absolute; - right: 0; - top: 0; - transition: opacity .2s; - z-index: -1; -} - -.btn-mktg:hover { - box-shadow: var(--color-mktg-btn-shadow-hover); - text-decoration: none; -} - -.btn-mktg.focus:before, -.btn-mktg:focus-visible:before, -.btn-mktg:focus:before, -.btn-mktg:hover:before { - opacity: 1; -} - -.btn-mktg:focus { - box-shadow: none; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; -} - -.btn-mktg:focus:not(:focus-visible) { - box-shadow: none; - outline: 1px solid #0000; -} - -.btn-mktg:focus-visible { - box-shadow: none; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; -} - -.btn-mktg:active:before { - opacity: .5; -} - -.btn-mktg.disabled, -.btn-mktg[disabled] { - cursor: default; - opacity: .5; - pointer-events: none; -} - -.btn-muted-mktg { - background: none; - box-shadow: var(--color-mktg-btn-shadow-outline); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.btn-muted-mktg:before { - display: none; -} - -.btn-muted-mktg:hover { - box-shadow: var(--color-mktg-btn-shadow-hover-muted); -} - -.btn-muted-mktg:active { - box-shadow: var(--fgColor-default, var(--color-fg-default)) 0 0 0 3px inset; -} - -.btn-muted-mktg:disabled { - box-shadow: var(--fgColor-default, var(--color-fg-default)) 0 0 0 1px inset; -} - -.btn-subtle-mktg { - box-shadow: none; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.btn-subtle-mktg, -.btn-subtle-mktg:before { - background: none; -} - -.btn-subtle-mktg:hover { - box-shadow: var(--color-mktg-btn-shadow-hover-muted); -} - -.btn-signup-mktg { - background: linear-gradient(180deg, #34b75926, #2ea44f00),#2ea44f; - color: #fff; -} - -.btn-signup-mktg:before { - background: linear-gradient(180deg, #34b75926, #2ea44f00); -} - -.btn-signup-mktg:focus { - box-shadow: none; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; -} - -.btn-signup-mktg:focus:not(:focus-visible) { - box-shadow: none; - outline: 1px solid #0000; -} - -.btn-signup-mktg:focus-visible { - box-shadow: none; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; -} - -.btn-small-mktg { - padding: .625rem 1rem .8125rem; -} - -.btn-large-mktg { - font-size: 1.25rem; - padding: 16px 30px 20px; -} - -.ToggleSwitch, -.ToggleSwitch.ToggleSwitch { - display: inline-flex; -} - -.ToggleSwitch { - align-items: center; - gap: var(--controlStack-medium-gap-condensed, 0.5rem); -} - -.ToggleSwitch--checked .ToggleSwitch-statusOn { - height: auto; - visibility: visible; -} - -.ToggleSwitch--checked .ToggleSwitch-statusOff { - height: 0; - visibility: hidden; -} - -.ToggleSwitch-track { - -webkit-appearance: none; - appearance: none; - background-color: var(--controlTrack-bgColor-rest, var(--color-switch-track-bg)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--controlTrack-borderColor-rest, var(--color-switch-track-border)); - border-radius: var(--borderRadius-medium, 0.375rem); - cursor: pointer; - display: block; - height: var(--control-medium-size, 2rem); - overflow: hidden; - padding: 0; - position: relative; - text-decoration: none; - transition-duration: 80ms; - transition-property: background-color,border-color; - transition-timing-function: cubic-bezier(0.5, 1, 0.89, 1); - -webkit-user-select: none; - user-select: none; - width: var(--base-size-64, 4rem); -} - -.ToggleSwitch-track:focus, -.ToggleSwitch-track:focus-visible { - outline-offset: 1px; -} - -.ToggleSwitch-track:hover { - background-color: var(--controlTrack-bgColor-hover, var(--color-switch-track-hover-bg)); -} - -.ToggleSwitch-track:active { - background-color: var(--controlTrack-bgColor-active, var(--color-switch-track-active-bg)); -} - -@media (pointer: coarse) { - .ToggleSwitch-track:before { - content: ""; - height: 100%; - left: 50%; - min-height: 44px; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; - } -} - -@media (prefers-reduced-motion) { - .ToggleSwitch-track, - .ToggleSwitch-track * { - transition: none; - } -} - -.ToggleSwitch-track[aria-pressed=true][disabled] { - background-color: var(--controlTrack-bgColor-disabled, var(--color-switch-track-disabled-bg)); - border-color: #0000; - color: var(--control-checked-fgColor-disabled, var(--color-switch-track-checked-disabled-fg)); -} - -.ToggleSwitch-track[aria-pressed=true] { - background-color: var(--control-checked-bgColor-rest, var(--color-switch-track-checked-bg)); - border-color: var(--borderColor-transparent, #0000); -} - -.ToggleSwitch-track[aria-pressed=true]:not([disabled]):hover { - background-color: var(--control-checked-bgColor-hover, var(--color-switch-track-checked-hover-bg)); -} - -.ToggleSwitch-track[aria-pressed=true]:not([disabled]):active { - background-color: var(--control-checked-bgColor-active, var(--color-switch-track-checked-active-bg)); -} - -.ToggleSwitch-track[aria-pressed=true] .ToggleSwitch-knob { - background-color: var(--controlKnob-bgColor-checked, var(--color-switch-knob-checked-bg)); - border-color: var(--controlKnob-borderColor-checked, var(--color-switch-knob-checked-border)); - transform: translateX(100%); -} - -.ToggleSwitch-track[aria-pressed=true] .ToggleSwitch-lineIcon { - transform: translateX(0); -} - -.ToggleSwitch-track[aria-pressed=true] .ToggleSwitch-circleIcon { - transform: translateX(100%); -} - -.ToggleSwitch-track[disabled] { - background-color: var(--controlTrack-bgColor-disabled, var(--color-switch-track-disabled-bg)); - border-color: #0000; - cursor: not-allowed; - transition-property: none; -} - -.ToggleSwitch-track[disabled] .ToggleSwitch-knob { - border-color: var(--borderColor-default, var(--color-border-default)); - box-shadow: none; -} - -.ToggleSwitch-track[disabled] .ToggleSwitch-circleIcon, -.ToggleSwitch-track[disabled] .ToggleSwitch-lineIcon { - color: var(--controlTrack-fgColor-disabled, var(--color-switch-track-disabled-fg)); -} - -.ToggleSwitch-icons { - align-items: center; - display: flex; - height: 100%; - overflow: hidden; - width: 100%; -} - -.ToggleSwitch-lineIcon { - color: var(--control-checked-fgColor-rest, var(--color-switch-track-checked-fg)); - transform: translateX(-100%); -} - -.ToggleSwitch-circleIcon, -.ToggleSwitch-lineIcon { - flex: 1 0 50%; - line-height: 0; - transition-duration: 80ms; - transition-property: transform; -} - -.ToggleSwitch-circleIcon { - color: var(--controlTrack-fgColor-rest, var(--color-switch-track-fg)); - transform: translateX(0); -} - -.ToggleSwitch-knob { - background-color: var(--controlKnob-bgColor-rest, var(--color-switch-knob-bg)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--controlKnob-borderColor-rest, var(--color-switch-knob-border)); - border-radius: var(--borderRadius-medium, 0.375rem); - bottom: 0; - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow)); - position: absolute; - top: 0; - transition-duration: 80ms; - transition-property: transform; - transition-timing-function: cubic-bezier(0.5, 1, 0.89, 1); - width: 50%; - z-index: 1; -} - -@media (prefers-reduced-motion) { - .ToggleSwitch-knob { - transition: none; - } -} - -.ToggleSwitch-status { - color: var(--fgColor-default, var(--color-fg-default)); - font-size: var(--text-body-size-medium, 0.875rem); - line-height: 1.5; - position: relative; - text-align: right; -} - -.ToggleSwitch-statusIcon { - display: flex; - margin-top: .063rem; - width: var(--base-size-16, 1rem); -} - -.ToggleSwitch--small .ToggleSwitch-status { - font-size: var(--text-body-size-small, 0.75rem); -} - -.ToggleSwitch--small .ToggleSwitch-track { - height: var(--control-xsmall-size, 1.5rem); - width: var(--base-size-48, 3rem); -} - -.ToggleSwitch--disabled .ToggleSwitch-status { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.ToggleSwitch-statusOn { - height: 0; - visibility: hidden; -} - -.ToggleSwitch-statusOff { - height: auto; - visibility: visible; -} - -.ToggleSwitch--statusAtEnd { - flex-direction: row-reverse; -} - -.ToggleSwitch--statusAtEnd .ToggleSwitch-status { - text-align: left; -} - -.UnderlineNav { - -webkit-overflow-scrolling: auto; - box-shadow: inset 0 -1px 0 var(--borderColor-muted, var(--color-border-muted)); - display: flex; - justify-content: space-between; - min-height: var(--base-size-48, 3rem); - overflow-x: auto; - overflow-y: hidden; -} - -.UnderlineNav .Counter { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - color: var(--fgColor-default, var(--color-fg-default)); - margin-left: var(--control-medium-gap, 0.5rem); -} - -.UnderlineNav .Counter--primary { - background-color: var(--bgColor-neutral-emphasis, var(--color-fg-subtle)); - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.UnderlineNav-body { - align-items: center; - display: flex; - gap: var(--control-medium-gap, 0.5rem); - list-style: none; -} - -.UnderlineNav-item { - align-items: center; - background-color: initial; - border: 0; - border-radius: var(--borderRadius-medium, 0.375rem); - color: var(--fgColor-default, var(--color-fg-default)); - cursor: pointer; - display: flex; - font-size: var(--text-body-size-medium, 0.875rem); - line-height: 30px; - padding: 0 var(--control-medium-paddingInline-condensed, 0.5rem); - position: relative; - text-align: center; - white-space: nowrap; -} - -.UnderlineNav-item:focus, -.UnderlineNav-item:focus-visible, -.UnderlineNav-item:hover { - border-bottom-color: var(--borderColor-neutral-muted, var(--color-neutral-muted)); - color: var(--fgColor-default, var(--color-fg-default)); - outline-offset: -2px; - text-decoration: none; - transition: border-bottom-color .12s ease-out; -} - -.UnderlineNav-item [data-content]:before { - content: attr(data-content); - display: block; - font-weight: var(--base-text-weight-semibold, 600); - height: 0; - visibility: hidden; -} - -.UnderlineNav-item:before { - content: ""; - height: 100%; - left: 50%; - min-height: 48px; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -@media (pointer: fine) { - .UnderlineNav-item:hover { - background: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - transition: background .12s ease-out; - } -} - -.UnderlineNav-item.selected, -.UnderlineNav-item[aria-current]:not([aria-current=false]), -.UnderlineNav-item[role=tab][aria-selected=true] { - border-bottom-color: var(--underlineNav-borderColor-active, var(--color-primer-border-active)); - color: var(--fgColor-default, var(--color-fg-default)); - font-weight: var(--base-text-weight-semibold, 600); -} - -.UnderlineNav-item.selected:after, -.UnderlineNav-item[aria-current]:not([aria-current=false]):after, -.UnderlineNav-item[role=tab][aria-selected=true]:after { - background: var(--underlineNav-borderColor-active, var(--color-primer-border-active)); - border-radius: var(--borderRadius-medium, 0.375rem); - bottom: calc(50% - 25px); - content: ""; - height: 2px; - position: absolute; - right: 50%; - transform: translate(50%, -50%); - width: 100%; - z-index: 1; -} - -.UnderlineNav--right { - justify-content: flex-end; -} - -.UnderlineNav--right .UnderlineNav-actions { - flex: 1 1 auto; -} - -.UnderlineNav-actions { - align-self: center; -} - -.UnderlineNav--full { - display: block; -} - -.UnderlineNav--full .UnderlineNav-body { - min-height: var(--base-size-48, 3rem); -} - -.UnderlineNav-octicon { - fill: var(--fgColor-muted, var(--color-fg-muted)); - color: var(--fgColor-muted, var(--color-fg-muted)); - display: inline; - margin-right: var(--control-medium-gap, 0.5rem); -} - -.UnderlineNav-container { - display: flex; - justify-content: space-between; -} - -.SegmentedControl { - background-color: var(--controlTrack-bgColor-rest, var(--color-segmented-control-bg)); - border-radius: var(--borderRadius-medium, 0.375rem); - display: inline-flex; - list-style: none; -} - -.SegmentedControl-item { - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid #0000; - border-radius: var(--borderRadius-medium, 0.375rem); - display: inline-flex; - padding: var(--control-xsmall-paddingInline-condensed, 0.25rem); - position: relative; -} - -.SegmentedControl-item .Button--invisible:hover:not(:disabled) { - background-color: var(--controlTrack-bgColor-hover, var(--color-action-list-item-default-hover-bg)); -} - -.SegmentedControl-item .Button--invisible:active:not(:disabled) { - background-color: var(--controlTrack-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -.SegmentedControl-item.SegmentedControl-item--selected { - background-color: var(--controlKnob-bgColor-rest, var(--color-segmented-control-button-bg)); - border-color: var(--controlKnob-borderColor-rest, var(--color-segmented-control-button-selected-border)); -} - -.SegmentedControl-item.SegmentedControl-item--selected .Button { - font-weight: var(--base-text-weight-semibold, 600); -} - -.SegmentedControl-item.SegmentedControl-item--selected .Button:hover { - background-color: initial; -} - -.SegmentedControl-item.SegmentedControl-item--selected:before { - border-color: #0000; -} - -.SegmentedControl-item.SegmentedControl-item--selected + .SegmentedControl-item:before { - border-color: #0000; -} - -.SegmentedControl-item .Button-label[data-content]:before { - content: attr(data-content); - display: block; - font-weight: var(--base-text-weight-semibold, 600); - height: 0; - visibility: hidden; -} - -.SegmentedControl-item:not(:first-child):before { - border-left: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - content: ""; - inset: 0 0 0 -1px; - margin-bottom: var(--control-medium-paddingBlock, 0.375rem); - margin-top: var(--control-medium-paddingBlock, 0.375rem); - position: absolute; -} - -.SegmentedControl-item .Button { - border: 0; - color: var(--button-default-fgColor-rest, var(--color-btn-text)); - font-weight: var(--base-text-weight-normal, 400); - transition: none; -} - -.SegmentedControl-item .Button:focus-visible { - border-radius: calc(var(--borderRadius-medium, 0.375rem) - 5px); - outline-offset: calc(var(--control-xsmall-paddingInline-condensed, 0.25rem) - var(--borderWidth-thin, max(1px, 0.0625rem))); -} - -.SegmentedControl-item .Button--small { - height: calc(var(--control-small-size, 1.75rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)*2 - var(--borderWidth-thin, max(1px, 0.0625rem))*2); - padding: 0 calc(var(--control-small-paddingInline-condensed, 0.5rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)); -} - -.SegmentedControl-item .Button--small.Button--iconOnly { - width: calc(var(--control-medium-size, 2rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)*2 - var(--borderWidth-thin, max(1px, 0.0625rem))*2); -} - -.SegmentedControl-item .Button--small.Button--iconOnly:before { - content: ""; - height: 100%; - left: 50%; - min-height: var(--control-medium-size, 2rem); - min-width: var(--control-medium-size, 2rem); - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -.SegmentedControl-item .Button--medium { - height: calc(var(--control-medium-size, 2rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)*2 - var(--borderWidth-thin, max(1px, 0.0625rem))*2); - padding: 0 calc(var(--control-medium-paddingInline-normal, 0.75rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)); -} - -.SegmentedControl-item .Button--medium.Button--iconOnly { - width: calc(var(--control-medium-size, 2rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)*2 - var(--borderWidth-thin, max(1px, 0.0625rem))*2); -} - -.SegmentedControl-item .Button--medium.Button--iconOnly:before { - content: ""; - height: 100%; - left: 50%; - min-height: var(--control-medium-size, 2rem); - min-width: var(--control-medium-size, 2rem); - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -.SegmentedControl-item .Button--large { - height: calc(var(--control-large-size, 2.5rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)*2 - var(--borderWidth-thin, max(1px, 0.0625rem))*2); - padding: 0 calc(var(--control-large-paddingInline-spacious, 1rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)); -} - -.SegmentedControl-item .Button--large.Button--iconOnly { - width: calc(var(--control-large-size, 2.5rem) - var(--control-xsmall-paddingInline-condensed, 0.25rem)*2 - var(--borderWidth-thin, max(1px, 0.0625rem))*2); -} - -.SegmentedControl-item .Button--large.Button--iconOnly:before { - content: ""; - height: 100%; - left: 50%; - min-height: var(--control-large-size, 2.5rem); - min-width: var(--control-large-size, 2.5rem); - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; -} - -.SegmentedControl-item .Button--iconOnly { - padding: initial; -} - -.SegmentedControl-item .Button--invisible.Button--invisible-noVisuals .Button-label { - color: var(--button-default-fgColor-rest, var(--color-btn-text)); -} - -.SegmentedControl--fullWidth { - display: flex; -} - -.SegmentedControl--fullWidth .SegmentedControl-item { - flex: 1; - justify-content: center; -} - -.SegmentedControl--fullWidth .Button--iconOnly, -.SegmentedControl--fullWidth .Button-withTooltip { - width: 100%; -} - -.menu { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 0.375rem); - list-style: none; - margin-bottom: var(--stack-gap-normal, 1rem); -} - -.menu-item { - border-bottom: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - color: var(--fgColor-default, var(--color-fg-default)); - display: block; - padding: var(--control-medium-paddingInline-condensed, 0.5rem) var(--control-medium-paddingInline-spacious, 1rem); - position: relative; -} - -.menu-item:first-child { - border-top: 0; - border-top-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.menu-item:first-child, -.menu-item:first-child:before { - border-top-left-radius: var(--borderRadius-medium, 0.375rem); -} - -.menu-item:last-child { - border-bottom: 0; - border-bottom-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.menu-item:last-child, -.menu-item:last-child:before { - border-bottom-left-radius: var(--borderRadius-medium, 0.375rem); -} - -.menu-item:hover { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); - text-decoration: none; -} - -.menu-item:active { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.menu-item.selected, -.menu-item[aria-current]:not([aria-current=false]), -.menu-item[aria-selected=true] { - background-color: var(--menu-bgColor-active, var(--color-menu-bg-active)); - cursor: default; -} - -.menu-item.selected:before, -.menu-item[aria-current]:not([aria-current=false]):before, -.menu-item[aria-selected=true]:before { - background-color: var(--underlineNav-borderColor-active, var(--color-primer-border-active)); - bottom: 0; - content: ""; - left: 0; - position: absolute; - top: 0; - width: 2px; -} - -.menu-item .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); - margin-right: var(--control-medium-gap, 0.5rem); - text-align: center; - width: 16px; -} - -.menu-item .Counter { - float: right; - margin-left: var(--control-small-gap, 0.25rem); -} - -.menu-item .menu-warning { - color: var(--fgColor-attention, var(--color-attention-fg)); - float: right; -} - -.menu-item .avatar { - float: left; - margin-right: var(--control-small-gap, 0.25rem); -} - -.menu-item.alert .Counter { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.menu-heading { - border-bottom: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - color: var(--fgColor-default, var(--color-fg-default)); - display: block; - font-size: inherit; - font-weight: var(--base-text-weight-semibold, 600); - margin-bottom: 0; - margin-top: 0; - padding: var(--control-medium-paddingInline-condensed, 0.5rem) var(--control-medium-paddingInline-spacious, 1rem); -} - -.menu-heading:hover { - text-decoration: none; -} - -.menu-heading:first-child { - border-top-left-radius: var(--borderRadius-medium, 0.375rem); - border-top-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.menu-heading:last-child { - border-bottom: 0; - border-bottom-left-radius: var(--borderRadius-medium, 0.375rem); - border-bottom-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.avatar { - background-color: var(--avatar-bgColor, var(--color-avatar-bg)); - border-radius: var(--borderRadius-medium, 0.375rem); - box-shadow: 0 0 0 1px var(--avatar-borderColor, var(--color-avatar-border)); - display: inline-block; - flex-shrink: 0; - line-height: 1; - overflow: hidden; - vertical-align: middle; -} - -.avatar-link { - float: left; - line-height: 1; -} - -.avatar-group-item { - display: inline-block; - margin-bottom: 3px; -} - -.avatar-1, -.avatar-2, -.avatar-small { - border-radius: var(--borderRadius-small, 0.1875rem); -} - -.avatar-1 { - height: var(--base-size-16, 1rem); - width: var(--base-size-16, 1rem); -} - -.avatar-2 { - height: var(--base-size-20, 1.25rem); - width: var(--base-size-20, 1.25rem); -} - -.avatar-3 { - height: var(--base-size-24, 1.5rem); - width: var(--base-size-24, 1.5rem); -} - -.avatar-4 { - height: var(--base-size-28, 1.75rem); - width: var(--base-size-28, 1.75rem); -} - -.avatar-5 { - height: var(--base-size-32, 2rem); - width: var(--base-size-32, 2rem); -} - -.avatar-6 { - height: var(--base-size-40, 2.5rem); - width: var(--base-size-40, 2.5rem); -} - -.avatar-7 { - height: var(--base-size-48, 3rem); - width: var(--base-size-48, 3rem); -} - -.avatar-8 { - height: var(--base-size-64, 4rem); - width: var(--base-size-64, 4rem); -} - -.AvatarStack { - height: 20px; - min-width: 26px; - position: relative; -} - -.AvatarStack .AvatarStack-body { - position: absolute; -} - -.AvatarStack.AvatarStack--two { - min-width: 36px; -} - -.AvatarStack.AvatarStack--three-plus { - min-width: 46px; -} - -.AvatarStack-body { - background: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 100px; - display: flex; -} - -.AvatarStack-body .avatar { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-radius: var(--borderRadius-small, 0.1875rem); - border-right: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--bgColor-default, var(--color-canvas-default)); - box-shadow: none; - box-sizing: initial; - display: flex; - height: 20px; - margin-right: -11px; - position: relative; - transition: margin .1s ease-in-out; - width: 20px; - z-index: 2; -} - -.AvatarStack-body .avatar:first-child { - z-index: 3; -} - -.AvatarStack-body .avatar:last-child { - border-right: 0; - z-index: 1; -} - -.AvatarStack-body .avatar img { - border-radius: var(--borderRadius-small, 0.1875rem); -} - -.AvatarStack-body .avatar:nth-child(1n + 4) { - display: none; - opacity: 0; -} - -.AvatarStack-body:hover .avatar { - margin-right: 3px; -} - -.AvatarStack-body:hover .avatar:nth-child(1n + 4) { - display: flex; - opacity: 1; -} - -.AvatarStack-body:hover .avatar-more { - display: none; -} - -.avatar.avatar-more { - background: var(--bgColor-muted, var(--color-canvas-subtle)); - margin-right: 0; - z-index: 1; -} - -.avatar.avatar-more:after, -.avatar.avatar-more:before { - border-radius: 2px; - content: ""; - display: block; - height: 20px; - outline: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--bgColor-default, var(--color-canvas-default)); - position: absolute; -} - -.avatar.avatar-more:before { - background: var(--avatarStack-fade-bgColor-muted, var(--color-avatar-stack-fade-more)); - width: 17px; -} - -.avatar.avatar-more:after { - background: var(--avatarStack-fade-bgColor-default, var(--color-avatar-stack-fade)); - width: 14px; -} - -.AvatarStack--right .AvatarStack-body { - flex-direction: row-reverse; - right: 0; -} - -.AvatarStack--right .AvatarStack-body:hover .avatar { - margin-left: 3px; - margin-right: 0; -} - -.AvatarStack--right .AvatarStack-body .avatar:not(:last-child) { - border-left: 0; -} - -.AvatarStack--right .avatar.avatar-more { - background: var(--avatarStack-fade-bgColor-default, var(--color-avatar-stack-fade)); -} - -.AvatarStack--right .avatar.avatar-more:before { - width: 5px; -} - -.AvatarStack--right .avatar.avatar-more:after { - background: var(--bgColor-muted, var(--color-canvas-subtle)); - width: 2px; -} - -.AvatarStack--right .avatar { - border-left: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--bgColor-default, var(--color-canvas-default)); - border-right: 0; - margin-left: -11px; - margin-right: 0; -} - -.Box { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-color: var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 0.375rem); - border-style: solid; - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)); -} - -.Box--condensed { - line-height: 1.25; -} - -.Box--condensed .Box-body, -.Box--condensed .Box-footer, -.Box--condensed .Box-header { - padding: var(--stack-padding-condensed, 0.5rem) var(--stack-padding-normal, 1rem); -} - -.Box--condensed .Box-btn-octicon.btn-octicon { - line-height: 1.25; - margin: calc(var(--controlStack-medium-gap-condensed, 0.5rem)*-1) calc(var(--controlStack-small-gap-spacious, 1rem)*-1); - padding: var(--control-medium-paddingInline-condensed, 0.5rem) var(--control-medium-paddingInline-spacious, 1rem); -} - -.Box--condensed .Box-row { - padding: var(--stack-padding-condensed, 0.5rem) var(--stack-padding-normal, 1rem); -} - -.Box--spacious .Box-header { - line-height: 1.25; - padding: var(--stack-padding-spacious, 1.5rem); -} - -.Box--spacious .Box-title { - font-size: var(--text-title-size-medium, 1.25rem); -} - -.Box--spacious .Box-body, -.Box--spacious .Box-btn-octicon.btn-octicon, -.Box--spacious .Box-footer { - padding: var(--stack-padding-spacious, 1.5rem); -} - -.Box--spacious .Box-btn-octicon.btn-octicon { - margin: calc(var(--stack-gap-spacious, 1.5rem)*-1) calc(var(--stack-gap-spacious, 1.5rem)*-1); -} - -.Box--spacious .Box-row { - padding: var(--stack-padding-spacious, 1.5rem); -} - -.Box-header { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-color: var(--borderColor-default, var(--color-border-default)); - border-style: solid; - border-top-left-radius: var(--borderRadius-medium, 0.375rem); - border-top-right-radius: var(--borderRadius-medium, 0.375rem); - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)); - margin: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1) calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1) 0; - padding: var(--stack-padding-normal, 1rem); -} - -.Box-title { - font-size: var(--text-body-size-medium, 0.875rem); - font-weight: var(--base-text-weight-semibold, 600); -} - -.Box-body { - border-bottom: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - padding: var(--stack-padding-normal, 1rem); -} - -.Box-body:last-of-type { - border-bottom-left-radius: var(--borderRadius-medium, 0.375rem); - border-bottom-right-radius: var(--borderRadius-medium, 0.375rem); - margin-bottom: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); -} - -.Box-row { - border-top: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-muted, var(--color-border-muted)); - list-style-type: none; - margin-top: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); - padding: var(--stack-padding-normal, 1rem); -} - -.Box-row:first-of-type { - border-top-left-radius: var(--borderRadius-medium, 0.375rem); - border-top-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.Box-row:last-of-type { - border-bottom-left-radius: var(--borderRadius-medium, 0.375rem); - border-bottom-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.Box-row.Box-row--unread, -.Box-row.unread { - box-shadow: inset 2px 0 0 var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.Box-row.navigation-focus .Box-row--drag-button { - color: var(--fgColor-accent, var(--color-accent-fg)); - cursor: grab; - opacity: 1; -} - -.Box-row.navigation-focus.is-dragging .Box-row--drag-button { - cursor: grabbing; -} - -.Box-row.navigation-focus.sortable-chosen, -.Box-row.navigation-focus.sortable-ghost { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.Box-row.navigation-focus.sortable-ghost .Box-row--drag-hide { - opacity: 0; -} - -.Box-row--focus-gray.navigation-focus { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.Box-row--focus-blue.navigation-focus { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.Box-row--hover-gray:hover { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.Box-row--hover-blue:hover { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -@media (min-width: 768px) { - .Box-row-link { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - } - - .Box-row-link:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - } -} - -.Box-row--drag-button { - opacity: 0; -} - -.Box-footer { - border-radius: 0 0 var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem); - border-top: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - margin-top: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); - padding: var(--stack-padding-normal, 1rem); -} - -.Box--scrollable { - max-height: 324px; - overflow: scroll; -} - -.Box--blue, -.Box--blue .Box-header { - border-color: var(--borderColor-accent-muted, var(--color-accent-muted)); -} - -.Box--blue .Box-header { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.Box--blue .Box-body, -.Box--blue .Box-footer, -.Box--blue .Box-row { - border-color: var(--borderColor-accent-muted, var(--color-accent-muted)); -} - -.Box--danger, -.Box--danger .Box-body:last-of-type, -.Box--danger .Box-row:first-of-type { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.Box-header--blue { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-color: var(--borderColor-accent-muted, var(--color-accent-muted)); -} - -.Box-row--yellow { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.Box-row--blue { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.Box-row--gray { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.Box-btn-octicon.btn-octicon { - line-height: 1.5; - margin: calc(var(--controlStack-small-gap-spacious, 1rem)*-1) calc(var(--controlStack-small-gap-spacious, 1rem)*-1); - padding: var(--control-medium-paddingInline-spacious, 1rem) var(--control-medium-paddingInline-spacious, 1rem); -} - -.blankslate { - padding: var(--base-size-32, 2rem); - position: relative; - text-align: center; -} - -.blankslate p { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.blankslate code { - background: var(--bgColor-default, var(--color-canvas-default)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: var(--borderRadius-medium, 0.375rem); - font-size: var(--text-body-size-medium, 0.875rem); - padding: 2px 5px 3px; -} - -.blankslate img { - height: 56px; - width: 56px; -} - -.blankslate-icon { - color: var(--fgColor-muted, var(--color-fg-muted)); - margin-bottom: var(--stack-gap-condensed, 0.5rem); - margin-left: var(--control-small-gap, 0.25rem); - margin-right: var(--control-small-gap, 0.25rem); -} - -.blankslate-image { - margin-bottom: var(--stack-gap-normal, 1rem); -} - -.blankslate-heading { - margin-bottom: var(--base-size-4, 0.25rem); -} - -.blankslate-action { - margin-top: var(--stack-gap-normal, 1rem); -} - -.blankslate-action:first-of-type { - margin-top: var(--stack-gap-spacious, 1.5rem); -} - -.blankslate-action:last-of-type { - margin-bottom: var(--stack-gap-condensed, 0.5rem); -} - -.blankslate-capped { - border-radius: 0 0 var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem); -} - -.blankslate-spacious { - padding: var(--base-size-80, 5rem) var(--base-size-40, 2.5rem); -} - -.blankslate-narrow { - margin: 0 auto; - max-width: 485px; -} - -.blankslate-large img { - height: 80px; - width: 80px; -} - -.blankslate-large h3 { - font-size: 24px; - margin: var(--stack-gap-normal, 1rem) 0; -} - -.blankslate-large p { - font-size: var(--text-body-size-large, 1rem); -} - -.blankslate-clean-background { - border: 0; -} - -anchored-position[popover] { - background: none; - border-width: 0; - inset: auto; - min-width: 192px; - overflow: visible; - padding: 0; - position: absolute; -} - -.Overlay { - display: flex; -} - -anchored-position[popover]:not(.\:popover-open) { - display: none; -} - -anchored-position.not-anchored::backdrop { - background-color: var(--overlay-backdrop-bgColor, var(--color-neutral-muted)); -} - -@supports selector(:popover-open) { - anchored-position[popover]:not(.\:popover-open) { - display: revert; - } -} - -.breadcrumb-item { - display: inline-block; - list-style: none; - margin-left: -0.35em; - white-space: nowrap; -} - -.breadcrumb-item:after { - border-right: .1em solid var(--borderColor-neutral-emphasis, var(--color-fg-subtle)); - content: ""; - display: inline-block; - height: .8em; - margin: 0 .5em; - transform: rotate(15deg); -} - -.breadcrumb-item:first-child { - margin-left: 0; -} - -.breadcrumb-item-selected:after, -.breadcrumb-item[aria-current]:not([aria-current=false]):after { - content: none; -} - -.breadcrumb-item-selected a { - color: var(--fgColor-default, var(--color-fg-default)); -} - -:root { - --duration-fast: 80ms; - --easing-easeInOut: cubic-bezier(0.65,0,0.35,1); -} - -.Button { - align-items: center; - background-color: initial; - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid; - border-color: #0000; - border-radius: var(--borderRadius-medium, 0.375rem); - color: var(--button-default-fgColor-rest, var(--color-btn-text)); - cursor: pointer; - display: inline-flex; - flex-direction: row; - font-size: var(--text-body-size-medium, 0.875rem); - font-weight: var(--base-text-weight-medium, 500); - gap: var(--base-size-4, 0.25rem); - height: var(--control-medium-size, 2rem); - justify-content: space-between; - min-width: max-content; - padding: 0 var(--control-medium-paddingInline-normal, 0.75rem); - position: relative; - text-align: center; - transition: var(--duration-fast) var(--easing-easeInOut); - transition-property: color,fill,background-color,border-color; - -webkit-user-select: none; - user-select: none; -} - -@media (pointer: coarse) { - .Button:before { - content: ""; - height: 100%; - left: 50%; - min-height: 48px; - min-width: 48px; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%); - width: 100%; - } -} - -.Button:hover { - transition-duration: var(--duration-fast); -} - -.Button:active { - transition: none; -} - -.Button:disabled, -.Button[aria-disabled=true] { - box-shadow: none; - cursor: not-allowed; -} - -.Button-withTooltip { - display: inline-block; - position: relative; -} - -a.Button:hover, -summary.Button:hover { - text-decoration: none; -} - -.Button-content { - align-items: center; - display: grid; - flex: 1 0 auto; - grid-template-areas: "leadingVisual text trailingVisual"; - grid-template-columns: min-content minmax(0, auto) min-content; - place-content: center; -} - -.Button-content > :not(:last-child) { - margin-right: var(--control-medium-gap, 0.5rem); -} - -.Button-content--alignStart { - justify-content: start; -} - -.Button-visual { - display: flex; - pointer-events: none; -} - -.Button-visual .Counter { - background-color: var(--buttonCounter-default-bgColor-rest, var(--color-btn-counter-bg)); - color: inherit; -} - -.Button-label { - grid-area: text; - line-height: var(--text-body-lineHeight-medium, 1.4285); - white-space: nowrap; -} - -.Button-leadingVisual { - grid-area: leadingVisual; -} - -.Button-leadingVisual svg { - fill: currentcolor; -} - -.Button-trailingVisual { - grid-area: trailingVisual; -} - -.Button-trailingAction { - margin-right: calc(var(--base-size-4, 0.25rem)*-1); -} - -.Button--small { - font-size: var(--text-body-size-small, 0.75rem); - gap: var(--control-small-gap, 0.25rem); - height: var(--control-small-size, 1.75rem); - padding: 0 var(--control-small-paddingInline-condensed, 0.5rem); -} - -.Button--small .Button-label { - line-height: var(--text-body-lineHeight-small, 1.6666); -} - -.Button--small .Button-content > :not(:last-child) { - margin-right: var(--control-small-gap, 0.25rem); -} - -.Button--large { - gap: var(--control-large-gap, 0.5rem); - height: var(--control-large-size, 2.5rem); - padding: 0 var(--control-large-paddingInline-spacious, 1rem); -} - -.Button--large .Button-label { - line-height: var(--text-body-lineHeight-large, 1.5); -} - -.Button--large .Button-content > :not(:last-child) { - margin-right: var(--control-large-gap, 0.5rem); -} - -.Button--fullWidth { - width: 100%; -} - -.Button--primary { - fill: var(--button-primary-iconColor-rest, var(--color-btn-primary-icon)); - background-color: var(--button-primary-bgColor-rest, var(--color-btn-primary-bg)); - border-color: var(--button-primary-borderColor-rest, var(--color-btn-primary-border)); - box-shadow: var(--shadow-resting-small, var(--color-btn-primary-shadow)); - color: var(--button-primary-fgColor-rest, var(--color-btn-primary-text)); -} - -.Button--primary:hover:not(:disabled) { - background-color: var(--button-primary-bgColor-hover, var(--color-btn-primary-hover-bg)); - border-color: var(--button-primary-borderColor-hover, var(--color-btn-primary-hover-border)); -} - -.Button--primary:focus { - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; -} - -.Button--primary:focus:not(:focus-visible) { - box-shadow: none; - outline: 1px solid #0000; -} - -.Button--primary:focus-visible { - box-shadow: inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; -} - -.Button--primary:active:not(:disabled), -.Button--primary[aria-pressed=true] { - background-color: var(--button-primary-bgColor-active, var(--color-btn-primary-selected-bg)); - box-shadow: var(--button-primary-shadow-selected, var(--color-btn-primary-selected-shadow)); -} - -.Button--primary:disabled, -.Button--primary[aria-disabled=true] { - fill: var(--button-primary-fgColor-disabled, var(--color-btn-primary-disabled-text)); - background-color: var(--button-primary-bgColor-disabled, var(--color-btn-primary-disabled-bg)); - border-color: var(--button-primary-borderColor-disabled, var(--color-btn-primary-disabled-border)); - color: var(--button-primary-fgColor-disabled, var(--color-btn-primary-disabled-text)); -} - -.Button--primary .Counter { - background-color: var(--buttonCounter-primary-bgColor-rest, var(--color-btn-primary-counter-bg)); - color: inherit; -} - -.Button--secondary { - fill: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--button-default-bgColor-rest, var(--color-btn-bg)); - border-color: var(--button-default-borderColor-rest, var(--color-btn-border)); - box-shadow: var(--button-default-shadow-resting, var(--color-btn-shadow)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow)); - color: var(--button-default-fgColor-rest, var(--color-btn-text)); -} - -.Button--secondary:hover:not(:disabled) { - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); - border-color: var(--button-default-borderColor-hover, var(--color-btn-hover-border)); -} - -.Button--secondary:active:not(:disabled) { - background-color: var(--button-default-bgColor-active, var(--color-btn-active-bg)); - border-color: var(--button-default-borderColor-active, var(--color-btn-active-border)); -} - -.Button--secondary[aria-pressed=true] { - background-color: var(--button-default-bgColor-selected, var(--color-btn-selected-bg)); - box-shadow: var(--shadow-inset, var(--color-primer-shadow-inset)); -} - -.Button--secondary:disabled, -.Button--secondary[aria-disabled=true] { - fill: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--button-default-bgColor-disabled, var(--color-btn-bg)); - border-color: var(--button-default-borderColor-disabled, var(--color-btn-border)); - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.Button--invisible { - color: var(--button-default-fgColor-rest, var(--color-btn-text)); -} - -.Button--invisible.Button--iconOnly { - color: var(--button-invisible-iconColor-rest, var(--color-fg-muted)); -} - -.Button--invisible:hover:not(:disabled) { - background-color: var(--button-invisible-bgColor-hover, var(--color-action-list-item-default-hover-bg)); -} - -.Button--invisible:hover:not(:disabled) .Button-visual { - color: var(--button-invisible-iconColor-hover, var(--color-fg-default)); -} - -.Button--invisible:active:not(:disabled), -.Button--invisible[aria-pressed=true] { - background-color: var(--button-invisible-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -.Button--invisible:disabled, -.Button--invisible[aria-disabled=true] { - fill: var(--button-invisible-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: var(--button-invisible-bgColor-disabled, var(--color-action-list-item-default-selected-bg)); - border-color: var(--button-invisible-borderColor-disabled, var(--color-action-list-item-default-selected-bg)); - color: var(--button-invisible-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.Button--invisible.Button--invisible-noVisuals .Button-label { - color: var(--button-invisible-fgColor-rest, var(--color-btn-outline-text)); -} - -.Button--invisible .Button-visual { - color: var(--button-invisible-iconColor-rest, var(--color-fg-muted)); -} - -.Button--invisible .Button-visual .Counter { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Button--link { - fill: var(--fgColor-link, var(--color-accent-fg)); - border: none; - color: var(--fgColor-link, var(--color-accent-fg)); - display: inline-block; - font-size: inherit; - height: unset; - padding: 0; -} - -.Button--link:hover:not(:disabled) { - text-decoration: underline; -} - -.Button--link:focus, -.Button--link:focus-visible { - outline-offset: 2px; -} - -.Button--link:disabled, -.Button--link[aria-disabled=true] { - fill: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); - background-color: initial; - border-color: #0000; - color: var(--control-fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.Button--danger { - fill: var(--button-danger-iconColor-rest, var(--color-btn-danger-icon)); - background-color: var(--button-danger-bgColor-rest, var(--color-btn-bg)); - border-color: var(--button-danger-borderColor-rest, var(--color-btn-border)); - box-shadow: var(--button-default-shadow-resting, var(--color-btn-shadow)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow)); - color: var(--button-danger-fgColor-rest, var(--color-btn-danger-text)); -} - -.Button--danger:hover:not(:disabled) { - fill: var(--button-danger-fgColor-hover, var(--color-btn-danger-hover-text)); - background-color: var(--button-danger-bgColor-hover, var(--color-btn-danger-hover-bg)); - border-color: var(--button-danger-borderColor-hover, var(--color-btn-danger-hover-border)); - box-shadow: var(--shadow-resting-small, var(--color-shadow-small)); - color: var(--button-danger-fgColor-hover, var(--color-btn-danger-hover-text)); -} - -.Button--danger:hover:not(:disabled) .Counter { - background-color: var(--buttonCounter-danger-bgColor-hover, var(--color-btn-danger-hover-counter-bg)); - color: var(--buttonCounter-danger-fgColor-hover, var(--color-btn-danger-hover-counter-fg)); -} - -.Button--danger:active:not(:disabled), -.Button--danger[aria-pressed=true] { - fill: var(--button-danger-fgColor-active, var(--color-btn-danger-selected-text)); - background-color: var(--button-danger-bgColor-active, var(--color-btn-danger-selected-bg)); - border-color: var(--button-danger-borderColor-active, var(--color-btn-danger-selected-border)); - box-shadow: var(--button-danger-shadow-selected, var(--color-btn-danger-selected-shadow)); - color: var(--button-danger-fgColor-active, var(--color-btn-danger-selected-text)); -} - -.Button--danger:disabled, -.Button--danger[aria-disabled=true] { - fill: var(--button-danger-fgColor-disabled, var(--color-btn-danger-disabled-text)); - background-color: var(--button-danger-bgColor-disabled, var(--color-btn-danger-disabled-bg)); - border-color: var(--button-default-borderColor-disabled, var(--color-btn-border)); - color: var(--button-danger-fgColor-disabled, var(--color-btn-danger-disabled-text)); -} - -.Button--danger:disabled .Counter, -.Button--danger[aria-disabled=true] .Counter { - background-color: var(--buttonCounter-danger-bgColor-disabled, var(--color-btn-danger-disabled-counter-bg)); - color: var(--buttonCounter-danger-fgColor-disabled, var(--color-btn-danger-disabled-counter-fg)); -} - -.Button--danger .Counter { - background-color: var(--buttonCounter-danger-bgColor-rest, var(--color-btn-danger-counter-bg)); - color: var(--buttonCounter-danger-fgColor-rest, var(--color-btn-danger-counter-fg)); -} - -.Button--iconOnly { - display: inline-grid; - padding: unset; - place-content: center; - width: var(--control-medium-size, 2rem); -} - -.Button--iconOnly.Button--small { - width: var(--control-small-size, 1.75rem); -} - -.Button--iconOnly.Button--large { - width: var(--control-large-size, 2.5rem); -} - -.ButtonGroup { - display: inline-flex; -} - -.ButtonGroup .Button { - border-radius: 0; - margin-inline-end: -1px; - position: relative; -} - -.ButtonGroup .Button:active, -.ButtonGroup .Button:focus, -.ButtonGroup .Button:hover { - z-index: 1; -} - -.ButtonGroup > .Button-withTooltip:first-child .Button, -.ButtonGroup > :first-child { - border-bottom-left-radius: var(--borderRadius-medium, 0.375rem); - border-top-left-radius: var(--borderRadius-medium, 0.375rem); -} - -.ButtonGroup > .Button-withTooltip:last-child .Button, -.ButtonGroup > :last-child { - border-bottom-right-radius: var(--borderRadius-medium, 0.375rem); - border-top-right-radius: var(--borderRadius-medium, 0.375rem); -} - -.Counter { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--counter-borderColor, var(--color-counter-border)); - border-radius: 2em; - color: var(--fgColor-default, var(--color-fg-default)); - display: inline-block; - font-size: var(--text-body-size-small, 0.75rem); - font-weight: var(--base-text-weight-medium, 500); - line-height: calc(var(--base-size-20, 1.25rem) - var(--borderWidth-thin, max(1px, 0.0625rem))*2); - min-width: var(--base-size-20, 1.25rem); - padding: 0 6px; - text-align: center; -} - -.Counter:empty { - display: none; -} - -.Counter .octicon { - opacity: .8; - vertical-align: text-top; -} - -.Counter--primary { - background-color: var(--bgColor-neutral-emphasis, var(--color-fg-subtle)); - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.Counter--secondary { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.flash:not(.Banner) { - background-image: linear-gradient(var(--bgColor-accent-muted, var(--color-accent-subtle)), var(--bgColor-accent-muted, var(--color-accent-subtle))); - border-color: var(--borderColor-accent-muted, var(--color-accent-muted)); - border-radius: var(--borderRadius-medium, 0.375rem); - border-style: solid; - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)); - color: var(--fgColor-default, var(--color-fg-default)); - padding: var(--base-size-20, 1.25rem) var(--control-medium-paddingInline-spacious, 1rem); - position: relative; -} - -.flash:not(.Banner) .octicon { - color: var(--fgColor-accent, var(--color-accent-fg)); - margin-right: var(--base-size-12, 0.75rem); -} - -.flash:not(.Banner) p:last-child { - margin-bottom: 0; -} - -.flash-messages { - margin-bottom: var(--stack-gap-spacious, 1.5rem); -} - -.flash-close:not(.Banner-close) { - -webkit-appearance: none; - appearance: none; - background: none; - border: 0; - cursor: pointer; - float: right; - margin-top: calc(var(--base-size-4, 0.25rem)*-1); - text-align: center; -} - -.flash-close:not(.Banner-close):hover { - opacity: .7; -} - -.flash-close:not(.Banner-close):active { - opacity: .5; -} - -.flash-close:not(.Banner-close) .octicon { - margin-right: 0; -} - -.flash-action:not(.Banner-actions) { - background-clip: padding-box; - float: right; - margin-left: var(--stack-gap-spacious, 1.5rem); - margin-top: -3px; -} - -.flash-action.btn:not(.Banner-actions) .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); - margin-right: var(--control-small-gap, 0.25rem); -} - -.flash-action.btn-primary:not(.Banner-actions) { - background-clip: initial; -} - -.flash-action.btn-primary:not(.Banner-actions) .octicon { - color: inherit; -} - -.flash-warn:not(.Banner) { - background-image: linear-gradient(var(--bgColor-attention-muted, var(--color-attention-subtle)), var(--bgColor-attention-muted, var(--color-attention-subtle))); - border-color: var(--borderColor-attention-muted, var(--color-attention-muted)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.flash-warn:not(.Banner) .octicon { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.flash-error:not(.Banner) { - background-image: linear-gradient(var(--bgColor-danger-muted, var(--color-danger-subtle)), var(--bgColor-danger-muted, var(--color-danger-subtle))); - border-color: var(--borderColor-danger-muted, var(--color-danger-muted)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.flash-error:not(.Banner) .octicon { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.flash-success:not(.Banner) { - background-image: linear-gradient(var(--bgColor-success-muted, var(--color-success-subtle)), var(--bgColor-success-muted, var(--color-success-subtle))); - border-color: var(--borderColor-success-muted, var(--color-success-muted)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.flash-success:not(.Banner) .octicon { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.flash-full:not(.Banner) { - border-radius: 0; - border-width: var(--borderWidth-thin, max(1px, 0.0625rem)) 0; - margin-top: calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1); -} - -.flash-banner { - border-left: 0; - border-radius: 0; - border-right: 0; - border-top: 0; - position: fixed; - top: 0; - width: 100%; - z-index: 90; -} - -.flash-banner, -.flash-full { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.warning { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); - font-weight: var(--base-text-weight-semibold, 600); - margin-bottom: .8em; - padding: .5em; -} - -.labels { - position: relative; -} - -.Label, -.label { - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - border-radius: 2em; - display: inline-block; - font-size: var(--text-body-size-small, 0.75rem); - font-weight: var(--base-text-weight-medium, 500); - line-height: 18px; - padding: 0 7px; - white-space: nowrap; -} - -.Label:hover, -.label:hover { - text-decoration: none; -} - -.Label--large { - line-height: 22px; - padding-left: 10px; - padding-right: 10px; -} - -.Label--inline { - display: inline; - font-size: 85%; - padding: .12em .5em; -} - -.Label--primary { - border-color: var(--borderColor-neutral-emphasis, var(--color-fg-subtle)); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Label--secondary { - border-color: var(--borderColor-default, var(--color-border-default)); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.Label--accent, -.Label--info { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.Label--success { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); - color: var(--fgColor-success, var(--color-success-fg)); -} - -.Label--attention, -.Label--warning { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.Label--severe { - border-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)); - color: var(--fgColor-severe, var(--color-severe-fg)); -} - -.Label--danger { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.Label--open { - border-color: var(--borderColor-open-emphasis, var(--color-open-emphasis)); - color: var(--fgColor-open, var(--color-open-fg)); -} - -.Label--closed { - border-color: var(--borderColor-closed-emphasis, var(--color-closed-emphasis)); - color: var(--fgColor-closed, var(--color-closed-fg)); -} - -.Label--done { - border-color: var(--borderColor-done-emphasis, var(--color-done-emphasis)); - color: var(--fgColor-done, var(--color-done-fg)); -} - -.Label--sponsors { - border-color: var(--borderColor-sponsors-emphasis, var(--color-sponsors-emphasis)); - color: var(--fgColor-sponsors, var(--color-sponsors-fg)); -} - -.Link { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.Link:hover { - cursor: pointer; -} - -.Link:focus, -.Link:hover { - text-decoration: underline; -} - -.Link:focus, -.Link:focus-visible { - outline-offset: 0; -} - -.Link--underline { - text-decoration: underline; -} - -.Link--primary { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Link--primary:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.Link--secondary { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.Link--secondary:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.Link--muted { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.Link--muted:hover { - text-decoration: none; -} - -.Link--muted:hover, -.Link--onHover:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.Link--onHover:hover { - cursor: pointer; - text-decoration: underline; -} - -.Link--muted:hover [class*=color-fg], -.Link--primary:hover [class*=color-fg], -.Link--secondary:hover [class*=color-fg] { - color: inherit; -} - -.Popover { - position: absolute; - z-index: 100; -} - -.Popover-message { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-default, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 0.375rem); - margin-left: auto; - margin-right: auto; - position: relative; - width: 232px; -} - -.Popover-message:after, -.Popover-message:before { - content: ""; - display: inline-block; - left: 50%; - position: absolute; -} - -.Popover-message:before { - border: 8px solid #0000; - border-bottom: 8px solid var(--borderColor-default, var(--color-border-default)); - margin-left: -9px; - top: -16px; -} - -.Popover-message:after { - border: 7px solid #0000; - border-bottom: 7px solid var(--overlay-bgColor, var(--color-canvas-overlay)); - margin-left: -8px; - top: -14px; -} - -.Popover-message--no-caret:after, -.Popover-message--no-caret:before { - display: none; -} - -.Popover-message--bottom-left:after, -.Popover-message--bottom-left:before, -.Popover-message--bottom-right:after, -.Popover-message--bottom-right:before, -.Popover-message--bottom:after, -.Popover-message--bottom:before { - border-bottom-color: #0000; - top: auto; -} - -.Popover-message--bottom-left:before, -.Popover-message--bottom-right:before, -.Popover-message--bottom:before { - border-top-color: var(--borderColor-default, var(--color-border-default)); - bottom: -16px; -} - -.Popover-message--bottom-left:after, -.Popover-message--bottom-right:after, -.Popover-message--bottom:after { - border-top-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - bottom: -14px; -} - -.Popover-message--bottom-right, -.Popover-message--top-right { - margin-right: 0; - right: -9px; -} - -.Popover-message--bottom-right:after, -.Popover-message--bottom-right:before, -.Popover-message--top-right:after, -.Popover-message--top-right:before { - left: auto; - margin-left: 0; -} - -.Popover-message--bottom-right:before, -.Popover-message--top-right:before { - right: 20px; -} - -.Popover-message--bottom-right:after, -.Popover-message--top-right:after { - right: 21px; -} - -.Popover-message--bottom-left, -.Popover-message--top-left { - left: -9px; - margin-left: 0; -} - -.Popover-message--bottom-left:after, -.Popover-message--bottom-left:before, -.Popover-message--top-left:after, -.Popover-message--top-left:before { - left: 24px; - margin-left: 0; -} - -.Popover-message--bottom-left:after, -.Popover-message--top-left:after { - left: 25px; -} - -.Popover-message--left-bottom:after, -.Popover-message--left-bottom:before, -.Popover-message--left-top:after, -.Popover-message--left-top:before, -.Popover-message--left:after, -.Popover-message--left:before, -.Popover-message--right-bottom:after, -.Popover-message--right-bottom:before, -.Popover-message--right-top:after, -.Popover-message--right-top:before, -.Popover-message--right:after, -.Popover-message--right:before { - border-bottom-color: #0000; - left: auto; - margin-left: 0; - top: 50%; -} - -.Popover-message--left-bottom:before, -.Popover-message--left-top:before, -.Popover-message--left:before, -.Popover-message--right-bottom:before, -.Popover-message--right-top:before, -.Popover-message--right:before { - margin-top: -9px; -} - -.Popover-message--left-bottom:after, -.Popover-message--left-top:after, -.Popover-message--left:after, -.Popover-message--right-bottom:after, -.Popover-message--right-top:after, -.Popover-message--right:after { - margin-top: -8px; -} - -.Popover-message--right-bottom:before, -.Popover-message--right-top:before, -.Popover-message--right:before { - border-left-color: var(--borderColor-default, var(--color-border-default)); - right: -16px; -} - -.Popover-message--right-bottom:after, -.Popover-message--right-top:after, -.Popover-message--right:after { - border-left-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - right: -14px; -} - -.Popover-message--left-bottom:before, -.Popover-message--left-top:before, -.Popover-message--left:before { - border-right-color: var(--borderColor-default, var(--color-border-default)); - left: -16px; -} - -.Popover-message--left-bottom:after, -.Popover-message--left-top:after, -.Popover-message--left:after { - border-right-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - left: -14px; -} - -.Popover-message--left-top:after, -.Popover-message--left-top:before, -.Popover-message--right-top:after, -.Popover-message--right-top:before { - top: 24px; -} - -.Popover-message--left-bottom:after, -.Popover-message--left-bottom:before, -.Popover-message--right-bottom:after, -.Popover-message--right-bottom:before { - top: auto; -} - -.Popover-message--left-bottom:before, -.Popover-message--right-bottom:before { - bottom: 16px; -} - -.Popover-message--left-bottom:after, -.Popover-message--right-bottom:after { - bottom: 17px; -} - -@media (min-width: 544px) { - .Popover-message--large { - min-width: 320px; - } -} - -@media (max-width: 767.98px) { - .Popover { - bottom: 0; - left: 0; - position: fixed; - right: 0; - top: auto; - } - - .Popover-message { - bottom: auto; - left: auto; - margin: var(--stack-gap-condensed, 0.5rem); - right: auto; - top: auto; - width: auto; - } - - .Popover-message > .btn-octicon { - padding: var(--control-medium-paddingInline-normal, 0.75rem); - } - - .Popover-message:after, - .Popover-message:before { - display: none; - } -} - -.Progress { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); - border-radius: 6px; - display: flex; - height: 8px; - outline: 1px solid #0000; - overflow: hidden; -} - -.Progress--large { - height: 10px; -} - -.Progress--small { - height: 5px; -} - -.Progress-item { - outline: 2px solid #0000; -} - -.Progress-item + .Progress-item { - margin-left: 2px; -} - -.State, -.state { - border-radius: 2em; - display: inline-block; - font-size: var(--text-body-size-medium, 0.875rem); - font-weight: var(--base-text-weight-medium, 500); - line-height: var(--control-medium-lineBoxHeight, 1.25rem); - padding: 5px var(--control-medium-paddingInline-normal, 0.75rem); - text-align: center; - white-space: nowrap; -} - -.State, -.State--draft, -.state { - background-color: var(--bgColor-neutral-emphasis, var(--color-fg-subtle)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid #0000; -} - -.State, -.State--draft, -.State--open, -.state { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.State--open { - background-color: var(--bgColor-open-emphasis, var(--color-open-emphasis)); -} - -.State--merged { - background-color: var(--bgColor-done-emphasis, var(--color-done-emphasis)); -} - -.State--closed, -.State--merged { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.State--closed { - background-color: var(--bgColor-closed-emphasis, var(--color-closed-emphasis)); -} - -.State--small { - font-size: var(--text-body-size-small, 0.75rem); - line-height: var(--base-size-24, 1.5rem); - padding: 0 10px; -} - -.State--small .octicon { - width: 1em; -} - -.Subhead { - border-bottom: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-muted, var(--color-border-muted)); - display: flex; - flex-flow: row wrap; - justify-content: flex-end; - margin-bottom: var(--stack-gap-normal, 1rem); - padding-bottom: var(--stack-padding-condensed, 0.5rem); -} - -.Subhead--spacious { - margin-top: var(--base-size-40, 2.5rem); -} - -.Subhead-heading { - flex: 1 1 auto; - font-size: 24px; - font-weight: var(--base-text-weight-normal, 400); - order: 0; -} - -.Subhead-heading--danger { - color: var(--fgColor-danger, var(--color-danger-fg)); - font-weight: var(--base-text-weight-semibold, 600); -} - -.Subhead-description { - color: var(--fgColor-muted, var(--color-fg-muted)); - flex: 1 100%; - font-size: var(--text-body-size-medium, 0.875rem); - order: 2; -} - -.Subhead-actions { - align-self: center; - justify-content: flex-end; - margin: var(--base-size-4, 0.25rem) 0 var(--base-size-4, 0.25rem) var(--base-size-4, 0.25rem); - order: 1; -} - -.Subhead-actions + .Subhead-description { - margin-top: var(--base-size-4, 0.25rem); -} - -.Truncate { - display: inline-flex; - max-width: 100%; - min-width: 0; -} - -.Truncate > .Truncate-text { - max-width: -moz-fit-content; - max-width: fit-content; - min-width: 1ch; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.Truncate > .Truncate-text + .Truncate-text { - margin-left: var(--control-small-gap, 0.25rem); -} - -.Truncate > .Truncate-text.Truncate-text--primary { - flex-basis: 200%; -} - -.Truncate > .Truncate-text.Truncate-text--expandable:active, -.Truncate > .Truncate-text.Truncate-text--expandable:focus, -.Truncate > .Truncate-text.Truncate-text--expandable:hover { - cursor: pointer; - flex-shrink: 0; - max-width: 100%; -} - -.TimelineItem { - display: flex; - margin-left: var(--stack-gap-normal, 1rem); - padding: var(--stack-padding-normal, 1rem) 0; - position: relative; -} - -.TimelineItem:before { - background-color: var(--borderColor-muted, var(--color-border-muted)); - bottom: 0; - content: ""; - display: block; - left: 0; - position: absolute; - top: 0; - width: var(--borderWidth-thick, max(2px, 0.125rem)); -} - -.TimelineItem:target .TimelineItem-badge { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - box-shadow: 0 0 .2em var(--borderColor-accent-muted, var(--color-accent-muted)); -} - -.TimelineItem-badge { - align-items: center; - background-color: var(--timelineBadge-bgColor, var(--color-timeline-badge-bg)); - border: var(--borderWidth-thick, max(2px, 0.125rem)) solid var(--bgColor-default, var(--color-canvas-default)); - border-radius: 50%; - color: var(--fgColor-muted, var(--color-fg-muted)); - display: flex; - flex-shrink: 0; - height: var(--control-medium-size, 2rem); - justify-content: center; - margin-left: calc(var(--control-medium-size, 2rem)/-2 + 1px); - margin-right: var(--controlStack-medium-gap-condensed, 0.5rem); - position: relative; - width: var(--control-medium-size, 2rem); - z-index: 1; -} - -.TimelineItem-badge--success { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - border: var(--borderWidth-thin, max(1px, 0.0625rem)) solid #0000; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.TimelineItem-body { - color: var(--fgColor-muted, var(--color-fg-muted)); - flex: auto; - margin-top: var(--base-size-4, 0.25rem); - max-width: 100%; - min-width: 0; -} - -.TimelineItem-avatar { - left: -72px; - position: absolute; - z-index: 1; -} - -.TimelineItem-break { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 0; - border-top: var(--borderWidth-thicker, max(4px, 0.25rem)) solid var(--borderColor-default, var(--color-border-default)); - height: var(--stack-gap-spacious, 1.5rem); - margin: 0; - margin-bottom: calc(var(--stack-gap-normal, 1rem)*-1); - margin-left: -56px; - position: relative; - z-index: 1; -} - -.TimelineItem--condensed { - padding-bottom: 0; - padding-top: var(--base-size-4, 0.25rem); -} - -.TimelineItem--condensed:last-child { - padding-bottom: var(--stack-gap-normal, 1rem); -} - -.TimelineItem--condensed .TimelineItem-badge { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 0; - color: var(--fgColor-muted, var(--color-fg-muted)); - height: var(--base-size-16, 1rem); - margin-bottom: var(--base-size-8, 0.5rem); - margin-top: var(--base-size-8, 0.5rem); -} - -.css-truncate .css-truncate-overflow, -.css-truncate .css-truncate-target, -.css-truncate.css-truncate-overflow, -.css-truncate.css-truncate-target { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.css-truncate .css-truncate-target, -.css-truncate.css-truncate-target { - display: inline-block; - max-width: 125px; - vertical-align: top; -} - -.css-truncate.expandable.css-truncate-target:hover, -.css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target, -.css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target, -.css-truncate.expandable:hover .css-truncate-target { - max-width: 10000px; -} - -.ActionBar { - display: flex; - flex-grow: 1; - flex-shrink: 1; - justify-content: flex-end; - min-width: calc(var(--control-medium-size, 2rem)*3); - overflow: hidden; - position: relative; -} - -.ActionBar, -.ActionBar-item-container { - align-items: center; - box-sizing: initial; -} - -.ActionBar-item-container { - display: flex; - flex-grow: 0; - flex-shrink: 0; -} - -.ActionBar-item { - flex-shrink: 0; - position: relative; -} - -.ActionBar-more-menu { - flex-shrink: 0; -} - -.ActionBar--small { - min-width: calc(var(--control-small-size, 1.75rem)*3); -} - -.ActionBar--large { - min-width: calc(var(--control-large-size, 2.5rem)*3); -} - -.ActionBar-divider { - border-left: var(--borderWidth-thin, max(1px, 0.0625rem)) solid var(--borderColor-muted, var(--color-border-muted)); - height: calc(var(--control-medium-size, 2rem)/2); - margin: 0 var(--controlStack-medium-gap-condensed, 0.5rem); -} - -.ActionBar--small .ActionBar-divider { - margin: 0 var(--controlStack-small-gap-condensed, 0.5rem); -} - -.ActionBar--large .ActionBar-divider { - margin: 0 var(--controlStack-large-gap-condensed, 0.5rem); -} - -@media (pointer: coarse) { - .ActionBar .ActionBar-item-container { - gap: calc(var(--control-minTarget-coarse, 2.75rem) - var(--control-medium-size, 2rem)); - } - - .ActionBar--small .ActionBar-item-container { - gap: calc(var(--control-minTarget-coarse, 2.75rem) - var(--control-small-size, 1.75rem)); - } - - .ActionBar--large .ActionBar-item-container { - gap: calc(var(--control-minTarget-coarse, 2.75rem) - var(--control-large-size, 2.5rem)); - } -} - -.OrderedList { - margin: 8px; -} - -.OrderedList-type--decimal { - list-style-type: decimal; -} - -.OrderedList-type--upperAlpha { - list-style-type: upper-alpha; -} - -.OrderedList-type--lowerAlpha { - list-style-type: lower-alpha; -} - -.OrderedList-type--upperRoman { - list-style-type: upper-roman; -} - -.OrderedList-type--lowerRoman { - list-style-type: lower-roman; -} - -.UnorderedList { - margin: 8px; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -.color-border-inverse { - border-color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.bg-gray-2, -.bg-gray-3 { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); -} - -.color-text-white { - color: var(--color-scale-white); -} - -.border-white-fade { - border-color: rgba(255,255,255,.15); -} - -.lead { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.text-emphasized { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.Label.Label--orange { - color: var(--fgColor-severe, var(--color-severe-fg)); - border-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.Label.Label--purple { - color: var(--fgColor-done, var(--color-done-fg)); - border-color: var(--borderColor-done-emphasis, var(--color-done-emphasis)); -} - -.Label.Label--pink { - color: var(--fgColor-sponsors, var(--color-sponsors-fg)); - border-color: var(--borderColor-sponsors-emphasis, var(--color-sponsors-emphasis)); -} - -/*! - * GitHub Light v0.5.0 - * Copyright (c) 2012 - 2017 GitHub, Inc. - * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE) - */ - -.pl-c { - color: var(--color-prettylights-syntax-comment); -} - -.pl-c1, -.pl-s .pl-v { - color: var(--color-prettylights-syntax-constant); -} - -.pl-e, -.pl-en { - color: var(--color-prettylights-syntax-entity); -} - -.pl-smi, -.pl-s .pl-s1 { - color: var(--color-prettylights-syntax-storage-modifier-import); -} - -.pl-ent { - color: var(--color-prettylights-syntax-entity-tag); -} - -.pl-k { - color: var(--color-prettylights-syntax-keyword); -} - -.pl-s, -.pl-pds, -.pl-s .pl-pse .pl-s1, -.pl-sr, -.pl-sr .pl-cce, -.pl-sr .pl-sre, -.pl-sr .pl-sra { - color: var(--color-prettylights-syntax-string); -} - -.pl-v, -.pl-smw { - color: var(--color-prettylights-syntax-variable); -} - -.pl-bu { - color: var(--color-prettylights-syntax-brackethighlighter-unmatched); -} - -.pl-ii { - color: var(--color-prettylights-syntax-invalid-illegal-text); - background-color: var(--color-prettylights-syntax-invalid-illegal-bg); -} - -.pl-c2 { - color: var(--color-prettylights-syntax-carriage-return-text); - background-color: var(--color-prettylights-syntax-carriage-return-bg); -} - -.pl-c2::before { - content: "^M"; -} - -.pl-sr .pl-cce { - font-weight: bold; - color: var(--color-prettylights-syntax-string-regexp); -} - -.pl-ml { - color: var(--color-prettylights-syntax-markup-list); -} - -.pl-mh, -.pl-mh .pl-en, -.pl-ms { - font-weight: bold; - color: var(--color-prettylights-syntax-markup-heading); -} - -.pl-mi { - font-style: italic; - color: var(--color-prettylights-syntax-markup-italic); -} - -.pl-mb { - font-weight: bold; - color: var(--color-prettylights-syntax-markup-bold); -} - -.pl-md { - color: var(--color-prettylights-syntax-markup-deleted-text); - background-color: var(--color-prettylights-syntax-markup-deleted-bg); -} - -.pl-mi1 { - color: var(--color-prettylights-syntax-markup-inserted-text); - background-color: var(--color-prettylights-syntax-markup-inserted-bg); -} - -.pl-mc { - color: var(--color-prettylights-syntax-markup-changed-text); - background-color: var(--color-prettylights-syntax-markup-changed-bg); -} - -.pl-mi2 { - color: var(--color-prettylights-syntax-markup-ignored-text); - background-color: var(--color-prettylights-syntax-markup-ignored-bg); -} - -.pl-mdr { - font-weight: bold; - color: var(--color-prettylights-syntax-meta-diff-range); -} - -.pl-ba { - color: var(--color-prettylights-syntax-brackethighlighter-angle); -} - -.pl-sg { - color: var(--color-prettylights-syntax-sublimelinter-gutter-mark); -} - -.pl-corl { - text-decoration: underline; - color: var(--color-prettylights-syntax-constant-other-reference-link); -} - -.CodeMirror { - font-family: monospace; - height: 300px; - color: black; - direction: ltr; -} - -.CodeMirror-lines { - padding: 4px 0; -} - -.CodeMirror pre.CodeMirror-line, -.CodeMirror pre.CodeMirror-line-like { - padding: 0 4px; -} - -.CodeMirror-scrollbar-filler, -.CodeMirror-gutter-filler { - background-color: white; -} - -.CodeMirror-gutters { - border-right: 1px solid #ddd; - background-color: #f7f7f7; - white-space: nowrap; -} - -.CodeMirror-linenumber { - padding: 0 3px 0 5px; - min-width: 20px; - text-align: right; - color: #999; - white-space: nowrap; -} - -.CodeMirror-guttermarker { - color: black; -} - -.CodeMirror-guttermarker-subtle { - color: #999; -} - -.CodeMirror-cursor { - border-left: 1px solid black; - border-right: none; - width: 0; -} - -.CodeMirror div.CodeMirror-secondarycursor { - border-left: 1px solid silver; -} - -.cm-fat-cursor .CodeMirror-cursor { - width: auto; - border: 0; - background: #7e7; -} - -.cm-fat-cursor div.CodeMirror-cursors { - z-index: 1; -} - -.cm-fat-cursor-mark { - background-color: rgba(20, 255, 20, 0.5); - animation: blink 1.06s steps(1) infinite; -} - -.cm-animate-fat-cursor { - width: auto; - border: 0; - animation: blink 1.06s steps(1) infinite; - background-color: #7e7; -} - -@keyframes blink { - 50% { - background-color: transparent; - } -} - -.cm-tab { - display: inline-block; - text-decoration: inherit; -} - -.CodeMirror-rulers { - position: absolute; - left: 0; - right: 0; - top: -50px; - bottom: 0; - overflow: hidden; -} - -.CodeMirror-ruler { - border-left: 1px solid #ccc; - top: 0; - bottom: 0; - position: absolute; -} - -.cm-s-default .cm-header { - color: blue; -} - -.cm-s-default .cm-quote { - color: #090; -} - -.cm-negative { - color: #d44; -} - -.cm-positive { - color: #292; -} - -.cm-header, -.cm-strong { - font-weight: bold; -} - -.cm-em { - font-style: italic; -} - -.cm-link { - text-decoration: underline; -} - -.cm-strikethrough { - text-decoration: line-through; -} - -.cm-s-default .cm-keyword { - color: #708; -} - -.cm-s-default .cm-atom { - color: #219; -} - -.cm-s-default .cm-number { - color: #164; -} - -.cm-s-default .cm-def { - color: blue; -} - -.cm-s-default .cm-variable-2 { - color: #05a; -} - -.cm-s-default .cm-variable-3, -.cm-s-default .cm-type { - color: #085; -} - -.cm-s-default .cm-comment { - color: #a50; -} - -.cm-s-default .cm-string { - color: #a11; -} - -.cm-s-default .cm-string-2 { - color: #f50; -} - -.cm-s-default .cm-meta { - color: #555; -} - -.cm-s-default .cm-qualifier { - color: #555; -} - -.cm-s-default .cm-builtin { - color: #30a; -} - -.cm-s-default .cm-bracket { - color: #997; -} - -.cm-s-default .cm-tag { - color: #170; -} - -.cm-s-default .cm-attribute { - color: #00c; -} - -.cm-s-default .cm-hr { - color: #999; -} - -.cm-s-default .cm-link { - color: #00c; -} - -.cm-s-default .cm-error { - color: red; -} - -.cm-invalidchar { - color: red; -} - -.CodeMirror-composing { - border-bottom: 2px solid; -} - -div.CodeMirror span.CodeMirror-matchingbracket { - color: #0b0; -} - -div.CodeMirror span.CodeMirror-nonmatchingbracket { - color: #a22; -} - -.CodeMirror-matchingtag { - background: rgba(255, 150, 0, 0.3); -} - -.CodeMirror-activeline-background { - background: #e8f2ff; -} - -.CodeMirror { - position: relative; - overflow: hidden; - background: white; -} - -.CodeMirror-scroll { - overflow: scroll; - margin-bottom: -50px; - margin-right: -50px; - padding-bottom: 50px; - height: 100%; - outline: none; - position: relative; -} - -.CodeMirror-sizer { - position: relative; - border-right: 50px solid transparent; -} - -.CodeMirror-vscrollbar, -.CodeMirror-hscrollbar, -.CodeMirror-scrollbar-filler, -.CodeMirror-gutter-filler { - position: absolute; - z-index: 6; - display: none; - outline: none; -} - -.CodeMirror-vscrollbar { - right: 0; - top: 0; - overflow-x: hidden; - overflow-y: scroll; -} - -.CodeMirror-hscrollbar { - bottom: 0; - left: 0; - overflow-y: hidden; - overflow-x: scroll; -} - -.CodeMirror-scrollbar-filler { - right: 0; - bottom: 0; -} - -.CodeMirror-gutter-filler { - left: 0; - bottom: 0; -} - -.CodeMirror-gutters { - position: absolute; - left: 0; - top: 0; - min-height: 100%; - z-index: 3; -} - -.CodeMirror-gutter { - white-space: normal; - height: 100%; - display: inline-block; - vertical-align: top; - margin-bottom: -50px; -} - -.CodeMirror-gutter-wrapper { - position: absolute; - z-index: 4; - background: none; - border: none; -} - -.CodeMirror-gutter-background { - position: absolute; - top: 0; - bottom: 0; - z-index: 4; -} - -.CodeMirror-gutter-elt { - position: absolute; - cursor: default; - z-index: 4; -} - -.CodeMirror-gutter-wrapper ::selection { - background-color: transparent; -} - -.CodeMirror-gutter-wrapper ::-moz-selection { - background-color: transparent; -} - -.CodeMirror-lines { - cursor: text; - min-height: 1px; -} - -.CodeMirror pre.CodeMirror-line, -.CodeMirror pre.CodeMirror-line-like { - border-radius: 0; - border-width: 0; - background: transparent; - font-family: inherit; - font-size: inherit; - margin: 0; - white-space: pre; - word-wrap: normal; - line-height: inherit; - color: inherit; - z-index: 2; - position: relative; - overflow: visible; - -webkit-tap-highlight-color: transparent; - font-variant-ligatures: contextual; -} - -.CodeMirror-wrap pre.CodeMirror-line, -.CodeMirror-wrap pre.CodeMirror-line-like { - word-wrap: break-word; - white-space: pre-wrap; - word-break: normal; -} - -.CodeMirror-linebackground { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - z-index: 0; -} - -.CodeMirror-linewidget { - position: relative; - z-index: 2; - padding: .1px; -} - -.CodeMirror-rtl pre { - direction: rtl; -} - -.CodeMirror-code { - outline: none; -} - -.CodeMirror-scroll, -.CodeMirror-sizer, -.CodeMirror-gutter, -.CodeMirror-gutters, -.CodeMirror-linenumber { - box-sizing: content-box; -} - -.CodeMirror-measure { - position: absolute; - width: 100%; - height: 0; - overflow: hidden; - visibility: hidden; -} - -.CodeMirror-cursor { - position: absolute; - pointer-events: none; -} - -.CodeMirror-measure pre { - position: static; -} - -div.CodeMirror-cursors { - visibility: hidden; - position: relative; - z-index: 3; -} - -div.CodeMirror-dragcursors { - visibility: visible; -} - -.CodeMirror-focused div.CodeMirror-cursors { - visibility: visible; -} - -.CodeMirror-selected { - background: #d9d9d9; -} - -.CodeMirror-focused .CodeMirror-selected { - background: #d7d4f0; -} - -.CodeMirror-crosshair { - cursor: crosshair; -} - -.CodeMirror-line::selection, -.CodeMirror-line > span::selection, -.CodeMirror-line > span > span::selection { - background: #d7d4f0; -} - -.CodeMirror-line::-moz-selection, -.CodeMirror-line > span::-moz-selection, -.CodeMirror-line > span > span::-moz-selection { - background: #d7d4f0; -} - -.cm-searching { - background-color: #ffa; - background-color: rgba(255, 255, 0, 0.4); -} - -.cm-force-border { - padding-right: .1px; -} - -@media print { - .CodeMirror div.CodeMirror-cursors { - visibility: hidden; - } -} - -.cm-tab-wrap-hack:after { - content: ""; -} - -span.CodeMirror-selectedtext { - background: none; -} - -.CodeMirror-dialog { - position: absolute; - left: 0; - right: 0; - background: inherit; - z-index: 15; - padding: .1em .8em; - overflow: hidden; - color: inherit; -} - -.CodeMirror-dialog-top { - border-bottom: 1px solid #eee; - top: 0; -} - -.CodeMirror-dialog-bottom { - border-top: 1px solid #eee; - bottom: 0; -} - -.CodeMirror-dialog input { - border: none; - outline: none; - background: transparent; - width: 20em; - color: inherit; - font-family: monospace; -} - -.CodeMirror-dialog button { - font-size: 70%; -} - -.CodeMirror-merge { - position: relative; - border: 1px solid #ddd; - white-space: pre; -} - -.CodeMirror-merge, -.CodeMirror-merge .CodeMirror { - height: 350px; -} - -.CodeMirror-merge-2pane .CodeMirror-merge-pane { - width: 47%; -} - -.CodeMirror-merge-2pane .CodeMirror-merge-gap { - width: 6%; -} - -.CodeMirror-merge-3pane .CodeMirror-merge-pane { - width: 31%; -} - -.CodeMirror-merge-3pane .CodeMirror-merge-gap { - width: 3.5%; -} - -.CodeMirror-merge-pane { - display: inline-block; - white-space: normal; - vertical-align: top; -} - -.CodeMirror-merge-pane-rightmost { - position: absolute; - right: 0px; - z-index: 1; -} - -.CodeMirror-merge-gap { - z-index: 2; - display: inline-block; - height: 100%; - box-sizing: border-box; - overflow: hidden; - border-left: 1px solid #ddd; - border-right: 1px solid #ddd; - position: relative; - background: #f8f8f8; -} - -.CodeMirror-merge-scrolllock-wrap { - position: absolute; - bottom: 0; - left: 50%; -} - -.CodeMirror-merge-scrolllock { - position: relative; - left: -50%; - cursor: pointer; - color: #555; - line-height: 1; -} - -.CodeMirror-merge-scrolllock:after { - content: "⇛  ⇚"; -} - -.CodeMirror-merge-scrolllock.CodeMirror-merge-scrolllock-enabled:after { - content: "⇛⇚"; -} - -.CodeMirror-merge-copybuttons-left, -.CodeMirror-merge-copybuttons-right { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - line-height: 1; -} - -.CodeMirror-merge-copy { - position: absolute; - cursor: pointer; - color: #44c; - z-index: 3; -} - -.CodeMirror-merge-copy-reverse { - position: absolute; - cursor: pointer; - color: #44c; -} - -.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy { - left: 2px; -} - -.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy { - right: 2px; -} - -.CodeMirror-merge-r-inserted, -.CodeMirror-merge-l-inserted { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==); - background-position: bottom left; - background-repeat: repeat-x; -} - -.CodeMirror-merge-r-deleted, -.CodeMirror-merge-l-deleted { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==); - background-position: bottom left; - background-repeat: repeat-x; -} - -.CodeMirror-merge-r-chunk { - background: #ffffe0; -} - -.CodeMirror-merge-r-chunk-start { - border-top: 1px solid #ee8; -} - -.CodeMirror-merge-r-chunk-end { - border-bottom: 1px solid #ee8; -} - -.CodeMirror-merge-r-connect { - fill: #ffffe0; - stroke: #ee8; - stroke-width: 1px; -} - -.CodeMirror-merge-l-chunk { - background: #eef; -} - -.CodeMirror-merge-l-chunk-start { - border-top: 1px solid #88e; -} - -.CodeMirror-merge-l-chunk-end { - border-bottom: 1px solid #88e; -} - -.CodeMirror-merge-l-connect { - fill: #eef; - stroke: #88e; - stroke-width: 1px; -} - -.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk { - background: #dfd; -} - -.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start { - border-top: 1px solid #4e4; -} - -.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end { - border-bottom: 1px solid #4e4; -} - -.CodeMirror-merge-collapsed-widget:before { - content: "(...)"; -} - -.CodeMirror-merge-collapsed-widget { - cursor: pointer; - color: #88b; - background: #eef; - border: 1px solid #ddf; - font-size: 90%; - padding: 0 3px; - border-radius: 4px; -} - -.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt { - display: none; -} - -/*! - * GitHub Light v0.4.2 - * Copyright (c) 2012 - 2017 GitHub, Inc. - * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE) - */ - -.cm-s-github-light.CodeMirror { - background: var(--color-codemirror-bg); - color: var(--color-codemirror-text); -} - -.cm-s-github-light .CodeMirror-gutters { - background: var(--color-codemirror-gutters-bg); - border-right-width: 0; -} - -.cm-s-github-light .CodeMirror-guttermarker { - color: var(--color-codemirror-guttermarker-text); -} - -.cm-s-github-light .CodeMirror-guttermarker-subtle { - color: var(--color-codemirror-guttermarker-subtle-text); -} - -.cm-s-github-light .CodeMirror-scrollbar-filler, -.cm-s-github-light .CodeMirror-gutter-filler { - background-color: transparent; -} - -.cm-s-github-light .CodeMirror-linenumber { - color: var(--color-codemirror-linenumber-text); - padding: 0 16px 0 16px; -} - -.cm-s-github-light .CodeMirror-cursor { - border-left: 1px solid var(--color-codemirror-cursor); -} - -.cm-s-github-light.CodeMirror-focused .CodeMirror-selected, -.cm-s-github-light .CodeMirror-line::selection, -.cm-s-github-light .CodeMirror-line > span::selection, -.cm-s-github-light .CodeMirror-line > span > span::selection { - background: var(--color-codemirror-selection-bg, #d7d4f0); -} - -.cm-s-github-light .CodeMirror-line::-moz-selection, -.cm-s-github-light .CodeMirror-line > span::-moz-selection, -.cm-s-github-light .CodeMirror-line > span > span::-moz-selection { - background: var(--color-codemirror-selection-bg, #d7d4f0); -} - -.cm-s-github-light .CodeMirror-activeline-background { - background: var(--color-codemirror-activeline-bg); -} - -.cm-s-github-light .CodeMirror-matchingbracket { - text-decoration: underline; - color: var(--color-codemirror-matchingbracket-text); -} - -.cm-s-github-light .CodeMirror-lines { - font-family: "SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace; - font-size: 12px; - background: var(--color-codemirror-lines-bg); - line-height: 1.5; -} - -.react-code-view-edit .CodeMirror, -.react-code-view-edit .CodeMirror-scroll { - display: flex; - flex-direction: column; - flex: 1 1 auto; -} - -.react-code-view-edit .cm-s-github-light .CodeMirror-lines { - line-height: 20px; - font-family: "ui-monospace","SFMono-Regular","SF Mono",Menlo,Consolas,Liberation Mono,monospace; - padding-top: 8px; -} - -.react-code-view-edit .cm-s-github-light .CodeMirror-line, -.react-code-view-edit .cm-s-github-light .CodeMirror-placeholder { - padding-left: 16px; -} - -.cm-s-github-light .cm-comment { - color: var(--color-codemirror-syntax-comment); -} - -.cm-s-github-light .cm-constant { - color: var(--color-codemirror-syntax-constant); -} - -.cm-s-github-light .cm-entity { - font-weight: normal; - font-style: normal; - text-decoration: none; - color: var(--color-codemirror-syntax-entity); -} - -.cm-s-github-light .cm-keyword { - font-weight: normal; - font-style: normal; - text-decoration: none; - color: var(--color-codemirror-syntax-keyword); -} - -.cm-s-github-light .cm-storage { - color: var(--color-codemirror-syntax-storage); -} - -.cm-s-github-light .cm-string { - font-weight: normal; - font-style: normal; - text-decoration: none; - color: var(--color-codemirror-syntax-string); -} - -.cm-s-github-light .cm-support { - font-weight: normal; - font-style: normal; - text-decoration: none; - color: var(--color-codemirror-syntax-support); -} - -.cm-s-github-light .cm-variable { - font-weight: normal; - font-style: normal; - text-decoration: none; - color: var(--color-codemirror-syntax-variable); -} - -details-dialog { - position: fixed; - margin: 10vh auto; - top: 0; - left: 50%; - transform: translateX(-50%); - z-index: 999; - max-height: 80vh; - max-width: 90vw; - width: 448px; - overflow: auto; -} - -.user-select-contain { - -webkit-user-select: contain; - user-select: contain; -} - -.ajax-pagination-form .ajax-pagination-btn { - width: 100%; - padding: 6px; - margin-top: 20px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-accent, var(--color-accent-fg)); - background: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.ajax-pagination-form .ajax-pagination-btn:hover, -.ajax-pagination-form .ajax-pagination-btn:focus { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.ajax-pagination-form.loading .ajax-pagination-btn { - text-indent: -3000px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - background-image: url("/images/spinners/octocat-spinner-16px-EAF2F5.gif"); - background-repeat: no-repeat; - background-position: center center; - border-color: var(--borderColor-default, var(--color-border-default)); -} - -@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (-moz-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx) { - .ajax-pagination-form.loading .ajax-pagination-btn { - background-image: url("/images/spinners/octocat-spinner-32-EAF2F5.gif"); - background-size: 16px auto; - } -} - -body.intent-mouse [role=button]:focus, -body.intent-mouse [role=tabpanel][tabindex="0"]:focus, -body.intent-mouse button:focus, -body.intent-mouse summary:focus, -body.intent-mouse a:focus { - outline: none; - box-shadow: none; -} - -body.intent-mouse [tabindex="0"]:focus, -body.intent-mouse details-dialog:focus { - outline: none; -} - -.CodeMirror { - height: calc(100vh - 1px); -} - -.file-editor-upload { - height: 100%; -} - -.issue-template-editor { - height: 100%; -} - -.file-editor-textarea { - width: 100%; - padding: 5px 4px; - font: 12px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - resize: vertical; - border: 0; - border-radius: 0; - outline: none; -} - -.container-preview .tabnav-tabs { - margin: -5px 0 -5px -9px; -} - -.container-preview .tabnav-tabs .tabnav-tab { - padding: 12px 16px; - border-radius: 0; -} - -.container-preview .tabnav-tabs > .selected:first-child { - border-top-left-radius: 6px; -} - -.container-preview .tabnav-tabs .selected { - font-weight: var(--base-text-weight-semibold, 600); -} - -.container-preview.template-editor .commit-create, -.container-preview.template-editor .file-actions { - display: block; -} - -.container-preview.template-editor .show-code, -.container-preview.template-editor .commit-preview, -.container-preview.template-editor .loading-preview-msg, -.container-preview.template-editor .no-changes-preview-msg, -.container-preview.template-editor .error-preview-msg { - display: none; -} - -.container-preview.render-editor .commit-create, -.container-preview.render-editor .file-actions { - display: block; -} - -.container-preview.render-editor .template-editor, -.container-preview.render-editor .show-code, -.container-preview.render-editor .commit-preview, -.container-preview.render-editor .loading-preview-msg, -.container-preview.render-editor .no-changes-preview-msg, -.container-preview.render-editor .error-preview-msg { - display: none; -} - -.container-preview.show-code .commit-create, -.container-preview.show-code .file-actions { - display: block; -} - -.container-preview.show-code .template-editor, -.container-preview.show-code .render-editor, -.container-preview.show-code .commit-preview, -.container-preview.show-code .loading-preview-msg, -.container-preview.show-code .no-changes-preview-msg, -.container-preview.show-code .error-preview-msg { - display: none; -} - -.container-preview:not(.show-code) .commit-create, -.container-preview:not(.show-code) .file-actions { - display: none; -} - -.container-preview.loading-preview .loading-preview-msg { - display: block; -} - -.container-preview.loading-preview .template-editor, -.container-preview.loading-preview .render-editor, -.container-preview.loading-preview .no-changes-preview-msg, -.container-preview.loading-preview .error-preview-msg, -.container-preview.loading-preview .commit-preview { - display: none; -} - -.container-preview.show-preview .commit-preview { - display: block; -} - -.container-preview.show-preview .template-editor, -.container-preview.show-preview .render-editor, -.container-preview.show-preview .loading-preview-msg, -.container-preview.show-preview .no-changes-preview-msg, -.container-preview.show-preview .error-preview-msg { - display: none; -} - -.container-preview.no-changes-preview .no-changes-preview-msg { - display: block; -} - -.container-preview.no-changes-preview .template-editor, -.container-preview.no-changes-preview .render-editor, -.container-preview.no-changes-preview .loading-preview-msg, -.container-preview.no-changes-preview .error-preview-msg, -.container-preview.no-changes-preview .commit-preview { - display: none; -} - -.container-preview.error-preview .error-preview-msg { - display: block; -} - -.container-preview.error-preview .template-editor, -.container-preview.error-preview .render-editor, -.container-preview.error-preview .loading-preview-msg, -.container-preview.error-preview .no-changes-preview-msg, -.container-preview.error-preview .commit-preview { - display: none; -} - -.container-preview p.preview-msg { - padding: 30px; - font-size: 16px; -} - -.CodeMirror-merge-header { - height: 30px; -} - -.CodeMirror-merge-header .CodeMirror-merge-pane { - height: 30px; - line-height: 30px; -} - -.cm-s-github-light .merge-gutter { - width: 14px; -} - -.conflict-background + .CodeMirror-gutter-wrapper .CodeMirror-linenumber { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.form-group .edit-action { - opacity: .6; -} - -.form-group .form-field-hover { - background-color: none; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.form-group:hover .edit-action { - cursor: pointer; - opacity: .7; -} - -.form-group:hover .form-field-hover { - cursor: pointer; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.placeholder-box { - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.template-previews { - max-width: 768px; -} - -.template-previews .Box .expand-group { - display: none; - height: 0; -} - -.template-previews .Box .dismiss-preview-button { - display: none; -} - -.template-previews .Box.expand-preview .expand-group { - display: block; - height: 100%; - transition: height 3s; -} - -.template-previews .Box.expand-preview .preview-button { - display: none; -} - -.template-previews .Box.expand-preview .dismiss-preview-button { - display: inline; -} - -.template-previews .discussion-sidebar-heading { - font-size: 14px; - color: var(--fgColor-neutral, var(--color-neutral-emphasis)); -} - -.template-previews .discussion-sidebar-heading:hover { - color: var(--fgColor-accent, var(--color-accent-emphasis)); -} - -.edit-labels { - display: none; -} - -.preview-section { - display: block; -} - -.edit-section { - display: none; -} - -.Box .section-focus .preview-section { - display: none; -} - -.Box .section-focus .edit-section { - display: block; -} - -.commit-create .CodeMirror { - padding-top: 8px; -} - -auto-complete, -details-dialog, -details-menu, -file-attachment, -filter-input, -remote-input, -tab-container, -text-expander, -turbo-frame, -[data-catalyst] { - display: block; -} - -[data-catalyst-inline] { - display: inline; -} - -[data-catalyst-grid] { - display: grid; -} - -.Details--on .Details-content--shown { - display: none; -} - -.Details:not(.Details--on) .Details-content--hidden { - display: none; -} - -.Details:not(.Details--on) .Details-content--hidden-not-important { - display: none; -} - -.Details-element[open] > summary .Details-content--closed { - display: none; -} - -.Details-element:not([open]) > summary .Details-content--open { - display: none; -} - -g-emoji { - display: inline-block; - min-width: 1ch; - font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-size: 1em; - font-style: normal; - font-weight: var(--base-text-weight-normal, 400); - line-height: 1; - vertical-align: -0.075em; -} - -g-emoji img { - width: 1em; - height: 1em; -} - -.emoji-icon { - display: inline-block; - width: 20px; - height: 20px; - vertical-align: middle; - background-repeat: no-repeat; - background-size: 20px 20px; -} - -.emoji-result { - display: inline-block; - height: 20px; - font-size: 16px; - font-weight: var(--base-text-weight-normal, 400); - vertical-align: middle; -} - -.gollum-editor .comment-form-head.tabnav { - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.gollum-editor .gollum-editor-body { - height: 390px; - resize: vertical; -} - -.active .gollum-editor-function-buttons { - display: block; -} - -.auth-form { - width: 340px; - margin: 0 auto; -} - -.auth-form .form-group.warn .warning, -.auth-form .form-group.warn .error, -.auth-form .form-group.errored .warning, -.auth-form .form-group.errored .error { - max-width: 274px; -} - -.auth-form-wide { - width: 440px; - margin: 0 auto; -} - -.auth-form-wide .form-group.warn .warning, -.auth-form-wide .form-group.warn .error, -.auth-form-wide .form-group.errored .warning, -.auth-form-wide .form-group.errored .error { - max-width: 274px; -} - -.auth-form-header { - padding: 8px 16px; - margin: 0; - color: #fff; - text-shadow: 0 -1px 0 rgba(0,0,0,.3); - background-color: #829aa8; - border: 1px solid #768995; - border-radius: 6px 6px 0 0; -} - -.auth-form-header h1 { - font-size: 16px; -} - -.auth-form-header h1 a { - color: #fff; -} - -.auth-form-header .octicon { - position: absolute; - top: 10px; - right: 20px; - color: rgba(0,0,0,.4); - text-shadow: 0 1px 0 rgba(255,255,255,.1); -} - -.auth-form-header .Overlay .octicon { - position: static; -} - -.inactive-user-avatar { - filter: grayscale(1); -} - -.auth-divider { - display: flex; - flex-basis: 100%; - align-items: center; -} - -.auth-divider::before, -.auth-divider::after { - position: relative; - display: inline-block; - width: 50%; - height: 1px; - vertical-align: middle; - content: ""; - background-color: var(--borderColor-default, var(--color-border-default)); -} - -.auth-divider::before { - right: .5em; -} - -.auth-divider::after { - left: .5em; -} - -.auth-form-message { - max-height: 140px; - padding: 16px 16px 8px; - overflow-y: scroll; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.auth-form-message ol, -.auth-form-message ul { - padding-left: inherit; - margin-bottom: inherit; -} - -.auth-form-body { - padding: 16px; - font-size: 14px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-top: 0; - border-radius: 0 0 6px 6px; -} - -.auth-form-body .input-block { - margin-top: 4px; - margin-bottom: 16px; -} - -.auth-form-body p { - margin-bottom: 0; -} - -.auth-form-body ol, -.auth-form-body ul { - padding-left: inherit; - margin-bottom: inherit; -} - -.two-factor-help { - position: relative; - padding: 8px 8px 8px 32px; - margin: 60px 0 auto auto; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.two-factor-help h4 { - margin-top: 0; - margin-bottom: 4px; -} - -.two-factor-help .octicon-device-mobile, -.two-factor-help .octicon-key, -.two-factor-help .octicon-shield-lock, -.two-factor-help .octicon-circle-slash { - position: absolute; - top: 10px; - left: 10px; -} - -.sms-send-code-spinner { - position: relative; - bottom: 2px; - display: none; - vertical-align: bottom; -} - -.loading .sms-send-code-spinner { - display: inline; -} - -.auth-form-body .webauthn-form-body { - padding: 0; -} - -.webauthn-form-body { - padding: 32px 32px 16px; - text-align: center; -} - -.webauthn-form-body button { - margin-top: 16px; -} - -.flash.sms-error, -.flash.sms-success { - display: none; - margin: 0 0 8px; -} - -.is-sent .sms-success { - display: block; -} - -.is-sent .sms-error { - display: none; -} - -.is-not-sent .sms-success { - display: none; -} - -.is-not-sent .sms-error { - display: block; -} - -.session-authentication { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.session-authentication .header-logged-out { - background-color: transparent; - border-bottom: 0; -} - -.session-authentication .header-logo { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.session-authentication .flash { - padding: 16px 16px; - margin: 0 auto; - margin-bottom: 8px; - font-size: 14px; - border-style: solid; - border-width: 1px; - border-radius: 6px; -} - -.session-authentication .flash .container { - width: auto; -} - -.session-authentication .flash .flash-close { - height: 40px; -} - -.session-authentication .flash.flash-banner { - width: 100%; - border-top: 0; - border-right: 0; - border-left: 0; - border-radius: 0; -} - -.session-authentication .auth-form label { - display: block; - margin-bottom: 8px; - font-weight: var(--base-text-weight-normal, 400); - text-align: left; -} - -.session-authentication .auth-form .btn { - margin-top: 16px; -} - -.session-authentication .auth-form .webauthn-message { - margin-bottom: 0; -} - -.session-authentication .label-link { - float: right; - font-size: 12px; -} - -.session-authentication .auth-form-header { - margin-bottom: 16px; - color: var(--fgColor-default, var(--color-fg-default)); - text-align: center; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.session-authentication .auth-form-header h1 { - font-size: 24px; - font-weight: var(--base-text-weight-light, 300); - letter-spacing: -0.5px; -} - -.session-authentication .auth-form-body { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.session-authentication .auth-form-body.webauthn-form-body { - padding: 16px; -} - -.session-authentication .login-callout { - padding: 16px 16px; - text-align: center; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.session-authentication .two-factor-help { - padding: 0 0 0 16px; - margin-top: 16px; - border: 0; -} - -.session-authentication .two-factor-help .octicon-device-mobile, -.session-authentication .two-factor-help .octicon-key, -.session-authentication .two-factor-help .octicon-shield-lock, -.session-authentication .two-factor-help .octicon-circle-slash { - top: 4px; - left: 0; -} - -.session-authentication.enterprise .header-logged-out { - padding: 48px 0 24px; - background-color: transparent; -} - -.session-authentication.hosted .header-logged-out { - padding: 40px 0 16px; - background-color: transparent; -} - -.session-authentication .notification-shelf { - display: none; -} - -.two-factor-recovery-modal-prompt.fit-in-box .Button-content, -.two-factor-recovery-modal-prompt.fit-in-box .Button-label { - display: block; - width: 274px; - text-align: left; - white-space: normal; -} - -.switch-account-popover-body { - width: auto; - min-width: 250px; - max-width: 350px; -} - -.switch-account-popover-body::before, -.switch-account-popover-body::after { - display: none; -} - -.switch-account-popover-row { - width: 100%; - padding: 0; - background-color: transparent; -} - -.switch-account-popover-row:hover { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - cursor: pointer; - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -@media (prefers-reduced-motion: no-preference) { - .Header-backdrop, - .HeaderMenu--logged-out, - .HeaderMenu-link, - .HeaderMenu-toggle-bar, - .HeaderMenu-icon, - .HeaderMenu-dropdown, - .HeaderMenu-external-icon { - transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1); - transition-duration: 500ms; - transition-property: opacity,transform; - } -} - -.Header-old { - z-index: 32; - padding-top: 12px; - padding-bottom: 12px; - color: #fff; - background-color: var(--header-bgColor, var(--color-header-bg)); -} - -.server-stats + .Header-old { - box-shadow: inset 0 1px 0 rgba(255,255,255,.075); -} - -.Header-old .dropdown-menu { - width: 300px; -} - -.Header-old .notification-indicator:hover::after { - content: none; -} - -@media (min-width: 1012px) { - .Header-old .notification-indicator:hover::after { - content: attr(aria-label); - } -} - -.HeaderMenu-toggle-bar { - width: 22px; - height: 2px; - background-color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.HeaderMenu-toggle-bar:nth-of-type(1) { - transform-origin: bottom right; -} - -.HeaderMenu-toggle-bar:nth-of-type(3) { - transform-origin: top right; -} - -.open .HeaderMenu-toggle-bar:nth-of-type(1) { - transform: rotate(-45deg) translateY(-3px); -} - -.open .HeaderMenu-toggle-bar:nth-of-type(2) { - opacity: 0; - transform: scale(0); -} - -.open .HeaderMenu-toggle-bar:nth-of-type(3) { - transform: rotate(45deg) translateY(3px); -} - -@media (max-width: 1011px) { - body:has(.header-logged-out.open) { - height: 100%; - overflow: hidden; - } - - .Header-backdrop { - visibility: hidden; - background: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); - opacity: 0; - } - - .open .Header-backdrop { - visibility: visible; - opacity: 1; - -webkit-backdrop-filter: blur(3px); - backdrop-filter: blur(3px); - } -} - -.HeaderMenu--logged-out { - --header-menu-shadow: 0 5px 30px rgba(27, 31, 35, 0.1), 0 0 1px rgba(27, 31, 35, 0.4), 0 1px 2px rgba(27, 31, 35, 0.15); - contain: layout; - z-index: 100; - width: 100%; - pointer-events: none; -} - -@media (prefers-color-scheme: dark) { - .HeaderMenu--logged-out { - --header-menu-shadow: 0 0 1px #959da5; - } -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out { - width: auto; - padding: 0; - transition: none; - } -} - -.HeaderMenu--logged-out .HeaderMenu-link--sign-in:focus { - outline-offset: 4px; -} - -@media (max-width: 1011px) { - .HeaderMenu--logged-out { - position: fixed; - display: flex; - height: 100%; - padding-right: 0; - transform-origin: top right; - } - - .header-logged-out:not(.open) .HeaderMenu--logged-out { - position: absolute; - visibility: hidden; - opacity: 0; - transform: scale(0.9) translateY(-24px); - } - - .HeaderMenu--logged-out .HeaderMenu-link.HeaderMenu-link--sign-up, - .HeaderMenu--logged-out .HeaderMenu-link.HeaderMenu-link--sign-up:hover, - .HeaderMenu--logged-out .HeaderMenu-link.HeaderMenu-link--sign-in, - .HeaderMenu--logged-out .HeaderMenu-link.HeaderMenu-link--sign-in:hover { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); - border-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); - opacity: 1; - } -} - -.HeaderMenu--logged-out .header-menu-wrapper { - width: 100%; - height: 100%; - overflow: auto; - pointer-events: auto; - background-color: var(--bgColor-default, var(--color-canvas-default)); - box-shadow: var(--header-menu-shadow); -} - -@media (min-width: 544px) { - .HeaderMenu--logged-out .header-menu-wrapper { - width: 320px; - } -} - -@media (max-width: 1011px) { - .HeaderMenu--logged-out .header-menu-wrapper { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out .header-menu-wrapper { - width: 100%; - overflow: visible; - background-color: transparent; - box-shadow: none; - } -} - -@media (max-width: 1011px) { - .HeaderMenu--logged-out .header-search { - margin-right: 0; - } - - .HeaderMenu--logged-out .HeaderMenu-link { - font-weight: var(--base-text-weight-semibold, 600); - } -} - -.HeaderMenu--logged-out .jump-to-suggestions { - top: 100%; -} - -.HeaderMenu--logged-out .header-search-key-slash { - margin-right: 8px; -} - -@media (max-width: 1012px) { - .HeaderMenu--logged-out .header-search-key-slash { - display: none; - } -} - -.HeaderMenu--logged-out .dropdown-menu { - position: static; - width: auto; - border: 0 solid transparent; - box-shadow: none; -} - -.HeaderMenu--logged-out .dropdown-menu::before, -.HeaderMenu--logged-out .dropdown-menu::after { - display: none; -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out .dropdown-menu { - position: absolute; - width: 300px; - border: 0; - box-shadow: var(--header-menu-shadow); - } - - .HeaderMenu--logged-out .dropdown-menu::before, - .HeaderMenu--logged-out .dropdown-menu::after { - content: ""; - } - - .HeaderMenu--logged-out .dropdown-menu.dropdown-menu-wide { - width: 500px; - } -} - -.HeaderMenu--logged-out .dropdown-menu-s { - transform: none; -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out .dropdown-menu-s { - transform: translateX(50%); - } -} - -.HeaderMenu--logged-out .header-search { - width: auto; - border-top: 0; -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out .header-search { - width: 240px; - } -} - -.HeaderMenu--logged-out .header-search-wrapper { - border-color: var(--borderColor-muted, var(--color-border-muted)); -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out .header-search-wrapper { - border-color: var(--headerSearch-borderColor, var(--color-header-search-border)); - } -} - -@media (max-width: 1012px) { - .HeaderMenu--logged-out .header-search-wrapper { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - } -} - -@media (min-width: 1012px) { - .HeaderMenu--logged-out .header-search-input { - padding-top: 8px; - padding-bottom: 8px; - font-size: 14px; - -webkit-appearance: none; - } -} - -.HeaderMenu--logged-out .header-search-input::placeholder { - color: var(--color-scale-gray-4); -} - -.HeaderMenu-link { - color: var(--fgColor-default, var(--color-fg-default)); - white-space: nowrap; - background: transparent; -} - -.HeaderMenu-link:hover { - color: var(--fgColor-default, var(--color-fg-default)); - opacity: .75; -} - -@media (min-width: 1012px) { - .HeaderMenu-link { - color: #fff; - } - - .HeaderMenu-link:hover { - color: #fff; - opacity: .75; - } -} - -.HeaderMenu-item .HeaderMenu-dropdown { - visibility: hidden; - opacity: 0; - transform: scale(0.99) translateY(-0.7em); - transform-origin: top; -} - -.HeaderMenu-item:hover .HeaderMenu-dropdown, -.HeaderMenu-item.open .HeaderMenu-dropdown { - visibility: visible; - opacity: 1; - transform: scale(1) translateY(0); -} - -@media (min-width: 1012px) { - .HeaderMenu-item:hover .HeaderMenu-icon, - .HeaderMenu-item.open .HeaderMenu-icon { - transform: translateY(2px); - } -} - -@media (max-width: 1011px) { - .HeaderMenu-item .HeaderMenu-dropdown { - background-color: transparent; - } - - .HeaderMenu-item .HeaderMenu-icon { - transform: scale(1.2); - } - - .HeaderMenu-item:not(.open) .HeaderMenu-dropdown { - position: fixed; - } - - .HeaderMenu-item:not(.open) .HeaderMenu-icon { - transform: rotate(-90deg) scale(1.2); - } - - .HeaderMenu-item .HeaderMenu-link { - font-size: 20px; - } -} - -.HeaderMenu-dropdown-link:not(:hover):not(:focus) .HeaderMenu-external-icon { - opacity: 0; - transform: translateX(-0.5em); -} - -.header-logo-invertocat { - margin: -1px 16px -1px -2px; - color: #fff; - white-space: nowrap; -} - -.header-logo-invertocat .octicon-mark-github { - float: left; -} - -.header-logo-invertocat:hover { - color: #fff; - text-decoration: none; -} - -.notification-indicator .mail-status { - position: absolute; - top: -6px; - left: 6px; - display: none; - width: 14px; - height: 14px; - color: #fff; - background-image: linear-gradient(#54a3ff, #006eed); - background-clip: padding-box; - border: 2px solid var(--header-bgColor, var(--color-header-bg)); - border-radius: 50%; -} - -.notification-indicator .mail-status.unread { - display: inline-block; -} - -.notification-indicator:hover .mail-status { - text-decoration: none; - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.header-nav-current-user { - padding-bottom: 0; - font-size: inherit; -} - -.header-nav-current-user .css-truncate-target { - max-width: 100%; -} - -.header-nav-current-user .user-profile-link { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.unread-indicator { - position: absolute; - top: 0; - left: 13px; - z-index: 2; - width: 14px; - height: 14px; - color: #fff; - background-image: linear-gradient(#54a3ff, #006eed); - background-clip: padding-box; - border: 2px solid var(--header-bgColor, var(--color-header-bg)); - border-radius: 50%; -} - -.unread-indicator--small { - width: 10px; - height: 10px; - border: 0; -} - -.unread-indicator-container .unread-indicator { - top: 9px; - right: 10px; - left: inherit; - width: 10px; - height: 10px; - border: 0; -} - -.header-search-wrapper { - display: table; - width: 100%; - max-width: 100%; - padding: 0; - font-size: inherit; - font-weight: var(--base-text-weight-normal, 400); - vertical-align: middle; - background-color: var(--headerSearch-bgColor, var(--color-header-search-bg)); - border: 1px solid var(--headerSearch-borderColor, var(--color-header-search-border)); - box-shadow: none; -} - -@media (min-width: 1012px) { - .header-search-wrapper { - color: var(--color-scale-white); - } -} - -.header-search-wrapper.header-search-wrapper-jump-to .header-search-scope { - width: -moz-fit-content; - width: fit-content; -} - -.header-search-wrapper.header-search-wrapper-jump-to.search-wrapper-suggestions-active { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.header-search-wrapper .truncate-repo-scope { - max-width: 110px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.header-search-wrapper.focus { - background-color: rgba(255,255,255,.175); - box-shadow: none; -} - -.header-search-wrapper.focus .header-search-scope { - color: var(--color-scale-white); - background-color: rgba(255,255,255,.075); - border-right-color: #282e34; -} - -.search-input.search-input-absolute { - position: absolute; - width: calc(100% - 180px); -} - -.header-search-input { - display: table-cell; - width: 100%; - padding-top: 0; - padding-bottom: 0; - font-size: inherit; - color: inherit; - background: none; - border: 0; - box-shadow: none; -} - -.header-search-input::placeholder { - color: rgba(255,255,255,.75); -} - -.header-search-input:focus { - border: 0; - box-shadow: none; -} - -.header-search-input:focus ~ .header-search-key-slash { - display: none; -} - -.header-search-input::-ms-clear { - display: none; -} - -.header-search-button { - display: table-cell; - overflow: hidden; - font-size: inherit; - color: inherit; - word-break: break-word; - white-space: pre; - background: none; -} - -.header-search-button.input-button:focus { - border: 0; -} - -.header-search-button.input-button:focus ~ .header-search-key-slash { - display: none; -} - -.header-search-button.input-button:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.header-search-button::-ms-clear { - display: none; -} - -.Header .header-search-button, -.header-logged-out .header-search-button { - font-size: 14px; -} - -.Header .header-search-button .input-parsed-symbol, -.header-logged-out .header-search-button .input-parsed-symbol { - color: #58a6ff; - background: #388bfd26; - border-radius: 3px; - box-shadow: 0 0 0 .8px #388bfd26; -} - -.Header .header-search-button .pl-c1, -.header-logged-out .header-search-button .pl-c1 { - color: #58a6ff; -} - -.Header .header-search-button .pl-en, -.header-logged-out .header-search-button .pl-en { - color: #58a6ff; -} - -.header-search-button.placeholder { - color: rgba(255,255,255,.75); -} - -.header-search-scope { - display: none; - padding-right: 8px; - padding-left: 8px; - font-size: inherit; - line-height: 28px; - color: rgba(255,255,255,.7); - white-space: nowrap; - vertical-align: middle; - border-right: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-right-color: #282e34; - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.header-search-scope:empty + .header-search-input { - width: 100%; -} - -.header-search-scope:hover { - color: var(--color-scale-white); - background-color: rgba(255,255,255,.12); -} - -.scoped-search .header-search-wrapper { - display: flex; -} - -.jump-to-field-active { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.jump-to-field-active::placeholder { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.jump-to-field-active ~ .header-search-key-slash { - display: none; -} - -.jump-to-field-active.jump-to-dropdown-visible { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.jump-to-suggestions { - top: 100%; - left: 0; - z-index: 35; - width: 100%; - border-top-left-radius: 0; - border-top-right-radius: 0; - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; - box-shadow: 0 4px 10px rgba(0,0,0,.1); -} - -.jump-to-suggestions-path { - min-width: 0; - min-height: 44px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.jump-to-suggestions-path .jump-to-octicon { - width: 28px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.jump-to-suggestions-path .jump-to-suggestion-name { - max-width: none; -} - -.jump-to-suggestions-path mark { - font-weight: var(--base-text-weight-semibold, 600); - background-color: transparent; -} - -.jump-to-suggestions-results-container .navigation-item { - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.jump-to-suggestions-results-container .navigation-item:last-child { - border-bottom: 0; -} - -.jump-to-suggestions-results-container .d-on-nav-focus { - display: none; -} - -.jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon, -.jump-to-suggestions-results-container .navigation-focus .jump-to-octicon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path, -.jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.jump-to-suggestions-results-container [aria-selected=true] mark, -.jump-to-suggestions-results-container .navigation-focus mark { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.jump-to-suggestions-results-container [aria-selected=true] .d-on-nav-focus, -.jump-to-suggestions-results-container .navigation-focus .d-on-nav-focus { - display: block; -} - -.header-search { - max-width: 100%; - transition: .2s ease-in-out; - transition-property: max-width,padding-bottom,padding-top; -} - -@media (min-width: 768px) { - .header-search { - max-width: 272px; - } -} - -@media (min-width: 768px) { - .header-search:focus-within { - max-width: 544px; - } -} - -@media (min-width: 768px) { - .header-search.fixed-width:focus-within { - max-width: 272px; - } -} - -.HeaderMenu--logged-out .header-search { - min-width: auto; - margin-bottom: 0; -} - -@media (max-width: 1011px) { - .HeaderMenu--logged-out .header-search .header-search-input { - min-height: 40px; - } -} - -.search-input { - width: 350px; -} - -@media only screen and (max-width: 768px) { - .search-input { - width: 100%; - } - - .search-input-container { - margin-right: 10px; - margin-bottom: 10px; - margin-left: 10px; - } -} - -.search-input.expanded { - flex: 1; -} - -.search-with-dialog { - height: 32px; - color: var(--color-scale-white); - background-color: var(--header-bgColor, var(--color-header-bg)); - border: 1px solid var(--headerSearch-borderColor, var(--color-header-search-border)); -} - -.search-with-dialog:hover { - background-color: var(--headerSearch-bgColor, var(--color-header-search-bg)); -} - -.search-with-dialog .input-parsed-symbol { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: 3px; - box-shadow: 0 0 0 .8px var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.create-custom-scope-form { - margin-top: -16px; - margin-bottom: -16px; -} - -.query-builder-container { - padding-top: 10px; - padding-right: 0; - padding-left: 0; -} - -.query-builder-container .QueryBuilder-StyledInput { - width: auto; - margin-right: var(--base-size-12, 12px); - margin-left: var(--base-size-12, 12px); -} - -.query-builder-container .QueryBuilder-sectionTitle { - margin-left: 8px; -} - -.query-builder-container .QueryBuilder-ListItem-trailing { - font-size: 14px; -} - -.query-builder-container .ActionListItem { - margin-right: 8px; - margin-left: 8px; -} - -.search-feedback-prompt { - padding-top: var(--base-size-12, 12px); - padding-bottom: var(--base-size-12, 12px); - border-top-color: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - border-top-style: solid; - border-top-width: 1px; -} - -.search-suggestions { - top: -14px; - left: -14px; - z-index: 35; - width: calc(100% + 26px); - max-height: 80vh; - padding-top: var(--base-size-12, 12px); - border-radius: var(--borderRadius-large, 12px); -} - -.search-suggestions .header-search-input { - overflow: hidden; -} - -.search-suggestions .octicon { - pointer-events: none; -} - -.HeaderMenu--logged-out .search-suggestions { - width: calc(100% - 16px); -} - -@media screen and (max-width: 1012px) { - .HeaderMenu--logged-out .search-suggestions { - top: 0; - left: 0; - width: 100%; - } -} - -@media screen and (max-width: 1012px) { - .HeaderMenu--logged-out .search-input { - width: 100%; - } -} - -@media screen and (max-width: 1011px) { - .HeaderMenu--logged-out .search-input-container { - margin-right: 0; - margin-bottom: 16px; - margin-left: 0; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - } -} - -.dark-backdrop { - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 32; - width: 120vw; - height: 120vh; - margin-top: -24px; - margin-left: -80px; - background-color: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); -} - -.Header-item--search { - flex-grow: 100; -} - -.search-query-builder .QueryBuilder-ListWrap { - max-height: 60vh; - padding-right: 0; - padding-left: 0; - overflow-y: auto; -} - -.Header .search-input { - flex: 1; - width: auto; - max-width: 350px; -} - -.Header .search-input.expanded { - max-width: none; -} - -.app-banner { - background-color: var(--header-bgColor, var(--color-header-bg)); -} - -.app-banner-title { - color: var(--header-fgColor-logo, var(--color-header-logo)); -} - -.app-banner-text { - color: var(--header-fgColor-default, var(--color-header-text)); -} - -.app-banner-icon { - --icon-gradient-start-color: #171a1e; - --icon-gradient-end-color: #060606; - width: 32px; - height: 32px; - padding-top: 6px; - padding-left: 6px; - color: #fff; - background: var(--icon-gradient-end-color); - background: linear-gradient(var(--icon-gradient-start-color), var(--icon-gradient-end-color)); -} - -.app-banner-icon .octicon { - width: 20px; - height: 20px; -} - -.ActionList { - padding: 8px; -} - -.ActionList--full { - padding: 0; -} - -.ActionList--subGroup { - padding: 0; -} - -.ActionList--divided .ActionList-item-label::before { - position: absolute; - top: -6px; - display: block; - width: 100%; - height: 1px; - content: ""; - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); -} - -.ActionList--divided .ActionList-item-descriptionWrap--inline::before { - position: absolute; - top: -6px; - display: block; - width: 100%; - height: 1px; - content: ""; - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); -} - -.ActionList--divided .ActionList-item-descriptionWrap--inline .ActionList-item-label::before { - content: unset; -} - -.ActionList--divided .ActionList-item--navActive .ActionList-item-label::before, -.ActionList--divided .ActionList-item--navActive + .ActionList-item .ActionList-item-label::before { - visibility: hidden; -} - -.ActionList-item:first-of-type .ActionList-item-label::before, -.ActionList-sectionDivider + .ActionList-item .ActionList-item-label::before { - visibility: hidden; -} - -.ActionList-item:first-of-type .ActionList-item-descriptionWrap--inline::before, -.ActionList-sectionDivider + .ActionList-item .ActionList-item-descriptionWrap--inline::before { - visibility: hidden; -} - -.ActionList--tree { - --ActionList-tree-depth: 1; -} - -.ActionList--tree .ActionList-item--subItem > .ActionList-content { - font-size: 14px; -} - -.ActionList--tree .ActionList-item.ActionList-item--singleton .ActionList-content { - padding-left: 32px; -} - -.ActionList--tree .ActionList-item.ActionList-item--navActive:not(.ActionList-item--subItem) .ActionList-item-label { - font-weight: var(--base-text-weight-normal, 400); -} - -.ActionList--tree .ActionList-content[aria-expanded] + .ActionList--subGroup { - position: relative; -} - -.ActionList--tree .ActionList-content[aria-expanded] + .ActionList--subGroup .ActionList-content { - padding-left: calc(8px * var(--ActionList-tree-depth)); -} - -.ActionList--tree .ActionList-content[aria-expanded=true] .ActionList-item-collapseIcon { - transition: transform 120ms linear; - transform: rotate(0deg); -} - -.ActionList--tree .ActionList-content[aria-expanded=true].ActionList-content--hasActiveSubItem > .ActionList-item-label { - font-weight: var(--base-text-weight-normal, 400); -} - -.ActionList--tree .ActionList-content[aria-expanded=false] .ActionList-item-collapseIcon { - transition: transform 120ms linear; - transform: rotate(-90deg); -} - -.ActionList--tree .ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem > .ActionList-item-label { - font-weight: var(--base-text-weight-normal, 400); -} - -.ActionList--tree .ActionList-item--hasSubItem .ActionList-item--subItem:not(.ActionList-item--hasSubItem) .ActionList-content > span:first-child { - padding-left: 24px; -} - -.ActionList--tree > [aria-level="1"].ActionList-item--hasSubItem > .ActionList--subGroup::before { - position: absolute; - left: 16px; - width: 1px; - height: 100%; - content: ""; - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); -} - -.ActionList--tree .ActionList-item--hasSubItem:not([aria-level="1"]) > .ActionList--subGroup::before { - position: absolute; - left: calc(8px * (var(--ActionList-tree-depth)) + 7px); - width: 1px; - height: 100%; - content: ""; - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); -} - -.ActionList-item { - position: relative; - list-style: none; - background-color: transparent; - border-radius: 6px; -} - -.ActionList-item:hover, -.ActionList-item:active { - cursor: pointer; -} - -@media (hover: hover) { - .ActionList-item:not(.ActionList-item--hasSubItem):hover, - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover { - cursor: pointer; - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } - - .ActionList-item:not(.ActionList-item--hasSubItem):hover:not(.ActionList-item--navActive):not(:focus-visible), - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover:not(.ActionList-item--navActive):not(:focus-visible) { - outline: solid 1px transparent; - outline-offset: -1px; - box-shadow: inset 0 0 0 1px var(--control-transparent-borderColor-active, var(--color-action-list-item-default-active-border)); - } -} - -.ActionList-item:not(.ActionList-item--hasSubItem):active, -.ActionList-item.ActionList-item--hasSubItem > .ActionList-content:active { - background: var(--control-transparent-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -.ActionList-item:not(.ActionList-item--hasSubItem):active:not(.ActionList-item--navActive), -.ActionList-item.ActionList-item--hasSubItem > .ActionList-content:active:not(.ActionList-item--navActive) { - outline: solid 1px transparent; - outline-offset: -1px; - box-shadow: inset 0 0 0 1px var(--control-transparent-borderColor-active, var(--color-action-list-item-default-active-border)); -} - -@media (hover: hover) { - .ActionList-item:not(.ActionList-item--hasSubItem):hover .ActionList-item-label::before, - .ActionList-item:not(.ActionList-item--hasSubItem):hover + .ActionList-item .ActionList-item-label::before, - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover .ActionList-item-label::before, - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover + .ActionList-item .ActionList-item-label::before { - visibility: hidden; - } - - .ActionList-item:not(.ActionList-item--hasSubItem):hover .ActionList-item-descriptionWrap--inline::before, - .ActionList-item:not(.ActionList-item--hasSubItem):hover + .ActionList-item .ActionList-item-descriptionWrap--inline::before, - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover .ActionList-item-descriptionWrap--inline::before, - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover + .ActionList-item .ActionList-item-descriptionWrap--inline::before { - visibility: hidden; - } -} - -.ActionList-item:not(.ActionList-item--hasSubItem):active .ActionList-item-label::before, -.ActionList-item:not(.ActionList-item--hasSubItem):active + .ActionList-item .ActionList-item-label::before, -.ActionList-item.ActionList-item--hasSubItem > .ActionList-content:active .ActionList-item-label::before, -.ActionList-item.ActionList-item--hasSubItem > .ActionList-content:active + .ActionList-item .ActionList-item-label::before { - visibility: hidden; -} - -.ActionList-item.ActionList-item--hasSubItem > .ActionList-content { - z-index: 1; -} - -@media (hover: hover) { - .ActionList-item.ActionList-item--hasSubItem > .ActionList-content:hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.ActionList-item.ActionList-item--hasSubItem > .ActionList-content:active { - background-color: var(--control-transparent-bgColor-active, var(--color-action-list-item-default-active-bg)); -} - -.ActionList-item[hidden] + .ActionList-sectionDivider { - display: none; -} - -.ActionList-item[aria-selected=true] { - font-weight: var(--base-text-weight-normal, 400); - background: var(--control-transparent-bgColor-selected, var(--color-action-list-item-default-selected-bg)); -} - -@media (hover: hover) { - .ActionList-item[aria-selected=true]:hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.ActionList-item[aria-selected=true]::before, -.ActionList-item[aria-selected=true] + .ActionList-item::before { - visibility: hidden; -} - -.ActionList-item[aria-selected=true]::after { - position: absolute; - top: calc(50% - 12px); - left: -4px; - width: 4px; - height: 24px; - content: ""; - background: var(--bgColor-accent-emphasis, var(--color-accent-fg)); - border-radius: 6px; -} - -.ActionList-item.ActionList-item--navActive:not(.ActionList-item--subItem) .ActionList-item-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger) { - background: var(--control-transparent-bgColor-selected, var(--color-action-list-item-default-selected-bg)); -} - -@media (hover: hover) { - .ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger):hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger)::before, -.ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger) + .ActionList-item::before { - visibility: hidden; -} - -.ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger)::after { - position: absolute; - top: calc(50% - 12px); - left: -8px; - width: 4px; - height: 24px; - content: ""; - background: var(--bgColor-accent-emphasis, var(--color-accent-fg)); - border-radius: 6px; -} - -.ActionList-item[aria-checked=true] .ActionList-item-multiSelectCheckmark, -.ActionList-item[aria-selected=true] .ActionList-item-multiSelectCheckmark { - visibility: visible; - opacity: 1; - transition: visibility 0 linear 0,opacity 50ms; -} - -.ActionList-item[aria-checked=true] .ActionList-item-singleSelectCheckmark, -.ActionList-item[aria-selected=true] .ActionList-item-singleSelectCheckmark { - visibility: visible; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .ActionList-item[aria-checked=true] .ActionList-item-singleSelectCheckmark, - .ActionList-item[aria-selected=true] .ActionList-item-singleSelectCheckmark { - animation: checkmarkIn 200ms cubic-bezier(0.11, 0, 0.5, 0) forwards; - } -} - -.ActionList-item[aria-checked=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect, -.ActionList-item[aria-selected=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect { - fill: var(--fgColor-accent, var(--color-accent-fg)); - stroke: var(--fgColor-accent, var(--color-accent-fg)); - stroke-width: 1px; -} - -.ActionList-item[aria-checked=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectCheckmark, -.ActionList-item[aria-selected=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectCheckmark { - fill: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.ActionList-item[aria-checked=false] .ActionList-item-multiSelectCheckmark, -.ActionList-item[aria-selected=false] .ActionList-item-multiSelectCheckmark { - visibility: hidden; - opacity: 0; - transition: visibility 0 linear 50ms,opacity 50ms; -} - -.ActionList-item[aria-checked=false] .ActionList-item-singleSelectCheckmark, -.ActionList-item[aria-selected=false] .ActionList-item-singleSelectCheckmark { - visibility: hidden; - transition: visibility 0s linear 200ms; - clip-path: inset(16px 0 0 0); -} - -@media screen and (prefers-reduced-motion: no-preference) { - .ActionList-item[aria-checked=false] .ActionList-item-singleSelectCheckmark, - .ActionList-item[aria-selected=false] .ActionList-item-singleSelectCheckmark { - animation: checkmarkOut 200ms cubic-bezier(0.11, 0, 0.5, 0) forwards; - } -} - -.ActionList-item[aria-checked=false] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect, -.ActionList-item[aria-selected=false] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect { - fill: var(--bgColor-default, var(--color-canvas-default)); - stroke: var(--borderColor-default, var(--color-border-default)); - stroke-width: 1px; -} - -.ActionList-item[aria-checked=false] .ActionList-item-multiSelectIconRect, -.ActionList-item[aria-selected=false] .ActionList-item-multiSelectIconRect { - fill: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -@keyframes checkmarkIn { - from { - clip-path: inset(16px 0 0 0); - } - - to { - clip-path: inset(0 0 0 0); - } -} - -@keyframes checkmarkOut { - from { - clip-path: inset(0 0 0 0); - } - - to { - clip-path: inset(16px 0 0 0); - } -} - -.ActionList-item[aria-disabled=true] .ActionList-content .ActionList-item-label, -.ActionList-item[aria-disabled=true] .ActionList-content .ActionList-item-description { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.ActionList-item[aria-disabled=true] .ActionList-content .ActionList-item-visual { - fill: var(--fgColor-disabled, var(--color-primer-fg-disabled)); -} - -@media (hover: hover) { - .ActionList-item[aria-disabled=true]:hover { - cursor: not-allowed; - background-color: transparent; - } -} - -.ActionList-item.ActionList-item--danger .ActionList-item-label { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.ActionList-item.ActionList-item--danger .ActionList-item-visual { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -@media (hover: hover) { - .ActionList-item.ActionList-item--danger:hover { - background: var(--control-danger-bgColor-hover, var(--color-action-list-item-danger-hover-bg)); - } - - .ActionList-item.ActionList-item--danger:hover .ActionList-item-label { - color: var(--control-danger-fgColor-hover, var(--color-action-list-item-danger-hover-text)); - } -} - -.ActionList-item.ActionList-item--danger .ActionList-content:active { - background: var(--control-danger-bgColor-active, var(--color-action-list-item-danger-active-bg)); -} - -.ActionList-item .ActionList { - padding: unset; -} - -.ActionList-content { - position: relative; - display: grid; - width: 100%; - padding: 6px 8px; - font-size: 14px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-default, var(--color-fg-default)); - text-align: left; - -webkit-user-select: none; - user-select: none; - background-color: transparent; - border: none; - border-radius: 6px; - transition: background 33.333ms linear; - touch-action: manipulation; - touch-action: manipulation; - -webkit-tap-highlight-color: transparent; - grid-template-rows: min-content; - grid-template-areas: "leadingAction leadingVisual label trailingVisual trailingAction"; - grid-template-columns: min-content min-content minmax(0, auto) min-content min-content; - align-items: start; -} - -.ActionList-content > :not(:last-child) { - margin-right: 8px; -} - -.ActionList-content:hover { - text-decoration: none; -} - -.ActionList-content:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.ActionList-content:focus:not(:focus-visible) { - outline: solid 1px transparent; -} - -.ActionList-content:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.ActionList-content[aria-disabled=true] .ActionList-item-label, -.ActionList-content[aria-disabled=true] .ActionList-item-description { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); -} - -.ActionList-content[aria-disabled=true] .ActionList-item-visual { - fill: var(--fgColor-disabled, var(--color-primer-fg-disabled)); -} - -@media (hover: hover) { - .ActionList-content[aria-disabled=true]:hover { - cursor: not-allowed; - background-color: transparent; - } -} - -@media screen and (prefers-reduced-motion: no-preference) { - .ActionList-content[aria-expanded] + .ActionList--subGroup { - transition: opacity 160ms cubic-bezier(0.25, 1, 0.5, 1),transform 160ms cubic-bezier(0.25, 1, 0.5, 1); - } -} - -.ActionList-content[aria-expanded] + .ActionList--subGroup .ActionList-content { - padding-left: 24px; -} - -.ActionList-content[aria-expanded].ActionList-content--visual16 + .ActionList--subGroup .ActionList-content { - padding-left: 32px; -} - -.ActionList-content[aria-expanded].ActionList-content--visual20 + .ActionList--subGroup .ActionList-content { - padding-left: 36px; -} - -.ActionList-content[aria-expanded].ActionList-content--visual24 + .ActionList--subGroup .ActionList-content { - padding-left: 40px; -} - -.ActionList-content[aria-expanded=true] .ActionList-item-collapseIcon { - transition: transform 120ms linear; - transform: scaleY(-1); -} - -.ActionList-content[aria-expanded=true] + .ActionList--subGroup { - height: auto; - overflow: visible; - visibility: visible; - opacity: 1; - transform: translateY(0); -} - -.ActionList-content[aria-expanded=true].ActionList-content--hasActiveSubItem > .ActionList-item-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionList-content[aria-expanded=false] .ActionList-item-collapseIcon { - transition: transform 120ms linear; - transform: scaleY(1); -} - -.ActionList-content[aria-expanded=false] + .ActionList--subGroup { - height: 0; - overflow: hidden; - visibility: hidden; - opacity: 0; - transform: translateY(-16px); -} - -.ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem { - background: var(--control-transparent-bgColor-selected, var(--color-action-list-item-default-selected-bg)); -} - -.ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem .ActionList-item-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem::before, -.ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem + .ActionList-item::before { - visibility: hidden; -} - -.ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem::after { - position: absolute; - top: calc(50% - 12px); - left: -8px; - width: 4px; - height: 24px; - content: ""; - background: var(--bgColor-accent-emphasis, var(--color-accent-fg)); - border-radius: 6px; -} - -.ActionList-content.ActionList-content--sizeMedium { - padding: 10px 8px; -} - -.ActionList-content.ActionList-content--sizeLarge { - padding: 14px 8px; -} - -.ActionList-content.ActionList-content--fontSmall { - font-size: 12px; -} - -@media (pointer: coarse) { - .ActionList-content { - padding: 14px 8px; - } -} - -.ActionList-content.ActionList-content--blockDescription .ActionList-item-visual { - place-self: start; -} - -.ActionList-item-action--leading { - grid-area: leadingAction; -} - -.ActionList-item-visual--leading { - grid-area: leadingVisual; -} - -.ActionList-item-label { - grid-area: label; -} - -.ActionList-item-visual--trailing { - grid-area: trailingVisual; -} - -.ActionList-item-action--trailing { - grid-area: trailingAction; -} - -.ActionList-item-descriptionWrap { - grid-area: label; - display: flex; - flex-direction: column; -} - -.ActionList-item-descriptionWrap .ActionList-item-description { - margin-top: 4px; -} - -.ActionList-item-descriptionWrap .ActionList-item-label { - font-weight: var(--base-text-weight-semibold, 600); -} - -.ActionList-item-descriptionWrap--inline { - position: relative; - flex-direction: row; - align-items: baseline; -} - -.ActionList-item-descriptionWrap--inline .ActionList-item-description { - margin-left: 8px; -} - -.ActionList-item-description { - font-size: 12px; - font-weight: var(--base-text-weight-normal, 400); - line-height: 1.5; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.ActionList-item-visual, -.ActionList-item-action { - display: flex; - min-height: 20px; - color: var(--fgColor-muted, var(--color-fg-muted)); - pointer-events: none; - fill: var(--fgColor-muted, var(--color-fg-muted)); - align-items: center; -} - -.ActionList-item-label { - position: relative; - font-weight: var(--base-text-weight-normal, 400); - line-height: 20px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.ActionList-item-label--truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.ActionList-item--subItem > .ActionList-content { - font-size: 12px; -} - -.ActionList-sectionDivider:not(:empty) { - display: flex; - padding: 6px 8px; - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); - flex-direction: column; -} - -.ActionList-sectionDivider:empty { - display: block; - height: 1px; - padding: 0; - margin: 7px -8px 8px; - list-style: none; - background: var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - border: 0; -} - -.ActionList-sectionDivider .ActionList-sectionDivider-title { - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.ActionList-sectionDivider--filled { - margin: 8px -8px; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top: 1px solid var(--borderColor-muted, var(--color-action-list-item-inline-divider)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-action-list-item-inline-divider)); -} - -.ActionList-sectionDivider--filled:empty { - height: 8px; - box-sizing: border-box; -} - -.ActionList-sectionDivider--filled:first-child { - margin-top: 0; -} - -.boxed-group { - position: relative; - margin-bottom: 30px; - border-radius: 6px; -} - -.boxed-group .Counter { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); -} - -.boxed-group.flush .boxed-group-inner { - padding: 0; -} - -.boxed-group.condensed .boxed-group-inner { - padding: 0; - font-size: 12px; -} - -.boxed-group > h3, -.boxed-group .heading { - display: block; - padding: 9px 10px 10px; - margin: 0; - font-size: 14px; - line-height: 17px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-bottom: 0; - border-radius: 6px 6px 0 0; -} - -.boxed-group > h3 a, -.boxed-group .heading a { - color: inherit; -} - -.boxed-group > h3 a.boxed-group-breadcrumb, -.boxed-group .heading a.boxed-group-breadcrumb { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: none; -} - -.boxed-group > h3 .avatar, -.boxed-group .heading .avatar { - margin-top: -4px; -} - -.boxed-group .tabnav.heading { - padding: 0; -} - -.boxed-group .tabnav.heading .tabnav-tab.selected { - border-top: 0; -} - -.boxed-group .tabnav.heading li:first-child .selected { - border-left-color: var(--bgColor-default, var(--color-canvas-default)); - border-top-left-radius: 6px; -} - -.boxed-group .tabnav-tab { - border-top: 0; - border-radius: 0; -} - -.boxed-group code.heading { - font-size: 12px; -} - -.boxed-group.dangerzone > h3 { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); - border: 1px solid var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.boxed-group.dangerzone .boxed-group-inner { - border-top: 0; -} - -.boxed-group.condensed > h3 { - padding: 6px 6px 7px; - font-size: 12px; -} - -.boxed-group.condensed > h3 .octicon { - padding: 0 6px 0 2px; -} - -.dashboard-sidebar .boxed-group { - margin-bottom: 20px; -} - -.boxed-group .bleed-flush { - width: 100%; - padding: 0 10px; - margin-left: -10px; -} - -.boxed-group .compact { - margin-top: 10px; - margin-bottom: 10px; -} - -.boxed-group-inner { - padding: 10px; - color: var(--fgColor-muted, var(--color-fg-muted)); - background: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.boxed-group-inner .markdown-body { - padding: 20px 10px 10px; - font-size: 13px; -} - -.boxed-group-inner.markdown-body { - padding-top: 10px; - padding-bottom: 10px; -} - -.boxed-group-inner.seamless { - padding: 0; -} - -.boxed-group-inner .tabnav { - padding-right: 10px; - padding-left: 10px; - margin-right: -10px; - margin-left: -10px; -} - -.boxed-group-inner .tabnav-tab.selected { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.boxed-action { - float: right; - margin-left: 10px; -} - -.boxed-action .boxed-action { - float: none; - margin-left: 0; -} - -.boxed-group-action { - position: relative; - z-index: 2; - float: right; - margin: 5px 10px 0 0; -} - -.boxed-group-action.flush { - margin-top: 0; - margin-right: 0; -} - -.field-with-errors { - display: inline; -} - -.boxed-group-list { - margin: 0; - list-style: none; -} - -.boxed-group-list:first-child > li:first-child { - border-top: 0; -} - -.boxed-group-list > li { - display: block; - padding: 5px 10px; - margin-right: -10px; - margin-left: -10px; - line-height: 23px; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.boxed-group-list > li:first-child { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.boxed-group-list > li:last-of-type { - border-bottom: 0; -} - -.boxed-group-list > li.selected { - background: var(--bgColor-success-muted, var(--color-success-subtle)); -} - -.boxed-group-list > li.approved .btn-sm, -.boxed-group-list > li.rejected .btn-sm { - display: none; -} - -.boxed-group-list > li.rejected a { - text-decoration: line-through; -} - -.boxed-group-list > li .avatar { - margin-top: -2px; - margin-right: 4px; -} - -.boxed-group-list > li .octicon { - width: 24px; - margin-right: 4px; -} - -.boxed-group-list > li .btn-sm { - float: right; - margin: -1px 0 0 10px; -} - -.boxed-group-list > li .BtnGroup { - float: right; -} - -.boxed-group-list > li .BtnGroup .btn-sm { - float: left; -} - -.boxed-group.flush .boxed-group-list li { - width: auto; - padding-right: 0; - padding-left: 0; - margin-left: 0; -} - -.boxed-group-list.standalone { - margin-top: -1px; -} - -.boxed-group-list.standalone > li:first-child { - border-top: 0; -} - -.boxed-group-table { - width: 100%; - text-align: left; -} - -.boxed-group-table tr:last-child td { - border-bottom: 0; -} - -.boxed-group-table th { - padding: 9px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.boxed-group-table td { - padding: 9px; - vertical-align: top; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.ajax-error-message { - position: fixed; - top: 0; - left: 50%; - z-index: 9999; - width: 974px; - margin: 0 3px; - margin-left: -487px; - transition: top .5s ease-in-out; -} - -.ajax-error-message > .octicon-alert { - vertical-align: text-top; -} - -.container { - width: 980px; - margin-right: auto; - margin-left: auto; -} - -.container::before { - display: table; - content: ""; -} - -.container::after { - display: table; - clear: both; - content: ""; -} - -.draft.octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.closed.octicon, -.reverted.octicon { - color: var(--fgColor-closed, var(--color-closed-fg)); -} - -.open.octicon { - color: var(--fgColor-open, var(--color-open-fg)); -} - -.closed.octicon.octicon-issue-closed, -.merged.octicon { - color: var(--fgColor-done, var(--color-done-fg)); -} - -.progress-bar { - display: block; - height: 15px; - overflow: hidden; - background-color: var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.progress-bar .progress { - display: block; - height: 100%; - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.reverse-progress-container { - position: relative; - height: 3px; - background-color: var(--borderColor-muted, var(--color-border-muted)); - background-image: linear-gradient(to right, var(--bgColor-success-emphasis, var(--color-success-emphasis)), var(--bgColor-accent-emphasis, var(--color-accent-emphasis)), var(--bgColor-done-emphasis, var(--color-done-emphasis)), var(--bgColor-danger-emphasis, var(--color-danger-emphasis)), var(--bgColor-severe-emphasis, var(--color-severe-emphasis))); - background-size: 100% 3px; -} - -.reverse-progress-bar { - position: absolute; - right: 0; - height: 100%; - background-color: var(--borderColor-muted, var(--color-border-muted)); -} - -.progress-bar-small { - height: 10px; -} - -.select-menu-button::after { - display: inline-block; - width: 0; - height: 0; - vertical-align: -2px; - content: ""; - border: 4px solid; - border-right-color: transparent; - border-bottom-color: transparent; - border-left-color: transparent; -} - -.select-menu-button.icon-only { - padding-left: 7px; -} - -.select-menu-button.primary::after { - border-top-color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.select-menu-button.primary::after:active { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.select-menu-button-large::after { - margin-left: .25em; - border-width: .33em; -} - -.select-menu .spinner { - float: left; - margin: 4px 0 0 -24px; -} - -.select-menu.active .select-menu-modal-holder { - display: block; -} - -.select-menu.select-menu-modal-right { - position: relative; -} - -.select-menu.select-menu-modal-right .select-menu-modal-holder { - right: 0; -} - -.select-menu .select-menu-clear-item { - display: block; -} - -.select-menu .select-menu-clear-item .octicon { - color: inherit; -} - -.select-menu .select-menu-clear-item + .select-menu-no-results { - display: none; -} - -.select-menu.is-loading .select-menu-loading-overlay { - display: block; -} - -.select-menu.is-loading .select-menu-modal { - min-height: 200px; -} - -.select-menu.has-error .select-menu-error { - display: block; -} - -.select-menu-error { - display: none; -} - -.select-menu-loading-overlay { - position: absolute; - top: 0; - z-index: 5; - display: none; - width: 100%; - height: 100%; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border: 1px solid transparent; - border-radius: 5px; -} - -.select-menu-modal-holder { - position: absolute; - z-index: 30; - display: none; -} - -.select-menu-modal { - position: relative; - width: 300px; - margin-top: 4px; - margin-bottom: 20px; - overflow: hidden; - font-size: 12px; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - background-clip: padding-box; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); -} - -.select-menu-header, -.select-menu-divider { - padding: 8px 10px; - line-height: 16px; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.select-menu-header .select-menu-title, -.select-menu-divider { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.select-menu-divider { - margin-top: -1px; - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.select-menu-header .close-button, -.select-menu-header .octicon { - display: block; - float: right; - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: pointer; -} - -.select-menu-header .close-button:hover, -.select-menu-header .octicon:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.select-menu-header:focus { - outline: none; -} - -.select-menu-filters { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.select-menu-text-filter { - padding: 10px 10px 0; -} - -.select-menu-text-filter:first-child:last-child { - padding-bottom: 10px; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.select-menu-text-filter input { - display: block; - width: 100%; - max-width: 100%; - padding: 5px; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.select-menu-text-filter input::placeholder { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.select-menu-tabs { - padding: 10px 10px 0; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.select-menu-tabs ul { - position: relative; - bottom: -1px; -} - -.select-menu-tabs .select-menu-tab { - display: inline-block; -} - -.select-menu-tabs a, -.select-menu-tabs .select-menu-tab-nav { - display: inline-block; - padding: 4px 8px 2px; - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: none; - cursor: pointer; - background: transparent; - border: 1px solid transparent; - border-radius: 6px 6px 0 0; -} - -.select-menu-tabs a:hover, -.select-menu-tabs .select-menu-tab-nav:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.select-menu-tabs a[aria-selected=true], -.select-menu-tabs a.selected, -.select-menu-tabs .select-menu-tab-nav[aria-selected=true], -.select-menu-tabs .select-menu-tab-nav.selected { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border-color: var(--borderColor-muted, var(--color-border-muted)); - border-bottom-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.select-menu-list { - position: relative; - max-height: 400px; - overflow: auto; -} - -.select-menu-list.is-showing-new-item-form .select-menu-new-item-form { - display: block; -} - -.select-menu-list.is-showing-new-item-form .select-menu-no-results, -.select-menu-list.is-showing-new-item-form .select-menu-clear-item { - display: none; -} - -.select-menu-blankslate { - padding: 16px; - text-align: center; -} - -.select-menu-blankslate svg { - display: block; - margin-right: auto; - margin-bottom: 9px; - margin-left: auto; - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-blankslate h3 { - font-size: 14px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.select-menu-blankslate p { - width: 195px; - margin-right: auto; - margin-bottom: 0; - margin-left: auto; -} - -.select-menu-item { - display: block; - padding: 8px 8px 8px 30px; - overflow: hidden; - color: inherit; - cursor: pointer; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.select-menu-item .select-menu-item-text .octicon-x { - display: none; - float: right; - margin: 1px 10px 0 0; - opacity: .6; -} - -.select-menu-item:hover { - text-decoration: none; -} - -.select-menu-item.disabled, -.select-menu-item[disabled], -.select-menu-item[aria-disabled=true], -.select-menu-item.disabled.selected { - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: default; -} - -.select-menu-item.disabled .description, -.select-menu-item[disabled] .description, -.select-menu-item[aria-disabled=true] .description, -.select-menu-item.disabled.selected .description { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-item.disabled.opaque, -.select-menu-item[disabled].opaque, -.select-menu-item[aria-disabled=true].opaque, -.select-menu-item.disabled.selected.opaque { - opacity: .7; -} - -.select-menu-item.disabled .select-menu-item-gravatar, -.select-menu-item[disabled] .select-menu-item-gravatar, -.select-menu-item[aria-disabled=true] .select-menu-item-gravatar, -.select-menu-item.disabled.selected .select-menu-item-gravatar { - opacity: .5; -} - -.select-menu-item .octicon { - vertical-align: middle; -} - -.select-menu-item .octicon-check, -.select-menu-item .octicon-circle-slash, -.select-menu-item input[type=radio]:not(:checked) + .octicon-check, -.select-menu-item input[type=radio]:not(:checked) + .octicon-circle-slash { - visibility: hidden; -} - -.select-menu-item.selected .octicon-circle-slash.select-menu-item-icon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-item .octicon-circle-slash { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-item.excluded { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.select-menu-item input[type=radio] { - display: none; -} - -.select-menu-item:focus { - outline: none; -} - -.select-menu-item:focus .octicon, -.select-menu-item:hover .octicon { - color: inherit; -} - -.select-menu-item:hover, -.select-menu-item:hover.selected, -.select-menu-item:hover.select-menu-action, -.select-menu-item:hover .description-inline, -.select-menu-item:focus, -.select-menu-item:focus.selected, -.select-menu-item:focus.select-menu-action, -.select-menu-item:focus .description-inline, -.select-menu-item.navigation-focus, -.select-menu-item.navigation-focus.selected, -.select-menu-item.navigation-focus.select-menu-action, -.select-menu-item.navigation-focus .description-inline, -.select-menu-item.navigation-focus[aria-checked=true], -.select-menu-item[aria-checked=true]:focus, -.select-menu-item[aria-checked=true]:hover, -.select-menu-item[aria-selected=true]:hover, -.select-menu-item[aria-selected=true]:focus, -.select-menu-item[aria-selected=true].select-menu-action, -.select-menu-item[aria-selected=true] .description-inline { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.select-menu-item:hover > .octicon, -.select-menu-item:hover.selected > .octicon, -.select-menu-item:hover.select-menu-action > .octicon, -.select-menu-item:hover .description-inline > .octicon, -.select-menu-item:focus > .octicon, -.select-menu-item:focus.selected > .octicon, -.select-menu-item:focus.select-menu-action > .octicon, -.select-menu-item:focus .description-inline > .octicon, -.select-menu-item.navigation-focus > .octicon, -.select-menu-item.navigation-focus.selected > .octicon, -.select-menu-item.navigation-focus.select-menu-action > .octicon, -.select-menu-item.navigation-focus .description-inline > .octicon, -.select-menu-item.navigation-focus[aria-checked=true] > .octicon, -.select-menu-item[aria-checked=true]:focus > .octicon, -.select-menu-item[aria-checked=true]:hover > .octicon, -.select-menu-item[aria-selected=true]:hover > .octicon, -.select-menu-item[aria-selected=true]:focus > .octicon, -.select-menu-item[aria-selected=true].select-menu-action > .octicon, -.select-menu-item[aria-selected=true] .description-inline > .octicon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.select-menu-item:hover .description, -.select-menu-item:hover .description-warning, -.select-menu-item:hover.selected .description, -.select-menu-item:hover.selected .description-warning, -.select-menu-item:hover.select-menu-action .description, -.select-menu-item:hover.select-menu-action .description-warning, -.select-menu-item:hover .description-inline .description, -.select-menu-item:hover .description-inline .description-warning, -.select-menu-item:focus .description, -.select-menu-item:focus .description-warning, -.select-menu-item:focus.selected .description, -.select-menu-item:focus.selected .description-warning, -.select-menu-item:focus.select-menu-action .description, -.select-menu-item:focus.select-menu-action .description-warning, -.select-menu-item:focus .description-inline .description, -.select-menu-item:focus .description-inline .description-warning, -.select-menu-item.navigation-focus .description, -.select-menu-item.navigation-focus .description-warning, -.select-menu-item.navigation-focus.selected .description, -.select-menu-item.navigation-focus.selected .description-warning, -.select-menu-item.navigation-focus.select-menu-action .description, -.select-menu-item.navigation-focus.select-menu-action .description-warning, -.select-menu-item.navigation-focus .description-inline .description, -.select-menu-item.navigation-focus .description-inline .description-warning, -.select-menu-item.navigation-focus[aria-checked=true] .description, -.select-menu-item.navigation-focus[aria-checked=true] .description-warning, -.select-menu-item[aria-checked=true]:focus .description, -.select-menu-item[aria-checked=true]:focus .description-warning, -.select-menu-item[aria-checked=true]:hover .description, -.select-menu-item[aria-checked=true]:hover .description-warning, -.select-menu-item[aria-selected=true]:hover .description, -.select-menu-item[aria-selected=true]:hover .description-warning, -.select-menu-item[aria-selected=true]:focus .description, -.select-menu-item[aria-selected=true]:focus .description-warning, -.select-menu-item[aria-selected=true].select-menu-action .description, -.select-menu-item[aria-selected=true].select-menu-action .description-warning, -.select-menu-item[aria-selected=true] .description-inline .description, -.select-menu-item[aria-selected=true] .description-inline .description-warning { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.select-menu-item:hover.disabled, -.select-menu-item[disabled]:hover, -.select-menu-item[aria-disabled=true]:hover, -.select-menu-item[aria-selected=true].disabled, -.select-menu-item.navigation-focus.disabled { - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.select-menu-item:hover.disabled .description, -.select-menu-item[disabled]:hover .description, -.select-menu-item[aria-disabled=true]:hover .description, -.select-menu-item[aria-selected=true].disabled .description, -.select-menu-item.navigation-focus.disabled .description { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-item > .octicon-dash { - display: none; -} - -.select-menu-item[aria-checked=mixed] > .octicon-check { - display: none; -} - -.select-menu-item[aria-checked=mixed] > .octicon-dash { - display: block; -} - -.select-menu-item input:checked + .octicon-check { - color: inherit; - visibility: visible; -} - -details-menu .select-menu-item[aria-checked=true], -details-menu .select-menu-item[aria-selected=true], -.select-menu-item.selected { - color: var(--fgColor-default, var(--color-fg-default)); -} - -details-menu .select-menu-item[aria-checked=true] .description, -details-menu .select-menu-item[aria-selected=true] .description, -.select-menu-item.selected .description { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -details-menu .select-menu-item[aria-checked=true] > .octicon, -details-menu .select-menu-item[aria-selected=true] > .octicon, -.select-menu-item.selected > .octicon { - color: var(--fgColor-default, var(--color-fg-default)); -} - -details-menu .select-menu-item[aria-checked=true] .octicon-check, -details-menu .select-menu-item[aria-checked=true] .octicon-circle-slash, -details-menu .select-menu-item[aria-selected=true] .octicon-check, -details-menu .select-menu-item[aria-selected=true] .octicon-circle-slash, -.select-menu-item.selected .octicon-check, -.select-menu-item.selected .octicon-circle-slash { - color: inherit; - visibility: visible; -} - -details-menu .select-menu-item[aria-checked=true] .select-menu-item-text .octicon-x, -details-menu .select-menu-item[aria-selected=true] .select-menu-item-text .octicon-x, -.select-menu-item.selected .select-menu-item-text .octicon-x { - display: block; - color: inherit; -} - -.select-menu.label-select-menu .select-menu-item:active { - background-color: transparent; -} - -.select-menu-item:hover .Label, -.select-menu-item:focus .Label { - color: inherit; - border-color: currentColor; -} - -.select-menu-item a { - color: inherit; - text-decoration: none; -} - -.select-menu-item .hidden-select-button-text { - display: none; -} - -.select-menu-item .css-truncate-target { - max-width: 100%; -} - -.select-menu-item-icon { - float: left; - margin-left: -20px; -} - -form.select-menu-item > div:first-child { - display: none; -} - -.select-menu-list:last-child .select-menu-item:last-child, -.select-menu-item.last-visible { - border-bottom: 0; - border-radius: 0 0 6px 6px; -} - -.select-menu-action { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.select-menu-action > .octicon { - color: inherit; -} - -.select-menu-action:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.select-menu-no-results { - display: none; - padding: 9px; - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: auto; -} - -.select-menu-list.filterable-empty .select-menu-no-results, -.select-menu-no-results:only-child { - display: block; -} - -.select-menu-button-gravatar, -.select-menu-item-gravatar { - width: 20px; - overflow: hidden; - line-height: 0; -} - -.select-menu-button-gravatar img, -.select-menu-item-gravatar img { - display: inline-block; - width: 20px; - height: 20px; - border-radius: 6px; -} - -.select-menu-item-gravatar { - float: left; - width: 20px; - height: 20px; - margin-right: 8px; - border-radius: 6px; -} - -.select-menu-button-gravatar { - float: left; - margin-right: 5px; -} - -.select-menu-item-text { - display: block; - text-align: left; -} - -.select-menu-item-text .description { - display: block; - max-width: 265px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-item-text .description-inline { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.select-menu-item-text .description-warning { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.select-menu-item-text mark { - font-weight: var(--base-text-weight-semibold, 600); - color: inherit; - background-color: inherit; -} - -.select-menu-item-heading { - display: block; - margin-top: 0; - margin-bottom: 0; - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); -} - -.select-menu-item-heading .description { - display: inline; - font-weight: var(--base-text-weight-normal, 400); -} - -.select-menu-new-item-form { - display: none; -} - -.select-menu-new-item-form .octicon { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.table-list { - display: table; - width: 100%; - color: var(--fgColor-muted, var(--color-fg-muted)); - table-layout: fixed; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.table-list ol { - list-style-type: decimal; -} - -.table-list-bordered { - border-bottom-color: var(--borderColor-default, var(--color-border-default)); -} - -.table-list-bordered .table-list-cell:first-child { - border-left: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.table-list-bordered .table-list-cell:last-child { - border-right: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.table-list-item { - position: relative; - display: table-row; - list-style: none; -} - -.table-list-item.unread .table-list-cell:first-child { - box-shadow: 2px 0 0 var(--borderColor-accent-emphasis, var(--color-accent-emphasis)) inset; -} - -.table-list-cell { - position: relative; - display: table-cell; - padding: 8px 10px; - font-size: 12px; - vertical-align: top; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.table-list-cell.flush-left { - padding-left: 0; -} - -.table-list-cell.flush-right { - padding-right: 0; -} - -.table-list-header { - position: relative; - margin-top: 20px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px 6px 0 0; -} - -.table-list-header::before { - display: table; - content: ""; -} - -.table-list-header::after { - display: table; - clear: both; - content: ""; -} - -.table-list-header .btn-link { - position: relative; - display: inline-block; - padding-top: 13px; - padding-bottom: 13px; - font-weight: var(--base-text-weight-normal, 400); -} - -.table-list-heading { - margin-left: 10px; -} - -.table-list-header-meta { - display: inline-block; - padding-top: 13px; - padding-bottom: 13px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.table-list-header-toggle h4 { - padding: 12px 0; -} - -.table-list-filters:first-child .table-list-header-toggle:first-child { - padding-left: 16px; -} - -.table-list-header-toggle.states .selected { - font-weight: var(--base-text-weight-semibold, 600); -} - -.table-list-header-toggle .btn-link { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.table-list-header-toggle .btn-link .octicon { - margin-right: 4px; -} - -.table-list-header-toggle .btn-link:hover { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; -} - -.table-list-header-toggle .btn-link.selected, -.table-list-header-toggle .btn-link.selected:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.table-list-header-toggle .btn-link + .btn-link { - margin-left: 10px; -} - -.table-list-header-toggle .btn-link:disabled, -.table-list-header-toggle .btn-link.disabled { - pointer-events: none; - opacity: .5; -} - -.table-list-header-toggle .select-menu { - position: relative; -} - -.table-list-header-toggle .select-menu-item[aria-checked=true], -.table-list-header-toggle .select-menu-item.selected { - font-weight: var(--base-text-weight-semibold, 600); -} - -.table-list-header-toggle .select-menu-button { - padding-right: 15px; - padding-left: 15px; -} - -.table-list-header-toggle .select-menu-button:hover, -.table-list-header-toggle .select-menu-button.selected, -.table-list-header-toggle .select-menu-button.selected:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.table-list-header-toggle .select-menu-modal-holder { - right: 10px; -} - -.table-list-header-toggle .select-menu-modal-holder .select-menu-modal { - margin-top: -1px; -} - -.table-list-header-next { - margin-top: 20px; - margin-bottom: -1px; -} - -.table-list-header-next .table-list-header-select-all { - padding-left: 14px; -} - -.table-list-header-next .select-all-dropdown { - padding-top: 10px; - padding-bottom: 10px; -} - -.table-list-triage { - display: none; -} - -.triage-mode .table-list-filters { - display: none; -} - -.triage-mode .table-list-triage { - display: block; -} - -.breadcrumb { - font-size: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.breadcrumb .separator { - white-space: pre-wrap; -} - -.breadcrumb .separator::before, -.breadcrumb .separator::after { - content: " "; -} - -.breadcrumb strong.final-path { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.capped-cards { - list-style: none; -} - -.capped-card-content { - display: block; - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.capped-card-content::before { - display: table; - content: ""; -} - -.capped-card-content::after { - display: table; - clear: both; - content: ""; -} - -.details-collapse .collapse { - position: relative; - display: none; - height: 0; - overflow: hidden; - transition: height .35s ease-in-out; -} - -.details-collapse.open .collapse { - display: block; - height: auto; - overflow: visible; -} - -.collapsible-sidebar-widget-button { - display: flex; - padding: 0; - align-items: center; - background-color: transparent; - border: 0; - justify-content: space-between; -} - -.collapsible-sidebar-widget-indicator { - transition: transform .25s; - transform: translate(0, 0) translate3d(0, 0, 0); -} - -.collapsible-sidebar-widget-loader { - display: none; - visibility: hidden; - opacity: 0; - transition: opacity .25s; - animation-play-state: paused; -} - -.collapsible-sidebar-widget-content { - width: 100%; - max-height: 0; - overflow: hidden; - opacity: 0; - transition: max-height .25s ease-in-out,opacity .25s ease-in-out; -} - -.collapsible-sidebar-widget-loading .collapsible-sidebar-widget-indicator { - display: none; -} - -.collapsible-sidebar-widget-loading .collapsible-sidebar-widget-loader { - display: block; - visibility: visible; - opacity: 1; - animation-play-state: running; -} - -.collapsible-sidebar-widget-active .collapsible-sidebar-widget-content { - max-height: 100%; - overflow: visible; - opacity: 1; -} - -.collapsible-sidebar-widget-active .collapsible-sidebar-widget-indicator { - display: block; - transform: rotate(180deg); -} - -.collapsible-sidebar-widget-active .collapsible-sidebar-widget-loader { - display: none; - visibility: hidden; - opacity: 0; -} - -.collapsible-sidebar-widget-active .collapsible-sidebar-widget-active-hidden { - display: none; - opacity: 0; -} - -.comment .email-format { - line-height: 1.5; -} - -.previewable-edit .previewable-comment-form { - display: none; -} - -.previewable-edit .previewable-comment-form::before { - display: table; - content: ""; -} - -.previewable-edit .previewable-comment-form::after { - display: table; - clear: both; - content: ""; -} - -.previewable-edit .previewable-comment-form .tabnav-tabs { - display: inline-block; -} - -.previewable-edit .previewable-comment-form .form-actions { - float: right; - margin-right: 8px; - margin-bottom: 8px; -} - -.previewable-edit.is-comment-editing .timeline-comment-header:not(.new-comment-box-header) { - display: none; -} - -.is-comment-editing .previewable-comment-form { - display: block; -} - -.is-comment-editing .timeline-comment-actions, -.is-comment-editing .edit-comment-hide { - display: none; -} - -.is-comment-loading .previewable-comment-form { - opacity: .5; -} - -.comment-show-stale { - display: none; -} - -.is-comment-stale .comment-show-stale { - display: block; -} - -.comment-body { - width: 100%; - padding: 16px; - overflow: visible; - font-size: 14px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.comment-body .highlight { - overflow: visible; - background-color: transparent; -} - -.comment-form-textarea { - width: 100%; - max-width: 100%; - height: 100px; - min-height: 100px; - margin: 0; - line-height: 1.6; -} - -.comment-form-textarea.dragover { - border: solid 1px var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.hide-reaction-suggestion:hover::before, -.hide-reaction-suggestion:hover::after, -.hide-reaction-suggestion:active::before, -.hide-reaction-suggestion:active::after { - display: none; -} - -.reaction-suggestion[data-reaction-suggestion-message]:hover::before, -.reaction-suggestion[data-reaction-suggestion-message]:hover::after { - display: inline-block; -} - -.reaction-suggestion[data-reaction-suggestion-message]::before, -.reaction-suggestion[data-reaction-suggestion-message]::after { - display: inline-block; - text-decoration: none; - animation-name: tooltip-appear; - animation-duration: .1s; - animation-fill-mode: forwards; - animation-timing-function: ease-in; - animation-delay: 0s; -} - -.reaction-suggestion[data-reaction-suggestion-message]::after { - content: attr(data-reaction-suggestion-message); -} - -.discussion-topic-header { - position: relative; - padding: 8px; - word-wrap: break-word; -} - -.comment-form-error { - padding: 16px 8px; - margin: 8px; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-danger-muted, var(--color-danger-subtle)); - border: 1px solid var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); - border-radius: 6px; -} - -.email-format { - line-height: 1.5em; -} - -.email-format div { - white-space: pre-wrap; -} - -.email-format .email-hidden-reply { - display: none; - white-space: pre-wrap; -} - -.email-format .email-hidden-reply.expanded { - display: block; -} - -.email-format .email-quoted-reply, -.email-format .email-signature-reply { - padding: 0 16px; - margin: 16px 0; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-left: 4px solid var(--borderColor-default, var(--color-border-default)); -} - -.email-format .email-hidden-toggle a { - display: inline-block; - height: 12px; - padding: 0 8px; - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 6px; - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - vertical-align: middle; - background: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - border-radius: 1px; -} - -.email-format .email-hidden-toggle a:hover { - background-color: var(--bgColor-accent-muted, var(--color-accent-muted)); -} - -.email-format .email-hidden-toggle a:active { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.comment-email-format div { - white-space: normal; -} - -.comment-email-format .email-hidden-reply { - display: none; - white-space: normal; -} - -.comment-email-format .email-hidden-reply.expanded { - display: block; -} - -.comment-email-format blockquote, -.comment-email-format p { - margin: 0; -} - -.locked-conversation .write-tab, -.locked-conversation .preview-tab { - color: #c6cbd1; -} - -.write-tab:focus, -.preview-tab:focus { - outline-offset: -6px; -} - -.manual-file-chooser-transparent { - min-height: 0; - overflow: hidden; - opacity: .01; -} - -.manual-file-chooser-transparent::-webkit-file-upload-button { - cursor: pointer; -} - -.manual-file-chooser-transparent:focus { - opacity: 1; -} - -.rich-diff clipboard-copy { - display: none; -} - -.css-overflow-wrap-anywhere { - overflow-wrap: anywhere; -} - -.commit-form { - position: relative; - padding: 16px; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.commit-form::after, -.commit-form::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.commit-form::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.commit-form::before { - background-color: var(--color-border-default); -} - -.commit-form .input-block { - margin-top: 8px; - margin-bottom: 8px; -} - -.commit-form-avatar { - float: left; - margin-left: -64px; - border-radius: 6px; -} - -.commit-form-actions::before { - display: table; - content: ""; -} - -.commit-form-actions::after { - display: table; - clear: both; - content: ""; -} - -.commit-form-actions .BtnGroup { - margin-right: 4px; -} - -.merge-commit-message { - resize: vertical; -} - -@media (max-width: 768px) { - .commit-form::after, - .commit-form::before { - display: none; - } -} - -.commit-sha { - padding: .2em .4em; - font-size: 90%; - font-weight: var(--base-text-weight-normal, 400); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: .2em; -} - -.commit .commit-title, -.commit .commit-title a { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.commit .commit-title.blank, -.commit .commit-title.blank a { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.commit .commit-title .issue-link { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.commit .sha-block, -.commit .sha { - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 12px; -} - -.commit.open .commit-desc { - display: block; -} - -.commit-link { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.commit-ref { - position: relative; - display: inline-block; - padding: 0 4px; - font: .85em/1.8 ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - color: var(--fgColor-muted, var(--color-fg-muted)); - white-space: nowrap; - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: 6px; -} - -.commit-ref .user { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -a.commit-ref:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.commit-desc { - display: none; -} - -.commit-desc pre { - max-width: 700px; - margin-top: 8px; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 11px; - line-height: 1.45; - color: var(--fgColor-default, var(--color-fg-default)); - white-space: pre-wrap; -} - -.commit-desc + .commit-branches { - padding-top: 8px; - margin-top: 2px; - border-top: solid 1px var(--borderColor-muted, var(--color-border-subtle)); -} - -.commit-author-section { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.commit-author-section span.user-mention { - font-weight: var(--base-text-weight-normal, 400); -} - -.commit-tease-sha { - display: inline-block; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 90%; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.commits-list-item[aria-selected=true], -.commits-list-item.navigation-focus { - background: #f6fbff; -} - -.commits-list-item .commit-title { - margin: 0; - font-size: 16px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.commits-list-item .commit-meta { - margin-top: 1px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.commits-list-item .status .octicon { - height: 14px; - line-height: 14px; -} - -.commits-list-item .commit-author { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.commits-list-item .octicon-arrow-right { - margin: 0 4px; -} - -.commits-list-item .commit-desc pre { - margin-top: 4px; - margin-bottom: 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.commits-list-item .commit-desc pre a { - word-break: break-word; -} - -.commit-indicator { - margin-left: 4px; -} - -.commit-links-group { - margin-right: 4px; -} - -.commits-list-item + .commits-list-item { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.full-commit { - padding: 8px 8px 0; - margin: 8px 0; - font-size: 14px; - background: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.full-commit:first-child { - margin-top: 0; -} - -.full-commit div.commit-title { - font-size: 16px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.full-commit .branches-list { - display: inline; - margin-right: 8px; - margin-left: 2px; - vertical-align: middle; - list-style: none; -} - -.full-commit .branches-list li { - display: inline-block; - padding-left: 4px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.full-commit .branches-list li::before { - padding-right: 4px; - font-weight: var(--base-text-weight-normal, 400); - content: "+"; -} - -.full-commit .branches-list li:first-child { - padding-left: 0; -} - -.full-commit .branches-list li:first-child::before { - padding-right: 0; - content: ""; -} - -.full-commit .branches-list li.loading { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.full-commit .branches-list li.pull-request { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.full-commit .branches-list li.pull-request::before { - margin-left: -8px; - content: ""; -} - -.full-commit .branches-list li.pull-request-error { - margin-bottom: -1px; -} - -.full-commit .branches-list li a { - color: inherit; -} - -.full-commit .commit-meta { - padding: 8px; - margin-right: -8px; - margin-left: -8px; - background: var(--bgColor-default, var(--color-canvas-default)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.full-commit .sha-block { - margin-left: 16px; - font-size: 12px; - line-height: 24px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.full-commit .sha-block > .sha { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.full-commit .sha-block > a { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - border-bottom: 1px dotted var(--borderColor-muted, var(--color-border-muted)); -} - -.full-commit .sha-block > a:hover { - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.full-commit .commit-desc { - display: block; - margin: -4px 0 8px; -} - -.full-commit .commit-desc pre { - max-width: 100%; - overflow: visible; - font-size: 13px; - word-wrap: break-word; -} - -.commit-branches { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: middle; -} - -.commit-branches .octicon { - vertical-align: middle; -} - -.commit-build-statuses { - position: relative; - display: inline-block; - text-align: left; -} - -.commit-build-statuses .dropdown-menu { - min-width: 362.6666666667px; - max-width: 544px; - padding-top: 0; - padding-bottom: 0; -} - -.commit-build-statuses .dropdown-menu .merge-status-list { - max-height: 170px; - border-bottom: 0; -} - -.commit-build-statuses .dropdown-menu-w, -.commit-build-statuses .dropdown-menu-e { - top: -11px; -} - -.commit-build-statuses .merge-status-item:last-child { - border-radius: 0 0 6px 6px; -} - -.dropdown-signed-commit .dropdown-menu { - width: 260px; - margin-top: 8px; - font-size: 14px; - line-height: 1.4; - white-space: normal; -} - -.dropdown-signed-commit .dropdown-menu::after { - border-bottom-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.dropdown-signed-commit .dropdown-menu-w { - top: -28px; - margin-top: 0; -} - -.dropdown-signed-commit .dropdown-menu-w::after { - border-bottom-color: transparent; - border-left-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.signed-commit-header { - line-height: 1.3; - white-space: normal; - border-collapse: separate; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.signed-commit-header .octicon-verified { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.signed-commit-header .octicon-unverified { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.signed-commit-footer { - font-size: 12px; - line-height: 1.5; -} - -.signed-commit-cert-info { - margin-bottom: 4px; -} - -.signed-commit-cert-info td { - vertical-align: top; -} - -.signed-commit-cert-info td:first-child { - width: 44px; - padding-right: 12px; -} - -.signed-commit-badge { - display: inline-block; - padding: 1px 4px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: middle; - -webkit-user-select: none; - user-select: none; - background: none; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.signed-commit-badge:hover { - text-decoration: none; - border-color: var(--borderColor-neutral-muted, var(--color-neutral-muted)); -} - -.signed-commit-badge.verified { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.signed-commit-badge.verified:hover { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.signed-commit-badge.unverified { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.signed-commit-badge.unverified:hover { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.signed-commit-badge-small { - height: 20px; - margin-top: -2px; - margin-right: 4px; -} - -.signed-commit-badge-medium { - height: 20px; - padding: 4px 8px; - font-size: 12px; - border-radius: 6px; -} - -.signed-commit-badge-large { - height: 24px; - padding: 4px 12px; - margin-right: 8px; - font-size: 14px; - line-height: 20px; - border-radius: 6px; -} - -.signed-commit-signer-name { - font-size: 14px; - text-align: left; -} - -.signed-commit-signer-name .signer { - display: block; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.table-of-contents { - margin: 16px 0; -} - -.table-of-contents li { - padding: 8px 0; - list-style-type: none; -} - -.table-of-contents li + li { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.table-of-contents li > .octicon { - margin-right: 4px; -} - -.table-of-contents .toc-diff-stats { - padding-left: 16px; - line-height: 26px; -} - -.table-of-contents .toc-diff-stats .octicon { - float: left; - margin-top: 4px; - margin-left: -16px; - color: #c6cbd1; -} - -.table-of-contents .toc-diff-stats .btn-link { - font-weight: var(--base-text-weight-semibold, 600); -} - -.table-of-contents .toc-diff-stats + .content { - padding-top: 4px; -} - -.table-of-contents .octicon-diff-removed { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.table-of-contents .octicon-diff-renamed { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.table-of-contents .octicon-diff-modified { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.table-of-contents .octicon-diff-added { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.copyable-terminal { - position: relative; - padding: 8px 55px 8px 8px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-radius: 6px; -} - -.copyable-terminal-content { - overflow: auto; -} - -.copyable-terminal-button { - position: absolute; - top: 5px; - right: 5px; -} - -.copyable-terminal-button .zeroclipboard-button { - float: right; -} - -.copyable-terminal-button .zeroclipboard-button .octicon { - padding-left: 1px; - margin: 0 auto; -} - -.blob-wrapper { - overflow-x: auto; - overflow-y: hidden; -} - -.blob-wrapper table tr:nth-child(2n) { - background-color: transparent; -} - -.page-edit-blob.height-full .CodeMirror { - height: 300px; -} - -.page-edit-blob.height-full .CodeMirror, -.page-edit-blob.height-full .CodeMirror-scroll { - display: flex; - flex-direction: column; - flex: 1 1 auto; -} - -.blob-wrapper-embedded { - max-height: 240px; - overflow-y: auto; -} - -.diff-table { - width: 100%; - border-collapse: separate; -} - -.diff-table .blob-code.blob-code-inner { - padding-left: 22px; -} - -.diff-table .line-comments { - padding: 10px; - vertical-align: top; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.diff-table .line-comments:first-child + .empty-cell { - border-left-width: 1px; -} - -.diff-table tr:not(:last-child) .line-comments { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.diff-view .blob-code-marker-context::before, -.diff-view .blob-code-marker-injected_context::before, -.diff-view .blob-code-marker-addition::before, -.diff-view .blob-code-marker-deletion::before { - top: 4px; -} - -.diff-view .line-alert, -.diff-table .line-alert { - position: absolute; - left: -60px; - margin: 2px; -} - -.comment-body .diff-view .line-alert { - left: 0; -} - -.blob-num { - position: relative; - width: 1%; - min-width: 50px; - padding-right: 10px; - padding-left: 10px; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 12px; - line-height: 20px; - color: var(--fgColor-muted, var(--color-fg-subtle)); - text-align: right; - white-space: nowrap; - vertical-align: top; - cursor: pointer; - -webkit-user-select: none; - user-select: none; -} - -.blob-num:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.blob-num::before { - content: attr(data-line-number); -} - -.blob-num.non-expandable { - cursor: default; -} - -.blob-num.non-expandable:hover { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.blob-num-hidden::before { - visibility: hidden; -} - -.blob-code { - position: relative; - padding-right: 10px; - padding-left: 10px; - line-height: 20px; - vertical-align: top; -} - -.blob-code-inner { - display: table-cell; - overflow: visible; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 12px; - color: var(--fgColor-default, var(--color-fg-default)); - word-wrap: anywhere; - white-space: pre; -} - -.blob-code-inner .x-first { - border-top-left-radius: .2em; - border-bottom-left-radius: .2em; -} - -.blob-code-inner .x-last { - border-top-right-radius: .2em; - border-bottom-right-radius: .2em; -} - -.blob-code-inner.highlighted, -.blob-code-inner .highlighted { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); - box-shadow: inset 2px 0 0 var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.blob-code-inner::selection, -.blob-code-inner *::selection { - background-color: var(--bgColor-accent-muted, var(--color-accent-muted)); -} - -.js-blob-wrapper .blob-code-inner { - white-space: pre-wrap; -} - -.blob-code-inner.blob-code-addition, -.blob-code-inner.blob-code-deletion { - position: relative; - padding-left: 22px; -} - -.blob-code-marker::before { - position: absolute; - top: 1px; - left: 8px; - padding-right: 8px; - content: attr(data-code-marker); -} - -.blob-code-context, -.blob-code-addition, -.blob-code-deletion { - padding-left: 22px; -} - -.blob-code-marker-addition::before { - position: absolute; - top: 1px; - left: 8px; - content: "+ "; -} - -.blob-code-marker-deletion::before { - position: absolute; - top: 1px; - left: 8px; - content: "- "; -} - -.blob-code-marker-context::before { - position: absolute; - top: 1px; - left: 8px; - content: " "; -} - -.blob-code-marker-injected_context::before { - position: absolute; - top: 1px; - left: 8px; - content: " "; -} - -.soft-wrap .diff-table { - table-layout: fixed; -} - -.soft-wrap .blob-code { - padding-left: 18px; - text-indent: 0; -} - -.soft-wrap .blob-code-inner { - white-space: pre-wrap; -} - -.soft-wrap .no-nl-marker { - display: none; -} - -.soft-wrap .add-line-comment { - margin-top: 0; - margin-left: -24px; -} - -.soft-wrap .blob-code-context, -.soft-wrap .blob-code-addition, -.soft-wrap .blob-code-deletion { - padding-left: 22px; - text-indent: 0; -} - -.blob-num-hunk, -.blob-code-hunk, -.blob-num-expandable { - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: middle; -} - -.blob-num-hunk, -.blob-num-expandable { - background-color: var(--diffBlob-hunk-bgColor-num, var(--color-diff-blob-hunk-num-bg)); -} - -.blob-code-hunk { - padding-top: 4px; - padding-bottom: 4px; - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-width: 1px 0; -} - -.blob-expanded .blob-num:not(.blob-num-context-outside-diff), -.blob-expanded .blob-code:not(.blob-code-context) { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.blob-expanded + tr.show-top-border:not(.blob-expanded) .blob-num, -.blob-expanded + tr.show-top-border:not(.blob-expanded) .blob-code { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.blob-expanded tr.show-top-border .blob-num-hunk, -.blob-expanded tr.show-top-border .blob-num { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -tr.show-top-border + .blob-expanded .blob-num, -tr.show-top-border + .blob-expanded .blob-code { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.blob-num-expandable { - width: auto; - padding: 0; - font-size: 12px; - text-align: center; -} - -.blob-num-expandable .directional-expander { - display: block; - width: auto; - height: auto; - margin-right: -1px; - color: var(--diffBlob-expander-iconColor, var(--color-diff-blob-expander-icon)); - cursor: pointer; -} - -.blob-num-expandable .single-expander { - padding-top: 4px; - padding-bottom: 4px; -} - -.blob-num-expandable .directional-expander:hover { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-shadow: none; - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.blob-code-addition { - background-color: var(--diffBlob-addition-bgColor-line, var(--color-diff-blob-addition-line-bg)); - outline: 1px dotted transparent; -} - -.blob-code-addition .x { - color: var(--diffBlob-addition-fgColor-text, var(--color-diff-blob-addition-fg)); - background-color: var(--diffBlob-addition-bgColor-word, var(--color-diff-blob-addition-word-bg)); -} - -.blob-num-addition { - color: var(--diffBlob-addition-fgColor-num, var(--color-diff-blob-addition-num-text)); - background-color: var(--diffBlob-addition-bgColor-num, var(--color-diff-blob-addition-num-bg)); - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.blob-num-addition:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.blob-code-deletion { - background-color: var(--diffBlob-deletion-bgColor-line, var(--color-diff-blob-deletion-line-bg)); - outline: 1px dashed transparent; -} - -.blob-code-deletion .x { - color: var(--diffBlob-deletion-fgColor-text, var(--color-diff-blob-deletion-fg)); - background-color: var(--diffBlob-deletion-bgColor-word, var(--color-diff-blob-deletion-word-bg)); -} - -.blob-num-deletion { - color: var(--diffBlob-deletion-fgColor-num, var(--color-diff-blob-deletion-num-text)); - background-color: var(--diffBlob-deletion-bgColor-num, var(--color-diff-blob-deletion-num-bg)); - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.blob-num-deletion:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.is-selecting { - cursor: ns-resize; -} - -.is-selecting .blob-num { - cursor: ns-resize; -} - -.is-selecting .add-line-comment, -.is-selecting a { - pointer-events: none; - cursor: ns-resize; -} - -.is-selecting .is-hovered .add-line-comment { - opacity: 0; -} - -.is-selecting.file-diff-split { - cursor: nwse-resize; -} - -.is-selecting.file-diff-split .blob-num { - cursor: nwse-resize; -} - -.is-selecting.file-diff-split .empty-cell, -.is-selecting.file-diff-split .add-line-comment, -.is-selecting.file-diff-split a { - pointer-events: none; - cursor: nwse-resize; -} - -.selected-line { - position: relative; -} - -.selected-line::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - box-sizing: border-box; - pointer-events: none; - content: ""; - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); - mix-blend-mode: var(--color-diff-blob-selected-line-highlight-mix-blend-mode); -} - -.selected-line.selected-line-top::after { - border-top: 1px solid var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.selected-line.selected-line-bottom::after { - border-bottom: 1px solid var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.selected-line:first-child::after, -.selected-line.selected-line-left::after { - border-left: 1px solid var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.selected-line:last-child::after, -.selected-line.selected-line-right::after { - border-right: 1px solid var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.is-commenting .selected-line.blob-code::before { - position: absolute; - top: 0; - left: -1px; - display: block; - width: 4px; - height: 100%; - content: ""; - background: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.add-line-comment { - position: relative; - z-index: 1; - float: left; - width: 22px; - height: 22px; - margin: -2px -10px -2px -32px; - line-height: 21px; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-align: center; - text-indent: 0; - cursor: pointer; - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: 6px; - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)); - opacity: 0; - transition: transform .1s ease-in-out; - transform: scale(0.8, 0.8); -} - -.add-line-comment:hover { - transform: scale(1, 1); -} - -.is-hovered .add-line-comment, -.add-line-comment:focus { - opacity: 1; -} - -.add-line-comment .octicon { - vertical-align: text-top; - pointer-events: none; -} - -.add-line-comment.octicon-check { - background: #333; - opacity: 1; -} - -.inline-comment-form { - border: 1px solid #dfe2e5; - border-radius: 6px; -} - -.timeline-inline-comments { - width: 100%; - table-layout: fixed; -} - -.timeline-inline-comments .inline-comments, -.show-inline-notes .inline-comments { - display: table-row; -} - -.inline-comments { - display: none; -} - -.inline-comments .line-comments + .blob-num { - border-left-width: 1px; -} - -.inline-comments .timeline-comment { - margin-bottom: 10px; -} - -.inline-comments .inline-comment-form, -.inline-comments .inline-comment-form-container { - max-width: 780px; -} - -.comment-holder { - max-width: 780px; -} - -.comment-holder + .comment-holder { - margin-top: 16px; -} - -.line-comments + .line-comments, -.empty-cell + .line-comments { - border-left: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.inline-comment-form-container .inline-comment-form-box, -.inline-comment-form-container.open .inline-comment-form-actions { - display: none; -} - -.inline-comment-form-container .inline-comment-form-actions, -.inline-comment-form-container.open .inline-comment-form-box { - display: block; -} - -body.full-width .container, -body.full-width .container-lg:not(.markdown-body), -body.full-width .container-xl { - width: 100%; - max-width: none; - padding-right: 20px; - padding-left: 20px; -} - -body.full-width .repository-content { - width: 100%; -} - -body.full-width .new-pr-form { - max-width: 980px; -} - -.file-diff-split { - table-layout: fixed; -} - -.file-diff-split .blob-code + .blob-num { - border-left: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.file-diff-split .blob-code-inner { - white-space: pre-wrap; -} - -.file-diff-split .empty-cell { - cursor: default; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); - border-right-color: var(--borderColor-muted, var(--color-border-muted)); -} - -@media (max-width: 1280px) { - .file-diff-split .write-selected .comment-form-head.tabnav:not(.CommentBox-header) { - margin-bottom: 80px; - } - - .file-diff-split .tabnav:not(.CommentBox-header) markdown-toolbar { - position: absolute; - top: 47px; - right: 0; - left: 0; - height: 64px; - align-items: center; - } -} - -@media (min-width: 1280px) { - .file-diff-split .write-selected .comment-form-head.tabnav:not(.CommentBox-header) .tabnav-tabs { - align-self: end; - } -} - -.submodule-diff-stats .octicon-diff-removed { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.submodule-diff-stats .octicon-diff-renamed { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.submodule-diff-stats .octicon-diff-modified { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.submodule-diff-stats .octicon-diff-added { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.BlobToolbar { - left: -17px; -} - -.BlobToolbar-dropdown { - margin-left: -2px; -} - -.pl-token:hover, -.pl-token.active { - cursor: pointer; - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.diffstat { - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); - white-space: nowrap; - cursor: default; -} - -.diffstat-block-deleted, -.diffstat-block-added, -.diffstat-block-neutral { - display: inline-block; - width: 8px; - height: 8px; - margin-left: 1px; -} - -.diffstat-block-deleted { - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.diffstat-block-added { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.diffstat-block-neutral { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - outline: 1px solid var(--borderColor-muted, var(--color-border-subtle)); - outline-offset: -1px; -} - -.discussion-timeline { - position: relative; - float: left; -} - -.discussion-timeline::before { - position: absolute; - top: 0; - bottom: 0; - left: 72px; - z-index: 0; - display: block; - width: 2px; - content: ""; - background-color: var(--borderColor-default, var(--color-border-default)); -} - -.discussion-sidebar-item { - padding-top: 16px; - font-size: 12px; -} - -.discussion-sidebar-item .btn .octicon { - margin-right: 0; -} - -.discussion-sidebar-item .muted-icon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.discussion-sidebar-item .muted-icon:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - cursor: pointer; -} - -.discussion-sidebar-item + .discussion-sidebar-item { - margin-top: 16px; - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.discussion-sidebar-item .select-menu { - position: relative; -} - -.discussion-sidebar-item .select-menu-modal-holder { - top: 25px; - right: -1px; - left: auto; -} - -.discussion-sidebar-heading { - margin-bottom: 8px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.discussion-sidebar-toggle { - padding: 4px 0; - margin: -4px 0 4px; -} - -.discussion-sidebar-toggle .octicon { - float: right; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.discussion-sidebar-toggle:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - cursor: pointer; -} - -.discussion-sidebar-toggle:hover .octicon { - color: inherit; -} - -button.discussion-sidebar-toggle { - display: block; - width: 100%; - font-weight: var(--base-text-weight-semibold, 600); - text-align: left; - background: none; - border: 0; -} - -.sidebar-progress-bar .progress-bar { - height: 8px; - margin-bottom: 2px; - border-radius: 6px; -} - -.sidebar-assignee .css-truncate-target { - max-width: 110px; -} - -.sidebar-assignee .assignee { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: middle; -} - -.sidebar-assignee .assignee:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.sidebar-assignee .reviewers-status-icon { - width: 14px; -} - -.sidebar-assignee .octicon { - margin-top: 2px; -} - -.sidebar-notifications { - position: relative; -} - -.sidebar-notifications .thread-subscription-status { - padding: 0; - margin: 0; - border: 0; -} - -.sidebar-notifications .thread-subscription-status .thread-subscribe-form { - display: block; -} - -.sidebar-notifications .thread-subscription-status .reason { - padding: 0; - margin: 4px 0 0; -} - -.participation .participant-avatar { - float: left; - margin: 4px 0 0 4px; -} - -.participation a { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.participation a:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.participation-avatars { - margin-left: -4px; -} - -.participation-avatars::before { - display: table; - content: ""; -} - -.participation-avatars::after { - display: table; - clear: both; - content: ""; -} - -.participation-more { - float: left; - margin: 8px 4px 0; -} - -.inline-comment-form .form-actions, -.timeline-new-comment .form-actions { - padding: 0 8px 8px; -} - -.inline-comment-form::before { - display: table; - content: ""; -} - -.inline-comment-form::after { - display: table; - clear: both; - content: ""; -} - -.inline-comment-form .tabnav-tabs { - display: inline-block; -} - -.inline-comment-form .form-actions { - float: right; -} - -.gh-header-actions { - float: right; - margin-top: 4px; -} - -.gh-header-actions .btn-sm { - float: left; - margin-left: 4px; -} - -.gh-header-actions .btn-sm .octicon { - margin-right: 0; -} - -.gh-header { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.gh-header .gh-header-sticky { - height: 1px; -} - -.gh-header .gh-header-sticky .meta { - font-size: 12px; -} - -.gh-header .gh-header-sticky .sticky-content, -.gh-header .gh-header-sticky .gh-header-shadow { - display: none; -} - -.gh-header .gh-header-sticky.is-stuck { - z-index: 110; - height: 60px; -} - -.gh-header .gh-header-sticky.is-stuck .sticky-content { - display: block; -} - -.gh-header .gh-header-sticky.is-stuck .css-truncate-target { - max-width: 150px; -} - -.gh-header .gh-header-sticky.is-stuck + .gh-header-shadow { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 109; - display: block; - height: 60px; - content: ""; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.gh-header .gh-header-edit { - display: none; -} - -.gh-header .gh-header-meta .base-ref { - display: inline-block; -} - -.gh-header .gh-header-meta .commit-ref-dropdown { - display: none; -} - -.gh-header.open .gh-header-show { - display: none; -} - -.gh-header.open .gh-header-edit { - display: block; -} - -.gh-header.open .gh-header-meta .base-ref { - display: none; -} - -.gh-header.open .gh-header-meta .commit-ref-dropdown { - display: inline-block; - margin-top: -4px; - vertical-align: top; -} - -.gh-header-title { - margin-right: 150px; - margin-bottom: 0; - font-weight: var(--base-text-weight-normal, 400); - line-height: 1.125; - word-wrap: break-word; -} - -.gh-header-no-access .gh-header-title { - margin-right: 0; -} - -.gh-header-number { - font-weight: var(--base-text-weight-light, 300); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.gh-header-meta { - padding-bottom: 8px; - margin-top: 8px; - font-size: 14px; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.gh-header.issue .gh-header-meta { - margin-bottom: 16px; -} - -.gh-header.pull .gh-header-meta { - padding-bottom: 0; - border-bottom: 0; -} - -.gh-header-meta .commit-ref .css-truncate-target, -.gh-header-meta .commit-ref:hover .css-truncate-target { - max-width: 80vw; -} - -.gh-header-meta .State { - margin-right: 8px; -} - -.gh-header-meta .avatar { - float: left; - margin-top: -4px; - margin-right: 4px; -} - -.timeline-comment-wrapper { - position: relative; - padding-left: 56px; - margin-top: 16px; - margin-bottom: 16px; -} - -.timeline-comment-avatar { - float: left; - margin-left: -56px; - border-radius: 6px; -} - -.timeline-comment-avatar .avatar { - width: 40px; - height: 40px; -} - -.timeline-comment-avatar .avatar-child { - width: 20px; - height: 20px; -} - -.timeline-comment { - position: relative; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.timeline-comment.will-transition-once { - transition: border-color .65s ease-in-out; -} - -.timeline-comment.will-transition-once .timeline-comment-header { - transition: background-color .65s ease,border-bottom-color .65s ease-in-out; -} - -.timeline-comment.will-transition-once::before, -.timeline-comment.will-transition-once::after { - transition: border-right-color .65s ease-in-out; -} - -.timeline-comment.current-user { - border-color: var(--color-accent-muted); -} - -.timeline-comment.current-user .timeline-comment-header { - background-color: var(--color-accent-subtle); - border-bottom-color: var(--color-accent-muted); -} - -.timeline-comment.current-user .Label { - border-color: var(--color-accent-muted); -} - -.timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav { - color: var(--color-accent-muted); - background-color: var(--color-accent-subtle); - border-bottom-color: var(--color-accent-muted); -} - -.timeline-comment.unread-item, -.timeline-comment.is-internal { - border-color: var(--color-attention-muted); -} - -.timeline-comment.unread-item .timeline-comment-header, -.timeline-comment.is-internal .timeline-comment-header { - background-color: var(--color-attention-subtle); - border-bottom-color: var(--color-attention-muted); -} - -.timeline-comment.unread-item .Label, -.timeline-comment.is-internal .Label { - border-color: var(--color-attention-muted); -} - -.timeline-comment.unread-item .previewable-comment-form .comment-form-head.tabnav, -.timeline-comment.is-internal .previewable-comment-form .comment-form-head.tabnav { - color: var(--color-attention-muted); - background-color: var(--color-attention-subtle); - border-bottom-color: var(--color-attention-muted); -} - -.timeline-comment:empty { - display: none; -} - -.timeline-comment .comment + .comment { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.timeline-comment .comment + .comment::before, -.timeline-comment .comment + .comment::after { - display: none; -} - -.timeline-comment .comment + .comment .timeline-comment-header { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.timeline-comment--caret::after, -.timeline-comment--caret::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.timeline-comment--caret::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-subtle), var(--color-canvas-subtle)); -} - -.timeline-comment--caret::before { - background-color: var(--color-border-default); -} - -.is-pending .timeline-comment--caret::after, -.is-pending .timeline-comment--caret::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.is-pending .timeline-comment--caret::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-attention-subtle), var(--color-attention-subtle)); -} - -.is-pending .timeline-comment--caret::before { - background-color: var(--color-attention-emphasis); -} - -.timeline-comment--caret.current-user::after, -.timeline-comment--caret.current-user::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.timeline-comment--caret.current-user::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-accent-subtle), var(--color-accent-subtle)); -} - -.timeline-comment--caret.current-user::before { - background-color: var(--color-accent-muted); -} - -.timeline-comment--caret.unread-item::after, -.timeline-comment--caret.unread-item::before, -.timeline-comment--caret.is-internal::after, -.timeline-comment--caret.is-internal::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.timeline-comment--caret.unread-item::after, -.timeline-comment--caret.is-internal::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-attention-subtle), var(--color-attention-subtle)); -} - -.timeline-comment--caret.unread-item::before, -.timeline-comment--caret.is-internal::before { - background-color: var(--color-attention-muted); -} - -.timeline-comment--caret.timeline-comment--caret-nw::before, -.timeline-comment--caret.timeline-comment--caret-nw::after { - transform: rotate(90deg); -} - -.timeline-comment--caret.timeline-comment--caret-nw::before { - top: -12px; - left: 12px; -} - -.timeline-comment--caret.timeline-comment--caret-nw::after { - top: -10px; - left: 11px; -} - -.page-responsive .timeline-comment--caret::before, -.page-responsive .timeline-comment--caret::after { - display: none; -} - -@media (min-width: 768px) { - .page-responsive .timeline-comment--caret::before, - .page-responsive .timeline-comment--caret::after { - display: block; - } -} - -:target .timeline-comment--caret::before { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-fg)); -} - -:target .timeline-comment--caret::after { - margin-left: 2px; -} - -:target .timeline-comment { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-fg)); - outline: none; - box-shadow: 0 0 0 1px var(--color-accent-fg); -} - -.review-comment:target { - border-radius: 6px; - outline: none; - box-shadow: 0 0 0 1px var(--color-accent-fg); -} - -.timeline-comment-header { - display: flex; - align-items: center; - padding-right: 16px; - padding-left: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - flex-direction: row-reverse; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.timeline-comment-header:only-child { - border-bottom: 0; - border-radius: 6px; -} - -.timeline-comment-header .author { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.timeline-comment-header code { - word-break: break-all; -} - -.timeline-comment-header-text { - min-width: 0; - padding-top: 8px; - padding-bottom: 8px; - margin-bottom: 1px; - flex: 1 1 auto; -} - -.timeline-comment-header-text code a { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.timeline-comment-actions { - float: right; - margin-left: 8px; -} - -.timeline-comment-actions .show-more-popover.dropdown-menu-sw { - right: -6px; - margin-top: -4px; -} - -.timeline-comment-action { - display: inline-block; - padding: 8px 4px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.timeline-comment-action:hover, -.timeline-comment-action:focus { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - opacity: 1; -} - -.timeline-comment-action .octicon-check { - height: 16px; -} - -.timeline-comment-action.disabled { - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: default; -} - -.timeline-comment-action.disabled:hover { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.timeline-new-comment { - margin-bottom: 0; -} - -.timeline-new-comment .comment-form-head { - margin-bottom: 8px; -} - -.timeline-new-comment .previewable-comment-form .comment-body { - padding-top: 0; -} - -.comment-form-head .toolbar-commenting { - float: right; -} - -.discussion-item-icon { - float: left; - width: 32px; - height: 32px; - margin-top: -4px; - margin-left: -39px; - line-height: 28px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - background-color: var(--timelineBadge-bgColor, var(--color-timeline-badge-bg)); - border: 2px solid var(--bgColor-default, var(--color-canvas-default)); - border-radius: 50%; -} - -.discussion-item-header { - color: var(--fgColor-muted, var(--color-fg-muted)); - word-wrap: break-word; -} - -.discussion-item-header .discussion-item-private { - vertical-align: -1px; -} - -.discussion-item-header:last-child { - padding-bottom: 0; -} - -.discussion-item-header .commit-ref { - font-size: 85%; - vertical-align: baseline; -} - -.discussion-item-header .btn-outline { - float: right; - padding: 4px 8px; - margin-top: -4px; - margin-left: 8px; -} - -.discussion-item-private { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.previewable-comment-form .comment-form-head.tabnav { - padding: 8px 8px 0; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-radius: 6px 6px 0 0; -} - -.page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting { - background: var(--bgColor-default, var(--color-canvas-default)); -} - -@media (min-width: 1012px) { - .page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting { - background: transparent; - } -} - -@media (min-width: 768px) { - .page-responsive .previewable-comment-form .comment-form-head.tabnav { - background: var(--bgColor-muted, var(--color-canvas-subtle)); - } -} - -.previewable-comment-form .comment-body { - padding-top: 8px; - padding-right: 8px; - padding-bottom: 8px; - padding-left: 8px; - background-color: transparent; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.previewable-comment-form .timeline-comment .timeline-comment-actions { - display: none; -} - -.new-discussion-timeline .composer .timeline-comment { - margin-bottom: 8px; -} - -.new-discussion-timeline .composer .comment-form-head.tabnav { - padding-top: 0; - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.composer.composer-responsive { - padding-left: 0; -} - -.composer.composer-responsive .discussion-topic-header { - padding: 0; -} - -.composer.composer-responsive .timeline-comment { - border: 0; -} - -.composer.composer-responsive .timeline-comment::before, -.composer.composer-responsive .timeline-comment::after { - display: none; -} - -.composer.composer-responsive .previewable-comment-form .write-content { - margin: 0; -} - -@media (min-width: 768px) { - .composer.composer-responsive { - padding-left: 56px; - } - - .composer.composer-responsive .timeline-comment { - border: 1px solid var(--borderColor-default, var(--color-border-default)); - } - - .composer.composer-responsive .timeline-comment::after, - .composer.composer-responsive .timeline-comment::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); - } - - .composer.composer-responsive .timeline-comment::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); - } - - .composer.composer-responsive .timeline-comment::before { - background-color: var(--color-border-default); - } -} - -.discussion-timeline-actions { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-top: 2px solid var(--borderColor-default, var(--color-border-default)); -} - -.discussion-timeline-actions .merge-pr { - padding-top: 0; - border-top: 0; -} - -.discussion-timeline-actions .thread-subscription-status { - margin-top: 16px; -} - -.pagination-loader-container { - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: url("/images/modules/pulls/progressive-disclosure-line.svg"); - background-repeat: repeat-x; - background-position: center; - background-size: 16px; -} - -[data-color-mode=light][data-light-theme*=dark] .pagination-loader-container, -[data-color-mode=dark][data-dark-theme*=dark] .pagination-loader-container { - background-image: url("/images/modules/pulls/progressive-disclosure-line-dark.svg"); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] .pagination-loader-container { - background-image: url("/images/modules/pulls/progressive-disclosure-line-dark.svg"); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] .pagination-loader-container { - background-image: url("/images/modules/pulls/progressive-disclosure-line-dark.svg"); - } -} - -:target .timeline-comment-group .timeline-comment .timeline-comment-group .timeline-comment { - box-shadow: none; -} - -.is-pending .form-actions { - margin-right: 8px; - margin-bottom: 4px; -} - -.is-pending .file, -.is-pending .file-header, -.is-pending .tabnav-tab.selected, -.is-pending .comment-form-head.tabnav { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.is-pending .file-header, -.is-pending .comment-form-head.tabnav { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.discussion-item-icon-gray { - background-color: var(--timelineBadge-bgColor, var(--color-timeline-badge-bg)); -} - -.footer-octicon { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.footer-octicon:hover { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.user-mention, -.team-mention { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); - white-space: nowrap; -} - -.Popover .user-mention, -.Popover .team-mention { - white-space: normal; -} - -@media (max-width: 543px) { - .notifications-component-menu-modal { - margin: calc(10vh - 16px) 0; - } -} - -@media (min-width: 544px) { - .notifications-component-menu-modal, - .notifications-component-dialog, - .notifications-component-dialog-modal { - width: 100%; - } -} - -@media (min-width: 768px) { - .notifications-component-menu-modal, - .notifications-component-dialog, - .notifications-component-dialog-modal { - min-width: 300px; - } -} - -.notifications-component-dialog:not([hidden]) + .notifications-component-dialog-overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 80; - display: block; - cursor: default; - content: " "; - background: transparent; - background: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); -} - -@media (min-width: 544px) { - .notifications-component-dialog:not([hidden]) + .notifications-component-dialog-overlay { - display: none; - } -} - -.notifications-component-dialog { - z-index: 99; - animation: none; -} - -@keyframes notifications-component-dialog-animation--sm { - 0% { - opacity: 0; - transform: translateX(16px); - } -} - -@media (min-width: 544px) { - .notifications-component-dialog { - position: absolute; - top: auto; - right: auto; - bottom: auto; - left: auto; - max-height: none; - padding-top: 0; - margin: 0; - transform: none; - } -} - -.notifications-component-dialog .notifications-component-dialog-modal { - animation: none; -} - -.pagehead { - position: relative; - padding-top: 24px; - padding-bottom: 24px; - margin-bottom: 24px; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.pagehead.admin { - background: url("/images/modules/pagehead/background-yellowhatch-v3.png") 0 0 repeat-x; -} - -.pagehead ul.pagehead-actions { - position: relative; - z-index: 31; - float: right; - margin: 0; -} - -.pagehead .path-divider { - margin: 0 .25em; -} - -.pagehead h1 { - min-height: 32px; - margin-top: 0; - margin-bottom: 0; - font-size: 20px; - font-weight: var(--base-text-weight-normal, 400); -} - -.pagehead h1 .avatar { - margin-top: -2px; - margin-right: 8px; - margin-bottom: -2px; -} - -.pagehead .underline-nav { - height: 69px; - margin-top: -16px; - margin-bottom: -16px; -} - -.pagehead-heading { - color: inherit; -} - -.pagehead-actions > li { - float: left; - margin: 0 8px 0 0; - font-size: 12px; - color: var(--fgColor-default, var(--color-fg-default)); - list-style-type: none; -} - -.pagehead-actions > li:last-child { - margin-right: 0; -} - -.pagehead-actions .octicon-mute { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.pagehead-actions .select-menu { - position: relative; -} - -.pagehead-actions .select-menu::before { - display: table; - content: ""; -} - -.pagehead-actions .select-menu::after { - display: table; - clear: both; - content: ""; -} - -.pagehead-actions .select-menu-modal-holder { - top: 100%; -} - -.pagehead-tabs-item { - float: left; - padding: 8px 16px 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - white-space: nowrap; - border: solid transparent; - border-width: 3px 1px 1px; - border-radius: 6px 6px 0 0; -} - -.pagehead-tabs-item .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.pagehead-tabs-item:hover { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; -} - -.pagehead-tabs-item.selected { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)) var(--borderColor-default, var(--color-border-default)) transparent; -} - -.pagehead-tabs-item.selected > .octicon { - color: inherit; -} - -.reponav { - position: relative; - top: 1px; - margin-top: -4px; -} - -.reponav::before { - display: table; - content: ""; -} - -.reponav::after { - display: table; - clear: both; - content: ""; -} - -.reponav-item { - float: left; - padding: 8px 16px 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); - white-space: nowrap; - border: solid transparent; - border-width: 3px 1px 1px; - border-radius: 6px 6px 0 0; -} - -.reponav-item .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.reponav-item:hover, -.reponav-item:focus { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; -} - -.reponav-item.selected { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)) var(--borderColor-default, var(--color-border-default)) transparent; -} - -.reponav-item.selected .octicon { - color: inherit; -} - -.reponav-wrapper { - position: relative; - z-index: 2; - overflow-y: hidden; - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); -} - -.reponav-wrapper .reponav { - top: 0; - padding-right: 8px; - padding-left: 8px; - margin-top: 0; - -webkit-overflow-scrolling: touch; - overflow-x: auto; - color: rgba(255,255,255,.75); -} - -.reponav-wrapper .reponav-item { - display: inline-block; - float: none; - padding: 4px 8px 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - border: 0; -} - -.reponav-wrapper .reponav-item.selected { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); - background-color: transparent; - border: 0; -} - -@media (max-width: 768px) { - .PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger) { - background-color: transparent; - } - - .PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .ActionList-item.ActionList-item--navActive:not(.ActionList-item--subItem) .ActionList-item-label { - font-weight: var(--base-text-weight-normal, 400); - } - - .PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .ActionList-item--navActive::after { - display: none; - } - - .PageLayout--responsive-separateRegions.PageLayout--responsive-primary-pane .ActionList-item.ActionList-item--navActive:not(.ActionList-item--danger):hover { - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - } -} - -.steps { - display: table; - width: 100%; - padding: 0; - margin: 32px auto 0; - overflow: hidden; - list-style: none; - border: 1px solid #dfe2e5; - border-radius: 6px; - box-shadow: 0 1px 3px rgba(27,31,35,.05); -} - -.steps li { - display: table-cell; - width: 33.3%; - padding: 8px 16px; - color: #c6cbd1; - cursor: default; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-left: 1px solid #dfe2e5; -} - -.steps li.current { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.steps li.current .octicon { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.steps li .octicon { - float: left; - margin-right: 16px; - margin-bottom: 4px; -} - -.steps li .step { - display: block; -} - -.steps li:first-child { - border-left: 0; -} - -.steps .complete { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.steps .complete .octicon { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.prose-diff .anchor { - display: none; -} - -.prose-diff .show-rich-diff { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; - cursor: pointer; -} - -.prose-diff .show-rich-diff:hover { - text-decoration: underline; -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable { - cursor: pointer; -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable .vicinity { - display: block; -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable .unchanged:not(.vicinity) { - display: none; -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable .octicon { - display: block; - margin: 16px auto; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child::before { - font-size: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - content: "Sorry, no visible changes to display."; -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover::before { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.prose-diff.collapsed .rich-diff-level-zero.expandable > .removed, -.prose-diff.collapsed .rich-diff-level-zero.expandable > del { - display: none; - text-decoration: none; -} - -.prose-diff .markdown-body { - padding: 32px; - padding-left: 16px; -} - -.prose-diff .markdown-body > ins { - box-shadow: inset 4px 0 0 var(--borderColor-success-muted, var(--color-success-muted)); -} - -.prose-diff .markdown-body > del { - text-decoration: none; - box-shadow: inset 4px 0 0 var(--borderColor-danger-muted, var(--color-danger-muted)); -} - -.prose-diff .markdown-body > ins, -.prose-diff .markdown-body > del { - display: block; - border-radius: 0; -} - -.prose-diff .markdown-body > ins > .rich-diff-level-zero, -.prose-diff .markdown-body > ins > .rich-diff-level-one, -.prose-diff .markdown-body > del > .rich-diff-level-zero, -.prose-diff .markdown-body > del > .rich-diff-level-one { - margin-left: 16px; -} - -.prose-diff .markdown-body > ins:first-child *, -.prose-diff .markdown-body > del:first-child * { - margin-top: 0; -} - -.prose-diff .rich-diff-level-zero.added { - box-shadow: inset 4px 0 0 var(--borderColor-success-muted, var(--color-success-muted)); -} - -.prose-diff .rich-diff-level-zero.removed { - box-shadow: inset 4px 0 0 var(--borderColor-danger-muted, var(--color-danger-muted)); -} - -.prose-diff .rich-diff-level-zero.changed { - box-shadow: inset 4px 0 0 var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.prose-diff .rich-diff-level-zero.unchanged, -.prose-diff .rich-diff-level-zero.vicinity { - margin-left: 16px; -} - -.prose-diff .rich-diff-level-zero.added, -.prose-diff .rich-diff-level-zero.removed, -.prose-diff .rich-diff-level-zero.changed { - display: block; - border-radius: 0; -} - -.prose-diff .rich-diff-level-zero.added > .rich-diff-level-one, -.prose-diff .rich-diff-level-zero.removed > .rich-diff-level-one, -.prose-diff .rich-diff-level-zero.changed > .rich-diff-level-one { - margin-left: 16px; -} - -.prose-diff .rich-diff-level-zero.added:first-child *, -.prose-diff .rich-diff-level-zero.removed:first-child *, -.prose-diff .rich-diff-level-zero.changed:first-child * { - margin-top: 0; -} - -.prose-diff :not(.changed) > :not(.github-user-ins):not(.github-user-del) > .removed, -.prose-diff :not(.changed) > :not(.github-user-ins):not(.github-user-del) > del { - text-decoration: none; -} - -.prose-diff .changed del, -.prose-diff .changed del pre, -.prose-diff .changed del code, -.prose-diff .changed del > div, -.prose-diff .changed .removed, -.prose-diff .changed .removed pre, -.prose-diff .changed .removed code, -.prose-diff .changed .removed > div { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: line-through; - background: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.prose-diff .changed ins, -.prose-diff .changed ins code, -.prose-diff .changed ins pre, -.prose-diff .changed .added { - color: var(--fgColor-default, var(--color-fg-default)); - background: var(--bgColor-success-muted, var(--color-success-subtle)); - border-bottom: 1px solid var(--borderColor-success-muted, var(--color-success-muted)); -} - -.prose-diff > .markdown-body .github-user-ins { - text-decoration: underline; -} - -.prose-diff > .markdown-body .github-user-del { - text-decoration: line-through; -} - -.prose-diff > .markdown-body li ul.added { - background: var(--bgColor-success-muted, var(--color-success-subtle)); -} - -.prose-diff > .markdown-body li ul.removed { - color: var(--fgColor-default, var(--color-fg-default)); - background: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.prose-diff > .markdown-body li ul.removed:not(.github-user-ins) { - text-decoration: line-through; -} - -.prose-diff > .markdown-body li.added.moved-up .octicon, -.prose-diff > .markdown-body li.added.moved-down .octicon { - margin-right: 4px; - margin-left: 4px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.prose-diff > .markdown-body li.added.moved { - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.prose-diff > .markdown-body li.removed.moved { - display: none; -} - -.prose-diff > .markdown-body pre { - padding: 8px 16px; -} - -.prose-diff > .markdown-body th.changed, -.prose-diff > .markdown-body td.changed { - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); - border-left-color: var(--borderColor-default, var(--color-border-default)); -} - -.prose-diff > .markdown-body :not(li.moved).removed { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: line-through; - background: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.prose-diff > .markdown-body :not(.github-user-ins):not(li.moved).removed { - text-decoration: line-through; -} - -.prose-diff > .markdown-body :not(li.moved).added, -.prose-diff > .markdown-body li:not(.moved).added { - background: var(--bgColor-success-muted, var(--color-success-subtle)); -} - -.prose-diff > .markdown-body :not(.github-user-del):not(li.moved).added li:not(.moved):not(.github-user-del).added { - text-decoration: none; -} - -.prose-diff > .markdown-body li:not(.moved).removed { - color: var(--fgColor-default, var(--color-fg-default)); - background: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.prose-diff > .markdown-body li:not(.moved):not(.github-user-ins).removed { - text-decoration: line-through; -} - -.prose-diff > .markdown-body .added, -.prose-diff > .markdown-body ins + .added, -.prose-diff > .markdown-body ins { - border-top: 0; - border-bottom: 0; -} - -.prose-diff > .markdown-body .added:not(.github-user-del):not(.github-user-ins), -.prose-diff > .markdown-body ins + .added:not(.github-user-del):not(.github-user-ins), -.prose-diff > .markdown-body ins:not(.github-user-del):not(.github-user-ins) { - text-decoration: none; -} - -.prose-diff > .markdown-body img.added, -.prose-diff > .markdown-body img.removed { - border-style: solid; - border-width: 1px; -} - -.prose-diff > .markdown-body ins pre:not(.github-user-del):not(.github-user-ins), -.prose-diff > .markdown-body ins code:not(.github-user-del):not(.github-user-ins), -.prose-diff > .markdown-body ins > div:not(.github-user-del):not(.github-user-ins) { - text-decoration: none; -} - -.prose-diff > .markdown-body ul > ins, -.prose-diff > .markdown-body ul > del { - display: block; - padding: 0; -} - -.prose-diff > .markdown-body .added > li, -.prose-diff > .markdown-body .removed > li { - margin-top: 0; - margin-bottom: 0; -} - -span.changed_tag, -em.changed_tag, -strong.changed_tag, -b.changed_tag, -i.changed_tag, -code.changed_tag { - border-bottom: 1px dotted var(--borderColor-default, var(--color-border-default)); - border-radius: 0; -} - -a.added_href, -a.changed_href, -span.removed_href { - border-bottom: 1px dotted var(--borderColor-default, var(--color-border-default)); - border-radius: 0; -} - -.diff-view .file-type-prose .rich-diff { - display: none; -} - -.diff-view .display-rich-diff .rich-diff { - display: block; -} - -.diff-view .display-rich-diff .file-diff { - display: none; -} - -.prose-diff.no-level-zero-box-shadow .rich-diff-level-zero.added, -.prose-diff.no-level-zero-box-shadow .rich-diff-level-zero.removed, -.prose-diff.no-level-zero-box-shadow .rich-diff-level-zero.changed { - box-shadow: none; -} - -.protip { - margin-top: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.protip strong { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.protip code { - padding: 2px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-radius: 6px; -} - -.add-reactions-options-item { - margin-top: -1px; - margin-right: -1px; - line-height: 29px; - border: 1px solid transparent; -} - -.add-reactions-options-item .emoji { - display: inline-block; - transition: transform .15s cubic-bezier(0.2, 0, 0.13, 2); -} - -.add-reactions-options-item:hover .emoji, -.add-reactions-options-item:focus .emoji { - text-decoration: none; - transform: scale(1.2); -} - -.add-reactions-options-item:active { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.page-responsive .add-reactions-options-item { - height: 20vw; -} - -@media (min-width: 544px) { - .page-responsive .add-reactions-options-item { - height: auto; - } -} - -.comment-reactions { - display: none; -} - -.comment-reactions::before { - display: table; - content: ""; -} - -.comment-reactions::after { - display: table; - clear: both; - content: ""; -} - -.page-responsive .comment-reactions { - display: none; -} - -@media (min-width: 768px) { - .page-responsive .comment-reactions { - display: none; - } - - .page-responsive .comment-reactions.has-reactions { - display: flex; - } -} - -.comment-reactions.has-reactions { - display: flex; -} - -.comment-reactions.has-reactions:not(.social-reactions) { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.comment-reactions .user-has-reacted { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.reactions-container .user-has-reacted { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-social-reaction-bg-hover: var(--color-scale-gray-7); - --color-social-reaction-bg-reacted-hover: var(--color-scale-blue-8); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-social-reaction-bg-hover: var(--color-scale-gray-7); - --color-social-reaction-bg-reacted-hover: var(--color-scale-blue-8); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-social-reaction-bg-hover: var(--color-scale-gray-7); - --color-social-reaction-bg-reacted-hover: var(--color-scale-blue-8); - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-social-reaction-bg-hover: var(--color-scale-gray-1); - --color-social-reaction-bg-reacted-hover: var(--color-scale-blue-1); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-social-reaction-bg-hover: var(--color-scale-gray-1); - --color-social-reaction-bg-reacted-hover: var(--color-scale-blue-1); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-social-reaction-bg-hover: var(--color-scale-gray-1); - --color-social-reaction-bg-reacted-hover: var(--color-scale-blue-1); - } -} - -.social-reaction-summary-item + .social-reaction-summary-item { - margin-left: 8px; -} - -.social-reactions .comment-body { - margin-left: 16px; -} - -.social-button-emoji { - display: inline-block; - width: 16px; - height: 16px; - font-size: 1em; - line-height: 1.25; - vertical-align: -1px; -} - -.social-reaction-summary-item { - height: 26px; - padding: 0 4px; - margin-right: 0; - font-size: 12px; - line-height: 26px; - background-color: transparent; - border: 1px solid var(--borderColor-default, var(--color-border-default, #d2dff0)); - border-radius: 100px; -} - -.social-reaction-summary-item:focus, -.social-reaction-summary-item:focus-visible { - border-radius: 100px; -} - -.social-reaction-summary-item:focus { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); -} - -.social-reaction-summary-item:focus:not(:focus-visible) { - border-color: transparent; - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px transparent; -} - -.social-reaction-summary-item:focus-visible { - border-color: var(--focus-outlineColor, var(--color-accent-fg)); - outline: none; - box-shadow: inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg)); -} - -.social-reaction-summary-item.user-has-reacted { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border: 1px solid var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.social-reaction-summary-item.user-has-reacted:hover { - background-color: var(--color-social-reaction-bg-reacted-hover); -} - -.social-reaction-summary-item > span { - height: 24px; - padding: 0 4px; - margin-left: 2px; -} - -.social-reaction-summary-item:hover { - background-color: var(--color-social-reaction-bg-hover); -} - -.reaction-dropdown-button { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.reaction-dropdown-button:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.reaction-dropdown-button--inline { - width: 26px; - height: 26px; -} - -.reaction-dropdown-button--inline:hover { - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); - border-color: var(--button-default-borderColor-hover, var(--color-btn-hover-border)); -} - -.reaction-dropdown-button:disabled { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - pointer-events: none; -} - -.reactions-with-gap .comment .comment-reactions { - margin-left: 16px; - border-top: 0; -} - -.new-reactions-dropdown .dropdown-menu-reactions { - width: auto; - padding: 0 2px; -} - -.new-reactions-dropdown .dropdown-menu-reactions::before, -.new-reactions-dropdown .dropdown-menu-reactions::after { - background-color: transparent; - border: 0; -} - -.new-reactions-dropdown .dropdown-item-reaction { - width: 32px; - height: 32px; - padding: 4px; - margin: 4px 2px; -} - -.new-reactions-dropdown .dropdown-item-reaction.user-has-reacted { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.new-reactions-dropdown .dropdown-item-reaction:hover { - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); -} - -.RecentBranches { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); - border: 1px solid var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); - border-radius: 6px; -} - -.RecentBranches-item { - line-height: 28px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.RecentBranches-item + .RecentBranches-item { - border-top: 1px solid var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.RecentBranches-item-link { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.RecentBranches-item-link.css-truncate-target { - max-width: 400px; -} - -.render-container { - padding: 32px; - line-height: 0; - text-align: center; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.render-container .render-viewer { - display: block; - width: 1px; - height: 1px; - border: 0; -} - -.render-container .octospinner { - display: none; -} - -.render-container .render-viewer-error, -.render-container .render-viewer-fatal, -.render-container .render-viewer-invalid, -.render-container .render-fullscreen { - display: none; -} - -.render-container.is-render-automatic .octospinner { - display: inline-block; -} - -.render-container.is-render-requested .octospinner { - display: inline-block; -} - -.render-container.is-render-requested.is-render-failed .render-viewer-error { - display: inline-block; -} - -.render-container.is-render-requested.is-render-failed .render-viewer, -.render-container.is-render-requested.is-render-failed .render-viewer-fatal, -.render-container.is-render-requested.is-render-failed .render-viewer-invalid, -.render-container.is-render-requested.is-render-failed .octospinner { - display: none; -} - -.render-container.is-render-requested.is-render-failed-fatal .render-viewer-fatal { - display: inline-block; -} - -.render-container.is-render-requested.is-render-failed-fatal .render-viewer, -.render-container.is-render-requested.is-render-failed-fatal .render-viewer-error, -.render-container.is-render-requested.is-render-failed-fatal .render-viewer-invalid, -.render-container.is-render-requested.is-render-failed-fatal .octospinner { - display: none; -} - -.render-container.is-render-requested.is-render-failed-invalid .render-viewer-invalid { - display: inline-block; -} - -.render-container.is-render-requested.is-render-failed-invalid .render-viewer, -.render-container.is-render-requested.is-render-failed-invalid .render-viewer-error, -.render-container.is-render-requested.is-render-failed-invalid .render-viewer-fatal, -.render-container.is-render-requested.is-render-failed-invalid .octospinner { - display: none; -} - -.render-container.is-render-ready.is-render-requested:not(.is-render-failed) { - height: 500px; - padding: 0; - background: none; -} - -.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer { - width: 100%; - height: 100%; -} - -.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-fullscreen { - display: flex; -} - -.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer-error, -.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer-fatal, -.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .octospinner { - display: none; -} - -.render-needs-enrichment { - margin-bottom: 16px; -} - -.render-needs-enrichment .render-full-screen { - width: 100%; - height: auto; - padding: 16px; - overflow: auto; -} - -.render-needs-enrichment .render-full-screen-close { - top: 0; - right: 0; - padding: 4px; -} - -.render-needs-enrichment .details { - margin-bottom: 0; -} - -.render-needs-enrichment .render-plaintext-hidden { - display: none; -} - -.render-notice { - padding: 16px 16px; - font-size: 14px; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-color: var(--borderColor-muted, var(--color-border-subtle)); -} - -relative-time { - white-space: nowrap; -} - -.js-inline-math > mjx-container { - overflow-x: auto; - overflow-y: hidden; -} - -math-renderer mjx-labels { - right: 0; - left: auto; -} - -.Skeleton { - color: rgba(0,0,0,0); - background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1)); - background-size: 400% 100%; - animation: skeleton-loading 8s ease-in-out infinite; -} - -.Skeleton * { - visibility: hidden; -} - -.Skeleton--text { - clip-path: inset(4px 0 4px 0 round 3px 3px 3px 3px); -} - -.is-error .Skeleton { - display: none; -} - -@keyframes skeleton-loading { - 0% { - background-position: 200% 0; - } - - 100% { - background-position: -200% 0; - } -} - -.authors-2 .AvatarStack { - min-width: 36px; -} - -.authors-3 .AvatarStack { - min-width: 46px; -} - -[aria-selected=true] .AvatarStack-body, -.navigation-focus .AvatarStack-body { - background: #f6fbff; -} - -.tracked-in-parent-pill { - position: relative; - cursor: default; -} - -.tracked-in-parent-pill-truncated { - position: absolute; - left: 100%; - display: none; - white-space: nowrap; - background: var(--bgColor-default, var(--color-canvas-default)); - border-left-width: 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.tracked-in-parent-pill:hover .tracked-in-parent-pill-truncated { - display: block; -} - -.wizard-content.horizontal { - flex-direction: column; -} - -.wizard-content.horizontal .wizard-horizontal-steps { - width: 30%; -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-badge { - margin: 0; - color: var(--fgColor-muted, var(--color-fg-subtle)); - background-color: var(--bgColor-inset, var(--color-canvas-inset)); - border-color: var(--borderColor-neutral-emphasis, var(--color-fg-subtle)); -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-badge.current { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-bar { - border-color: var(--borderColor-neutral-emphasis, var(--color-fg-subtle)); -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-bar.complete { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-badge.complete { - display: none; -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-badge-check { - display: none; -} - -.wizard-content.horizontal .wizard-horizontal-steps .wizard-step-badge-check.complete { - display: inherit; - width: 32px; - height: 32px; -} - -.wizard-content.horizontal .wizard-step[data-single-page-wizard-last-step=true] .wizard-step-buttons { - align-items: center; - justify-content: center; -} - -.wizard-content.horizontal .wizard-step-item { - margin-left: 0; - flex-direction: column; -} - -.wizard-content.horizontal .wizard-step-item::before, -.wizard-content.horizontal .wizard-step-item .wizard-step-badge, -.wizard-content.horizontal .wizard-step-item .wizard-step-icon, -.wizard-content.horizontal .wizard-step-item .wizard-step-header { - display: none; -} - -.wizard-content.horizontal .wizard-step-item .wizard-step-container::before, -.wizard-content.horizontal .wizard-step-item .wizard-step-container::after { - display: none; -} - -.wizard-step-item { - position: relative; - padding: 8px 0; - margin-left: 16px; - flex-direction: row; -} - -.wizard-step-item::before { - position: absolute; - top: 32px; - bottom: 0; - left: 0; - display: block; - width: 2px; - height: 100%; - content: ""; - background-color: var(--borderColor-default, var(--color-border-default)); -} - -.wizard-step-badge { - position: relative; - z-index: 1; - display: flex; - width: 32px; - height: 32px; - margin-right: 8px; - margin-left: -16px; - color: var(--fgColor-default, var(--color-fg-default)); - align-items: center; - background-color: var(--borderColor-default, var(--color-border-default)); - border: 1px solid var(--bgColor-default, var(--color-canvas-default)); - border-radius: 50%; - justify-content: center; - flex-shrink: 0; -} - -.wizard-step-body { - min-width: 0; - max-width: 100%; - color: var(--fgColor-default, var(--color-fg-default)); - flex: auto; -} - -.wizard-step-body .wizard-step-buttons { - display: none; - margin-top: 24px; - justify-content: flex-end; -} - -.wizard-step-body .wizard-step-buttons .wizard-step-button { - overflow: hidden; - text-overflow: ellipsis; -} - -.wizard-step-container { - border: 0; -} - -.wizard-step-container .wizard-step-content { - display: none; - width: 100%; - padding: 16px 24px 24px 24px; - overflow: visible; - font-size: 14px; -} - -.wizard-step-container.wizard-step-container-icon .wizard-step-content { - padding: 24px; -} - -.wizard-step-header { - padding-top: 4px; - padding-left: 8px; -} - -.wizard-step-header > .wizard-step-title { - min-width: 0; - margin-bottom: 4px; - flex: 1 1 auto; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.wizard-step-icon { - display: none; - height: 96px; - color: var(--fgColor-accent, var(--color-accent-fg)); - background-image: linear-gradient(to right, var(--bgColor-accent-muted, var(--color-accent-subtle)), var(--bgColor-default, var(--color-canvas-default))); - justify-content: center; - align-items: center; - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.wizard-step[data-single-page-wizard-step-complete=true] .wizard-step-badge { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.wizard-step[data-single-page-wizard-step-complete=true] .wizard-step-item::before { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.wizard-step[data-single-page-wizard-step-complete=true] .wizard-step-title { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.wizard-step[data-single-page-wizard-last-step=true] .wizard-step-badge .wizard-step-check { - display: block; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.wizard-step[data-single-page-wizard-last-step=true] .wizard-step-item::before { - top: 0; - display: block; - height: 16px; -} - -@media (min-width: 768px) { - .wizard-step[data-single-page-wizard-last-step=true] .wizard-step-item::before { - display: none; - } -} - -.wizard-step[data-single-page-wizard-last-step=true] .wizard-step-icon { - color: var(--fgColor-success, var(--color-success-fg)); - background-image: linear-gradient(to right, var(--bgColor-success-muted, var(--color-success-subtle)), var(--bgColor-default, var(--color-canvas-default))); -} - -.wizard-step:not([data-single-page-wizard-last-step=true]) .wizard-step-badge .wizard-step-check { - display: none; -} - -.wizard-step:not([data-single-page-wizard-last-step=true]) .wizard-step-badge::before { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - content: attr(data-single-page-wizard-step); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-badge { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.wizard-step[data-single-page-wizard-step-current=true][data-single-page-wizard-last-step=true] .wizard-step-badge { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.wizard-step[data-single-page-wizard-step-current=true][data-single-page-wizard-last-step=true] .wizard-step-item::before { - top: 42px; - height: 16px; -} - -.wizard-step[data-single-page-wizard-step-current=true][data-single-page-wizard-last-step=true] .wizard-step-container-icon::after { - background-image: linear-gradient(var(--bgColor-success-muted, var(--color-success-subtle)), var(--bgColor-success-muted, var(--color-success-subtle))); -} - -.wizard-step[data-single-page-wizard-step-current=true]:not([data-single-page-wizard-last-step=true]) .wizard-step-container-icon::after { - background-image: linear-gradient(var(--bgColor-accent-muted, var(--color-accent-subtle)), var(--bgColor-accent-muted, var(--color-accent-subtle))); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-icon { - display: flex; -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-item { - flex-direction: column; -} - -@media (min-width: 768px) { - .wizard-step[data-single-page-wizard-step-current=true] .wizard-step-item { - flex-direction: row; - } -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-body { - margin-top: 16px; - margin-left: -16px; -} - -@media (min-width: 768px) { - .wizard-step[data-single-page-wizard-step-current=true] .wizard-step-body { - margin-top: 0; - margin-left: 0; - } -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container { - position: relative; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::after, -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::before { - background-color: var(--color-border-default); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::before, -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::after { - transform: rotate(90deg); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::before { - position: absolute; - top: -12px; - right: 100%; - left: 12px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::after { - top: -10px; - left: 11px; -} - -@media (min-width: 768px) { - .wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::before, - .wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::after { - top: 11px; - left: -8px; - transform: rotate(0); - } - - .wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container::after { - margin-left: 1px; - } -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container .wizard-step-header { - display: none; -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container .wizard-step-content-header { - margin-bottom: 16px; -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container .wizard-step-title { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-container .wizard-step-content { - display: block; -} - -.wizard-step[data-single-page-wizard-step-current=true] .wizard-step-buttons { - display: flex; -} - -[data-a11y-link-underlines=true] .markdown-body a, -[data-a11y-link-underlines=true] .markdown-body a:hover, -[data-a11y-link-underlines=true] .commit-desc a, -[data-a11y-link-underlines=true] .commit-desc a:hover, -[data-a11y-link-underlines=true] .Link--inTextBlock, -[data-a11y-link-underlines=true] .Link--inTextBlock:hover { - text-decoration: underline; -} - -[data-a11y-link-underlines=true] .markdown-body :is(h1, h2, h3, h4, h5, h6) a, -[data-a11y-link-underlines=true] .markdown-body :is(h1, h2, h3, h4, h5, h6) a:hover { - text-decoration: none; -} - -.alert-label { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.graph-canvas .alert-label--critical { - fill: var(--fgColor-danger, var(--color-danger-emphasis)); -} - -.graph-canvas .alert-label--high { - fill: var(--fgColor-severe, var(--color-severe-emphasis)); -} - -.graph-canvas .alert-label--moderate { - fill: var(--fgColor-attention, var(--color-attention-emphasis)); -} - -.graph-canvas .alert-label--low { - fill: var(--fgColor-neutral, var(--color-neutral-emphasis)); -} - -.advisory-form { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.advisory-form .form-control { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.advisory-form .form-actions { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.advisory-form .previewable-comment-form { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.advisory-credit-window-min { - min-height: 72px; -} - -.advisory-credit-window-max { - max-height: 370px; -} - -.AppHeader { - --AppHeader-bg: var(--color-canvas-inset); - color: var(--color-fg-default); - background: var(--AppHeader-bg); - box-shadow: inset 0 calc(var(--borderWidth-thin, 1px)*-1) var(--color-border-default); -} - -.AppHeader .AppHeader-globalBar { - display: flex; - padding: var(--base-size-16, 16px); - gap: var(--base-size-12, 12px); -} - -.AppHeader .AppHeader-globalBar.second-row { - display: block; -} - -.AppHeader .AppHeader-globalBar.second-row .AppHeader-search { - display: block; -} - -.AppHeader .AppHeader-globalBar.search-expanded .AppHeader-globalBar-start, -.AppHeader .AppHeader-globalBar.always-expanded .AppHeader-globalBar-start { - flex: none; -} - -.AppHeader .AppHeader-globalBar.search-expanded .AppHeader-context, -.AppHeader .AppHeader-globalBar.always-expanded .AppHeader-context { - display: none; -} - -.AppHeader .AppHeader-globalBar.search-expanded .AppHeader-search .AppHeader-search-whenRegular, -.AppHeader .AppHeader-globalBar.always-expanded .AppHeader-search .AppHeader-search-whenRegular { - max-width: 100%; -} - -.AppHeader .AppHeader-globalBar.search-expanded .AppHeader-globalBar-end, -.AppHeader .AppHeader-globalBar.always-expanded .AppHeader-globalBar-end { - flex: 1 1 auto; -} - -@media (max-width: 1011.98px) { - .AppHeader .AppHeader-globalBar.search-expanded .AppHeader-search { - position: absolute; - top: 0; - left: 0; - width: 100%; - } - - .AppHeader .AppHeader-globalBar.search-expanded .AppHeader-globalBar-end { - flex: none; - } - - .AppHeader .AppHeader-globalBar.search-expanded .search-suggestions { - left: 0; - top: 0; - width: 100%; - } -} - -.AppHeader .AppHeader-globalBar .AppHeader-globalBar-start { - flex: 1 1 auto; - display: flex; - gap: var(--base-size-8, 8px); -} - -.AppHeader .AppHeader-globalBar .AppHeader-globalBar-end { - flex: 0 1 auto; - display: flex; - justify-content: flex-end; - gap: var(--controlStack-medium-gap-auto, 8px); - max-height: calc(var(--base-size-32, 32px)); -} - -.AppHeader .AppHeader-globalBar .AppHeader-logo { - border: 0; - width: var(--base-size-32, 32px); - height: var(--base-size-32, 32px); - outline-offset: 2px; -} - -.AppHeader .AppHeader-globalBar .AppHeader-logo svg { - width: var(--base-size-32, 32px); - height: var(--base-size-32, 32px); -} - -.AppHeader .AppHeader-globalBar .AppHeader-user { - position: relative; - background: var(--color-neutral-muted); - border-radius: 50%; -} - -.AppHeader .AppHeader-globalBar .AppHeader-user img { - position: relative; - border-radius: 50%; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context { - min-width: 0; - height: var(--base-size-32, 32px); - flex: 1 1 auto; -} - -@media (min-width: 768px) { - .AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact { - display: none; - } -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-trigger { - display: grid; - width: 100%; - height: var(--base-size-48, 48px); - color: inherit; - text-align: left; - cursor: pointer; - background-color: transparent; - border: 0; - border-radius: var(--borderRadius-medium, 6px); - margin-block: calc(var(--base-size-8, 8px)*-1); - padding-block: var(--control-medium-paddingBlock, 6px); - padding-inline: var(--control-medium-paddingInline-condensed, 8px); - -webkit-appearance: none; - appearance: none; - align-items: center; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-trigger:hover { - background-color: var(--color-action-list-item-default-hover-bg); -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-trigger:active { - background-color: var(--color-action-list-item-default-active-bg); -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-lead { - display: grid; - width: -moz-fit-content; - width: fit-content; - font-size: var(--text-caption-size, 12px); - line-height: var(--text-caption-lineHeight, 1.3333333333); - color: var(--color-fg-muted); - grid-auto-flow: column; - align-items: center; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-parentItem { - display: inline; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-separator { - white-space: nowrap; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-compact .AppHeader-context-compact-mainItem { - display: block; - overflow: hidden; - line-height: var(--text-body-lineHeight-medium, 1.4285714286); - text-overflow: ellipsis; - white-space: nowrap; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full { - display: inline-flex; - width: 100%; - min-width: 0; - max-width: 100%; - overflow: hidden; -} - -@media (max-width: 767.98px) { - .AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full { - display: none; - } -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full nav { - width: 100%; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full ul, -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full li { - list-style: none; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full ul { - display: flex; - flex-direction: row; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full li { - display: inline-grid; - grid-auto-flow: column; - align-items: center; - flex: 0 99999 auto; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full li:first-child { - flex: 0 100 max-content; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full li:last-child { - flex: 0 1 max-content; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-full li:last-child .AppHeader-context-item { - font-weight: var(--base-text-weight-semibold, 600); -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-item { - display: flex; - align-items: center; - min-width: 3ch; - line-height: var(--text-body-lineHeight-medium, 1.4285714286); - color: inherit; - text-decoration: none; - border-radius: var(--borderRadius-medium, 6px); - padding-inline: var(--control-medium-paddingInline-condensed, 8px); - padding-block: var(--control-medium-paddingBlock, 6px); -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-item .AppHeader-context-item-label { - display: inline-block; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.AppHeader .AppHeader-globalBar .AppHeader-context a.AppHeader-context-item:hover { - background: var(--color-action-list-item-default-hover-bg); -} - -.AppHeader .AppHeader-globalBar .AppHeader-context a.AppHeader-context-item:active { - background: var(--color-action-list-item-default-active-bg); -} - -.AppHeader .AppHeader-globalBar .AppHeader-context .AppHeader-context-item-separator { - color: var(--color-fg-muted); - white-space: nowrap; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search { - position: relative; - display: flex; - flex: 1 1 auto; - justify-content: flex-end; -} - -@media (min-width: 1012px) { - .AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-whenNarrow { - display: none; - } -} - -@media (max-width: 1011.98px) { - .AppHeader .AppHeader-globalBar .AppHeader-search { - flex-grow: 0; - } - - .AppHeader .AppHeader-globalBar .AppHeader-search .search-input { - width: auto; - } - - .AppHeader .AppHeader-globalBar .AppHeader-search .search-input-container { - margin: 0; - } - - .AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-whenRegular { - display: none; - } - - .AppHeader .AppHeader-globalBar .AppHeader-search .header-search { - max-width: 100%; - } -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-whenRegular { - min-width: 12rem; - max-width: 24rem; - flex: 1 1 auto; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-wrap { - display: grid; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-wrap.AppHeader-search-wrap--hasTrailing input[type=search] { - padding-inline-end: calc(var(--control-medium-paddingInline-condensed, 8px) + var(--base-size-16, 16px) + var(--control-medium-gap, 8px) - var(--borderWidth-thin, 1px)); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .search-input-container { - height: auto; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-kbd { - display: inline-grid; - width: var(--base-size-12, 12px); - height: var(--base-size-16, 16px); - padding: 0; - font-size: var(--text-caption-size, 12px); - line-height: var(--text-caption-lineHeight, 1.3333333333); - color: inherit; - vertical-align: baseline; - background: transparent; - border: var(--borderWidth-thin, 1px) solid var(--color-fg-subtle); - border-radius: var(--borderRadius-small, 3px); - box-shadow: none; - align-items: center; - justify-content: center; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-placeholder { - display: block; - width: 100%; - overflow: hidden; - font-weight: var(--base-text-weight-normal, 400); - line-height: var(--text-body-lineHeight-medium, 20px); - color: var(--color-fg-subtle); - text-overflow: ellipsis; - white-space: nowrap; - pointer-events: none; - grid-area: 1/1; - padding-block: var(--control-medium-paddingBlock, 6px); - padding-inline: calc(var(--control-medium-paddingInline-condensed, 8px) + var(--base-size-16, 16px) + var(--control-medium-gap, 8px)); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-control { - grid-area: 1/1; - position: relative; - overflow: hidden; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-visual--leading { - position: absolute; - top: var(--base-size-8, 8px); - left: var(--base-size-8, 8px); - display: block; - width: var(--base-size-16, 16px); - height: var(--base-size-16, 16px); - color: var(--color-fg-muted); - pointer-events: none; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-visual--leading svg { - display: block; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-searchButton { - background: transparent; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search], -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-searchButton { - width: 100%; - padding-block: calc(var(--control-medium-paddingBlock, 6px) - var(--borderWidth-thin, 1px)); - padding-inline-start: calc(var(--control-medium-paddingInline-condensed, 8px) + var(--base-size-16, 16px) + var(--control-medium-gap, 8px) - var(--borderWidth-thin, 1px)); - padding-inline-end: var(--control-medium-paddingInline-condensed, 40px); - transition: none; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search]:placeholder-shown { - background: transparent; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search]:not(:placeholder-shown) { - background: var(--color-canvas-default); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search]::placeholder { - color: transparent; - opacity: 1; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search]:focus { - background: var(--color-canvas-default); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search]:focus::placeholder { - color: var(--color-fg-subtle); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search input[type=search]:focus:placeholder { - color: var(--color-fg-subtle); - opacity: 1; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing { - position: absolute; - top: var(--base-size-4, 4px); - right: var(--base-size-4, 4px); - display: grid; - width: var(--control-xsmall-size, 24px); - height: var(--control-xsmall-size, 24px); - padding: 0; - color: var(--color-fg-muted); - background: transparent; - border: none; - border-radius: var(--borderRadius-small, 3px); - align-items: center; - justify-content: center; -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing:hover { - background: var(--color-action-list-item-default-hover-bg); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing:active { - background: var(--color-action-list-item-default-active-bg); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing::before { - position: absolute; - top: calc((var(--control-xsmall-size, 24px) - var(--base-size-16, 16px))/2); - left: calc(var(--base-size-4, 4px)*-1); - display: block; - width: var(--borderWidth-thin, 1px); - height: var(--base-size-16, 16px); - content: ""; - background: var(--color-border-default); -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing::after { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - height: 100%; - min-height: var(--control-medium-size, 32px); - content: ""; - transform: translateX(-50%) translateY(-50%); - min-width: var(--control-medium-size, 32px); -} - -@media (pointer: coarse) { - .AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing::after { - min-width: var(--control-minTarget-coarse, 44px); - min-height: var(--control-minTarget-coarse, 44px); - } -} - -.AppHeader .AppHeader-globalBar .AppHeader-search .AppHeader-search-action--trailing svg { - color: inherit; -} - -.AppHeader .AppHeader-globalBar .AppHeader-divider { - width: var(--borderWidth-thin, 1px); - height: var(--base-size-20, 20px); - height: var(--base-size-20, 20px); - margin: calc((var(--control-medium-size, 32px) - var(--base-size-20, 20px))/2) 0; - background: var(--color-border-default); -} - -.AppHeader .AppHeader-globalBar .AppHeader-actions { - display: grid; - grid-auto-flow: column; - gap: var(--controlStack-medium-gap-auto, 8px); -} - -.AppHeader .AppHeader-globalBar .AppHeader-actions::before { - display: block; - width: var(--borderWidth-thin, 1px); - height: var(--base-size-20, 20px); - height: var(--base-size-20, 20px); - content: ""; - background: var(--color-border-default); - margin-block: calc((var(--control-medium-size, 32px) - var(--base-size-20, 20px))/2); -} - -@media (pointer: fine) { - .AppHeader .AppHeader-globalBar .AppHeader-actions::before { - margin-inline: var(--base-size-4, 4px); - } -} - -@media (max-width: 543.98px) { - .AppHeader .AppHeader-globalBar .AppHeader-actions { - display: none; - } -} - -.AppHeader .AppHeader-localBar { - padding: 0 var(--base-size-16, 16px); -} - -.AppHeader .AppHeader-item { - flex: 0 0 auto; - background: #ffb6c1; -} - -.AppHeader .AppHeader-item--full { - flex-grow: 1; -} - -.AppHeader .AppHeader-button { - position: relative; - display: grid; - grid-auto-columns: max-content; - width: var(--base-size-32, 32px); - height: var(--base-size-32, 32px); - color: var(--color-fg-muted); - background: transparent; - border: var(--borderWidth-thin, 1px) solid var(--color-border-default); - border-radius: var(--borderRadius-medium, 6px); - align-items: center; - justify-content: center; -} - -.AppHeader .AppHeader-button svg { - color: inherit; -} - -.AppHeader .AppHeader-button:hover { - background: var(--color-action-list-item-default-hover-bg); -} - -.AppHeader .AppHeader-button:active { - background: var(--color-action-list-item-default-active-bg); -} - -@media (pointer: coarse) { - .AppHeader .AppHeader-button::after { - position: absolute; - top: 50%; - left: 50%; - width: 100%; - height: 100%; - min-height: var(--control-minTarget-coarse, 44px); - content: ""; - transform: translateX(-50%) translateY(-50%); - min-width: var(--control-minTarget-coarse, 44px); - } -} - -.AppHeader .AppHeader-button.AppHeader-button--hasIndicator::before { - position: absolute; - top: calc(var(--base-size-4, 4px)/-2); - right: calc(var(--base-size-4, 4px)/-2); - display: block; - width: var(--base-size-8, 8px); - height: var(--base-size-8, 8px); - content: ""; - background: var(--color-accent-fg); - border-radius: 50%; - box-shadow: 0 0 0 calc(var(--base-size-4, 4px)/2) var(--AppHeader-bg); -} - -.AppHeader .Overlay-titleWrap { - width: 100%; - overflow-x: hidden; -} - -[data-target="animated-image.originalImage"], -[data-target="animated-image.replacedImage"], -[data-a11y-animated-images=system] [data-animated-image], -[data-a11y-animated-images=disabled] [data-animated-image] { - display: none; -} - -[data-target="animated-image.originalImage"] { - width: 100%; -} - -animated-image[data-catalyst] { - display: inline-block; -} - -animated-image { - max-width: 100%; -} - -.AnimatedImagePlayer { - position: relative; - display: inline-block; - width: 100%; -} - -.AnimatedImagePlayer > a:not(.AnimatedImagePlayer-images) { - display: none; -} - -.AnimatedImagePlayer-controls { - position: absolute; - top: 8px; - right: 8px; - z-index: 2; - display: none; - padding: 4px; - list-style: none; - background: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 6px; - box-shadow: var(--shadow-floating-small, var(--color-overlay-shadow)); - opacity: 1; - transition: opacity 80ms linear; -} - -.AnimatedImagePlayer-images .AnimatedImagePlayer-animatedImage { - cursor: pointer; -} - -.AnimatedImagePlayer-button { - display: flex; - align-items: center; - justify-content: center; - width: 32px; - height: 32px; - cursor: pointer; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 0; - border-radius: 6px; -} - -@media (hover: hover)and (pointer: fine) { - .AnimatedImagePlayer-button:hover { - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); - transition: background-color 200ms linear; - } -} - -.AnimatedImagePlayer-images { - display: block; - width: 100%; - padding: 0; - margin: 0; - background: none; - border: 0; - outline: none; - outline-offset: 0; -} - -.AnimatedImagePlayer-images:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 0; -} - -.AnimatedImagePlayer-button:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; -} - -.AnimatedImagePlayer-button svg { - width: 16px; - height: 16px; - pointer-events: none; - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.AnimatedImagePlayer-button:hover svg { - fill: var(--fgColor-default, var(--color-fg-default)); -} - -.AnimatedImagePlayer-stillImage { - position: absolute; - top: 0; - left: 0; - z-index: 1; - display: none; - width: 100%; - height: 100%; - pointer-events: none; -} - -.AnimatedImagePlayer-animatedImage { - width: 100%; - max-width: 100%; - max-height: 100%; -} - -.AnimatedImagePlayer.playing .AnimatedImagePlayer-controls { - opacity: 0; - transition-delay: 1s; -} - -.AnimatedImagePlayer.enabled .AnimatedImagePlayer-animatedImage { - opacity: 0; -} - -.AnimatedImagePlayer.enabled.playing .AnimatedImagePlayer-animatedImage { - opacity: 1; -} - -.AnimatedImagePlayer.playing.player-focused .AnimatedImagePlayer-controls { - opacity: 1; - transition-delay: 0ms; -} - -@media (hover: hover)and (pointer: fine) { - .AnimatedImagePlayer.playing:hover .AnimatedImagePlayer-controls { - opacity: 1; - transition-delay: 0s; - } -} - -.AnimatedImagePlayer.enabled.playing .AnimatedImagePlayer-stillImage, -.AnimatedImagePlayer.enabled.playing .icon-play, -.AnimatedImagePlayer .icon-pause { - display: none; -} - -.AnimatedImagePlayer .icon-play, -.AnimatedImagePlayer.enabled.playing .icon-pause, -.AnimatedImagePlayer.enabled .AnimatedImagePlayer-stillImage { - display: block; -} - -.AnimatedImagePlayer.enabled .AnimatedImagePlayer-controls { - display: flex; -} - -.emoji-tab.UnderlineNav-item { - margin-right: 4px; -} - -.emoji-tab[role=tab][aria-selected=true] { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); - border-bottom-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.selected-emoji { - z-index: 100; - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.emoji-picker-container .emoji-picker-tab g-emoji { - margin-right: auto; - margin-left: 4px; -} - -.emoji-tab .emoji-icon { - width: auto; -} - -.emoji-picker-container { - z-index: 2; - width: 395px; - max-width: 80vw; -} - -.emoji-picker-tab { - height: 136px; - padding-top: 8px; -} - -.emoji-picker-emoji-width { - width: 32px; - height: 28px; -} - -.emoji-picker-list { - list-style: none; -} - -.notification-shelf { - z-index: 34; -} - -.notification-shelf.is-stuck { - z-index: 999; -} - -@media (max-width: 767px) { - .notifications-v2 .commit-ref .css-truncate-target { - word-break: break-all; - white-space: normal; - } -} - -@media (max-width: 543px) { - .notifications-v2 .Box { - border-right: 0; - border-left: 0; - border-radius: 0; - } -} - -@media (max-width: 543px) { - .notifications-v2 .Box .Box-header { - border-right: 0; - border-left: 0; - border-radius: 0; - } -} - -@media (max-width: 767px) { - .notifications-v2 .AvatarStack--right { - width: auto; - min-width: auto; - margin-left: 53px; - } -} - -@media (max-width: 767px) { - .notifications-v2 .AvatarStack--right .AvatarStack-body { - position: relative; - right: unset; - margin-right: 8px; - flex-direction: row; - } -} - -@media (max-width: 767px) { - .notifications-v2 .AvatarStack-body .avatar { - position: relative; - margin-right: -12px; - margin-left: 0; - border-right: 1px solid #fff; - border-left: 0; - } -} - -.notifications-v2 .thread-subscription-status { - background-color: transparent; -} - -.notifications-v2 .notification-action-mark-archived, -.notifications-v2 .notification-action-mark-unread, -.notifications-v2 .notification-action-star, -.notifications-v2 .notification-action-unsubscribe { - display: block; -} - -.notifications-v2 .notification-action-mark-read, -.notifications-v2 .notification-action-mark-unarchived, -.notifications-v2 .notification-action-subscribe, -.notifications-v2 .notification-action-unstar, -.notifications-v2 .notification-is-starred-icon { - display: none; -} - -.notifications-v2 .notification-unsubscribed .notification-action-unsubscribe { - display: none; -} - -.notifications-v2 .notification-unsubscribed .notification-action-subscribe { - display: block; -} - -.notifications-v2 .notification-unread .notification-action-mark-read { - display: block; -} - -.notifications-v2 .notification-unread .notification-action-mark-unread { - display: none; -} - -.notifications-v2 .notification-archived .notification-action-mark-archived, -.notifications-v2 .notification-archived .notification-action-mark-read, -.notifications-v2 .notification-archived .notification-action-mark-unread { - display: none; -} - -.notifications-v2 .notification-archived .notification-action-mark-unarchived { - display: block; -} - -.notifications-v2 .notification-starred .notification-action-star { - display: none; -} - -.notifications-v2 .notification-starred .notification-is-starred-icon { - display: inline-block; -} - -.notifications-v2 .notification-starred .notification-action-unstar { - display: block; -} - -.notifications-v2 .thread-subscribe-form { - display: none; -} - -.notifications .read .avatar img { - opacity: .5; -} - -.notifications .read .undo { - display: block; -} - -.notifications .read .delete { - visibility: hidden; -} - -.notifications .read[aria-selected=true], -.notifications .read.navigation-focus { - background-color: #f5f9fc; -} - -.notifications .muted .unmute { - display: block; -} - -.notifications .muted .mute { - display: none; -} - -.notifications .unmute { - display: none; -} - -.notifications-list { - float: left; - width: 100%; -} - -.thread-subscription-status { - padding: 8px; - margin: 40px 0 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.thread-subscription-status .reason { - display: inline-block; - margin: 0 8px; - vertical-align: middle; -} - -.thread-subscription-status .thread-subscribe-form { - display: inline-block; - vertical-align: middle; -} - -.subscription .loading { - opacity: .5; -} - -.inline-form { - display: inline-block; -} - -.inline-form .btn-plain { - background-color: transparent; - border: 0; -} - -.drag-and-drop { - padding: 7px 10px; - margin: 0; - font-size: 13px; - line-height: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-top: 0; - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.drag-and-drop .default, -.drag-and-drop .loading, -.drag-and-drop .error { - display: none; -} - -.drag-and-drop .error { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.drag-and-drop img { - vertical-align: top; -} - -.file-attachment-errors .Banner--error { - display: none; -} - -.is-bad-file .file-attachment-errors .bad-file, -.is-bad-dimensions .file-attachment-errors .bad-dimensions, -.is-too-big .file-attachment-errors .too-big, -.is-duplicate-filename .file-attachment-errors .duplicate-filename, -.is-too-many .file-attachment-errors .too-many, -.is-hidden-file .file-attachment-errors .hidden-file, -.is-failed .file-attachment-errors .failed, -.is-empty .file-attachment-errors .empty, -.is-bad-permissions .file-attachment-errors .bad-permissions, -.is-repository-required .file-attachment-errors .repository-required { - display: flex; -} - -.is-default .drag-and-drop .default { - display: inline-block; -} - -.is-uploading .drag-and-drop .loading { - display: inline-block; -} - -.is-bad-file .drag-and-drop .bad-file { - display: inline-block; -} - -.is-duplicate-filename .drag-and-drop .duplicate-filename { - display: inline-block; -} - -.is-too-big .drag-and-drop .too-big { - display: inline-block; -} - -.is-hidden-file .drag-and-drop .hidden-file { - display: inline-block; -} - -.is-empty .drag-and-drop .empty { - display: inline-block; -} - -.is-bad-permissions .drag-and-drop .bad-permissions { - display: inline-block; -} - -.is-repository-required .drag-and-drop .repository-required { - display: inline-block; -} - -.drag-and-drop-error-info { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.drag-and-drop-error-info a { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.is-failed .drag-and-drop .failed-request { - display: inline-block; -} - -.manual-file-chooser { - position: absolute; - width: 240px; - padding: 5px; - margin-left: -80px; - cursor: pointer; - opacity: .0001; -} - -.btn .manual-file-chooser { - top: 0; - padding: 0; - line-height: 34px; -} - -.upload-enabled textarea { - display: block; - border-bottom: 1px dashed var(--borderColor-default, var(--color-border-default)); - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.upload-enabled.focused { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-fg)); - border-radius: 6px; - outline: none; - box-shadow: 0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); -} - -.upload-enabled.focused .form-control { - border-color: transparent; - border-bottom-color: var(--borderColor-accent-emphasis, var(--color-accent-fg)); - box-shadow: none; -} - -.upload-enabled.focused .drag-and-drop { - border-color: transparent; -} - -.dragover textarea, -.dragover .drag-and-drop { - box-shadow: #c9ff00 0 0 3px; -} - -.write-content { - position: relative; -} - -.previewable-comment-form { - position: relative; -} - -.previewable-comment-form .tabnav { - position: relative; - padding: 8px 8px 0; -} - -.previewable-comment-form .comment { - border: 1px solid transparent; - border-bottom: 0; -} - -.previewable-comment-form .comment-form-error { - margin-bottom: 8px; -} - -.previewable-comment-form .write-content, -.previewable-comment-form .preview-content { - display: none; - margin: 0 8px 8px; -} - -.previewable-comment-form.write-selected .write-content, -.previewable-comment-form.preview-selected .preview-content { - display: block; -} - -.previewable-comment-form textarea { - display: block; - width: 100%; - min-height: 100px; - max-height: 500px; - padding: 8px; - resize: vertical; -} - -.form-action-spacious { - margin-top: 10px; -} - -div.composer { - margin-top: 0; - border: 0; -} - -.composer .comment-form-textarea { - height: 200px; - min-height: 200px; -} - -.composer .tabnav { - margin: 0 0 10px; -} - -h2.account { - margin: 15px 0 0; - font-size: 18px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -p.explain { - position: relative; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -p.explain strong { - color: var(--fgColor-default, var(--color-fg-default)); -} - -p.explain .octicon { - margin-right: 5px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -p.explain .minibutton { - top: -4px; - float: right; -} - -.progress-pjax-loader { - z-index: 99999; - height: 2px; - background: transparent; - opacity: 0; - transition: opacity .4s linear .4s; -} - -.progress-pjax-loader.is-loading { - opacity: 1; - transition: none; -} - -.progress-pjax-loader > .progress-pjax-loader-bar { - background-color: #79b8ff; - transition: width .4s ease; -} - -.starred .starred-button-icon { - color: var(--color-scale-yellow-2); -} - -.user-lists-menu-action { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.user-lists-menu-action:hover:not(:disabled) { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.user-lists-menu-action:focus:not(:disabled) { - color: var(--fgColor-default, var(--color-fg-default)); - outline: 2px solid var(--focus-outlineColor, var(--color-accent-emphasis)); - outline-offset: 2px; -} - -.starring-container .BtnGroup-parent:active { - z-index: auto; -} - -.shelf { - padding-top: 16px; - margin-bottom: 16px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.shelf .container { - position: relative; -} - -.org-sso, -.business-sso { - width: 340px; - margin: 0 auto; -} - -.org-sso .sso-title, -.business-sso .sso-title { - font-size: 24px; - font-weight: var(--base-text-weight-light, 300); - letter-spacing: -0.5px; -} - -.org-sso .org-sso-panel, -.org-sso .business-sso-panel, -.business-sso .org-sso-panel, -.business-sso .business-sso-panel { - padding: 16px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.org-sso .sso-recovery-callout, -.business-sso .sso-recovery-callout { - padding: 16px 8px; - text-align: center; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.sso-modal { - padding: 16px; -} - -.sso-modal .org-sso, -.sso-modal .business-sso { - width: auto; -} - -.sso-modal .org-sso .org-sso-panel, -.sso-modal .business-sso .business-sso-panel { - border: 0; -} - -.sso-modal .sso-prompt-success, -.sso-modal .sso-prompt-error { - display: none; -} - -.sso-modal.success .sso-prompt-default { - display: none; -} - -.sso-modal.success .sso-prompt-success { - display: block; -} - -.sso-modal.error .sso-prompt-default { - display: none; -} - -.sso-modal.error .sso-prompt-error { - display: block; -} - -.sso-modal.error .flash-error { - margin-right: -32px; - margin-left: -32px; - border-right: 0; - border-left: 0; - border-radius: 0; -} - -.status-indicator { - display: inline-block; - width: 16px; - height: 16px; - margin-left: 5px; -} - -.status-indicator .octicon { - display: none; -} - -.status-indicator-success::before { - content: ""; -} - -.status-indicator-success .octicon-check { - display: inline-block; - color: var(--fgColor-success, var(--color-success-fg)); - fill: var(--fgColor-success, var(--color-success-fg)); -} - -.status-indicator-success .octicon-x { - display: none; -} - -.status-indicator-failed::before { - content: ""; -} - -.status-indicator-failed .octicon-check { - display: none; -} - -.status-indicator-failed .octicon-x { - display: inline-block; - color: var(--fgColor-danger, var(--color-danger-fg)); - fill: var(--fgColor-danger, var(--color-danger-fg)); -} - -.status-indicator-loading { - width: 16px; - background-image: url("/images/spinners/octocat-spinner-32-EAF2F5.gif"); - background-repeat: no-repeat; - background-position: 0 0; - background-size: 16px; -} - -.tag-input-container { - position: relative; -} - -.tag-input-container .focus { - border-color: transparent; - box-shadow: none; -} - -.tag-input-container .suggester { - position: absolute; - z-index: 100; - width: 100%; - margin-top: -1px; -} - -.tag-input-container ul { - list-style: none; -} - -.tag-input input { - float: left; - padding-left: 2px; - margin: 0; - background: none; - border: 0; - box-shadow: none; -} - -.tag-input input:focus { - box-shadow: none; -} - -.task-list-item { - list-style-type: none; -} - -.task-list-item label { - font-weight: var(--base-text-weight-normal, 400); -} - -.task-list-item.enabled label { - cursor: pointer; -} - -.task-list-item + .task-list-item { - margin-top: 4px; -} - -.task-list-item .handle { - display: none; -} - -.task-list-item-checkbox { - margin: 0 .2em .25em -1.4em; - vertical-align: middle; -} - -.contains-task-list:dir(rtl) .task-list-item-checkbox { - margin: 0 -1.6em .25em .2em; -} - -.convert-to-issue-button { - top: 2px; - right: 4px; - padding: 0 2px; - margin-right: 8px; - -webkit-user-select: none; - user-select: none; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.convert-to-issue-button .octicon { - fill: var(--fgColor-default, var(--color-fg-default)); -} - -.convert-to-issue-button:hover .octicon, -.convert-to-issue-button:focus .octicon { - fill: var(--fgColor-accent, var(--color-accent-fg)); -} - -.reorderable-task-lists .markdown-body .contains-task-list { - padding: 0; -} - -.reorderable-task-lists .markdown-body li:not(.task-list-item) { - margin-left: 24px; -} - -.reorderable-task-lists .markdown-body ol:not(.contains-task-list) li, -.reorderable-task-lists .markdown-body ul:not(.contains-task-list) li { - margin-left: 0; -} - -.reorderable-task-lists .markdown-body .task-list-item { - padding: 2px 15px 2px 42px; - margin-right: -15px; - margin-left: -15px; - line-height: 1.5; - border: 0; -} - -.reorderable-task-lists .markdown-body .task-list-item + .task-list-item { - margin-top: 0; -} - -.reorderable-task-lists .markdown-body .task-list-item .handle { - display: block; - float: left; - width: 20px; - padding: 2px 0 0 2px; - margin-left: -43px; - opacity: 0; -} - -.reorderable-task-lists .markdown-body .task-list-item .drag-handle { - fill: var(--fgColor-default, var(--color-fg-default)); -} - -.reorderable-task-lists .markdown-body .task-list-item.hovered > .handle { - opacity: 1; -} - -.reorderable-task-lists .markdown-body .task-list-item.is-dragging { - opacity: 0; -} - -.reorderable-task-lists .markdown-body .contains-task-list:dir(rtl) .task-list-item { - margin-right: 0; -} - -.comment-body .reference { - font-weight: var(--base-text-weight-semibold, 600); - white-space: nowrap; -} - -.comment-body .issue-link { - white-space: normal; -} - -.comment-body .issue-link .issue-shorthand { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.comment-body .issue-link:hover .issue-shorthand, -.comment-body .issue-link:focus .issue-shorthand { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.review-comment-contents .markdown-body .task-list-item { - padding-left: 42px; - margin-right: -12px; - margin-left: -12px; - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} - -.convert-to-issue-enabled .task-list-item .contains-task-list { - padding: 4px 15px 0 43px; - margin: 0 -15px 0 -42px; -} - -.convert-to-issue-enabled .task-list-item.hovered { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.convert-to-issue-enabled .task-list-item.hovered .contains-task-list { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.convert-to-issue-enabled .task-list-item > .convert-to-issue-button { - opacity: 0; -} - -.convert-to-issue-enabled .task-list-item.hovered > .convert-to-issue-button, -.convert-to-issue-enabled .task-list-item > .convert-to-issue-button:focus { - z-index: 20; - opacity: 1; -} - -.convert-to-issue-enabled .task-list-item.is-loading { - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-top: 1px solid var(--borderColor-accent-muted, var(--color-accent-subtle)); - border-bottom: 1px solid var(--bgColor-default, var(--color-canvas-default)); - border-left: 1px solid var(--bgColor-default, var(--color-canvas-default)); -} - -.convert-to-issue-enabled .task-list-item.is-loading ul { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.convert-to-issue-enabled .task-list-item.is-loading > .handle { - opacity: 0; -} - -.task-list-item-convert-container { - position: absolute; - top: calc(100% - 4px); - right: 0; - left: 0; - display: none; - margin-top: 0; -} - -.task-list-item-convert-container:hover, -.task-list-item-convert-container:focus { - display: block; -} - -.task-list-item-convert-button-container { - top: 4px; - right: 0; - left: auto; - width: auto; -} - -.contains-task-list { - position: relative; -} - -.contains-task-list:hover .task-list-item-convert-container, -.contains-task-list:focus-within .task-list-item-convert-container { - display: block; - width: auto; - height: 24px; - overflow: visible; - clip: auto; -} - -.convert-to-block-button { - margin: 0 4px; -} - -.toolbar-commenting .dropdown-menu-s { - width: 100px; -} - -.toolbar-commenting .dropdown-item { - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1em; - background: none; - border: 0; -} - -.toolbar-commenting .dropdown-item:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.toolbar-commenting .dropdown-item:focus { - color: var(--fgColor-accent, var(--color-accent-fg)); - outline: none; -} - -.toolbar-item { - display: block; - float: left; - padding: 4px; - cursor: pointer; -} - -.toolbar-item.dropdown, -.toolbar-item.select-menu { - padding: 0; -} - -.toolbar-item .select-menu-modal { - margin-top: 2px; -} - -.toolbar-item .select-menu-item { - padding-left: 8px; -} - -.topic-tag { - display: inline-block; - padding: .3em .9em; - margin: 0 .5em .5em 0; - white-space: nowrap; - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: 6px; -} - -.topic-tag-link:hover { - text-decoration: none; - background-color: #def; -} - -.delete-topic-button, -.delete-topic-link { - display: inline-block; - width: 26px; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-top: 0; - border-right: 0; - border-bottom: 0; - border-left: 1px solid #b4d9ff; -} - -.topic-tag-action:hover .delete-topic-link { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.topic-tag-outline { - background: transparent; - box-shadow: inset 0 0 0 1px #c8e1ff; -} - -.delete-topic-link { - padding-right: 8px; - padding-left: 8px; - margin-left: 8px; - line-height: 1.75; -} - -.delete-topic-link:hover { - text-decoration: none; -} - -.invalid-topic .delete-topic-button { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-danger-muted, var(--color-danger-subtle)); - border-left-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.invalid-topic .delete-topic-button:hover { - background-color: #ffc8ce; -} - -.topic-tag-action { - display: inline-flex; - align-items: center; - padding-left: .8em; - margin: .4em .4em 0 0; - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: 6px; -} - -.topic-tag-action.invalid-topic { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-danger-muted, var(--color-danger-subtle)); - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.topic-tag-action .add-topic-button, -.topic-tag-action .remove-topic-button { - display: inline-block; - width: 26px; - font-size: 14px; - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-top: 0; - border-right: 0; - border-bottom: 0; - border-left: 1px solid #b4d9ff; -} - -.topic-tag-action .add-topic-button:hover, -.topic-tag-action .remove-topic-button:hover { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.topic-tag-action .add-topic-button:hover { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.topic-tag-action .remove-topic-button { - border-right: 0; - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} - -.topic-tag-action .remove-topic-button:hover { - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.topic-input-container .tag-input { - width: 908px; - cursor: text; -} - -.topic-input-container .tag-input.org-repo-tag-input { - width: 100%; -} - -.topic-input-container .tag-input .tag-input-inner { - min-height: 26px; - background-image: none; -} - -.topic-input-container .topic-tag { - margin-top: 2px; -} - -.topic .css-truncate-target { - max-width: 75%; -} - -.topic-list .topic-list-item + .topic-list-item { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.topic-box .starred { - color: var(--fgColor-attention, var(--color-attention-fg)); - border: 0; -} - -.topic-box .unstarred { - color: var(--fgColor-muted, var(--color-fg-muted)); - border: 0; -} - -.user-status-suggestions { - height: 98px; - transition: height 100ms ease-out,opacity 200ms ease-in; -} - -.user-status-suggestions.collapsed { - height: 0; - opacity: 0; -} - -.user-status-container, -.user-status-container .team-mention, -.user-status-container .user-mention { - white-space: normal; -} - -.user-status-container { - word-break: break-word; - word-wrap: break-word; -} - -.user-status-container .input-group-button .btn { - width: 46px; - height: 34px; - line-height: 0; -} - -.user-status-container .input-group-button g-emoji { - font-size: 1.3em; - line-height: 18px; -} - -.user-status-container .team-mention, -.user-status-container .user-mention { - white-space: normal; -} - -.user-status-container img.emoji { - width: 18px; - height: 18px; -} - -.emoji-status-width { - width: 20px; -} - -.user-status-org-button .user-status-org-detail { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.user-status-org-button:hover .user-status-org-detail, -.user-status-org-button:focus .user-status-org-detail { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.user-status-org-button.selected { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.user-status-org-button.selected .user-status-org-detail { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.user-status-limited-availability-compact { - width: 8px; - height: 8px; - background-color: var(--bgColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.user-status-message-wrapper { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.toggle-user-status-edit:hover .user-status-message-wrapper, -.toggle-user-status-edit:focus .user-status-message-wrapper { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.user-status-message-wrapper div { - display: inline; -} - -.user-status-header g-emoji { - font-size: 1.25em; -} - -.user-status-message-wrapper .g-emoji { - display: inline-block; -} - -.user-status-limited-availability-container { - margin-top: 16px; - margin-bottom: 16px; -} - -@media only screen and (max-height: 560px) { - .user-status-suggestions { - display: none; - } - - .user-status-limited-availability-container { - margin-top: 8px; - margin-bottom: 8px; - } -} - -.user-status-circle-badge { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 2em; - box-shadow: var(--shadow-resting-small, var(--color-shadow-small)); -} - -.command-palette { - box-shadow: var(--shadow-floating-small, var(--color-overlay-shadow)); -} - -@media (min-width: 768px) { - .command-palette-details-dialog { - width: 512px; - } -} - -@media (min-width: 1012px) { - .command-palette-details-dialog { - width: 640px; - } -} - -@media (min-width: 1280px) { - .command-palette-details-dialog { - width: 720px; - } -} - -.page-stack-transition-height { - overflow-y: scroll; - transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: .2s; - transition-property: max-height,min-height; -} - -.page-stack-transition-height.no-transition { - transition-duration: 0s; -} - -.command-palette-input-group { - position: relative; - z-index: 0; - padding-left: 0; - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.command-palette-input-group .no-focus-indicator:focus, -.command-palette-input-group .no-focus-indicator:focus-visible { - border: 0; - outline: none; -} - -.command-palette-input-group .command-palette-typeahead { - position: absolute; - z-index: 1; - padding: inherit; - pointer-events: none; -} - -.command-palette-input-group .command-palette-typeahead .typeahead-segment { - white-space: pre; -} - -.command-palette-input-group .command-palette-typeahead .typeahead-segment.input-mirror { - opacity: 0; -} - -.command-palette-input-group .typeahead-input { - padding: inherit; -} - -.command-palette-input-clear-button { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.command-palette-input-clear-button:hover { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -themed-picture { - visibility: hidden; -} - -.SidePanel > .Overlay-header > .Overlay-headerContentWrap > .Overlay-titleWrap { - padding-top: 8px; -} - -.SidePanel > .Overlay-header > .Overlay-headerContentWrap > .Overlay-actionWrap { - padding: 8px; -} - -.is-auto-complete-loading :not(input).form-control { - padding-right: 0; - background-image: none; -} - -.ExperimentalActionBar { - position: relative; - display: flex; - min-width: 0; - align-items: center; - flex-grow: 1; - flex-shrink: 1; - box-sizing: content-box; - overflow: hidden; - justify-content: flex-end; -} - -.ExperimentalActionBar-item-container { - display: flex; - box-sizing: content-box; - align-items: center; - flex-shrink: 0; - flex-grow: 0; -} - -.ExperimentalActionBar-item { - position: relative; - flex-shrink: 0; -} - -.ExperimentalActionBar-more-menu { - flex-shrink: 0; -} - -.ExperimentalActionBar-divider { - height: calc(var(--control-medium-size, 32px)/2); - margin: 0 var(--controlStack-medium-gap-condensed, 8px); - border-left: var(--borderWidth-thin, 1px) solid var(--color-border-subtle); -} - -.ExperimentalActionBar--small .ExperimentalActionBar-divider { - margin: 0 var(--controlStack-small-gap-condensed, 8px); -} - -.ExperimentalActionBar--large .ExperimentalActionBar-divider { - margin: 0 var(--controlStack-large-gap-condensed, 8px); -} - -@media (pointer: coarse) { - .ExperimentalActionBar .ExperimentalActionBar-item-container { - gap: calc(var(--control-minTarget-coarse, 44px) - var(--control-medium-size, 32px)); - } - - .ExperimentalActionBar--small .ExperimentalActionBar-item-container { - gap: calc(var(--control-minTarget-coarse, 44px) - var(--control-small-size, 28px)); - } - - .ExperimentalActionBar--large .ExperimentalActionBar-item-container { - gap: calc(var(--control-minTarget-coarse, 44px) - var(--control-large-size, 40px)); - } -} - -.ActionMenu { - position: absolute; - z-index: 999; - display: none; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.CommentBox-header { - display: flex; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.CommentBox-header.CommentBox-header { - margin-bottom: 0; -} - -.CommentBox-header .tabnav-tabs { - margin-top: -1px; - margin-left: -1px; - flex-shrink: 0; -} - -.CommentBox-toolbar { - display: flex; - min-width: 0; - margin-right: var(--base-size-4, 4px); - flex-shrink: 1; - flex-grow: 1; -} - -.CommentBox-toolbar .Button--invisible { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.CommentBox-input { - display: block; - min-height: 100px; - padding: var(--stack-padding-normal, 16px); - line-height: 1.5; - color: var(--fgColor-default, var(--color-fg-default)); - resize: vertical; - border: 0; -} - -.CommentBox-input.CommentBox-input.CommentBox-input:focus { - box-shadow: none; -} - -.CommentBox-input::placeholder { - visibility: hidden; -} - -.CommentBox-input.CommentBox-input--medium { - min-height: 150px; -} - -.CommentBox-input.CommentBox-input--large { - min-height: 250px; -} - -.CommentBox-placeholder { - position: absolute; - top: 0; - left: 0; - display: none; - padding: var(--stack-padding-normal, 16px); - color: var(--fgColor-muted, var(--color-fg-subtle)); - pointer-events: none; -} - -.CommentBox-input:placeholder-shown + .CommentBox-placeholder { - display: block; -} - -.CommentBox:has(.CommentBox-input:focus, .Button:active) { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-emphasis)); - outline-offset: -1px; -} - -@supports not selector(.CommentBox:has(*:focus)) { - .CommentBox:focus-within { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-emphasis)); - outline-offset: -1px; - } -} - -.CommentBox .dragover .CommentBox-input, -.CommentBox .dragover .CommentBox-input:focus { - border-radius: 10px; - outline: 2px dashed var(--borderColor-default, var(--color-border-default)); - outline-offset: -6px; - box-shadow: none; -} - -.previewable-comment-form textarea.CommentBox-input { - padding: var(--stack-padding-normal, 16px); -} - -.previewable-edit .previewable-comment-form .CommentBox-header .tabnav-tabs { - display: flex; -} - -.previewable-comment-form .CommentBox .preview-content { - margin: 0; -} - -.previewable-comment-form .CommentBox .comment-body { - padding: var(--stack-padding-normal, 16px); - border-bottom: 0; -} - -.PageHeader { - display: grid; - grid-template-columns: 1fr; - grid-template-areas: "contextBar" "titleBar" "description" "navigation"; - margin-bottom: 24px; -} - -@media (max-width: 768px) { - .PageHeader { - margin-bottom: 16px; - } -} - -.PageHeader .PageHeader-contextBar { - display: flex; - column-gap: 16px; - align-items: center; -} - -.PageHeader .PageHeader-contextBar .PageHeader-parentLink { - flex: 1 1 auto; -} - -.PageHeader .PageHeader-parentLink a { - display: inline-grid; - grid-template-columns: min-content auto; - gap: 4px; - align-items: center; - padding: 4px 8px; - margin-left: -8px; - font-size: 14px; - line-height: 1.25; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-radius: 6px; -} - -.PageHeader .PageHeader-parentLink a:hover { - color: var(--fgColor-default, var(--color-fg-default)); - text-decoration: none; - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.PageHeader .PageHeader-parentLink .PageHeader-parentLink-label { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.PageHeader .PageHeader-titleBar { - display: flex; - column-gap: 16px; -} - -.PageHeader .PageHeader-titleBar .PageHeader-titleWrap { - flex: 1 1 auto; -} - -.PageHeader .PageHeader-titleBar .PageHeader-actions { - flex: 0 0 auto; -} - -.PageHeader .PageHeader-titleWrap { - display: flex; - column-gap: 8px; -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--large { - font: 400 var(--text-title-size-large, 2rem) -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--large .PageHeader-backButton { - height: var(--text-title-lineHeight-large, 2.5rem); -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--large .PageHeader-leadingVisual { - max-height: var(--text-title-lineHeight-large, 2.5rem); -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--medium { - font: 600 var(--text-title-size-medium, 1.25rem) -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--subtitle { - font: 400 var(--text-subtitle-size, 1.25rem) -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; -} - -@media (max-width: 768px) { - .PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--large { - font: 600 var(--text-title-size-medium, 1.25rem) -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - } - - .PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--medium { - font: 600 var(--text-title-size-medium, 1.25rem) -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - } - - .PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--subtitle { - font: 400 var(--text-title-size-medium, 1.25rem) -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - } -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--hasLeadingVisual { - display: flex; -} - -.PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--hasBackButton:first-child { - margin-left: -4px; -} - -@media (min-width: 768px) { - .PageHeader .PageHeader-titleWrap.PageHeader-titleWrap--hasBackButton:first-child { - display: flex; - align-items: center; - margin-left: 8px; - grid-template-columns: min-content auto; - } -} - -.PageHeader .PageHeader-titleWrap h1, -.PageHeader .PageHeader-titleWrap h2, -.PageHeader .PageHeader-titleWrap h3 { - font-size: inherit; - font-weight: inherit; - line-height: inherit; -} - -.PageHeader .PageHeader-titleWrap .PageHeader-title { - display: inline-grid; - grid-auto-flow: column; - grid-template-columns: auto; - align-items: center; - gap: 8px; -} - -.PageHeader .PageHeader-titleWrap .PageHeader-leadingVisual { - display: grid; - align-items: center; - max-height: var(--text-title-lineHeight-large, 1.5); -} - -.PageHeader .PageHeader-titleWrap .PageHeader-trailingVisual { - display: grid; - align-items: center; - max-height: var(--text-title-lineHeight-large, 1.5); -} - -.PageHeader .PageHeader-titleWrap .PageHeader-backButton { - position: relative; - display: grid; - width: 16px; - height: var(--text-title-lineHeight-medium, 1.5rem); - align-items: center; - padding: 0; - color: inherit; - border-radius: 6px; -} - -@media (max-width: 768px) { - .PageHeader .PageHeader-titleWrap .PageHeader-backButton { - display: none; - } -} - -.PageHeader .PageHeader-description { - margin-top: 8px; - overflow: auto; -} - -.PageHeader .PageHeader-navigation { - margin-top: 16px; - overflow: auto; -} - -.QueryBuilder-StyledInput { - display: inline-flex; - width: 100%; - min-height: var(--control-medium-size, 32px); - color: var(--fgColor-default, var(--color-fg-default)); - vertical-align: middle; - cursor: text; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-color: var(--control-borderColor-rest, var(--color-border-default)); - border-radius: var(--borderRadius-medium, 6px); - outline: none; - align-items: center; - gap: 4px; -} - -.QueryBuilder-focus { - border-color: transparent; - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - box-shadow: inset 0 0 1px transparent; -} - -.QueryBuilder-StyledInputContainer { - position: relative; - display: flex; - overflow-x: auto; - overflow-y: hidden; - font-size: inherit; - align-items: center; - -ms-overflow-style: none; - scrollbar-width: none; - flex: 1; - align-self: stretch; -} - -.QueryBuilder-StyledInputContainer::-webkit-scrollbar { - display: none; -} - -.QueryBuilder-StyledInputContent { - position: absolute; - display: inline-flex; - padding: 0; - word-break: break-word; - white-space: pre; - -webkit-user-select: none; - user-select: none; - flex: 1; -} - -.QueryBuilder-leadingVisualWrap { - margin: 4px 4px 4px 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.QueryBuilder-spacer { - width: 8px; - height: 100%; -} - -.QueryBuilder-InputWrapper { - width: 100%; - align-self: stretch; -} - -.QueryBuilder-Sizer { - position: absolute; - top: 0; - left: 0; - height: 0; - overflow: scroll; - white-space: pre; - visibility: hidden; -} - -.QueryBuilder-Input { - position: relative; - display: flex; - min-width: 100%; - padding: 0; - overflow-x: auto; - overflow-y: hidden; - color: transparent; - resize: none; - background: transparent; - border: 0; - outline: none; - caret-color: var(--fgColor-default, var(--color-fg-default)); -} - -.QueryBuilder-Input:focus { - border: 0; - box-shadow: none; -} - -query-builder:not(:defined) .QueryBuilder-Input { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.QueryBuilder-ListItem { - display: grid; - grid-template-columns: max-content minmax(0, auto) max-content; - grid-template-areas: "leadingVisual label trailingLabel"; - -webkit-user-select: unset; - user-select: unset; -} - -.QueryBuilder-ListItem-link { - color: inherit; - text-decoration: none; -} - -.QueryBuilder-ListItem-trailing { - grid-area: trailingLabel; -} - -.QueryBuilder-ListWrap { - max-height: 20em; - padding: 8px; - overflow-x: hidden; - overflow-y: auto; -} - -.QueryBuilder [data-type=filter-value] { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: var(--borderRadius-small, 3px); -} - -.QueryBuilder .qb-filter-value { - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-radius: var(--borderRadius-small, 3px); -} - -.QueryBuilder .qb-entity { - color: var(--color-prettylights-syntax-entity); -} - -.QueryBuilder .qb-constant { - color: var(--color-prettylights-syntax-constant); -} - -.QueryBuilder .ActionList-sectionDivider:not(:empty) { - padding: 0; -} - -@media (min-width: 1012px) { - .hx_actions-sidebar { - max-width: 320px; - } -} - -.hx_anim-fade-out { - animation-name: hx-fade-out; - animation-duration: 1s; - animation-fill-mode: forwards; - animation-timing-function: ease-out; -} - -@keyframes hx-fade-out { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -.AvatarStack--large { - min-width: 44px; - height: 32px; -} - -.AvatarStack--large.AvatarStack--two { - min-width: 48px; -} - -.AvatarStack--large.AvatarStack--three-plus { - min-width: 52px; -} - -.AvatarStack--large .AvatarStack-body .avatar { - width: 32px; - height: 32px; - margin-right: -28px; -} - -.AvatarStack--large .AvatarStack-body:hover .avatar { - margin-right: 4px; -} - -.AvatarStack--large .avatar.avatar-more::before { - width: 32px; -} - -.AvatarStack--large .avatar.avatar-more::after { - width: 30px; -} - -.AvatarStack--large .avatar.avatar-more::after, -.AvatarStack--large .avatar.avatar-more::before { - height: 32px; -} - -.hx_avatar_stack_commit .AvatarStack { - min-width: 24px; - height: 24px; -} - -.hx_avatar_stack_commit .AvatarStack .avatar { - width: 24px; - height: 24px; -} - -.hx_avatar_stack_commit .AvatarStack.AvatarStack--two { - min-width: 40px; -} - -.hx_avatar_stack_commit .AvatarStack.AvatarStack--three-plus { - min-width: 44px; -} - -.hx_flex-avatar-stack { - display: flex; - align-items: center; -} - -.hx_flex-avatar-stack-item { - min-width: 0; - max-width: 24px; -} - -.hx_flex-avatar-stack-item .avatar { - display: block; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 2px solid var(--bgColor-default, var(--color-canvas-default)); - box-shadow: none; -} - -.hx_flex-avatar-stack-item:last-of-type { - flex-shrink: 0; - max-width: none; -} - -.Box-row--focus-gray.navigation-focus .AvatarStack-body { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.AvatarStack-body:not(:hover) { - background-color: transparent; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .avatar-more { - display: none; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body .avatar:nth-child(1n + 4) { - display: flex; - opacity: 1; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) .avatar:nth-of-type(1n + 6) { - display: none; - opacity: 0; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body > .avatar:nth-of-type(1) { - z-index: 5; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body > .avatar:nth-of-type(2) { - z-index: 4; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body > .avatar:nth-of-type(3) { - z-index: 3; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body > .avatar:nth-of-type(4) { - z-index: 2; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body > .avatar:nth-of-type(5) { - z-index: 1; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more + .avatar:nth-of-type(3) img { - opacity: .5; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(4) img { - opacity: .33; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(5) img { - opacity: .25; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more + .avatar:nth-of-type(3) { - margin-right: 0; - margin-left: -6px; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(4) { - margin-right: 0; - margin-left: -18px; -} - -.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(5) { - margin-right: 0; - margin-left: -18px; -} - -.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--right .AvatarStack-body:not(:hover) > .avatar-more + .avatar:nth-of-type(3) { - margin-right: -6px; - margin-left: 0; -} - -.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--right .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(4) { - margin-right: -18px; - margin-left: 0; -} - -.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--right .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(5) { - margin-right: -18px; - margin-left: 0; -} - -.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--large .AvatarStack-body:not(:hover) > .avatar-more + .avatar:nth-of-type(3) { - margin-right: 0; - margin-left: -2px; -} - -.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--large .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(4) { - margin-right: 0; - margin-left: -30px; -} - -.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--large .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(5) { - margin-right: 0; - margin-left: -30px; -} - -.hx_avatar_stack_commit .AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more + .avatar:nth-of-type(3) { - margin-right: 0; - margin-left: -10px; -} - -.hx_avatar_stack_commit .AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(4) { - margin-right: 0; - margin-left: -21px; -} - -.hx_avatar_stack_commit .AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) > .avatar-more ~ .avatar:nth-of-type(5) { - margin-right: 0; - margin-left: -21px; -} - -.hx_badge-search-container { - cursor: text; -} - -.hx_badge-search-container .hx_badge-input { - border: 0; - outline: 0; - box-shadow: none; -} - -.hx_badge-search-container .hx_badge-input:focus { - border: 0; - box-shadow: none; -} - -.hx_badge-search-container .hx_badge-input::placeholder { - font-size: 12px; -} - -.hx_badge-search-container .hx_badge-input-inline { - height: 30px; -} - -.hx_badge { - cursor: pointer; -} - -.hx_badge[aria-pressed=true] { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.hx_Box--firstRowRounded0 .Box-row:first-of-type { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.Box-row:first-of-type { - border-top-color: transparent; -} - -.hx_Box-row--with-top-border:first-of-type { - border-top-color: inherit; -} - -.Box--overlay [data-close-dialog], -.Box-overlay--narrow [data-close-dialog], -.Box-overlay--wide [data-close-dialog] { - z-index: 1; -} - -.dropdown-item.btn-link:disabled, -.dropdown-item.btn-link:disabled:hover, -.dropdown-item.btn-link[aria-disabled=true], -.dropdown-item.btn-link[aria-disabled=true]:hover { - background-color: transparent; -} - -@media (-webkit-min-device-pixel-ratio: 2)and (-webkit-min-device-pixel-ratio: 0), (-webkit-min-device-pixel-ratio: 2)and (min-resolution: 0.001dpcm) { - g-emoji { - font-size: 1.25em; - } -} - -.hx_create-pr-button:hover { - border-right-width: 0; -} - -.hx_create-pr-button:hover + .BtnGroup-parent .BtnGroup-item { - border-left-width: 1px; -} - -summary[type=button].btn { - -webkit-appearance: none; - appearance: none; -} - -.form-control:-webkit-autofill { - box-shadow: inset 0 0 0 32px var(--bgColor-default, var(--color-canvas-default)); - -webkit-text-fill-color: var(--fgColor-default, var(color-fg-default)); -} - -.form-control:-webkit-autofill:focus { - box-shadow: inset 0 0 0 32px var(--bgColor-default, var(--color-canvas-default)),0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); -} - -::-webkit-calendar-picker-indicator { - filter: invert(50%); -} - -[data-color-mode=light][data-light-theme*=dark] ::selection, -[data-color-mode=dark][data-dark-theme*=dark] ::selection { - background-color: var(--bgColor-accent-muted, var(--color-accent-muted)); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] ::selection { - background-color: var(--bgColor-accent-muted, var(--color-accent-muted)); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] ::selection { - background-color: var(--bgColor-accent-muted, var(--color-accent-muted)); - } -} - -@font-face { - font-family: "Noto Sans"; - src: local(sans-serif); - unicode-range: U+60; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-workflow-card-connector: var(--color-scale-gray-5); - --color-workflow-card-connector-bg: var(--color-scale-gray-5); - --color-workflow-card-connector-inactive: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-inactive-bg: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-highlight: var(--color-scale-blue-5); - --color-workflow-card-connector-highlight-bg: var(--color-scale-blue-5); - --color-workflow-card-bg: var(--color-scale-gray-7); - --color-workflow-card-inactive-bg: var(--bgColor-inset, var(--color-canvas-inset)); - --color-workflow-card-header-shadow: rgba(27, 31, 35, 0.04); - --color-workflow-card-progress-complete-bg: var(--color-scale-blue-5); - --color-workflow-card-progress-incomplete-bg: var(--color-scale-gray-6); - --color-discussions-state-answered-icon: var(--color-scale-green-3); - --color-bg-discussions-row-emoji-box: var(--color-scale-gray-6); - --color-notifications-button-text: var(--color-scale-white); - --color-notifications-button-hover-text: var(--color-scale-white); - --color-notifications-button-hover-bg: var(--color-scale-blue-4); - --color-notifications-row-read-bg: var(--color-canvas-default); - --color-notifications-row-bg: var(--bgColor-muted, var(--color-canvas-subtle)); - --color-icon-directory: var(--fgColor-muted, var(--color-fg-muted)); - --color-checks-step-error-icon: var(--color-scale-red-4); - --color-calendar-halloween-graph-day-L1-bg: #631c03; - --color-calendar-halloween-graph-day-L2-bg: #bd561d; - --color-calendar-halloween-graph-day-L3-bg: #fa7a18; - --color-calendar-halloween-graph-day-L4-bg: #fddf68; - --color-calendar-winter-graph-day-L1-bg: #0A3069; - --color-calendar-winter-graph-day-L2-bg: #0969DA; - --color-calendar-winter-graph-day-L3-bg: #54AEFF; - --color-calendar-winter-graph-day-L4-bg: #B6E3FF; - --color-calendar-graph-day-bg: var(--color-scale-gray-8); - --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L1-bg: #0e4429; - --color-calendar-graph-day-L2-bg: #006d32; - --color-calendar-graph-day-L3-bg: #26a641; - --color-calendar-graph-day-L4-bg: #39d353; - --color-calendar-graph-day-L1-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L2-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L3-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L4-border: rgba(255, 255, 255, 0.05); - --color-user-mention-fg: var(--color-scale-yellow-0); - --color-user-mention-bg: var(--color-scale-yellow-8); - --color-dashboard-feed-bg: var(--color-scale-gray-9); - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-project-header-bg: var(--color-scale-gray-9); - --color-project-sidebar-bg: var(--color-scale-gray-8); - --color-project-gradient-in: var(--color-scale-gray-8); - --color-project-gradient-out: rgba(22, 27, 34, 0); - --color-diff-blob-selected-line-highlight-mix-blend-mode: screen; - --color-checks-donut-error: var(--color-scale-red-4); - --color-checks-donut-pending: var(--color-scale-yellow-3); - --color-checks-donut-success: var(--color-scale-green-4); - --color-checks-donut-neutral: var(--color-scale-gray-3); - --color-text-white: var(--color-scale-white); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-workflow-card-connector: var(--color-scale-gray-5); - --color-workflow-card-connector-bg: var(--color-scale-gray-5); - --color-workflow-card-connector-inactive: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-inactive-bg: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-highlight: var(--color-scale-blue-5); - --color-workflow-card-connector-highlight-bg: var(--color-scale-blue-5); - --color-workflow-card-bg: var(--color-scale-gray-7); - --color-workflow-card-inactive-bg: var(--bgColor-inset, var(--color-canvas-inset)); - --color-workflow-card-header-shadow: rgba(27, 31, 35, 0.04); - --color-workflow-card-progress-complete-bg: var(--color-scale-blue-5); - --color-workflow-card-progress-incomplete-bg: var(--color-scale-gray-6); - --color-discussions-state-answered-icon: var(--color-scale-green-3); - --color-bg-discussions-row-emoji-box: var(--color-scale-gray-6); - --color-notifications-button-text: var(--color-scale-white); - --color-notifications-button-hover-text: var(--color-scale-white); - --color-notifications-button-hover-bg: var(--color-scale-blue-4); - --color-notifications-row-read-bg: var(--color-canvas-default); - --color-notifications-row-bg: var(--bgColor-muted, var(--color-canvas-subtle)); - --color-icon-directory: var(--fgColor-muted, var(--color-fg-muted)); - --color-checks-step-error-icon: var(--color-scale-red-4); - --color-calendar-halloween-graph-day-L1-bg: #631c03; - --color-calendar-halloween-graph-day-L2-bg: #bd561d; - --color-calendar-halloween-graph-day-L3-bg: #fa7a18; - --color-calendar-halloween-graph-day-L4-bg: #fddf68; - --color-calendar-winter-graph-day-L1-bg: #0A3069; - --color-calendar-winter-graph-day-L2-bg: #0969DA; - --color-calendar-winter-graph-day-L3-bg: #54AEFF; - --color-calendar-winter-graph-day-L4-bg: #B6E3FF; - --color-calendar-graph-day-bg: var(--color-scale-gray-8); - --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L1-bg: #0e4429; - --color-calendar-graph-day-L2-bg: #006d32; - --color-calendar-graph-day-L3-bg: #26a641; - --color-calendar-graph-day-L4-bg: #39d353; - --color-calendar-graph-day-L1-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L2-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L3-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L4-border: rgba(255, 255, 255, 0.05); - --color-user-mention-fg: var(--color-scale-yellow-0); - --color-user-mention-bg: var(--color-scale-yellow-8); - --color-dashboard-feed-bg: var(--color-scale-gray-9); - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-project-header-bg: var(--color-scale-gray-9); - --color-project-sidebar-bg: var(--color-scale-gray-8); - --color-project-gradient-in: var(--color-scale-gray-8); - --color-project-gradient-out: rgba(22, 27, 34, 0); - --color-diff-blob-selected-line-highlight-mix-blend-mode: screen; - --color-checks-donut-error: var(--color-scale-red-4); - --color-checks-donut-pending: var(--color-scale-yellow-3); - --color-checks-donut-success: var(--color-scale-green-4); - --color-checks-donut-neutral: var(--color-scale-gray-3); - --color-text-white: var(--color-scale-white); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-workflow-card-connector: var(--color-scale-gray-5); - --color-workflow-card-connector-bg: var(--color-scale-gray-5); - --color-workflow-card-connector-inactive: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-inactive-bg: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-highlight: var(--color-scale-blue-5); - --color-workflow-card-connector-highlight-bg: var(--color-scale-blue-5); - --color-workflow-card-bg: var(--color-scale-gray-7); - --color-workflow-card-inactive-bg: var(--bgColor-inset, var(--color-canvas-inset)); - --color-workflow-card-header-shadow: rgba(27, 31, 35, 0.04); - --color-workflow-card-progress-complete-bg: var(--color-scale-blue-5); - --color-workflow-card-progress-incomplete-bg: var(--color-scale-gray-6); - --color-discussions-state-answered-icon: var(--color-scale-green-3); - --color-bg-discussions-row-emoji-box: var(--color-scale-gray-6); - --color-notifications-button-text: var(--color-scale-white); - --color-notifications-button-hover-text: var(--color-scale-white); - --color-notifications-button-hover-bg: var(--color-scale-blue-4); - --color-notifications-row-read-bg: var(--color-canvas-default); - --color-notifications-row-bg: var(--bgColor-muted, var(--color-canvas-subtle)); - --color-icon-directory: var(--fgColor-muted, var(--color-fg-muted)); - --color-checks-step-error-icon: var(--color-scale-red-4); - --color-calendar-halloween-graph-day-L1-bg: #631c03; - --color-calendar-halloween-graph-day-L2-bg: #bd561d; - --color-calendar-halloween-graph-day-L3-bg: #fa7a18; - --color-calendar-halloween-graph-day-L4-bg: #fddf68; - --color-calendar-winter-graph-day-L1-bg: #0A3069; - --color-calendar-winter-graph-day-L2-bg: #0969DA; - --color-calendar-winter-graph-day-L3-bg: #54AEFF; - --color-calendar-winter-graph-day-L4-bg: #B6E3FF; - --color-calendar-graph-day-bg: var(--color-scale-gray-8); - --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L1-bg: #0e4429; - --color-calendar-graph-day-L2-bg: #006d32; - --color-calendar-graph-day-L3-bg: #26a641; - --color-calendar-graph-day-L4-bg: #39d353; - --color-calendar-graph-day-L1-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L2-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L3-border: rgba(255, 255, 255, 0.05); - --color-calendar-graph-day-L4-border: rgba(255, 255, 255, 0.05); - --color-user-mention-fg: var(--color-scale-yellow-0); - --color-user-mention-bg: var(--color-scale-yellow-8); - --color-dashboard-feed-bg: var(--color-scale-gray-9); - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-project-header-bg: var(--color-scale-gray-9); - --color-project-sidebar-bg: var(--color-scale-gray-8); - --color-project-gradient-in: var(--color-scale-gray-8); - --color-project-gradient-out: rgba(22, 27, 34, 0); - --color-diff-blob-selected-line-highlight-mix-blend-mode: screen; - --color-checks-donut-error: var(--color-scale-red-4); - --color-checks-donut-pending: var(--color-scale-yellow-3); - --color-checks-donut-success: var(--color-scale-green-4); - --color-checks-donut-neutral: var(--color-scale-gray-3); - --color-text-white: var(--color-scale-white); - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-workflow-card-connector: var(--color-scale-gray-3); - --color-workflow-card-connector-bg: var(--color-scale-gray-3); - --color-workflow-card-connector-inactive: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-inactive-bg: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-highlight: var(--color-scale-blue-4); - --color-workflow-card-connector-highlight-bg: var(--color-scale-blue-4); - --color-workflow-card-bg: var(--color-scale-white); - --color-workflow-card-inactive-bg: var(--bgColor-inset, var(--color-canvas-inset)); - --color-workflow-card-header-shadow: rgba(0, 0, 0, 0); - --color-workflow-card-progress-complete-bg: var(--color-scale-blue-4); - --color-workflow-card-progress-incomplete-bg: var(--color-scale-gray-2); - --color-discussions-state-answered-icon: var(--color-scale-white); - --color-bg-discussions-row-emoji-box: rgba(209, 213, 218, 0.5); - --color-notifications-button-text: var(--fgColor-muted, var(--color-fg-muted)); - --color-notifications-button-hover-text: var(--fgColor-default, var(--color-fg-default)); - --color-notifications-button-hover-bg: var(--color-scale-gray-2); - --color-notifications-row-read-bg: var(--bgColor-muted, var(--color-canvas-subtle)); - --color-notifications-row-bg: var(--color-scale-white); - --color-icon-directory: var(--color-scale-blue-3); - --color-checks-step-error-icon: var(--color-scale-red-4); - --color-calendar-halloween-graph-day-L1-bg: #ffee4a; - --color-calendar-halloween-graph-day-L2-bg: #ffc501; - --color-calendar-halloween-graph-day-L3-bg: #fe9600; - --color-calendar-halloween-graph-day-L4-bg: #03001c; - --color-calendar-winter-graph-day-L1-bg: #B6E3FF; - --color-calendar-winter-graph-day-L2-bg: #54AEFF; - --color-calendar-winter-graph-day-L3-bg: #0969DA; - --color-calendar-winter-graph-day-L4-bg: #0A3069; - --color-calendar-graph-day-bg: #ebedf0; - --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L1-bg: #9be9a8; - --color-calendar-graph-day-L2-bg: #40c463; - --color-calendar-graph-day-L3-bg: #30a14e; - --color-calendar-graph-day-L4-bg: #216e39; - --color-calendar-graph-day-L1-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L2-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L3-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L4-border: rgba(27, 31, 35, 0.06); - --color-user-mention-fg: var(--fgColor-default, var(--color-fg-default)); - --color-user-mention-bg: var(--bgColor-attention-muted, var(--color-attention-subtle)); - --color-dashboard-feed-bg: var(--color-scale-white); - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-project-header-bg: var(--color-scale-gray-9); - --color-project-sidebar-bg: var(--color-scale-white); - --color-project-gradient-in: var(--color-scale-white); - --color-project-gradient-out: rgba(255, 255, 255, 0); - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-checks-donut-error: var(--color-scale-red-4); - --color-checks-donut-pending: var(--color-scale-yellow-4); - --color-checks-donut-success: var(--color-success-emphasis); - --color-checks-donut-neutral: var(--color-scale-gray-3); - --color-text-white: var(--color-scale-white); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-workflow-card-connector: var(--color-scale-gray-3); - --color-workflow-card-connector-bg: var(--color-scale-gray-3); - --color-workflow-card-connector-inactive: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-inactive-bg: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-highlight: var(--color-scale-blue-4); - --color-workflow-card-connector-highlight-bg: var(--color-scale-blue-4); - --color-workflow-card-bg: var(--color-scale-white); - --color-workflow-card-inactive-bg: var(--bgColor-inset, var(--color-canvas-inset)); - --color-workflow-card-header-shadow: rgba(0, 0, 0, 0); - --color-workflow-card-progress-complete-bg: var(--color-scale-blue-4); - --color-workflow-card-progress-incomplete-bg: var(--color-scale-gray-2); - --color-discussions-state-answered-icon: var(--color-scale-white); - --color-bg-discussions-row-emoji-box: rgba(209, 213, 218, 0.5); - --color-notifications-button-text: var(--fgColor-muted, var(--color-fg-muted)); - --color-notifications-button-hover-text: var(--fgColor-default, var(--color-fg-default)); - --color-notifications-button-hover-bg: var(--color-scale-gray-2); - --color-notifications-row-read-bg: var(--bgColor-muted, var(--color-canvas-subtle)); - --color-notifications-row-bg: var(--color-scale-white); - --color-icon-directory: var(--color-scale-blue-3); - --color-checks-step-error-icon: var(--color-scale-red-4); - --color-calendar-halloween-graph-day-L1-bg: #ffee4a; - --color-calendar-halloween-graph-day-L2-bg: #ffc501; - --color-calendar-halloween-graph-day-L3-bg: #fe9600; - --color-calendar-halloween-graph-day-L4-bg: #03001c; - --color-calendar-winter-graph-day-L1-bg: #B6E3FF; - --color-calendar-winter-graph-day-L2-bg: #54AEFF; - --color-calendar-winter-graph-day-L3-bg: #0969DA; - --color-calendar-winter-graph-day-L4-bg: #0A3069; - --color-calendar-graph-day-bg: #ebedf0; - --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L1-bg: #9be9a8; - --color-calendar-graph-day-L2-bg: #40c463; - --color-calendar-graph-day-L3-bg: #30a14e; - --color-calendar-graph-day-L4-bg: #216e39; - --color-calendar-graph-day-L1-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L2-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L3-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L4-border: rgba(27, 31, 35, 0.06); - --color-user-mention-fg: var(--fgColor-default, var(--color-fg-default)); - --color-user-mention-bg: var(--bgColor-attention-muted, var(--color-attention-subtle)); - --color-dashboard-feed-bg: var(--color-scale-white); - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-project-header-bg: var(--color-scale-gray-9); - --color-project-sidebar-bg: var(--color-scale-white); - --color-project-gradient-in: var(--color-scale-white); - --color-project-gradient-out: rgba(255, 255, 255, 0); - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-checks-donut-error: var(--color-scale-red-4); - --color-checks-donut-pending: var(--color-scale-yellow-4); - --color-checks-donut-success: var(--color-success-emphasis); - --color-checks-donut-neutral: var(--color-scale-gray-3); - --color-text-white: var(--color-scale-white); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-workflow-card-connector: var(--color-scale-gray-3); - --color-workflow-card-connector-bg: var(--color-scale-gray-3); - --color-workflow-card-connector-inactive: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-inactive-bg: var(--borderColor-default, var(--color-border-default)); - --color-workflow-card-connector-highlight: var(--color-scale-blue-4); - --color-workflow-card-connector-highlight-bg: var(--color-scale-blue-4); - --color-workflow-card-bg: var(--color-scale-white); - --color-workflow-card-inactive-bg: var(--bgColor-inset, var(--color-canvas-inset)); - --color-workflow-card-header-shadow: rgba(0, 0, 0, 0); - --color-workflow-card-progress-complete-bg: var(--color-scale-blue-4); - --color-workflow-card-progress-incomplete-bg: var(--color-scale-gray-2); - --color-discussions-state-answered-icon: var(--color-scale-white); - --color-bg-discussions-row-emoji-box: rgba(209, 213, 218, 0.5); - --color-notifications-button-text: var(--fgColor-muted, var(--color-fg-muted)); - --color-notifications-button-hover-text: var(--fgColor-default, var(--color-fg-default)); - --color-notifications-button-hover-bg: var(--color-scale-gray-2); - --color-notifications-row-read-bg: var(--bgColor-muted, var(--color-canvas-subtle)); - --color-notifications-row-bg: var(--color-scale-white); - --color-icon-directory: var(--color-scale-blue-3); - --color-checks-step-error-icon: var(--color-scale-red-4); - --color-calendar-halloween-graph-day-L1-bg: #ffee4a; - --color-calendar-halloween-graph-day-L2-bg: #ffc501; - --color-calendar-halloween-graph-day-L3-bg: #fe9600; - --color-calendar-halloween-graph-day-L4-bg: #03001c; - --color-calendar-winter-graph-day-L1-bg: #B6E3FF; - --color-calendar-winter-graph-day-L2-bg: #54AEFF; - --color-calendar-winter-graph-day-L3-bg: #0969DA; - --color-calendar-winter-graph-day-L4-bg: #0A3069; - --color-calendar-graph-day-bg: #ebedf0; - --color-calendar-graph-day-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L1-bg: #9be9a8; - --color-calendar-graph-day-L2-bg: #40c463; - --color-calendar-graph-day-L3-bg: #30a14e; - --color-calendar-graph-day-L4-bg: #216e39; - --color-calendar-graph-day-L1-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L2-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L3-border: rgba(27, 31, 35, 0.06); - --color-calendar-graph-day-L4-border: rgba(27, 31, 35, 0.06); - --color-user-mention-fg: var(--fgColor-default, var(--color-fg-default)); - --color-user-mention-bg: var(--bgColor-attention-muted, var(--color-attention-subtle)); - --color-dashboard-feed-bg: var(--color-scale-white); - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-project-header-bg: var(--color-scale-gray-9); - --color-project-sidebar-bg: var(--color-scale-white); - --color-project-gradient-in: var(--color-scale-white); - --color-project-gradient-out: rgba(255, 255, 255, 0); - --color-diff-blob-selected-line-highlight-mix-blend-mode: multiply; - --color-checks-donut-error: var(--color-scale-red-4); - --color-checks-donut-pending: var(--color-scale-yellow-4); - --color-checks-donut-success: var(--color-success-emphasis); - --color-checks-donut-neutral: var(--color-scale-gray-3); - --color-text-white: var(--color-scale-white); - } -} - -.hx_color-icon-directory { - color: var(--color-icon-directory); -} - -.hx_comment-box--tip::after { - background-image: linear-gradient(var(--bgColor-default, var(--color-canvas-default)), var(--bgColor-default, var(--color-canvas-default))); -} - -.hx_keyword-hl { - background-color: var(--highlight-neutral-bgColor, var(--color-search-keyword-hl)); -} - -.hx_dot-fill-pending-icon { - color: var(--fgColor-attention, var(--color-attention-emphasis)); -} - -@media (max-width: 543px) { - [data-color-mode=light][data-light-theme*=dark], - [data-color-mode=dark][data-dark-theme*=dark] { - --color-fg-default: var(--color-scale-gray-0); - --color-canvas-default: var(--color-scale-gray-8); - } -} - -@media (max-width: 543px)and (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-fg-default: var(--color-scale-gray-0); - --color-canvas-default: var(--color-scale-gray-8); - } -} - -@media (max-width: 543px)and (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-fg-default: var(--color-scale-gray-0); - --color-canvas-default: var(--color-scale-gray-8); - } -} - -:root[data-color-mode=dark] .entry-content [href$="#gh-light-mode-only"], -:root[data-color-mode=dark] .comment-body [href$="#gh-light-mode-only"], -:root[data-color-mode=dark] .readme [href$="#gh-light-mode-only"] { - display: none; -} - -:root[data-color-mode=light] .entry-content [href$="#gh-dark-mode-only"], -:root[data-color-mode=light] .comment-body [href$="#gh-dark-mode-only"], -:root[data-color-mode=light] .readme [href$="#gh-dark-mode-only"] { - display: none; -} - -@media (prefers-color-scheme: dark) { - :root[data-color-mode=auto] .entry-content [href$="#gh-light-mode-only"], - :root[data-color-mode=auto] .comment-body [href$="#gh-light-mode-only"], - :root[data-color-mode=auto] .readme [href$="#gh-light-mode-only"] { - display: none; - } -} - -@media (prefers-color-scheme: light) { - :root[data-color-mode=auto] .entry-content [href$="#gh-dark-mode-only"], - :root[data-color-mode=auto] .comment-body [href$="#gh-dark-mode-only"], - :root[data-color-mode=auto] .readme [href$="#gh-dark-mode-only"] { - display: none; - } -} - -.colorblind-themes-v1 { - --color-open-fg: var(--fgColor-success, var(--color-success-fg)); - --color-open-emphasis: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - --color-open-muted: var(--bgColor-success-muted, var(--color-success-muted)); - --color-open-subtle: var(--bgColor-success-muted, var(--color-success-subtle)); - --color-closed-fg: var(--fgColor-danger, var(--color-danger-fg)); - --color-closed-emphasis: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); - --color-closed-muted: var(--bgColor-danger-muted, var(--color-danger-muted)); - --color-closed-subtle: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.dropdown-item:focus [class*=color-text-], -.dropdown-item:hover [class*=color-text-] { - color: inherit; -} - -.filter-item.selected [class*=color-text-] { - color: inherit; -} - -body:not(.intent-mouse) .hx_focus-input:focus + .hx_focus-target { - box-shadow: 0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); -} - -.reset-btn-override { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.reset-btn-override:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.reset-btn-override:hover .reset-btn-override-icon { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.reset-btn-override-icon { - width: 18px; - height: 18px; - padding: 1px; - margin-right: 3px; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-align: center; - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); - border-radius: 6px; -} - -.is-auto-complete-loading .form-control { - padding-right: 30px; - background-repeat: no-repeat; - background-position-x: center; - background-position-y: center; - background-size: 16px; -} - -[data-color-mode=dark] .is-auto-complete-loading .form-control { - background-image: url("/images/spinners/octocat-spinner-darkmode.svg"); -} - -[data-color-mode=light] .is-auto-complete-loading .form-control { - background-image: url("/images/spinners/octocat-spinner-lightmode.svg"); -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme^=light] .is-auto-complete-loading .form-control { - background-image: url("/images/spinners/octocat-spinner-lightmode.svg"); - } - - [data-color-mode=auto][data-dark-theme^=dark] .is-auto-complete-loading .form-control { - background-image: url("/images/spinners/octocat-spinner-darkmode.svg"); - } -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme^=light] .is-auto-complete-loading .form-control { - background-image: url("/images/spinners/octocat-spinner-lightmode.svg"); - } - - [data-color-mode=auto][data-light-theme^=dark] .is-auto-complete-loading .form-control { - background-image: url("/images/spinners/octocat-spinner-darkmode.svg"); - } -} - -.hx_breadcrumb-header-crumbs .Header-link { - transition: opacity .1s ease-out; -} - -.hx_breadcrumb-header-crumbs .Header-link:hover { - color: var(--header-fgColor-default, var(--color-header-text)); - opacity: .75; -} - -.hx_breadcrumb-header-divider { - color: var(--header-borderColor-divider, var(--color-header-divider)); -} - -.Header-button { - background-color: var(--color-scale-gray-8); - border: 1px solid var(--color-scale-gray-6); - border-radius: 6px; - transition: background-color .2s cubic-bezier(0.3, 0, 0.5, 1); -} - -.Header-button .octicon { - color: var(--header-fgColor-logo, var(--color-header-logo)); -} - -.Header-button:hover, -.Header-button:focus, -.Header-button:active { - background-color: transparent; -} - -.Header-button:hover .octicon, -.Header-button:focus .octicon, -.Header-button:active .octicon { - color: var(--header-fgColor-default, var(--color-header-text)); - box-shadow: none; -} - -.hx_breadcrumb-header-dropdown::before, -.hx_breadcrumb-header-dropdown::after { - display: none; -} - -.hx_breadcrumb-header-dropdown .dropdown-item { - line-height: 40px; - transition: background-color 60ms ease-out; -} - -.hx_breadcrumb-header-dropdown .dropdown-item:hover { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.icon-sponsor, -.icon-sponsoring { - transition: transform .15s cubic-bezier(0.2, 0, 0.13, 2); - transform: scale(1); -} - -.btn:hover .icon-sponsor, -.btn:focus .icon-sponsor, -.Label:hover .icon-sponsor, -.Label:focus .icon-sponsor, -.btn:hover .icon-sponsoring, -.btn:focus .icon-sponsoring, -.Label:hover .icon-sponsoring, -.Label:focus .icon-sponsoring { - transform: scale(1.1); -} - -.icon-sponsor { - overflow: visible; -} - -.hx_kbd { - display: inline-block; - min-width: 21px; - padding: 0 4px; - font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - font-size: 12px; - font-weight: var(--base-text-weight-normal, 400); - line-height: 1.5; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - box-shadow: none; -} - -.hx_hit-user em, -.hx_hit-package em, -.hx_hit-marketplace em, -.hx_hit-highlighting-wrapper em, -.hx_hit-commit em, -.hx_hit-issue em, -.hx_hit-repo em, -.hx_hit-wiki em { - font-style: normal; - font-weight: var(--base-text-weight-semibold, 600); -} - -.SelectMenu-list.select-menu-list { - max-height: none; -} - -@media (max-width: 543px) { - .SelectMenu-modal { - width: unset; - } -} - -.SelectMenu--hasFilter .SelectMenu-list { - contain: content; -} - -.SelectMenu-item:disabled, -.SelectMenu-item[aria-disabled=true] { - color: var(--fgColor-muted, var(--color-fg-muted)); - pointer-events: none; -} - -.SelectMenu .SelectMenu-item .is-filtering { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.SelectMenu .SelectMenu-item .is-filtering b { - color: var(--fgColor-default, var(--color-fg-default)); -} - -label.SelectMenu-item { - font-weight: var(--base-text-weight-normal, 400); -} - -label.SelectMenu-item[aria-checked=true] { - font-weight: var(--base-text-weight-semibold, 600); -} - -.hx_SelectMenu-modal-no-animation { - animation: none; -} - -.SelectMenu-item.focused { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.Box--responsive { - margin-right: -15px; - margin-left: -15px; - border-right: 0; - border-left: 0; - border-radius: 0; -} - -.Box--responsive .Box-row--unread { - position: relative; - box-shadow: none; -} - -.Box--responsive .Box-row--unread::before { - position: absolute; - top: 36px; - left: 20px; - display: inline-block; - width: 8px; - height: 8px; - color: #fff; - content: ""; - background-image: linear-gradient(#54a3ff, #006eed); - background-clip: padding-box; - border-radius: 50%; -} - -.Box--responsive .Box-header { - border-right-width: 0; - border-left-width: 0; - border-radius: 0; -} - -@media (min-width: 544px) { - .Box--responsive { - margin-right: 0; - margin-left: 0; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - } - - .Box--responsive .Box-header { - border-right-width: 1px; - border-left-width: 1px; - border-top-left-radius: 6px; - border-top-right-radius: 6px; - } - - .Box--responsive .Box-row--unread { - box-shadow: 2px 0 0 var(--borderColor-accent-emphasis, var(--color-accent-emphasis)) inset; - } - - .Box--responsive .Box-row--unread::before { - display: none; - } -} - -@media (max-width: 767px) { - .page-responsive .dropdown-menu, - .page-responsive .dropdown-item { - padding-top: 8px; - padding-bottom: 8px; - } - - .page-responsive .hx_dropdown-fullscreen[open] > summary::before { - background-color: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); - } - - .page-responsive .hx_dropdown-fullscreen .dropdown-menu { - position: fixed; - top: auto; - right: 16px; - bottom: 20%; - left: 16px; - width: auto; - max-width: none; - max-height: calc(80% - 16px); - margin: 0; - overflow-y: auto; - transform: none; - animation: dropdown-menu-animation .24s cubic-bezier(0, 0.1, 0.1, 1) backwards; - -webkit-overflow-scrolling: touch; - } - - .page-responsive .hx_dropdown-fullscreen .dropdown-menu::before, - .page-responsive .hx_dropdown-fullscreen .dropdown-menu::after { - display: none; - } - - @keyframes dropdown-menu-animation { - 0% { - opacity: 0; - transform: scale(0.9); - } - } - - .page-responsive .hx_dropdown-fullscreen .dropdown-item { - padding-top: 16px; - padding-bottom: 16px; - } -} - -.hx_rsm-close-button { - display: none; -} - -@media (max-width: 767px) { - .page-responsive .hx_rsm[open] > summary::before { - background-color: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); - } - - .page-responsive .hx_rsm .select-menu-modal, - .page-responsive .hx_rsm-modal { - position: fixed; - top: 75px; - right: 16px; - left: 16px; - display: flex; - width: auto; - height: 80%; - margin: 0; - flex-direction: column; - animation: hx_rsm-modal-animation .24s .12s cubic-bezier(0, 0.1, 0.1, 1) backwards; - } - - .page-responsive .hx_rsm--auto-height .select-menu-modal { - top: auto; - bottom: 20%; - height: auto; - max-height: calc(80% - 16px); - } - - .page-responsive .hx_rsm .select-menu-header, - .page-responsive .hx_rsm .select-menu-text-filter.select-menu-text-filter { - padding: 16px; - border-top-left-radius: inherit; - border-top-right-radius: inherit; - } - - .page-responsive .hx_rsm tab-container, - .page-responsive .hx_rsm-content { - display: flex; - min-height: 0; - flex-direction: column; - flex: auto; - } - - .page-responsive .hx_rsm .select-menu-list { - flex: auto; - max-height: none; - -webkit-overflow-scrolling: touch; - } - - .page-responsive .hx_rsm-content > .select-menu-item { - flex-shrink: 0; - } - - .page-responsive .hx_rsm .select-menu-item { - padding-top: 16px; - padding-bottom: 16px; - padding-left: 40px; - } - - .page-responsive .hx_rsm .close-button, - .page-responsive .hx_rsm-close-button { - position: relative; - display: block; - } - - .page-responsive .hx_rsm .close-button::before, - .page-responsive .hx_rsm-close-button::before { - position: absolute; - top: -16px; - right: -16px; - bottom: -16px; - left: -16px; - content: ""; - } - - .page-responsive .hx_rsm .close-button .octicon-x, - .page-responsive .hx_rsm-close-button .octicon-x { - color: var(--fgColor-muted, var(--color-fg-muted)); - } - - .page-responsive .hx_rsm .select-menu-loading-overlay { - animation-delay: 1s; - } - - .page-responsive .hx_rsm .select-menu-button::before, - .page-responsive .hx_rsm-trigger::before { - animation: hx_rsm-trigger-animation .24s cubic-bezier(0, 0, 0.2, 1) backwards; - } - - @keyframes hx_rsm-trigger-animation { - 0% { - opacity: 0; - } - } - - @keyframes hx_rsm-modal-animation { - 0% { - opacity: 0; - transform: scale(0.9); - } - } - - .page-responsive .hx_rsm-dialog { - max-width: none; - height: auto; - max-height: 80%; - transform: none; - } - - .page-responsive .hx_rsm-dialog-content { - flex: 1; - min-height: 0; - } -} - -@media (max-width: 767px)and (max-height: 500px) { - .page-responsive .hx_rsm .select-menu-modal, - .page-responsive .hx_rsm-modal { - bottom: 16px; - height: auto; - } -} - -.select-menu-modal { - border-color: var(--borderColor-default, var(--color-border-default)); - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); -} - -.select-menu-header, -.select-menu-filters { - background: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.select-menu-text-filter input { - padding: 5px 12px; -} - -.select-menu-item { - text-align: left; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - border-top: 0; - border-right: 0; - border-left: 0; -} - -.preview-selected .tabnav--responsive { - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.tabnav--responsive .tabnav-tabs { - z-index: 1; -} - -@media (max-width: 767px) { - .tabnav--responsive .tabnav-tab { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-left: 0; - border-radius: 0; - } - - .tabnav--responsive .tabnav-tab:first-child { - border-left: 1px solid var(--borderColor-default, var(--color-border-default)); - } - - .tabnav--responsive .tabnav-tab[aria-selected=true], - .tabnav--responsive .tabnav-tab.selected { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-bottom: 0; - } -} - -@media (max-width: 767px) { - .hx_sm-hide-drag-drop textarea { - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; - } - - .hx_sm-hide-drag-drop .hx_drag-and-drop { - display: none; - } -} - -@media (hover: none) { - .tooltipped:hover::before, - .tooltipped:hover::after { - display: none; - } -} - -@media (hover: none) { - .markdown-body h1 .octicon-link, - .markdown-body h2 .octicon-link, - .markdown-body h3 .octicon-link, - .markdown-body h4 .octicon-link, - .markdown-body h5 .octicon-link, - .markdown-body h6 .octicon-link { - visibility: visible; - } -} - -.min-width-lg { - min-width: 1012px; -} - -.min-width-xl { - min-width: 1280px; -} - -.min-height-0 { - min-height: 0; -} - -.ws-pre-wrap { - white-space: pre-wrap; -} - -.cursor-pointer { - cursor: pointer; -} - -.cursor-default { - cursor: default; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .hide-no-pref-motion { - display: none; - visibility: hidden; - } -} - -@media screen and (prefers-reduced-motion: reduce) { - .hide-reduced-motion { - display: none; - visibility: hidden; - } -} - -.gap-1 { - gap: 4px; -} - -.gap-2 { - gap: 8px; -} - -.gap-3 { - gap: 16px; -} - -.gap-4 { - gap: 24px; -} - -.color-border-emphasis { - border-color: var(--control-borderColor-rest, var(--color-border-default)); -} - -.starring-container .unstarred, -.starring-container.on .starred { - display: flex; -} - -.starring-container.on .unstarred, -.starring-container .starred { - display: none; -} - -.starring-container.loading { - opacity: .5; -} - -.user-following-container .follow, -.user-following-container.on .unfollow { - display: inline-block; -} - -.user-following-container.on .follow, -.user-following-container .unfollow { - display: none; -} - -.user-following-container.loading { - opacity: .5; -} - -.hidden-when-empty:empty { - display: none; -} - -.cm-number, -.cm-atom { - color: var(--codeMirror-syntax-fgColor-constant, var(--color-codemirror-syntax-constant)); -} - -dl.form-group > dd .form-control.is-autocheck-loading, -dl.form-group > dd .form-control.is-autocheck-successful, -dl.form-group > dd .form-control.is-autocheck-errored, -.form-group > .form-group-body .form-control.is-autocheck-loading, -.form-group > .form-group-body .form-control.is-autocheck-successful, -.form-group > .form-group-body .form-control.is-autocheck-errored { - padding-right: 30px; -} - -dl.form-group > dd .form-control.is-autocheck-loading, -.form-group > .form-group-body .form-control.is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-16px.gif"); -} - -dl.form-group > dd .form-control.is-autocheck-successful, -.form-group > .form-group-body .form-control.is-autocheck-successful { - background-image: url("/images/modules/ajax/success.png"); -} - -dl.form-group > dd .form-control.is-autocheck-errored, -.form-group > .form-group-body .form-control.is-autocheck-errored { - background-image: url("/images/modules/ajax/error.png"); -} - -@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (-moz-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx) { - dl.form-group > dd .form-control.is-autocheck-loading, - dl.form-group > dd .form-control.is-autocheck-successful, - dl.form-group > dd .form-control.is-autocheck-errored, - .form-group > .form-group-body .form-control.is-autocheck-loading, - .form-group > .form-group-body .form-control.is-autocheck-successful, - .form-group > .form-group-body .form-control.is-autocheck-errored { - background-size: 16px 16px; - } - - dl.form-group > dd .form-control.is-autocheck-loading, - .form-group > .form-group-body .form-control.is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-32.gif"); - } - - dl.form-group > dd .form-control.is-autocheck-successful, - .form-group > .form-group-body .form-control.is-autocheck-successful { - background-image: url("/images/modules/ajax/success@2x.png"); - } - - dl.form-group > dd .form-control.is-autocheck-errored, - .form-group > .form-group-body .form-control.is-autocheck-errored { - background-image: url("/images/modules/ajax/error@2x.png"); - } -} - -[data-color-mode=dark] auto-check .is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-darkmode.svg"); - background-size: 16px 16px; -} - -[data-color-mode=light] auto-check .is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-lightmode.svg"); - background-size: 16px 16px; -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme^=light] auto-check .is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-lightmode.svg"); - background-size: 16px 16px; - } - - [data-color-mode=auto][data-dark-theme^=dark] auto-check .is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-darkmode.svg"); - background-size: 16px 16px; - } -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme^=light] auto-check .is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-lightmode.svg"); - background-size: 16px 16px; - } - - [data-color-mode=auto][data-light-theme^=dark] auto-check .is-autocheck-loading { - background-image: url("/images/spinners/octocat-spinner-darkmode.svg"); - background-size: 16px 16px; - } -} - -auto-check .is-autocheck-loading, -auto-check .is-autocheck-successful, -auto-check .is-autocheck-errored { - padding-right: 30px; - background-repeat: no-repeat; - background-position: right 8px center; -} - -auto-check .is-autocheck-successful { - background-image: url("/images/modules/ajax/success.png"); -} - -auto-check .is-autocheck-errored { - background-image: url("/images/modules/ajax/error.png"); -} - -@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (-moz-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx) { - auto-check .is-autocheck-loading, - auto-check .is-autocheck-successful, - auto-check .is-autocheck-errored { - background-size: 16px 16px; - } - - auto-check .is-autocheck-successful { - background-image: url("/images/modules/ajax/success@2x.png"); - } - - auto-check .is-autocheck-errored { - background-image: url("/images/modules/ajax/error@2x.png"); - } -} - -.hx_text-body { - font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; -} - -.hx_disabled-form-checkbox-label.form-checkbox.disabled { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.autocomplete-item { - background-color: transparent; -} - -.ColorSwatch { - display: inline-block; - width: 1em; - height: 1em; - vertical-align: middle; - border: 1px solid var(--borderColor-muted, var(--color-border-subtle)); - border-radius: 6px; -} - -.label-select-menu .color, -.ColorSwatch { - border-radius: 2em; -} - -.details-overlay[open] > .dropdown-item:hover { - color: inherit; - background: var(--bgColor-default, var(--color-canvas-default)); -} - -remote-input[loading] .form-control { - padding-right: 30px; - background-image: url("/images/spinners/octocat-spinner-32.gif"); - background-size: 16px; -} - -.hx_form-control-spinner { - position: absolute; - top: 24px; - right: 24px; - display: none; -} - -@media (min-width: 767px) { - .hx_form-control-spinner { - top: 18px; - right: 18px; - } -} - -.hx_form-control-spinner-wrapper { - position: relative; -} - -.hx_form-control-spinner-wrapper .is-loading.form-control { - padding-right: 28px; -} - -.hx_form-control-spinner-wrapper .is-loading + .hx_form-control-spinner { - display: block; -} - -.drag-and-drop { - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.input-sm { - min-height: 28px; -} - -.btn .octicon-triangle-down { - margin-right: 0; -} - -.UnderlineNav-item.selected .UnderlineNav-octicon, -.UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon, -.UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon { - color: inherit; -} - -.break-line-anywhere { - line-break: anywhere; -} - -.form-checkbox input[type=checkbox], -.form-checkbox input[type=radio] { - margin-top: 4px; -} - -.status-indicator-success::before, -.status-indicator-failed::before { - content: none; -} - -.markdown-title code { - padding: 2px 4px; - font-size: .9em; - line-height: 1; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - border-radius: 6px; -} - -[data-turbo-body] { - isolation: isolate; -} - -#__primerPortalRoot__ { - z-index: 1; -} - -.hx_ActionList-content > .hx_ActionList-item-label, -.hx_ActionList-content > .hx_ActionList-item-visual { - pointer-events: none; -} - -.IssueLabel--big.lh-condensed { - display: inline-block; - padding: 0 10px; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 22px; - border: 1px solid transparent; - border-radius: 2em; -} - -.hx_IssueLabel { - --perceived-lightness: calc( ((var(--label-r) * 0.2126) + (var(--label-g) * 0.7152) + (var(--label-b) * 0.0722)) / 255 ); - --lightness-switch: max(0, min(calc((1/(var(--lightness-threshold) - var(--perceived-lightness)))), 1)); -} - -:root .hx_IssueLabel, -[data-color-mode=light][data-light-theme*=light] .hx_IssueLabel, -[data-color-mode=dark][data-dark-theme*=light] .hx_IssueLabel { - --lightness-threshold: 0.453; - --border-threshold: 0.96; - --border-alpha: max(0, min(calc((var(--perceived-lightness) - var(--border-threshold)) * 100), 1)); - color: hsl(0deg, 0%, calc(var(--lightness-switch) * 100%)); - background: rgb(var(--label-r), var(--label-g), var(--label-b)); - border-color: hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 25) * 1%), var(--border-alpha)); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] .hx_IssueLabel { - --lightness-threshold: 0.453; - --border-threshold: 0.96; - --border-alpha: max(0, min(calc((var(--perceived-lightness) - var(--border-threshold)) * 100), 1)); - color: hsl(0deg, 0%, calc(var(--lightness-switch) * 100%)); - background: rgb(var(--label-r), var(--label-g), var(--label-b)); - border-color: hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 25) * 1%), var(--border-alpha)); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] .hx_IssueLabel { - --lightness-threshold: 0.453; - --border-threshold: 0.96; - --border-alpha: max(0, min(calc((var(--perceived-lightness) - var(--border-threshold)) * 100), 1)); - color: hsl(0deg, 0%, calc(var(--lightness-switch) * 100%)); - background: rgb(var(--label-r), var(--label-g), var(--label-b)); - border-color: hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 25) * 1%), var(--border-alpha)); - } -} - -[data-color-mode=light][data-light-theme*=dark] .hx_IssueLabel, -[data-color-mode=dark][data-dark-theme*=dark] .hx_IssueLabel { - --lightness-threshold: 0.6; - --background-alpha: 0.18; - --border-alpha: 0.3; - --lighten-by: calc(((var(--lightness-threshold) - var(--perceived-lightness)) * 100) * var(--lightness-switch)); - color: hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%)); - background: rgba(var(--label-r), var(--label-g), var(--label-b), var(--background-alpha)); - border-color: hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%), var(--border-alpha)); -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] .hx_IssueLabel { - --lightness-threshold: 0.6; - --background-alpha: 0.18; - --border-alpha: 0.3; - --lighten-by: calc(((var(--lightness-threshold) - var(--perceived-lightness)) * 100) * var(--lightness-switch)); - color: hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%)); - background: rgba(var(--label-r), var(--label-g), var(--label-b), var(--background-alpha)); - border-color: hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%), var(--border-alpha)); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] .hx_IssueLabel { - --lightness-threshold: 0.6; - --background-alpha: 0.18; - --border-alpha: 0.3; - --lighten-by: calc(((var(--lightness-threshold) - var(--perceived-lightness)) * 100) * var(--lightness-switch)); - color: hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%)); - background: rgba(var(--label-r), var(--label-g), var(--label-b), var(--background-alpha)); - border-color: hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%), var(--border-alpha)); - } -} - -.signed-commit-badge-small, -.signed-commit-badge-medium, -.signed-commit-badge-large { - display: inline-block; - padding: 0 7px; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 18px; - white-space: nowrap; - border: 1px solid transparent; - border-radius: 2em; - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.signed-commit-badge-small { - margin-top: 0; -} - -.signed-commit-badge-large { - padding-right: 10px; - padding-left: 10px; - line-height: 22px; -} - -.topic-tag-action, -.delete-topic-button, -.topic-tag { - display: inline-block; - padding: 0 7px; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 18px; - white-space: nowrap; - border: 1px solid transparent; - border-radius: 2em; - padding-right: 10px; - padding-left: 10px; - line-height: 22px; - color: var(--fgColor-accent, var(--color-accent-fg)); - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border: 1px solid var(--topicTag-borderColor, var(--color-topic-tag-border), transparent); -} - -.topic-tag-action:active, -.topic-tag-action:hover, -.delete-topic-button:active, -.delete-topic-button:hover, -.topic-tag:active, -.topic-tag:hover { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.topic-tag { - margin: 0 .125em .333em 0; -} - -.topic-tag-outline { - background: transparent; -} - -.topic-tag-action { - display: inline-flex; - padding-right: 0; - margin: .6em .5em 0 0; -} - -.delete-topic-button, -.topic-tag-action .add-topic-button, -.topic-tag-action .remove-topic-button { - display: flex; - width: 24px; - height: 24px; - padding: 0; - color: inherit; - border-color: transparent; - border-left: 0; - border-radius: 2em; - align-items: center; - justify-content: center; -} - -.hx_Layout.hx_Layout--sidebar-hidden { - grid-auto-flow: row; - grid-gap: 0; - grid-template-columns: 1fr; -} - -.hx_Layout.hx_Layout--sidebar-hidden .Layout-sidebar { - display: none; -} - -.hx_Layout.hx_Layout--sidebar-hidden .Layout-main { - grid-column: auto; -} - -.hx_Layout--sidebar { - top: 60px; - box-sizing: border-box; - overscroll-behavior: contain; -} - -.branch-action-item.color-border-default { - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.user-status-container .input-group-button .btn { - height: 32px; -} - -.reponav-item, -.pagehead-tabs-item { - border-radius: 4px 4px 0 0; -} - -.reponav-item.selected, -.pagehead-tabs-item.selected { - border-top-color: #f9826c; -} - -.auto-search-group > .octicon { - top: 8px; -} - -.subnav-search > button.mt-2 { - margin-top: 6px; -} - -.completeness-indicator-success { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--button-primary-bgColor-rest, var(--color-btn-primary-bg)); -} - -.pagination-loader-container button.color-bg-default.border-0 { - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.avatar-user { - border-radius: 50%; -} - -@media (max-width: 543px) { - .minimized-comment > details > div { - padding-left: 0; - } -} - -@media (max-width: 543px) { - .minimized-comment > details > summary > div { - flex-direction: column; - } - - .minimized-comment > details > summary > div .review-comment-contents { - align-left: flex-start; - } -} - -.hx_disabled-input { - margin-right: -4px; - margin-left: -4px; -} - -.hx_disabled-input sidebar-memex-input[disabled] * { - cursor: pointer; -} - -.hx_disabled-input sidebar-memex-input:not([disabled]) .Box-row--hover-gray { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.hx_disabled-input .Box-row--hover-gray svg.octicon-pencil { - visibility: hidden; - opacity: 0; -} - -.hx_disabled-input .Box-row--hover-gray:hover, -.hx_disabled-input .Box-row--hover-gray:focus { - padding-top: 8px; - padding-bottom: 8px; -} - -.hx_disabled-input .Box-row--hover-gray:hover svg.octicon-pencil, -.hx_disabled-input .Box-row--hover-gray:focus svg.octicon-pencil { - visibility: visible; - opacity: 1; -} - -.hx_disabled-input input:not(:disabled) { - margin-top: 8px; - margin-bottom: 8px; -} - -.hx_disabled-input input[disabled], -.hx_disabled-input select[disabled], -.hx_disabled-input .form-control[contenteditable=false] { - padding-right: 0; - padding-left: 0; - margin-right: 0; - color: var(--fgColor-default, var(--color-fg-default)); - background: transparent; - border: 0; - box-shadow: none; - opacity: 1; -} - -.hx_disabled-input text-expander input[type=text][disabled] { - display: none; -} - -.hx_disabled-input text-expander input[type=text][disabled] + div.form-control { - display: block; -} - -.hx_disabled-input text-expander input[type=text] + div.form-control { - display: none; -} - -.hx_disabled-input input[type=number][disabled] { - display: none; -} - -.hx_disabled-input input[type=number][disabled] + div.form-control { - display: block; -} - -.hx_disabled-input input[type=number] + div.form-control { - display: none; -} - -.hx_disabled-input input[type=date][disabled] { - display: none; -} - -.hx_disabled-input input[type=date][disabled] + div.form-control { - display: block; -} - -.hx_disabled-input input[type=date] + div.form-control { - display: none; -} - -.hx_disabled-input input[disabled]::placeholder, -.hx_disabled-input selected[disabled]::placeholder { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.hx_disabled-input .form-select { - background-image: none; -} - -.hx_disabled-input .Box-row--focus-gray:focus { - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.summary-iteration .inline-status { - display: none; -} - -.summary-iteration .block-status { - display: inline-block; -} - -.list-iteration .inline-status { - display: inline; -} - -.list-iteration .block-status { - display: none; -} - -.hx_tabnav-in-dropdown { - border-radius: 5px 5px 0 0; -} - -.hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:first-child .tabnav-tab.selected, -.hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:first-child .tabnav-tab[aria-selected=true], -.hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:first-child .tabnav-tab[aria-current]:not([aria-current=false]) { - border-left: 0; -} - -.hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:last-child .tabnav-tab.selected, -.hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:last-child .tabnav-tab[aria-selected=true], -.hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:last-child .tabnav-tab[aria-current]:not([aria-current=false]) { - border-right: 0; -} - -.hx_tabnav-in-dropdown .tabnav-tab.selected, -.hx_tabnav-in-dropdown .tabnav-tab[aria-selected=true], -.hx_tabnav-in-dropdown .tabnav-tab[aria-current]:not([aria-current=false]) { - margin-top: -1px; - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.hx_tabnav-in-dropdown #cloud-tab[aria-selected=false]::after { - position: absolute; - top: -14px; - right: 10px; - left: auto; - z-index: 10; - display: inline-block; - content: ""; - border: 7px solid transparent; - border-bottom: 7px solid var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.details-overlay-dark[open] > summary::before { - z-index: 111; -} - -.turbo-progress-bar { - z-index: 2147483647; -} - -.timeline-comment .previewable-comment-form textarea { - max-height: none; -} - -.truncate-with-responsive-width { - width: 50px; - min-width: 100%; -} - -.hx_merge_queue_entry_status_icon { - fill: none; - background-color: transparent; - border: none; -} - -.markdown-alert { - padding: 0 1em; - margin-bottom: 16px; - color: inherit; - border-left: .25em solid var(--borderColor-default, var(--color-border-default)); -} - -.markdown-alert > :first-child { - margin-top: 0; -} - -.markdown-alert > :last-child { - margin-bottom: 0; -} - -.markdown-alert.markdown-alert-note { - border-left-color: var(--borderColor-accent-emphasis, var(--color-accent-fg)); -} - -.markdown-alert.markdown-alert-important { - border-left-color: var(--borderColor-done-emphasis, var(--color-done-fg)); -} - -.markdown-alert.markdown-alert-warning { - border-left-color: var(--borderColor-attention-emphasis, var(--color-attention-fg)); -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -.min-height-full { - min-height: 100vh; -} - -.marketing-section { - position: relative; - padding-top: 80px; - padding-bottom: 80px; - font-size: 16px; - line-height: 1.5; - text-align: center; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.marketing-section::before { - display: table; - content: ""; -} - -.marketing-section::after { - display: table; - clear: both; - content: ""; -} - -.marketing-section h3 { - font-size: 20px; - font-weight: var(--base-text-weight-normal, 400); -} - -.marketing-hero-octicon { - position: relative; - width: 100px; - height: 100px; - margin: 0 auto 16px; - text-align: center; - border: solid 1px var(--borderColor-default, var(--color-border-default)); - border-radius: 50px; -} - -.marketing-hero-octicon .octicon { - margin-top: 24px; - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.marketing-hero-octicon .octicon-checklist { - position: relative; - right: -3px; -} - -.hanging-icon-list { - list-style-type: none; -} - -.hanging-icon-list li { - padding-left: 24px; - margin: 8px 0; - font-size: 14px; -} - -.hanging-icon-list .octicon { - float: left; - margin-top: 4px; - margin-left: -24px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.hanging-icon-list .octicon-check { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.hanging-icon-list .octicon-x { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.integrations-hero-octicon.marketing-hero-octicon { - width: 75px; - height: 75px; - border-width: 5px; -} - -.integrations-hero-octicon.marketing-hero-octicon .octicon { - margin-top: 16px; -} - -.marketing-blue-octicon { - color: #34acbf; - border-color: #34acbf; -} - -.marketing-blue-octicon .octicon { - color: #34acbf; -} - -.marketing-turquoise-octicon { - color: #75bbb6; - border-color: #75bbb6; -} - -.marketing-turquoise-octicon .octicon { - color: #75bbb6; -} - -.marketing-purple-octicon { - color: #b086b7; - border-color: #b086b7; -} - -.marketing-purple-octicon .octicon { - color: #b086b7; -} - -.marketing-graphic { - position: relative; -} - -.intgrs-dir .marketing-graphic { - padding-right: 0; - margin: 0; -} - -.intgrs-dir .footer { - margin-top: 40px; -} - -.intgrs-dir-section h2 { - margin-top: 0; - margin-bottom: 16px; - font-size: 24px; - font-weight: var(--base-text-weight-light, 300); -} - -.intgrs-dir-intro { - padding: 40px 0; - margin: 0; - text-align: left; - background-image: linear-gradient(-110deg, #48227d 0%, #2f569c 100%); - border-bottom: 0; -} - -.pagehead + .intgrs-dir-intro { - margin-top: -16px; -} - -.intgrs-dir-intro .directory-header-back { - margin-top: 8px; - font-size: 16px; - color: #fff; -} - -.intgrs-dir-intro .directory-header-back:hover { - color: #d7def1; - text-decoration: none; -} - -.intgrs-dir-intro .directory-header-back .octicon { - vertical-align: middle; -} - -.intgrs-dir-intro .directory-header-back .header-link { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.intgrs-dir-intro .directory-tag-line { - margin-bottom: 0; - font-size: 32px; - font-weight: var(--base-text-weight-normal, 400); - color: #fff; -} - -.intgrs-dir-intro .lead { - margin-top: 8px; - margin-bottom: 4px; - font-size: 16px; - font-weight: var(--base-text-weight-normal, 400); - color: #d7def1; -} - -.intgrs-lstng-search { - display: inline-block; - width: 33%; - margin-left: 16px; -} - -.intgrs-lstng-search .subnav-search-input { - width: 100%; -} - -.intgrs-lstng-categories-container { - display: inline-block; - float: left; - width: 20%; -} - -.intgrs-lstng-categories-container .intgrs-lstng-categories { - top: 0; -} - -.intgrs-lstng-categories-container .filter-item { - padding: 4px 8px; - margin-right: -8px; - margin-left: -8px; -} - -.intgrs-lstng-container { - display: inline-block; - width: 80%; - text-align: left; -} - -.intgrs-lstng-item { - position: relative; - display: inline-flex; - width: 30.8%; - font-size: 14px; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 4px; - transition: border-color .15s ease 0s,transform .15s ease 0s,box-shadow .15s ease 0s,color .15s ease 0s; -} - -.intgrs-lstng-item:hover { - border-color: #51a7e8; - box-shadow: 0 0 5px rgba(81,167,232,.5); - transform: scale(1.05); -} - -.intgrs-lstng-item .intgrs-lstng-logo { - display: block; - margin: 0 auto 8px; -} - -.intgrs-lstng-item .draft-tag { - position: absolute; - top: -1px; - left: 10px; -} - -.intgrs-lstng-item-link { - display: block; - width: 100%; - height: 181px; - padding-top: 16px; -} - -.intgrs-lstng-item-link:hover { - text-decoration: none; -} - -.intgrs-lstng-item-link:hover .intgrs-lstng-item-header { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.intgrs-lstng-item-header { - margin: 16px 8px 0; - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.intgrs-lstng-item-description { - position: relative; - height: 2.8em; - padding: 0 8px; - margin-top: 4px; - overflow: hidden; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.intgrs-lstng-item-description::after { - position: absolute; - right: 0; - bottom: 0; - padding: 0 16px 0 16px; - color: transparent; - content: " "; - background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 80%); -} - -.intgr-admin-link { - position: relative; - display: inline-block; - height: 25px; - padding-left: 24px; - font-size: 12px; - vertical-align: middle; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.intgr-admin-link.draft-tag { - padding-left: 24px; - border: 0; -} - -.intgr-admin-link.draft-tag .octicon, -.intgr-admin-link.draft-tag:hover .octicon { - color: #fff; -} - -.intgr-admin-link.draft-tag:hover { - text-decoration: none; - background-color: #000; -} - -.intgr-admin-link:hover .octicon { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.intgr-admin-link .octicon { - position: absolute; - top: 3px; - left: 5px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.intgr-feat-header { - position: relative; - width: 85%; - padding: 0 65px 8px; - color: #d7def1; -} - -.intgr-feat-header .intgr-admin-link { - border-color: rgba(215,222,241,.6); -} - -.intgr-feat-header .intgr-admin-link .octicon { - color: #d7def1; -} - -.intgr-feat-header .intgr-admin-link:hover .octicon { - color: #fff; -} - -.intgr-feat-header .marketing-hero-octicon { - position: absolute; - top: 0; - left: 5px; - width: 50px; - height: 50px; - border-width: 3px; -} - -.intgr-feat-header .marketing-hero-octicon .octicon { - margin-top: 12px; -} - -.intgr-feat-header h2 { - margin: 0; - font-size: 24px; - line-height: 50px; - color: #fff; -} - -.intgr-feat-header p { - max-width: 580px; - margin: 0; - font-size: 16px; -} - -.integrations-breadcrumb { - display: inline-block; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.integrations-breadcrumb-link { - line-height: 0; - color: #d7def1; -} - -.integrations-breadcrumb-link:hover { - color: #fff; - text-decoration: none; -} - -.integrations-auth-wrapper { - max-width: 540px; - padding-right: 16px; - padding-left: 16px; - margin: 60px auto; -} - -.integrations-auth-header { - font-size: 20px; - text-align: center; -} - -.integrations-permissions-group dt { - font-size: 16px; - font-weight: var(--base-text-weight-normal, 400); -} - -.integrations-permissions-group .integrations-permission { - position: relative; - padding-left: 24px; - margin-bottom: 8px; - list-style-type: none; -} - -.integrations-permissions-group .integrations-permission .octicon { - position: absolute; - top: 1px; - left: 0; - margin-right: 8px; -} - -.integrations-install-target .select-menu { - vertical-align: middle; -} - -.integrations-install-target input[type=radio] { - margin-right: 8px; -} - -.integrations-install-target .flash { - background-color: transparent; -} - -.integrations-install-target .flash-error { - background-color: transparent; - border: 0; -} - -.integrations-install-target .octicon-lock, -.integrations-install-target .octicon-repo, -.integrations-install-target .octicon-repo-forked { - margin-right: 4px; -} - -.integrations-install-target .octicon-lock { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.integrations-install-target .private { - background-color: #fff9ea; -} - -.integrations-install-target [aria-selected=true].private, -.integrations-install-target .navigation-focus.private { - background-color: #4078c0; -} - -.integrations-install-target [aria-selected=true].octicon-lock, -.integrations-install-target .navigation-focus .octicon-lock { - color: inherit; -} - -.integrations-setup-note { - margin: 8px 0; -} - -.listgroup-item { - line-height: inherit; -} - -.listgroup-item.disabled { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.listgroup-item.disabled .listgroup-item-title { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.link-small { - color: var(--fgColor-muted, var(--color-fg-muted)); - transition: color 500ms ease; -} - -.sub-permissions-error { - max-width: unset; -} - -.not-found-octocat-wrapper { - width: 71px; - height: 71px; - border-radius: 45px; -} - -.not-found-octocat-wrapper::after { - position: absolute; - top: 58px; - left: 45px; - z-index: -2; - display: block; - width: 4px; - height: 4px; - vertical-align: baseline; - content: ""; - background: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 4px; - box-shadow: 0 4px 0 #fff,0 8px 0 #fff,0 12px 0 #fff,0 16px 0 #fff,0 20px 0 #fff; - animation-name: pull-string; - animation-duration: .75s; - animation-fill-mode: forwards; - animation-delay: .5s; -} - -@keyframes lightbulb { - 0%, - 8%, - 14% { - opacity: .1; - } - - 10%, - 25% { - opacity: .25; - } - - 5%, - 30%, - 50%, - 70% { - opacity: .5; - } - - 16%, - 60%, - 80% { - opacity: .75; - } - - 90% { - opacity: .8; - } - - 94% { - opacity: .5; - } - - 100% { - opacity: 1; - stddeviation: 0; - } -} - -.not-found-lightbulb-ani { - z-index: 1; - opacity: .25; - animation-name: lightbulb; - animation-duration: 2.5s; - animation-fill-mode: forwards; - animation-delay: 1.3s; -} - -@keyframes pull-string { - 50% { - transform: translate3d(0, 12px, 0); - } - - 75% { - opacity: 1; - transform: none; - } - - 100% { - opacity: 0; - } -} - -.has-removed-contents { - display: none; -} - -.org-login { - margin-top: -32px; - margin-bottom: 32px; -} - -.org-login img { - width: 450px; - padding: 1px; - margin: 8px -24px; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.member-list-item .member-username { - display: inline; -} - -.member-list-item .member-link { - display: inline; -} - -.actor-and-action { - font-weight: var(--base-text-weight-semibold, 600); -} - -.vertical-separator { - margin-right: 8px; - margin-left: 4px; - border-left: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.audit-log-search .audit-search-form { - margin-bottom: 8px; -} - -.audit-log-search .audit-results-actions { - margin: 16px 0; -} - -.audit-log-search .audit-search-clear { - margin-bottom: 0; -} - -.filtered-details { - display: none; - max-width: 60%; - margin-top: 8px; -} - -.filtered-details .filtered-details-th, -.filtered-details .filtered-details-td { - max-width: 425px; - padding-right: 8px; - overflow: hidden; - text-align: left; - text-overflow: ellipsis; - white-space: nowrap; -} - -.filtered-details .filtered-details-th:hover, -.filtered-details .filtered-details-td:hover { - word-wrap: break-word; - white-space: normal; -} - -.filtered-details .filtered-details-tr:hover .filtered-details-th, -.filtered-details .filtered-details-tr:hover .filtered-details-td { - background: var(--borderColor-muted, var(--color-border-subtle)); -} - -.audit-log-details-cont.open .filtered-details { - display: block; -} - -.billing-addon-items table input { - width: 5em; -} - -.billing-addon-items td { - vertical-align: middle; - border-bottom: 0; -} - -.billing-addon-items td.fixed { - width: 150px; -} - -.billing-addon-items td.black { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.billing-addon-items tr { - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.billing-addon-items tr:last-child { - border-bottom-width: 0; -} - -.billing-addon-items tr:nth-child(even) { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.billing-addon-items tr.total-row { - color: var(--fgColor-danger, var(--color-danger-fg)); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.billing-addon-items .new-addon-items { - margin-left: 4px; -} - -.billing-addon-items .addon-cost { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.billing-addon-items .discounted-original-price { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.billing-addon-items .form-submit, -.billing-addon-items .payment-method { - margin-left: 8px; -} - -.billing-addon-items .payment-summary { - margin-right: 8px; - margin-left: 8px; -} - -.billing-credit-card .javascript-disabled-overlay { - position: absolute; - top: 0; - left: 0; - z-index: 1; - display: none; - width: 100%; - height: 100%; - background-color: var(--bgColor-default, var(--color-canvas-default)); - opacity: .5; -} - -.billing-credit-card.disabled .javascript-disabled-overlay { - display: block; -} - -.billing-extra-box { - padding-left: 8px; - margin: 8px 0; - border-left: 6px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.billing-vat-box { - padding-left: 8px; - margin: 8px 0; - border-left: 6px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.billing-section .action-button { - float: right; - margin-bottom: 4px; - margin-left: 8px; -} - -.billing-section .section-label { - position: absolute; - width: 85px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: right; -} - -.billing-section .section-content { - margin-left: 100px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.billing-section:last-child { - border-bottom: 0; -} - -.billing-section .usage-bar { - max-width: 304px; -} - -.usage-bar { - width: 100%; - margin: 4px 0 0; - background: #eee; - border-radius: 20px; -} - -.usage-bar.exceeded .progress { - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.usage-bar .progress { - position: relative; - max-width: 100%; - height: 5px; - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - border-radius: 20px; - transition: width .3s; -} - -.usage-bar .progress.no-highlight { - background: var(--bgColor-neutral-muted, var(--color-neutral-muted)); -} - -.usage-bar .progress--orange { - background-color: var(--bgColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.usage-bar .progress--purple { - background-color: var(--bgColor-done-emphasis, var(--color-done-emphasis)); -} - -.lfs-data-pack-field { - margin: -4px 0; -} - -.packs-table .desc { - width: 1%; - white-space: nowrap; -} - -.lfs-data-icon { - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.lfs-data-icon.dark { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.lfs-data-icon.octicon-database { - margin-right: 4px; - margin-left: 2px; -} - -.setup-wrapper .paypal-container { - margin-bottom: 32px; -} - -.setup-wrapper .paypal-logged-in .paypal-container { - margin-bottom: 8px; -} - -.payment-methods { - position: relative; -} - -.payment-methods .selected-payment-method { - display: none; -} - -.payment-methods .selected-payment-method::before { - display: table; - content: ""; -} - -.payment-methods .selected-payment-method::after { - display: table; - clear: both; - content: ""; -} - -.payment-methods .selected-payment-method.active { - display: block; -} - -.payment-methods .form-group dd .form-control.short.input-vat { - width: 300px; -} - -.payment-methods .pay-with-header { - margin: 4px 0; -} - -.payment-methods .pay-with-paypal .setup-creditcard-form, -.payment-methods .pay-with-paypal .paypal-form-actions, -.payment-methods .pay-with-paypal .terms, -.payment-methods .pay-with-paypal .paypal-signed-in, -.payment-methods .pay-with-paypal .paypal-down-flash, -.payment-methods .pay-with-paypal .loading-paypal-spinner { - display: none; -} - -.payment-methods.paypal-loading .loading-paypal-spinner { - display: block; -} - -.payment-methods.paypal-down .paypal-down-flash { - display: block; -} - -.payment-methods.paypal-logged-in .paypal-sign-in { - display: none; -} - -.payment-methods.paypal-logged-in .setup-creditcard-form, -.payment-methods.paypal-logged-in .paypal-form-actions, -.payment-methods.paypal-logged-in .terms, -.payment-methods.paypal-logged-in .paypal-signed-in { - display: block; -} - -.payment-methods.has-paypal-account .paypal-sign-in { - display: none; -} - -.payment-methods.has-paypal-account .paypal-signed-in { - display: block; -} - -.paypal-label { - margin: 16px 0 8px; - font-weight: var(--base-text-weight-semibold, 600); -} - -.paypal-container { - display: inline-block; - margin-bottom: 16px; - vertical-align: top; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-radius: 4px; -} - -.braintree-paypal-loggedin { - padding: 12px 16px; - background-position: 12px 50%; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 4px; -} - -.bt-pp-name { - margin-left: 16px; -} - -.bt-pp-email { - margin-left: 16px; -} - -.bt-pp-cancel { - font-size: 0; - line-height: 1; - color: var(--fgColor-danger, var(--color-danger-fg)); - text-decoration: none; -} - -.payment-history .id, -.payment-history .date, -.payment-history .receipt, -.payment-history .status, -.payment-history .amount { - white-space: nowrap; -} - -.payment-history .break-all { - word-break: break-all; -} - -.payment-history .receipt { - text-align: center; -} - -.payment-history .currency, -.payment-history .status { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.payment-history .status-icon { - width: 14px; - text-align: center; -} - -.payment-history .succeeded .status { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.payment-history .refunded, -.payment-history .failed { - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.payment-history .refunded td, -.payment-history .failed td { - opacity: .5; -} - -.payment-history .refunded .receipt, -.payment-history .refunded .status, -.payment-history .failed .receipt, -.payment-history .failed .status { - opacity: 1; -} - -.payment-history .refunded .status { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.payment-history .failed .status { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.payment-history .transaction:target { - background: var(--bgColor-attention-muted, var(--color-attention-subtle)); - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.paypal-icon { - margin: 0 2px 0 1px; - vertical-align: middle; -} - -.currency-container .local-currency, -.currency-container .local-currency-block { - display: none; -} - -.currency-container.open .local-currency { - display: inline; -} - -.currency-container.open .local-currency-block { - display: block; -} - -.currency-container.open .default-currency { - display: none; -} - -.strong-label { - display: inline-block; - margin-bottom: 4px; - font-weight: var(--base-text-weight-semibold, 600); -} - -.discounted-original-price { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: line-through; -} - -.billing-manager-input { - width: 500px; -} - -.seats-change-arrow { - margin: 0 8px; -} - -.plan-choice { - position: relative; - display: block; - padding: 16px; - padding-left: 40px; - font-weight: var(--base-text-weight-normal, 400); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.plan-choice.open, -.plan-choice.selected { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.plan-choice--experiment { - cursor: pointer; - transition: transform .3s,box-shadow .3s,border-color .3s; -} - -.plan-choice--experiment.open, -.plan-choice--experiment.selected { - border-color: var(--borderColor-default, var(--color-border-default)); - box-shadow: var(--shadow-floating-large, var(--color-shadow-large)); - transform: scale(1.025); -} - -.plan-choice--experiment.open .plan-choice-icon, -.plan-choice--experiment.selected .plan-choice-icon { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - box-shadow: var(--shadow-resting-small, var(--color-shadow-small)); -} - -.plan-choice--experiment.open .plan-choice-icon .octicon, -.plan-choice--experiment.selected .plan-choice-icon .octicon { - transform: scale(1); -} - -.plan-choice--experiment.plan-choice--green.open, -.plan-choice--experiment.plan-choice--green.selected { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.plan-choice--experiment.plan-choice--green.open .plan-choice-icon, -.plan-choice--experiment.plan-choice--green.selected .plan-choice-icon { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.plan-choice--experiment.plan-choice--purple.open, -.plan-choice--experiment.plan-choice--purple.selected { - border-color: var(--borderColor-done-emphasis, var(--color-done-emphasis)); -} - -.plan-choice--experiment.plan-choice--purple.open .plan-choice-icon, -.plan-choice--experiment.plan-choice--purple.selected .plan-choice-icon { - background-color: var(--bgColor-done-emphasis, var(--color-done-fg)); -} - -.plan-choice-icon { - transition: box-shadow .3s; -} - -.plan-choice-icon .octicon { - transition: transform .2s; - transform: scale(0.5); -} - -.plan-choice-radio { - position: absolute; - top: 18px; - left: 15px; -} - -.plan-choice-exp { - margin-top: 4px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.seat-field { - width: 50px; - margin-right: 4px; -} - -.billing-line-items { - margin-top: 8px; -} - -.billing-line-item { - padding: 8px 0; - font-size: 12px; - list-style: none; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.billing-line-item::before { - display: table; - content: ""; -} - -.billing-line-item::after { - display: table; - clear: both; - content: ""; -} - -.billing-line-item-last { - font-weight: var(--base-text-weight-semibold, 600); - border-top-width: 3px; -} - -.line-item-value { - float: right; -} - -.condensed-payment-methods .vat-field { - width: 100%; -} - -.condensed-payment-methods .state-field { - width: 30%; -} - -.condensed-payment-methods .postcode-field { - width: 28%; -} - -.condensed-payment-methods .country-field { - width: 42%; -} - -.condensed-payment-methods .is-international .country-field { - width: 72%; -} - -.condensed-payment-methods .is-international.no-postcodes .country-field { - width: 100%; -} - -.zuora-billing-section.PaymentMethod--creditcard:not(.has-removed-contents) ~ .SignUpContinueActions { - display: none; -} - -.zuora-billing-section.PaymentMethod--creditcard-added ~ .SignUpContinueActions { - display: block; -} - -.zuora-billing-section.PaymentMethod--paypal ~ .SignUpContinueActions { - display: block; -} - -.new-org-billing-form .z_hppm_iframe { - width: 100%; -} - -.billing-box-accordion[open] .octicon-chevron-right { - height: auto; - transform: rotate(90deg); -} - -.billing-box-accordion:hover .billing-box-accordion-state .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.billing-box-accordion-chevron[open] .octicon-chevron-right { - height: auto; - transform: rotate(90deg); -} - -.billing-box-accordion-state .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); - transition: transform .09s ease-out; -} - -.billing-box-progress { - padding-top: 1px; - margin-bottom: 4px; -} - -.Details-element:focus { - outline: none; -} - -.organization-radio-button-budget-disabled { - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.organization-radio-button-budget-disabled label p { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.blob-interaction-bar { - position: relative; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.blob-interaction-bar::before { - display: table; - content: ""; -} - -.blob-interaction-bar::after { - display: table; - clear: both; - content: ""; -} - -.blob-interaction-bar .octicon-search { - position: absolute; - top: 6px; - left: 10px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.blob-filter { - width: 100%; - padding: 4px 16px 4px 32px; - font-size: 12px; - border: 0; - border-radius: 0; - outline: none; -} - -.blob-filter:focus { - outline: none; -} - -.TagsearchPopover { - width: inherit; - max-width: 600px; -} - -.TagsearchPopover-content { - max-height: 300px; -} - -.TagsearchPopover-list .TagsearchPopover-list-item:hover { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.TagsearchPopover-list .TagsearchPopover-list-item .TagsearchPopover-item:hover { - text-decoration: none; -} - -.TagsearchPopover-list .blob-code-inner { - white-space: pre-wrap; -} - -.diff-table .line-alert, -.blob-code-content .line-alert { - position: absolute; - left: 0; - margin: -2px 2px; -} - -.diff-table .codeowners-error, -.blob-code-content .codeowners-error { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.diff-table .error-highlight, -.blob-code-content .error-highlight { - position: relative; - cursor: help; - font-style: italic; - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.diff-table .error-highlight::before, -.blob-code-content .error-highlight::before { - position: absolute; - top: 101%; - width: 100%; - height: .25em; - content: ""; - background: linear-gradient(135deg, transparent, transparent 45%, var(--color-danger-fg), transparent 55%, transparent 100%),linear-gradient(45deg, transparent, transparent 45%, var(--color-danger-fg), transparent 55%, transparent 100%); - background-repeat: repeat-x,repeat-x; - background-size: .5em .5em; -} - -.blob-code-content .blob-num .line-alert { - margin-top: 1px; -} - -.diff-table .blob-num .line-alert { - margin: 2px -2px; -} - -.csv-data .line-alert { - position: absolute; - margin: 2px 4px; -} - -.CopyBlock { - line-height: 20px; - cursor: pointer; -} - -.CopyBlock .octicon-copy { - display: none; -} - -.CopyBlock:hover, -.CopyBlock:focus, -.CopyBlock:active { - background-color: var(--bgColor-default, var(--color-canvas-default)); - outline: none; -} - -.CopyBlock:hover .octicon-copy, -.CopyBlock:focus .octicon-copy, -.CopyBlock:active .octicon-copy { - display: inline-block; -} - -.blob-header.is-stuck { - border-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.commit-form-avatar { - margin-left: -64px; -} - -.commit-form::after, -.commit-form::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.commit-form::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.commit-form::before { - background-color: var(--color-border-default); -} - -.quick-pull-new-branch-icon { - top: 9px; - left: 10px; -} - -.CodeMirror-hints { - position: absolute; - z-index: 10; - max-height: 20em; - margin: 0; - overflow-y: auto; - font-family: SFMono-Regular,Consolas,"Liberation Mono",Menlo,monospace; - font-size: 12px; - list-style: none; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)); -} - -.CodeMirror-hint { - padding: 2px 8px; - margin: 0; - color: var(--fgColor-default, var(--color-fg-default)); - white-space: pre; - cursor: pointer; -} - -.CodeMirror-hint .CodeMirror-hint:first-child { - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.CodeMirror-hint .CodeMirror-hint:last-child { - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.CodeMirror-hint-active { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.CodeMirror-lint-tooltip { - position: fixed; - z-index: 100; - min-width: 300px; - max-width: 600px; - opacity: 0; - transition: opacity .4s; -} - -.CodeMirror-lint-mark-error, -.cm-lintRange.cm-lintRange-error { - position: relative; - cursor: help; -} - -.CodeMirror-lint-mark-error::before, -.cm-lintRange.cm-lintRange-error::before { - position: absolute; - top: 101%; - width: 100%; - height: .25em; - content: ""; - background: linear-gradient(135deg, transparent, transparent 45%, var(--color-danger-emphasis), transparent 55%, transparent 100%),linear-gradient(45deg, transparent, transparent 45%, var(--color-danger-emphasis), transparent 55%, transparent 100%); - background-repeat: repeat-x,repeat-x; - background-size: .5em .5em; -} - -.CodeMirror-lint-mark-warning, -.cm-lintRange.cm-lintRange-warning { - position: relative; - cursor: help; -} - -.CodeMirror-lint-mark-warning::before, -.cm-lintRange.cm-lintRange-warning::before { - position: absolute; - top: 101%; - width: 100%; - height: .25em; - content: ""; - background: linear-gradient(135deg, transparent, transparent 45%, var(--color-attention-emphasis), transparent 55%, transparent 100%),linear-gradient(45deg, transparent, transparent 45%, var(--color-attention-emphasis), transparent 55%, transparent 100%); - background-repeat: repeat-x,repeat-x; - background-size: .5em .5em; -} - -.CodeMirror-lint-mark-info, -.cm-lintRange.cm-lintRange-info { - position: relative; - cursor: help; -} - -.CodeMirror-lint-mark-info::before, -.cm-lintRange.cm-lintRange-info::before { - position: absolute; - top: 101%; - width: 100%; - height: .25em; - content: ""; - background: linear-gradient(135deg, transparent, transparent 45%, var(--color-accent-emphasis), transparent 55%, transparent 100%),linear-gradient(45deg, transparent, transparent 45%, var(--color-accent-emphasis), transparent 55%, transparent 100%); - background-repeat: repeat-x,repeat-x; - background-size: .5em .5em; -} - -.CodeMirror-hint-active .CodeMirror-hint-description { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.merge-pr { - padding-top: 8px; - margin: 16px 0 0; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.merge-pr.open .merge-branch-form { - display: block; -} - -.merge-pr.open .branch-action { - display: none; -} - -.merge-pr.is-merging-jump.open .queue-branch-form, -.merge-pr.is-merging-group.open .queue-branch-form, -.merge-pr.is-merging-solo.open .queue-branch-form { - display: block; -} - -.status-heading { - margin-bottom: 1px; -} - -.merge-status-list { - max-height: 0; - padding: 0; - margin: 16px -16px -16px -55px; - overflow-y: auto; - transition: max-height .25s ease-in-out; -} - -.statuses-toggle-opened { - display: none; -} - -.merge-status-item { - position: relative; - padding: 8px 16px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.merge-status-item:last-child:not(.review-item) { - border-bottom: 0; -} - -.merge-status-item .css-truncate-target { - max-width: 100%; -} - -.merge-status-item .dismiss-review-form { - display: none; -} - -.merge-status-item.open .review-status-item { - display: none; -} - -.merge-status-item.open .dismiss-review-form { - display: block; -} - -.status-meta { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.status-meta-file-name { - padding: .2em .4em; - margin: 0; - font-size: 85%; - background-color: rgba(27,31,35,.05); - border-radius: 6px; -} - -.status-actions { - margin-left: auto; -} - -.branch-action-item-icon { - float: left; - margin-left: -40px; -} - -.merge-status-icon { - min-width: 30px; -} - -.branch-action { - padding-left: 55px; - margin-top: 16px; - margin-bottom: 16px; -} - -.branch-action .merge-branch-heading { - margin-bottom: 4px; -} - -.branch-action-icon { - float: left; - width: 40px; - height: 40px; - margin-left: -55px; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - border-radius: 6px; -} - -.branch-action-body { - position: relative; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.branch-action-body .spinner { - display: block; - float: left; - width: 32px; - height: 32px; - margin-right: 16px; - background: url("/images/spinners/octocat-spinner-32.gif") no-repeat; -} - -.branch-action-body .merge-message, -.branch-action-body .merge-branch-form, -.branch-action-body .queue-branch-form { - padding: 16px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.post-merge-message { - padding: 16px; -} - -.branch-action-item { - padding: 16px 16px 16px 55px; - font-size: 13px; - line-height: 1.4; -} - -.branch-action-item + .branch-action-item, -.branch-action-item + .mergeability-details { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.branch-action-item.open > .merge-status-list-wrapper > .merge-status-list, -.branch-action-item.open > .merge-status-list { - max-height: 231px; - margin-bottom: -16px; - border: solid var(--borderColor-default, var(--color-border-default)); - border-width: 1px 0 0; -} - -.branch-action-item.open .statuses-toggle-opened { - display: inline; -} - -.branch-action-item.open .statuses-toggle-closed { - display: none; -} - -.branch-action-btn { - margin-left: 16px; -} - -.branch-action-item-simple { - padding-left: 16px; -} - -.branch-action-item-simple .merge-status-list { - margin-left: -16px; -} - -.branch-action-item-simple .merge-status-item { - padding-left: 12px; -} - -.branch-action-state-clean .branch-action-icon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - border: 1px solid transparent; -} - -.branch-action-state-clean .branch-action-body { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.branch-action-state-clean .branch-action-body::after, -.branch-action-state-clean .branch-action-body::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.branch-action-state-clean .branch-action-body::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.branch-action-state-clean .branch-action-body::before { - background-color: var(--color-success-emphasis); -} - -.branch-action-state-unknown .branch-action-icon, -.branch-action-state-unstable .branch-action-icon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-attention-emphasis, var(--color-attention-emphasis)); - border: 1px solid transparent; -} - -.branch-action-state-unknown .branch-action-body, -.branch-action-state-unstable .branch-action-body { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.branch-action-state-unknown .branch-action-body::after, -.branch-action-state-unknown .branch-action-body::before, -.branch-action-state-unstable .branch-action-body::after, -.branch-action-state-unstable .branch-action-body::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.branch-action-state-unknown .branch-action-body::after, -.branch-action-state-unstable .branch-action-body::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.branch-action-state-unknown .branch-action-body::before, -.branch-action-state-unstable .branch-action-body::before { - background-color: var(--color-attention-emphasis); -} - -.branch-action-state-merged .branch-action-icon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-done-emphasis, var(--color-done-emphasis)); - border: 1px solid transparent; -} - -.branch-action-state-merged .branch-action-body { - border-color: var(--borderColor-done-emphasis, var(--color-done-emphasis)); -} - -.branch-action-state-merged .branch-action-body::after, -.branch-action-state-merged .branch-action-body::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.branch-action-state-merged .branch-action-body::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.branch-action-state-merged .branch-action-body::before { - background-color: var(--color-done-emphasis); -} - -.branch-action-state-dirty .branch-action-icon, -.branch-action-state-closed-dirty .branch-action-icon, -.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-icon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); - border: 1px solid transparent; -} - -.branch-action-state-dirty .branch-action-body, -.branch-action-state-closed-dirty .branch-action-body, -.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body { - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.branch-action-state-dirty .branch-action-body::after, -.branch-action-state-dirty .branch-action-body::before, -.branch-action-state-closed-dirty .branch-action-body::after, -.branch-action-state-closed-dirty .branch-action-body::before, -.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::after, -.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.branch-action-state-dirty .branch-action-body::after, -.branch-action-state-closed-dirty .branch-action-body::after, -.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.branch-action-state-dirty .branch-action-body::before, -.branch-action-state-closed-dirty .branch-action-body::before, -.is-rebasing .branch-action-state-dirty-if-rebasing .branch-action-body::before { - background-color: var(--color-border-default); -} - -.branch-action-state-error .branch-action-icon, -.is-merging .branch-action-state-error-if-merging .branch-action-icon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); - border: 1px solid transparent; -} - -.branch-action-state-error .branch-action-body, -.is-merging .branch-action-state-error-if-merging .branch-action-body { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.branch-action-state-error .branch-action-body::after, -.branch-action-state-error .branch-action-body::before, -.is-merging .branch-action-state-error-if-merging .branch-action-body::after, -.is-merging .branch-action-state-error-if-merging .branch-action-body::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.branch-action-state-error .branch-action-body::after, -.is-merging .branch-action-state-error-if-merging .branch-action-body::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.branch-action-state-error .branch-action-body::before, -.is-merging .branch-action-state-error-if-merging .branch-action-body::before { - background-color: var(--color-danger-emphasis); -} - -.enqueued-pull-request .branch-action-body::after, -.enqueued-pull-request .branch-action-body::before { - position: absolute; - top: 11px; - right: 100%; - left: -8px; - display: block; - width: 8px; - height: 16px; - pointer-events: none; - content: " "; - clip-path: polygon(0 50%, 100% 0, 100% 100%); -} - -.enqueued-pull-request .branch-action-body::after { - margin-left: 2px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - background-image: linear-gradient(var(--color-canvas-default), var(--color-canvas-default)); -} - -.enqueued-pull-request .branch-action-body::before { - background-color: var(--color-attention-emphasis); -} - -@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (-moz-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx) { - .branch-action-body .spinner { - background-image: url("/images/spinners/octocat-spinner-64.gif"); - background-size: 32px 32px; - } -} - -.merge-branch-form, -.queue-branch-form { - display: none; - margin: 16px 0; -} - -.merge-branch-form .commit-form, -.queue-branch-form .commit-form { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.merge-branch-form .commit-form::before, -.queue-branch-form .commit-form::before { - display: none; -} - -@media (min-width: 768px) { - .merge-branch-form .commit-form::before, - .queue-branch-form .commit-form::before { - display: block; - border-right-color: var(--borderColor-default, var(--color-border-default)); - } -} - -.merge-branch-form .commit-form::after, -.queue-branch-form .commit-form::after { - display: none; -} - -@media (min-width: 768px) { - .merge-branch-form .commit-form::after, - .queue-branch-form .commit-form::after { - display: block; - } -} - -.merge-branch-form.error .commit-form, -.merge-branch-form.danger .commit-form, -.queue-branch-form.error .commit-form, -.queue-branch-form.danger .commit-form { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.merge-branch-form.error .commit-form::before, -.merge-branch-form.danger .commit-form::before, -.queue-branch-form.error .commit-form::before, -.queue-branch-form.danger .commit-form::before { - border-right-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.merge-button-matrix-merge-form .merge-branch-form { - display: block; -} - -.completeness-indicator { - display: flex; - align-items: center; - justify-content: center; - width: 30px; - height: 30px; -} - -.completeness-indicator-success { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - border: 1px solid transparent; - border-radius: 50%; -} - -.completeness-indicator-error { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); - border: 1px solid transparent; - border-radius: 50%; -} - -.completeness-indicator-problem { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); - border: 1px solid transparent; - border-radius: 50%; -} - -.completeness-indicator-warning { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-attention-emphasis, var(--color-attention-emphasis)); - border: 1px solid transparent; - border-radius: 50%; -} - -.pull-merging .pull-merging-error { - display: none; -} - -.pull-merging.is-error .pull-merging-error { - display: block; -} - -.pull-merging.is-error .merge-pr { - display: none; -} - -.admin-options-block .admin-option-button { - margin-top: 8px; -} - -.admin-options-block .policy-enforcement { - display: inline; - margin-left: 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.admin-options-block .policy-enforcement label { - font-size: 14px; -} - -.admin-options-block .disabled { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.admin-options-block .disabled .note { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.overflow-scroll-y { - overflow-x: hidden; - overflow-y: scroll; -} - -.business-menu-item:not([aria-current=page]) + .business-sub-menu { - display: none; -} - -.business-menu-icon { - width: 16px; - margin-right: 8px; -} - -.deprovisioning-checkbox > .show-if-disabled { - display: none; -} - -.deprovisioning-checkbox.checkbox-disabled { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.deprovisioning-checkbox.checkbox-disabled > .show-if-disabled { - display: inherit; -} - -.dormant-users-recent-reports { - gap: 16px; -} - -.avatar-migration-status-badge { - width: 20px; - height: 20px; -} - -body.full-width-p-0 .new-discussion-timeline { - padding: 0; -} - -body.full-width-p-0 .footer .mt-6 { - margin-top: 0; - border-top: 0; -} - -body.full-width-p-0 .tabnav .tabnav-extra { - margin-right: 24px; -} - -body.full-width-p-0 .tabnav .tabnav-tabs { - margin-left: 16px; -} - -.actions-full-screen .pagehead, -.actions-full-screen .hide-full-screen, -.actions-full-screen .Header-old, -.actions-full-screen .Header { - display: none; -} - -.checks-list-item.selected .checks-list-item-name { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.checks-list-item.selected .selected-color-white { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.checks-list-item-icon { - width: 16px; -} - -.check-annotation { - border-left: 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.file .check-annotation { - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.file .check-annotation:last-child { - border-bottom: 0; -} - -.check-annotation .annotation-actions { - top: 4px; - right: 8px; -} - -.check-annotation .annotation-octicon { - width: 16px; -} - -.check-annotation.Details--on .Details-content--hidden { - display: block; -} - -.annotation-title { - word-break: break-word; -} - -.check-annotation-failure { - box-shadow: inset 4px 0 0 var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.check-annotation-failure .annotation-title { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.check-annotation-warning { - box-shadow: inset 4px 0 0 var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.check-annotation-warning .octicon-alert { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.check-annotation-warning .annotation-title { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.neutral-check { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.check-range-menu-loading { - display: block; -} - -.check-range-menu-error { - display: none; -} - -.is-error .check-range-menu-loading { - display: none; -} - -.is-error .check-range-menu-error { - display: block; -} - -.code-frequency .addition { - fill: #2cbe4e; - fill-opacity: 1; -} - -.code-frequency .deletion { - fill: var(--fgColor-danger, var(--color-danger-emphasis)); - fill-opacity: 1; -} - -.code-list .file-box { - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.code-list .title { - min-height: 24px; - margin: -4px 0 8px 40px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1.2; -} - -.code-list .repo-specific .title, -.code-list .repo-specific .full-path { - margin-left: 0; -} - -.code-list .match-count, -.code-list .updated-at { - margin: 0; - font-weight: var(--base-text-weight-normal, 400); -} - -.code-list .language { - float: right; - margin-left: 8px; - font-size: 12px; - color: rgba(51,51,51,.75); -} - -.code-list .avatar { - float: left; -} - -.code-list .code-list-item + .code-list-item { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.code-list .blob-num { - padding: 0; -} - -.code-list .blob-num::before { - content: normal; -} - -.code-list .blob-num a { - padding: 0 8px; - color: inherit; -} - -.code-list .blob-num a:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.code-list .blob-code { - white-space: pre-wrap; -} - -.code-list .divider .blob-num, -.code-list .divider .blob-code { - padding-top: 0; - padding-bottom: 0; - cursor: default; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.code-list .divider .blob-num { - height: 18px; - padding: 0 8px; - line-height: 15px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.code-list .full-path { - margin: 0 0 0 40px; -} - -.code-list .full-path .octicon-repo { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.code-list .full-path .octicon-lock { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.code-list .full-path a { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.code-list-item-private .file-box { - border: 1px solid var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.code-list-item-private .blob-num { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); - border-right: 1px solid var(--borderColor-attention-muted, var(--color-attention-muted)); -} - -.code-list-item-private .blob-num a { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.code-list-item-private .divider .blob-num, -.code-list-item-private .divider .blob-code { - color: var(--fgColor-attention, var(--color-attention-fg)); - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.code-scanning-alert-warning-message { - border-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.code-scanning-font-size-inherit { - font-size: inherit; -} - -.cs-status-message .md-paragraph, -.cs-status-message .md-list { - margin-bottom: 8px; -} - -.cs-status-message .md-paragraph:last-child, -.cs-status-message .md-list:last-child { - margin-bottom: 0; -} - -.cs-status-message .md-list, -.cs-message .md-list { - padding-left: 2em; -} - -.cs-status-message .md-pre { - white-space: pre-wrap; -} - -.code-scanning-timeline .TimelineItem:last-of-type.code-scanning-alert-dismissal-comment::before { - width: 0; -} - -.codesearch-head.pagehead h1 { - width: 250px; - line-height: 33px; -} - -@media (min-width: 768px) { - .advanced-search-form .flattened dt { - width: 230px; - } - - .advanced-search-form .flattened dt label { - font-weight: var(--base-text-weight-normal, 400); - } - - .advanced-search-form .flattened dd { - margin-left: 250px; - } - - .advanced-search-form .form-checkbox { - margin-left: 250px; - } -} - -.codesearch-results .code-list .title a { - word-wrap: break-word; -} - -.codesearch-results .repo-list-item { - border-bottom: 0; -} - -.codesearch-results .repo-list-item + .repo-list-item { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.search-form-fluid .TableObject-item--primary { - position: relative; - padding-right: 8px; -} - -.search-form-fluid .completed-query { - position: absolute; - z-index: 1; - padding: inherit; - margin: 0; - overflow: hidden; - white-space: nowrap; -} - -.search-form-fluid .completed-query span { - opacity: 0; -} - -.search-form-fluid .search-page-label { - position: relative; - display: block; - font-weight: var(--base-text-weight-normal, 400); - cursor: text; -} - -.search-form-fluid .search-page-label.focus .completed-query { - opacity: .6; -} - -.search-form-fluid .search-page-input { - position: relative; - z-index: 2; - min-height: 0; - padding: 0; - margin: 0; - background: none; - border: 0; - box-shadow: none; -} - -.search-form-fluid .search-page-input:focus { - box-shadow: none; -} - -.topics-row-container { - height: 30px; - overflow: hidden; -} - -@media (max-width: 544px) { - .codesearch-pagination-container a:not(.next_page):not(.previous_page), - .codesearch-pagination-container .gap { - display: none; - } - - .codesearch-pagination-container .previous_page, - .codesearch-pagination-container .next_page { - width: 100%; - } - - .codesearch-pagination-container .current { - color: var(--fgColor-muted, var(--color-fg-muted)); - background: var(--bgColor-default, var(--color-canvas-default)); - border-color: var(--borderColor-default, var(--color-border-default)); - } - - .codesearch-pagination-container .current::after { - content: " of " attr(data-total-pages); - } -} - -.codespaces-policy-form details > summary::-webkit-details-marker { - display: none; -} - -.codespaces-wider-select-menu-modal { - width: 420px; - margin-right: 32px; -} - -.codespaces-policy-item-no-hover:hover { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.codespaces-policy-constraint-menu-item-muted-hover:hover { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); -} - -.codespaces-policy-form-button-hover:hover .codespaces-policy-form-button-text-hover { - border-color: var(--button-default-bgColor-hover, var(--color-btn-hover-bg)); -} - -.codespaces-policy-form-button-hide-border { - border-color: var(--color-scale-white); -} - -.codespaces-policy-form-blue-hover:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.codespaces-policy-form-blue-hover:hover svg { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.codespaces-policy-form-blue-hover:focus svg { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.codespaces-policy-form-danger-hover:hover { - background-color: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.codespaces-list-box .css-truncate-target { - max-width: 100%; -} - -.commit-activity-master { - margin-top: 16px; -} - -.is-graph-loading .commit-activity-master { - display: none; -} - -rect { - shape-rendering: crispedges; -} - -rect.max { - fill: var(--fgColor-attention, var(--color-attention-fg)); -} - -g.bar { - fill: var(--fgColor-success, var(--color-success-fg)); -} - -g.mini { - fill: var(--fgColor-severe, var(--color-severe-fg)); -} - -g.active rect { - fill: var(--fgColor-danger, var(--color-danger-fg)); -} - -circle.focus { - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.dot text { - fill: var(--fgColor-muted, var(--color-fg-muted)); - stroke: none; -} - -span.no-nl-marker { - position: relative; - color: var(--fgColor-danger, var(--color-danger-fg)); - vertical-align: middle; -} - -.symlink .no-nl-marker { - display: none; -} - -.range-editor { - position: relative; - padding: 4px 16px 4px 40px; - margin-top: 16px; - margin-bottom: 16px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.range-editor .dots { - font-size: 16px; -} - -.range-editor .select-menu { - position: relative; - display: inline-block; -} - -.range-editor .select-menu.fork-suggester { - display: none; -} - -.range-editor .branch-name { - line-height: 22px; -} - -.range-editor .branch .css-truncate-target, -.range-editor .fork-suggester .css-truncate-target { - max-width: 180px; -} - -.range-editor .pre-mergability { - display: inline-block; - padding: 4px; - line-height: 26px; - vertical-align: middle; -} - -.range-editor .pre-mergability .octicon { - vertical-align: text-bottom; -} - -.range-editor.is-cross-repo .select-menu.fork-suggester { - display: inline-block; -} - -.range-editor-icon { - float: left; - margin-top: 8px; - margin-left: -24px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.compare-pr-header { - display: none; -} - -.is-pr-composer-expanded .compare-show-header { - display: none; -} - -.is-pr-composer-expanded .compare-pr-header { - display: block; -} - -.range-cross-repo-pair { - display: inline-block; - padding: 4px; - white-space: nowrap; -} - -.tint-box { - position: relative; - margin-bottom: 8px; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-radius: 6px; -} - -.tint-box.transparent { - background: var(--bgColor-default, var(--color-canvas-default)); -} - -.tint-box .activity { - padding-top: 100px; - margin-top: 0; -} - -.contrib-person path { - fill: var(--fgColor-severe, var(--color-severe-fg)); -} - -.contrib-person .midlabel { - fill: var(--fgColor-neutral, var(--color-neutral-emphasis)); -} - -.coupons .setup-plans td img { - margin-top: -2px; - vertical-align: middle; -} - -.coupons .coupon-form-body { - width: 270px; - padding: 16px; - margin: 100px auto 60px; - font-size: 14px; - text-align: center; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.coupons .coupon-form-body .input-block { - margin-bottom: 16px; -} - -.coupons .coupon-form-body .btn { - display: block; - width: 100%; -} - -.coupon-icon { - width: 80px; - height: 80px; - margin: 0 auto 16px; - color: var(--fgColor-accent, var(--color-accent-fg)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 40px; -} - -.coupon-icon .octicon { - margin-top: 16px; - margin-right: 2px; -} - -.coupons-list-options .select-menu { - display: inline-block; - margin-right: 8px; -} - -.coupons-list-options .pagination { - float: right; - margin: 0; -} - -.repo-private-icon { - fill: var(--fgColor-attention, var(--color-attention-fg)); -} - -.dashboard-rollup-items > .dashboard-rollup-item { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.news-full { - float: none; - width: auto; -} - -.pinned-favorites-update-form { - height: 200px; -} - -.dashboard-break-word { - -webkit-hyphens: auto; - hyphens: auto; - word-break: break-word; -} - -.news .bio g-emoji, -.news .repo-description g-emoji { - display: inline-block; -} - -.news .feed-item-heading-menu-button { - color: var(--fgColor-muted, var(--color-fg-muted)); - outline: none; -} - -.news .feed-item-heading-menu-button:hover { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.suggest-icon { - width: 48px; - height: 48px; - padding: 4px; -} - -.suggest-icon svg, -.suggest-icon path { - fill: #fff; -} - -.suggest-icon svg::before, -.suggest-icon path::before { - bottom: -6px; - left: -4px; - background-color: #9e7bff; -} - -.suggest-icon svg::after, -.suggest-icon path::after { - top: -5px; - right: -5px; - width: 5px; - height: 5px; - background-color: #6c84e9; -} - -.suggest-icon .suggest-icon-bubble { - position: absolute; - width: 6px; - height: 6px; - background-color: #6c84e9; - border-radius: 50%; -} - -.suggest-icon .suggest-icon-bubble:nth-of-type(2n) { - width: 4px; - height: 4px; - background-color: #9e7bff; -} - -.suggest-icon .suggest-icon-bubble:nth-of-type(1) { - bottom: -7px; - left: -7px; -} - -.suggest-icon .suggest-icon-bubble:nth-of-type(2) { - top: -4px; - right: 4px; -} - -.suggest-icon .suggest-icon-bubble:nth-of-type(3) { - top: -7px; - right: -8px; -} - -.dashboard-notice { - position: relative; - padding: 16px 16px 16px 55px; - margin-bottom: 16px; - font-size: 14px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.dashboard-notice .dismiss { - position: absolute; - top: 10px; - right: 10px; - width: 16px; - height: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: pointer; -} - -.dashboard-notice .dismiss:hover { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.dashboard-notice .notice-icon { - position: absolute; - top: 15px; - left: 15px; -} - -.dashboard-notice .octicon-organization { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.dashboard-notice h2 { - margin-top: 8px; - margin-bottom: 16px; - font-size: 16px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.dashboard-notice p.no-title { - padding-right: 4px; -} - -.dashboard-notice ul { - margin-left: 16px; -} - -.dashboard-notice li { - padding-bottom: 16px; -} - -.dashboard-notice .coupon { - padding: 8px; - margin: 16px 0; - font-size: 20px; - font-weight: var(--base-text-weight-semibold, 600); - text-align: center; - background: var(--bgColor-default, var(--color-canvas-default)); - border: 1px dashed var(--borderColor-default, var(--color-border-default)); -} - -.dashboards-overview-lead { - width: 700px; -} - -.dashboards-overview-cards .boxed-group { - width: 100%; - margin: 8px 0; -} - -.dashboards-overview-cards .boxed-group .graph-canvas path { - stroke-opacity: .5; -} - -.dashboards-overview-cards .is-no-activity .blankslate { - display: block; -} - -.dashboards-overview-cards .is-no-activity .dashboards-overview-graph { - display: none; -} - -.dashboards-overview-cards .blankslate { - display: none; - padding-top: 47px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 0; - box-shadow: none; -} - -.dashboards-overview-cards .octicon-arrow-down, -.dashboards-overview-cards .octicon-arrow-up { - display: none; -} - -.dashboards-overview-cards .is-increase .octicon-arrow-up { - display: inline-block; -} - -.dashboards-overview-cards .is-decrease .octicon-arrow-down { - display: inline-block; -} - -.dashboards-overview-cards .octicon-arrow-down { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.dashboards-overview-cards .octicon-arrow-up { - color: #1db34f; -} - -.dashboards-overview-cards .graph-canvas .dots { - padding: 43px 0; -} - -.dashboards-overview-cards .summary-stats { - height: 78px; -} - -.dashboards-overview-cards .summary-stats .metric-0 { - color: #1db34f; -} - -.dashboards-overview-cards .summary-stats .metric-1 { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.dashboards-overview-cards .summary-stats .totals-num { - margin: 0 8px; -} - -.dashboards-overview-cards .summary-stats .single { - width: 100%; -} - -.dashboards-overview-cards .dashboards-overview-graph { - height: 160px; -} - -.dashboards-overview-cards .dashboards-overview-graph path { - fill: none; - stroke-width: 2; -} - -.dashboards-overview-cards .dashboards-overview-graph path.metric-0 { - stroke: #1db34f; -} - -.dashboards-overview-cards .dashboards-overview-graph path.metric-1 { - stroke: #1d7fb3; -} - -.dashboards-overview-cards .dashboards-overview-graph .y line { - stroke: #1db34f; -} - -.dashboards-overview-cards .dashboards-overview-graph .y.unique line { - stroke: #1d7fb3; -} - -.dashboards-overview-cards .dashboards-overview-graph .overlay { - fill-opacity: 0; -} - -.dashboards-overview-cards .metric-0 circle { - fill: #1db34f; - stroke: #fff; - stroke-width: 2; -} - -.dashboards-overview-cards .dots.metric-1 circle { - fill: #1d7fb3; - stroke: #fff; - stroke-width: 2; -} - -.TimelineItem:last-of-type.dependabot-alert-dismissal-comment::before { - width: 0; -} - -dl.form.developer-select-account { - margin-top: 0; -} - -.developer-wrapper .setup-info-module .features-list { - margin-left: 16px; -} - -.developer-wrapper .setup-info-module .features-list .octicon { - margin-left: -16px; -} - -.developer-thanks h2 { - font-size: 40px; - font-weight: var(--base-text-weight-normal, 400); -} - -.developer-thanks .hook { - margin-top: 2px; - margin-bottom: 32px; - font-size: 16px; - font-weight: var(--base-text-weight-light, 300); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.developer-thanks-image { - position: relative; - bottom: -45px; - float: left; - width: 400px; -} - -.developer-thanks-section { - margin: 130px 0 0 470px; -} - -.developer-next-steps { - font-size: 16px; - font-weight: var(--base-text-weight-light, 300); - list-style: none; -} - -.developer-next-steps li { - margin-top: 8px; -} - -.developer-next-steps li:first-child { - margin-top: 0; -} - -.developer-next-steps .octicon { - margin-right: 8px; - color: var(--fgColor-success, var(--color-success-fg)); - vertical-align: middle; -} - -development-menu .line-clamp-1 { - display: -webkit-box; - -webkit-line-clamp: 1; - -webkit-box-orient: vertical; - overflow: hidden; - word-break: break-all; -} - -development-menu .form-control[is-loading] { - background: transparent; -} - -development-menu .development-menu-component-menu-modal, -development-menu .development-menu-component-dialog-modal { - margin-top: 4px; -} - -development-menu .SelectMenu-item:hover, -development-menu .SelectMenu-item:focus-visible { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -development-menu .SelectMenu-item:hover .arrow, -development-menu .SelectMenu-item:focus-visible .arrow { - visibility: visible; -} - -development-menu .SelectMenu-item:hover svg, -development-menu .SelectMenu-item:hover span, -development-menu .SelectMenu-item:hover p, -development-menu .SelectMenu-item:focus-visible svg, -development-menu .SelectMenu-item:focus-visible span, -development-menu .SelectMenu-item:focus-visible p { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -development-menu .development-menu-component-menu-modal, -development-menu .development-menu-component-dialog, -development-menu .development-menu-component-dialog-modal { - animation: none; -} - -@media (min-width: 544px) { - development-menu .development-menu-component-menu-modal, - development-menu .development-menu-component-dialog, - development-menu .development-menu-component-dialog-modal { - max-width: 300px; - } -} - -@media (max-width: 544px) { - development-menu .hx_rsm-modal-sm { - position: fixed; - top: 75px; - right: 16px; - left: 16px; - display: flex; - width: auto; - height: 80%; - margin: 0; - flex-direction: column; - animation: hx_rsm-modal-animation .24s .12s cubic-bezier(0, 0.1, 0.1, 1) backwards; - } -} - -development-menu .development-menu-component-dialog:not([hidden]) + .development-menu-component-dialog-overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 80; - display: block; - cursor: default; - content: " "; - background: transparent; - background: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); -} - -@media (min-width: 544px) { - development-menu .development-menu-component-dialog:not([hidden]) + .development-menu-component-dialog-overlay { - display: none; - } -} - -development-menu .development-menu-component-dialog { - z-index: 99; -} - -@keyframes development-menu-component-dialog-animation--sm { - 0% { - opacity: 0; - transform: translateX(16px); - } -} - -@media (min-width: 544px) { - development-menu .development-menu-component-dialog { - position: absolute; - top: auto; - right: auto; - bottom: auto; - left: auto; - max-height: none; - padding-top: 0; - margin: 0; - transform: none; - } -} - -development-menu .development-menu-component-dialog .development-menu-component-dialog-modal { - animation: none; -} - -development-menu .SelectMenu-item[aria-disabled=true] { - opacity: .5; -} - -.file-diff-split[data-lock-side-selection=left] [data-split-side=right], -.file-diff-split[data-lock-side-selection=right] [data-split-side=left] { - -webkit-user-select: none; - user-select: none; -} - -.invisible { - position: absolute; - opacity: 0; -} - -.label-select-menu .color { - display: inline-block; - width: 14px; - height: 14px; - margin-top: -1px; - margin-right: 2px; - vertical-align: middle; - border-radius: 7px; -} - -.label-select-menu .select-menu-item:hover, -.label-select-menu .select-menu-item:focus, -.label-select-menu .select-menu-item[aria-checked=true]:hover, -.label-select-menu .select-menu-item[aria-checked=true]:focus { - color: inherit; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.label-select-menu .select-menu-item-icon, -.label-select-menu .label-options-icon { - color: inherit; -} - -.user-has-reacted .octicon { - fill: var(--fgColor-accent, var(--color-accent-fg)); -} - -.discussions-header-wrap { - display: grid; - grid-template-columns: minmax(0, 1fr); - gap: 10px; -} - -@media (min-width: 1012px) { - .discussions-header-wrap { - grid-template-columns: minmax(0, 1fr) max-content; - } -} - -.discussions-query-builder { - order: 2; -} - -@media (min-width: 1012px) { - .discussions-query-builder { - order: inherit; - } -} - -.discussions-button-wrap { - display: flex; - align-items: center; - order: 1; - flex-wrap: wrap; - gap: 4px; -} - -@media (min-width: 768px) { - .discussions-button-wrap { - gap: 0; - } -} - -@media (min-width: 1012px) { - .discussions-button-wrap { - order: inherit; - justify-content: flex-end; - } -} - -.discussions-select-menu a:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-emphasis)); -} - -.hx_discussion_section_row { - border-top: solid 1px var(--borderColor-muted, var(--color-border-muted)); - border-radius: 0; -} - -.donut-chart > .error, -.donut-chart > .cancelled, -.donut-chart > .action_required, -.donut-chart > .timed_out, -.donut-chart > .failure { - fill: var(--color-checks-donut-error); -} - -.donut-chart > .expected, -.donut-chart > .queued, -.donut-chart > .in_progress, -.donut-chart > .waiting, -.donut-chart > .requested, -.donut-chart > .pending { - fill: var(--color-checks-donut-pending); -} - -.donut-chart > .success { - fill: var(--color-checks-donut-success); -} - -.donut-chart > .neutral, -.donut-chart > .stale, -.donut-chart > .skipped { - fill: var(--color-checks-donut-neutral); -} - -.ds-action-prompt-container { - height: auto; - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-mobile.png"); - background-repeat: no-repeat; - background-position: top right; -} - -.ds-action-prompt-container .content { - width: 95%; -} - -@media (min-width: 768px) { - .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner.png"); - } - - .ds-action-prompt-container .content { - width: 80%; - } -} - -[data-color-mode=light][data-light-theme*=dark] .ds-action-prompt-container, -[data-color-mode=dark][data-dark-theme*=dark] .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-mobile-dark.png"); -} - -@media (min-width: 768px) { - [data-color-mode=light][data-light-theme*=dark] .ds-action-prompt-container, - [data-color-mode=dark][data-dark-theme*=dark] .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-dark.png"); - } -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-mobile-dark.png"); - } -} - -@media (prefers-color-scheme: light)and (min-width: 768px) { - [data-color-mode=auto][data-light-theme*=dark] .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-dark.png"); - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-mobile-dark.png"); - } -} - -@media (prefers-color-scheme: dark)and (min-width: 768px) { - [data-color-mode=auto][data-dark-theme*=dark] .ds-action-prompt-container { - background-image: url("/images/modules/dependency-graph/ds-actions-prompt-banner-dark.png"); - } -} - -.metered-license-graph { - display: block; - height: 275px; -} - -.metered-license-graph .metered-license-graph-loading, -.metered-license-graph .metered-license-graph-error { - display: flex; - width: 100%; - height: 100%; - justify-content: center; - align-items: center; -} - -.ghe-license-status { - padding: 40px 0; - font-size: 16px; - text-align: center; -} - -.ghe-license-status .octocat { - width: 225px; - margin-bottom: 16px; -} - -.ghe-license-status h1 { - margin-bottom: 8px; -} - -.ghe-license-status p { - margin-bottom: 4px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.ghe-license-expiry-icon { - margin: 4px 8px 0 0; - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.feature-preview-dialog { - width: 90vw; - max-width: 880px; - height: 60vh; - min-height: 240px; - max-height: 700px; -} - -.feature-preview-dialog .feature-preview-info { - height: 60vh; - min-height: 183px; - max-height: calc(100% - 57px); -} - -.global-nav-feature-preview-dialog { - height: 60vh; - min-height: 240px; -} - -.file { - position: relative; - margin-top: 16px; - margin-bottom: 16px; - border: 1px solid var(--borderColor-default, var(--color-border-default, #ddd)); - border-radius: 6px; -} - -.file .drag-and-drop { - border: 0; - border-top: 1px dashed var(--borderColor-default, var(--color-border-default)); -} - -.file:target { - outline: none; - box-shadow: 0 0 0 2px var(--color-accent-fg); -} - -.file .data.empty { - padding: 4px 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.file:not(.open) .file-header.file-header--expandable { - border-bottom: 0; - border-radius: 6px; -} - -.file .data.suppressed, -.file.open .image { - display: none; -} - -.file.open .data.suppressed { - display: block; -} - -.file .image { - position: relative; - padding: 32px; - text-align: center; - background-color: #ddd; -} - -.file .image table { - margin: 0 auto; -} - -.file .image td { - padding: 0 4px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - vertical-align: top; -} - -.file .image td img { - max-width: 100%; -} - -.file .image .border-wrap { - position: relative; - display: inline-block; - line-height: 0; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.file .image a { - display: inline-block; - line-height: 0; -} - -.file .image img, -.file .image canvas { - max-width: 600px; - background: url("/images/modules/commit/trans_bg.gif") right bottom #eee; - border: 1px solid #fff; -} - -.file .image .view img, -.file .image .view canvas { - position: relative; - top: 0; - right: 0; - max-width: inherit; - background: url("/images/modules/commit/trans_bg.gif") right bottom #eee; -} - -.file .image .view > span { - vertical-align: middle; -} - -.file .empty { - background: none; -} - -.file-header { - z-index: 2; - padding: 4px 8px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.file-header::before { - display: table; - content: ""; -} - -.file-header::after { - display: table; - clear: both; - content: ""; -} - -.file-actions { - float: right; - padding-top: 2px; - font-size: 12px; -} - -.file-actions select { - margin-left: 4px; -} - -.file-info { - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 12px; - line-height: 32px; -} - -.file-info .octicon { - vertical-align: text-bottom; -} - -.sticky-file-header { - position: sticky; - top: 60px; -} - -.sticky-file-header.has-open-dropdown { - z-index: 10; -} - -.diff-progressive-loader { - min-height: 150px; -} - -.load-diff-button, -.load-diff-retry { - z-index: 1; - min-height: 32px; -} - -.diff-placeholder-svg { - clip: rect(1px, 1px, 1px, 1px); - clip-path: inset(50%); -} - -.ghae-bootstrap-container { - min-height: calc(100vh - 54px); -} - -.ghae-bootstrap-incomplete-step { - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.ghae-bootstrap-complete-step { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.ghae-enterprise-name-form-error { - left: 50%; - transform: translateX(-50%); -} - -.graphs .area { - fill: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - fill-opacity: .5; -} - -.graphs .path { - fill: none; - stroke: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - stroke-opacity: 1; - stroke-width: 2px; -} - -.graphs .dot { - fill: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - stroke: #1e7e34; - stroke-width: 2px; -} - -.graphs .dot.padded { - stroke: var(--bgColor-default, var(--color-canvas-default)); - stroke-width: 1px; -} - -.graphs .dot.padded circle:hover { - fill: var(--fgColor-accent, var(--color-accent-emphasis)); -} - -.graphs .d3-tip { - fill: var(--fgColor-neutral, var(--color-neutral-emphasis)); -} - -.graphs .d3-tip text { - font-size: 12px; - fill: var(--bgColor-default, var(--color-canvas-default)); -} - -.graphs .dir { - float: right; - padding-top: 4px; - font-size: 12px; - font-weight: var(--base-text-weight-normal, 400); - line-height: 100%; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.graphs .selection .overlay { - visibility: none; -} - -.graphs .selection .selection { - fill: var(--fgColor-neutral, var(--color-neutral-emphasis)); - fill-opacity: .1; - stroke: var(--fgColor-default, var(--color-fg-default)); - stroke-dasharray: 3 3; - stroke-opacity: .4; - stroke-width: 1px; - shape-rendering: crispedges; -} - -.graph-filter h3 { - display: inline-block; - font-size: 24px; - font-weight: var(--base-text-weight-light, 300); -} - -.graph-filter .info { - margin-bottom: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.graph-canvas .activity { - width: 400px; - padding: 8px; - margin: 100px auto 0; - color: var(--fgColor-default, var(--color-fg-default)); - text-align: center; - border-radius: 6px; -} - -.graph-canvas .dots { - margin: 0 auto; -} - -.graph-canvas > .activity { - display: none; -} - -.graph-canvas .axis { - font-size: 12px; -} - -.graph-canvas .axis line { - stroke: var(--borderColor-default, var(--color-border-default)); - shape-rendering: crispedges; -} - -.graph-canvas .axis text { - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.graph-canvas .axis path { - display: none; -} - -.graph-canvas .axis .zero line { - stroke: var(--fgColor-accent, var(--color-accent-emphasis)); - stroke-dasharray: 3 3; - stroke-width: 1.5; -} - -.graph-canvas text.axis { - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.graph-canvas .graph-loading, -.graph-canvas .graph-error, -.graph-canvas .graph-no-usable-data, -.graph-canvas .graph-empty, -.graph-canvas .graph-too-large { - display: none; -} - -.graph-canvas.is-graph-loading > .activity, -.graph-canvas.is-graph-without-usable-data > .activity, -.graph-canvas.is-graph-empty > .activity, -.graph-canvas.is-graph-too-large > .activity { - display: block; -} - -.graph-canvas.is-graph-loading .graph-loading, -.graph-canvas.is-graph-empty .graph-empty, -.graph-canvas.is-graph-without-usable-data .graph-no-usable-data, -.graph-canvas.is-graph-load-error .graph-error, -.graph-canvas.is-graph-too-large .graph-too-large { - display: block; -} - -.svg-tip { - position: absolute; - z-index: 99999; - padding: 8px 16px; - font-size: 12px; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-align: center; - background: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); - border-radius: 6px; -} - -.svg-tip.is-visible { - display: block; -} - -.svg-tip::after { - position: absolute; - bottom: -10px; - left: 50%; - width: 5px; - height: 5px; - box-sizing: border-box; - margin: 0 0 0 -4px; - content: " "; - border: 5px solid transparent; - border-top-color: var(--bgColor-emphasis, var(--color-neutral-emphasis-plus)); -} - -.svg-tip.left::after { - left: 10%; -} - -.svg-tip.right::after { - left: 90%; -} - -.svg-tip.comparison { - padding: 0; - text-align: left; - pointer-events: none; -} - -.svg-tip.comparison .title { - display: block; - padding: 8px; - margin: 0; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1; - pointer-events: none; -} - -.svg-tip.comparison ul { - padding: 4px 8px 8px 8px; - margin: 0; - white-space: nowrap; - list-style: none; -} - -.svg-tip.comparison li { - display: inline-block; - padding-top: 16px; -} - -.svg-tip.comparison .metric-0, -.svg-tip.comparison .metric-1 { - position: relative; -} - -.svg-tip.comparison .metric-0::before, -.svg-tip.comparison .metric-1::before { - position: absolute; - top: 0; - right: 0; - left: 0; - height: 4px; - content: ""; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.svg-tip.comparison .metric-0::before { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.svg-tip.comparison .metric-1::before { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.svg-tip-one-line { - white-space: nowrap; -} - -.activity-overview-axis, -.activity-overview-point { - stroke: var(--color-calendar-graph-day-L4-bg); -} - -.halloween-activity-overview .activity-overview-axis, -.halloween-activity-overview .activity-overview-point { - stroke: var(--color-calendar-halloween-graph-day-L4-bg); -} - -.winter-activity-overview .activity-overview-axis, -.winter-activity-overview .activity-overview-point { - stroke: var(--color-calendar-winter-graph-day-L4-bg); -} - -.activity-overview-label { - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.activity-overview-percentage { - font-size: 12px; - fill: var(--fgColor-muted, var(--color-fg-muted)); -} - -.team-breadcrumb .team-breadcrumb-item { - display: inline-block; -} - -.team-breadcrumb .team-breadcrumb-item::after { - padding-right: .5em; - padding-left: .5em; - color: var(--borderColor-neutral-muted, var(--color-neutral-muted)); - content: "/"; -} - -.team-breadcrumb .team-breadcrumb-item-selected::after { - content: none; -} - -.team-discussions-container { - min-height: 100vh; -} - -@media (min-width: 768px) { - .team-left-column { - max-width: 350px; - } -} - -.team-left-column .team-avatar { - width: 80px; - height: 80px; -} - -@media (min-width: 768px) { - .team-left-column .team-avatar { - width: 140px; - height: 140px; - } -} - -.team-discussions { - max-width: 768px; -} - -.team-discussions .previewable-comment-form .comment { - border: 0; -} - -.team-discussions .previewable-comment-form .toolbar-commenting.toolbar-commenting.toolbar-commenting { - background: transparent; -} - -.team-discussions .previewable-comment-form .tabnav-tab.selected { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.hooks-listing .boxed-group-action.select-menu { - z-index: auto; -} - -.hooks-listing .boxed-group-inner { - padding: 0 8px; - margin-bottom: 8px; -} - -.hook-item a:hover { - text-decoration: none; -} - -.hook-item .item-status { - float: left; - width: 16px; - margin-right: 8px; - text-align: center; -} - -.hook-item .description { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.hook-item .description .css-truncate-target { - max-width: 160px; -} - -.hook-item .icon-for-success, -.hook-item .icon-for-failure, -.hook-item .icon-for-pending, -.hook-item .icon-for-inactive { - display: none; -} - -.hook-item.success .icon-for-success { - display: inline-block; - color: var(--fgColor-success, var(--color-success-fg)); -} - -.hook-item.failure .icon-for-failure { - display: inline-block; - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.hook-item.pending .icon-for-pending { - display: inline-block; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.hook-item.inactive .icon-for-inactive { - display: inline-block; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.hook-item .icon-for-enabled, -.hook-item .icon-for-disabled { - display: none; -} - -.hook-item.enabled .icon-for-enabled { - display: inline-block; - color: var(--fgColor-success, var(--color-success-fg)); -} - -.hook-item.disabled .icon-for-disabled { - display: inline-block; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.hook-item .hook-error-message { - margin-left: 24px; - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.hook-url.css-truncate-target { - max-width: 360px; -} - -.hooks-oap-warning { - margin-top: 0; -} - -.hooks-oap-warning ul { - margin: 8px 0; -} - -.hooks-oap-warning ul li { - margin-left: 16px; -} - -.item-name { - float: left; - font-weight: var(--base-text-weight-semibold, 600); -} - -.hovercard-icon { - width: 16px; -} - -.integration-meta-head { - font-size: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.integrations-select-repos { - max-height: 138px; - overflow-y: scroll; - border-radius: 6px; -} - -.integrations-select-repos .mini-repo-list-item { - padding: 8px 64px 8px 32px; -} - -.integrations-select-repos .mini-repo-list-item:hover .repo, -.integrations-select-repos .mini-repo-list-item:hover .owner { - text-decoration: none; -} - -.integrations-select-repos .mini-repo-list-item .css-truncate-target { - max-width: 345px; -} - -.integrations-select-repos::-webkit-scrollbar { - width: 10px; -} - -.integrations-select-repos::-webkit-scrollbar-thumb { - background-color: rgba(0,0,0,.5); - border: solid var(--bgColor-default, var(--color-canvas-default)) 2px; - border-radius: 6px; - box-shadow: 0 0 1px rgba(255,255,255,.5); -} - -.integrations-select-repos::-webkit-scrollbar-track-piece { - background: transparent; -} - -.integrations-repository-picker { - width: 440px; -} - -.target-avatar { - position: relative; - top: -2px; -} - -.select-permission-modal { - width: 340px; -} - -.issue-list-item + .issue-list-item { - border-top: solid 1px var(--borderColor-muted, var(--color-border-muted)); -} - -.issue-list-item { - overflow-wrap: anywhere; -} - -.pinned-issue-item .pinned-issue-handle { - cursor: grab; -} - -.pinned-issue-item.is-dragging, -.pinned-issue-item.is-dragging .pinned-issue-handle { - cursor: grabbing; -} - -.pinned-issue-item.is-dragging { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.pinned-issue-item.sortable-ghost { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - opacity: 0; -} - -.issues-reset-query-wrapper { - margin-bottom: 16px; -} - -.label-link:hover { - text-decoration: none; -} - -.issues-reset-query { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.issues-reset-query:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.issues-reset-query:hover .issues-reset-query-icon { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.issues-reset-query-icon { - width: 18px; - height: 18px; - padding: 1px; - margin-right: 4px; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - text-align: center; - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); - border-radius: 6px; -} - -.table-list-milestones .stats { - gap: 0 15px; -} - -.table-list-milestones .table-list-cell { - padding: 16px 16px; -} - -.table-list-milestones .stat { - display: inline-block; - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1.2; - color: var(--fgColor-muted, var(--color-fg-muted)); - white-space: nowrap; -} - -.table-list-milestones .stat a { - color: inherit; -} - -.table-list-milestones .stat-label { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.milestone-title { - width: 500px; -} - -.milestone-title-link { - margin-top: 0; - margin-bottom: 4px; - font-size: 24px; - font-weight: var(--base-text-weight-normal, 400); - line-height: 1.2; -} - -.milestone-title-link a { - color: var(--fgColor-default, var(--color-fg-default), #333); -} - -.milestone-title-link a:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -.milestone-progress { - width: auto; - max-width: 420px; -} - -.milestone-progress .progress-bar { - margin-top: 8px; - margin-bottom: 12px; -} - -.milestone-meta { - font-size: 14px; -} - -.milestone-meta-item { - display: inline-block; - margin-right: 8px; -} - -.milestone-meta-item .octicon { - width: 16px; - text-align: center; -} - -.milestone-description-html { - display: none; -} - -.milestone-description { - margin-top: 4px; -} - -.milestone-description .expand-more { - color: var(--fgColor-accent, var(--color-accent-fg)); - cursor: pointer; -} - -.milestone-description .expand-more:hover { - text-decoration: underline; -} - -.milestone-description.open .milestone-description-plaintext { - display: none; -} - -.milestone-description.open .milestone-description-html { - display: block; -} - -.milestones-flexbox-gap { - gap: 10px; -} - -.issue-reorder-warning { - z-index: 110; -} - -.task-progress { - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: none; - vertical-align: top; -} - -.task-progress .octicon { - margin-right: 4px; - color: var(--fgColor-muted, var(--color-fg-muted), #999); - vertical-align: bottom; -} - -.task-progress .progress-bar { - display: inline-block; - width: 80px; - height: 5px; - vertical-align: 2px; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); -} - -.task-progress .progress-bar .progress { - background-color: var(--borderColor-default, var(--color-border-default)); -} - -.task-progress-counts { - display: inline-block; - margin-right: 4px; - margin-left: -2px; - font-size: 12px; -} - -a.task-progress:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); -} - -a.task-progress:hover .octicon { - color: inherit; -} - -a.task-progress:hover .progress-bar .progress { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.issue-meta-section .octicon { - color: var(--fgColor-muted, var(--color-fg-muted), #ccc); - vertical-align: bottom; -} - -.issue-milestone { - max-width: 240px; -} - -.issue-milestone .css-truncate-target { - max-width: 100px; -} - -.milestone-link .octicon { - font-size: 14px; -} - -.milestone-link:hover .octicon { - color: inherit; -} - -.new-pr-form { - margin-top: 16px; - margin-bottom: 16px; -} - -.new-pr-form::before { - display: table; - content: ""; -} - -.new-pr-form::after { - display: table; - clear: both; - content: ""; -} - -.new-pr-form .discussion-timeline::before { - display: none; -} - -.label-select-menu .description { - margin-left: 16px; -} - -.label-select-menu .color { - display: inline-block; - width: 14px; - height: 14px; - margin-top: -1px; - margin-right: 2px; - vertical-align: middle; - border-radius: 7px; -} - -.label-select-menu [aria-checked=true] .select-menu-item-icon, -.label-select-menu [aria-checked=mixed] .select-menu-item-icon, -.label-select-menu .selected .select-menu-item-icon { - color: inherit; -} - -.label-select-menu [aria-checked=true] .octicon-circle-slash, -.label-select-menu [aria-checked=mixed] .octicon-circle-slash, -.label-select-menu .selected .octicon-circle-slash { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.label-select-menu [aria-checked=true]:active, -.label-select-menu [aria-checked=mixed]:active, -.label-select-menu .selected:active { - background-color: transparent; -} - -.label-select-menu .select-menu-item { - position: relative; -} - -.label-select-menu .select-menu-item:hover, -.label-select-menu .select-menu-item:focus, -.label-select-menu .select-menu-item[aria-selected=true], -.label-select-menu .select-menu-item.navigation-focus { - color: inherit; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.label-select-menu .select-menu-item:hover .select-menu-item-icon, -.label-select-menu .select-menu-item:focus .select-menu-item-icon, -.label-select-menu .select-menu-item[aria-selected=true] .select-menu-item-icon, -.label-select-menu .select-menu-item.navigation-focus .select-menu-item-icon { - color: transparent; -} - -.label-select-menu .select-menu-item:hover .label-options-icon, -.label-select-menu .select-menu-item:focus .label-options-icon, -.label-select-menu .select-menu-item[aria-selected=true] .label-options-icon, -.label-select-menu .select-menu-item.navigation-focus .label-options-icon { - color: inherit; -} - -.label-select-menu > form { - position: relative; -} - -.subnav .btn + .issues-search { - padding-right: 8px; - border-right: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.reaction-sort-item { - float: left; - width: 39px; - padding: 4px; - margin-top: 4px; - text-align: center; - pointer-events: all; - border: solid 1px transparent; - border-radius: 6px; - opacity: .7; -} - -.reaction-sort-item:focus, -.reaction-sort-item:hover { - text-decoration: none; - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - opacity: 1; -} - -.reaction-sort-item[aria-checked=true] { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); - opacity: 1; -} - -.issue-keyword { - border-bottom: 1px dotted var(--borderColor-default, var(--color-border-default)); -} - -.issue-keyword:hover { - border-bottom: 0; -} - -.new-label-color-dimensions { - width: 24px; - height: 24px; -} - -.select-menu-item[aria-selected=true] > .octicon.label-options-icon, -.select-menu-item.navigation-focus > .octicon.label-options-icon { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.new-label-color-input:invalid { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.issue-form-textarea { - height: 100px; - min-height: 100px; -} - -.issue-forms-wysiwyg-container .comment-form-head { - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.issue-forms-wysiwyg-container .comment-body { - border-bottom: 0; -} - -.issue-form-body > :first-child { - margin-top: 0; -} - -.issue-create-branch-menu-action { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.issue-create-branch-menu-action:hover:not(:disabled) { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.issue-create-branch-menu-action:focus:not(:disabled) { - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -react-app[app-name=issues] { - display: flex; -} - -react-app[app-name=issues] > [data-target="react-app.reactRoot"] { - width: 100%; -} - -.repository-lang-stats { - position: relative; -} - -.repository-lang-stats ol.repository-lang-stats-numbers li { - display: table-cell; - width: 1%; - padding: 8px 4px; - text-align: center; - white-space: nowrap; - border-bottom: 0; -} - -.repository-lang-stats ol.repository-lang-stats-numbers li span.percent { - float: none; -} - -.repository-lang-stats ol.repository-lang-stats-numbers li > a, -.repository-lang-stats ol.repository-lang-stats-numbers li > span { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: none; -} - -.repository-lang-stats ol.repository-lang-stats-numbers li .lang { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.repository-lang-stats ol.repository-lang-stats-numbers li .language-color { - display: inline-block; - width: 10px; - height: 10px; - border-radius: 50%; -} - -.repository-lang-stats ol.repository-lang-stats-numbers li a:hover { - background: transparent; -} - -.repository-lang-stats-graph { - width: 100%; - overflow: hidden; - white-space: nowrap; - cursor: pointer; - -webkit-user-select: none; - user-select: none; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-top: 0; - border-bottom-right-radius: 6px; - border-bottom-left-radius: 6px; -} - -.repository-lang-stats-graph .language-color { - line-height: 8px; - text-indent: -9999px; -} - -.repository-lang-stats-graph .language-color:first-child { - border-bottom-left-radius: 6px; -} - -.repository-lang-stats-graph .language-color:last-child { - border-bottom-right-radius: 6px; -} - -.repository-lang-stats-graph .language-color:not(:first-child) { - border-left: 1px solid var(--bgColor-default, var(--color-canvas-default)); -} - -.octocat-spinner { - min-height: 64px; - background-image: url("/images/spinners/octocat-spinner-64.gif"); - background-repeat: no-repeat; - background-position: center center; -} - -.octocat-spinner-32 { - min-height: 32px; - background-image: url("/images/spinners/octocat-spinner-32.gif"); - background-repeat: no-repeat; - background-position: center center; -} - -@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (-moz-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx) { - .octocat-spinner { - background-image: url("/images/spinners/octocat-spinner-128.gif"); - background-size: 64px 64px; - } - - .octocat-spinner-32 { - background-image: url("/images/spinners/octocat-spinner-64.gif"); - background-size: 32px 32px; - } -} - -.map-container .activity { - top: 120px; - left: 340px; - z-index: 99999; -} - -.map-container .is-graph-loading .activity { - display: block; -} - -.map { - height: 350px; -} - -.map-background { - pointer-events: all; - fill: #0366d6; -} - -.map-background-zoom { - cursor: grab; -} - -.map-land { - fill: none; - stroke: #256aae; - stroke-width: 2; - shape-rendering: crispedges; -} - -.map-country { - fill: #d7c7ad; - shape-rendering: crispedges; - cursor: pointer; -} - -.map-country.hk { - stroke: #a5967e; -} - -.map-country:hover { - fill: #c8b28e; -} - -.map-country.active { - fill: #f6e5ca; -} - -.map-borders { - fill: none; - stroke: #a5967e; - shape-rendering: crispedges; -} - -.map-graticule { - pointer-events: none; - fill: none; - stroke: #fff; - stroke-opacity: .2; - shape-rendering: crispedges; -} - -.map-graticule :nth-child(2n) { - stroke-dasharray: 2,2; -} - -.map-legend .map-legend-circle { - fill-opacity: 0; - stroke: #fff; - stroke-width: 1.5; -} - -.map-legend .map-legend-text { - font-size: 12px; - fill: #fff; - text-anchor: end; -} - -.map-legend .map-legend-link { - stroke: #fff; - stroke-width: 1.5; -} - -.map-point { - pointer-events: none; - fill: #f66a0a; -} - -.map-point:hover { - fill: #e36209; -} - -.map-country-info { - top: 8px; - right: 8px; - pointer-events: none; - opacity: 0; -} - -.MarketplaceJumbotron { - background-color: var(--bgColor-neutral-emphasis, var(--color-neutral-emphasis)); - background-image: url("/images/modules/marketplace/bg-hero.svg"); - background-repeat: repeat-y; - background-position: center top; - background-size: 150% auto; -} - -@media (min-width: 768px) { - .MarketplaceJumbotron { - background-repeat: no-repeat; - background-size: cover; - } -} - -.CircleBadge--feature { - position: relative; - top: 0; - transition: top .15s ease-in,box-shadow .12s ease-in; -} - -.MarketplaceFeature { - min-width: 250px; -} - -.MarketplaceFeature-text { - opacity: .7; - transition: opacity .12s ease-in; -} - -.MarketplaceFeature-link:hover .CircleBadge--feature { - top: -3px; - box-shadow: 0 3px 8px 0 rgba(0,0,0,.2); -} - -.MarketplaceFeature-link:hover .MarketplaceFeature-text { - opacity: 1; -} - -.MarketplaceFeature-link:active .CircleBadge--feature { - top: 0; - box-shadow: 0; -} - -.MarketplaceSideNav { - -webkit-overflow-scrolling: touch; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -@media (min-width: 768px) { - .MarketplaceSideNav { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-right: 1px solid var(--borderColor-default, var(--color-border-default)); - } -} - -.ScreenshotCarousel { - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.ScreenshotCarousel-screenshot { - padding: 16px; -} - -.ScreenshotCarousel-nav { - display: flex; - overflow-x: auto; - align-items: top; - box-shadow: inset 0 1px 0 var(--borderColor-default, var(--color-border-default)); -} - -.ScreenshotCarousel-navitem { - width: 20%; - min-width: 120px; - padding: 16px; - cursor: pointer; - border-right: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.ScreenshotCarousel-navitem:last-child { - border-right: 0; -} - -.ScreenshotCarousel-navitem.selected { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - box-shadow: inset 0 0 4px rgba(36,41,46,.15); -} - -.marketplace-listing-screenshot-container { - width: 175px; - min-height: 175px; - background-repeat: no-repeat; - background-position: center center; - background-size: cover; -} - -.marketplace-listing-screenshot-zoom { - display: none; - cursor: move; -} - -.marketplace-listing-details-sidebar { - order: 2; -} - -@media (min-width: 768px) { - .marketplace-listing-details-sidebar { - order: 1; - } -} - -.marketplace-listing-details-description { - order: 1; -} - -@media (min-width: 768px) { - .marketplace-listing-details-description { - order: 2; - } -} - -.marketplace-listing-screenshot-link { - height: 100px; - cursor: move; -} - -.marketplace-listing-screenshot-link:hover .marketplace-listing-screenshot-zoom, -.marketplace-listing-screenshot-link:focus .marketplace-listing-screenshot-zoom { - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - padding-top: 24px; - background-color: rgba(255,255,255,.75); -} - -.marketplace-integratable-logo { - width: 40px; - height: 40px; -} - -.marketplace-listing-save-notice, -.marketplace-listing-save-error { - display: none; - opacity: 0; - transition: opacity .15s linear; -} - -.marketplace-listing-save-notice.visible, -.marketplace-listing-save-error.visible { - display: inline-block; - opacity: 1; -} - -.marketplace-listing-screenshot-delete-form { - position: absolute; - bottom: -24px; - width: 100%; - text-align: center; -} - -.marketplace-plan-dollar-field-container .price-note { - display: none; -} - -.marketplace-plan-dollar-field-container.is-errored .price-note { - display: block; -} - -.marketplace-plan-dollar-field-container.is-errored .form-control { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.marketplace-plan-emphasis { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.selected .marketplace-plan-emphasis { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.marketplace-plan-unit-name-preview::before { - content: "per "; -} - -.marketplace-plan-per-time { - clear: right; -} - -.marketplace-billing-modal { - width: 540px; - max-height: 90vh; - margin-top: 5vh; -} - -.marketplace-listing-markdown, -.marketplace-url-link { - word-wrap: break-word; - white-space: pre-wrap; -} - -.marketplace-listing-markdown { - line-height: 1.4; -} - -.marketplace-product-callout { - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.marketplace-product-callout::before, -.marketplace-product-callout::after { - display: none; -} - -.marketplace-product-callout .branch-action-item-icon { - color: var(--fgColor-muted, var(--color-fg-muted)); - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.filter-item.selected .Label--secondary { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - border-color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.MarketplaceEdit-body { - min-height: 570px; -} - -.MarketplaceEdit-body .pricing-model-selector { - width: calc(100% - 12px); - max-width: 100%; -} - -.MarketplaceEdit-body .menu { - border-right: 0; - border-left: 0; - border-radius: 0; -} - -.MarketplaceEdit-body .menu-item { - padding: 12px 16px; - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.MarketplaceEdit-body .menu-item.selected { - background: var(--bgColor-default, var(--color-canvas-default)); -} - -.MarketplaceEdit-body .menu-item:hover { - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.MarketplaceEdit-body .menu-item.selected::before { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 3px; - content: ""; - background-color: var(--bgColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.MarketplaceEdit-body .menu-item:first-child::before { - border-top-left-radius: 0; -} - -.MarketplaceEdit-body .CircleIcon { - display: inline-block; - width: 32px; - height: 32px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 32px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; - background: #e6ebf1; - border-radius: 50%; -} - -.MarketplaceEdit-body .CircleIcon .octicon { - display: inline-block; -} - -.MarketplaceInsights-graph .insights-month .tick:nth-child(2n) { - visibility: hidden; -} - -.BarChart { - border-radius: 6px; -} - -.BarChart-bar { - height: 10px; - border-right: 1px solid var(--bgColor-default, var(--color-canvas-default)); -} - -.BarChart-bar--green { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.BarChart-bar--orange { - background-color: var(--bgColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.BarChart-bar--yellow { - background-color: var(--bgColor-attention-emphasis, var(--color-attention-emphasis)); -} - -.CircleBadge--tiny { - width: 32px; - height: 32px; -} - -.CircleBadge--github { - position: relative; -} - -.CircleBadge--github.CircleBadge--large::after { - right: 5px; - bottom: 5px; -} - -.CircleBadge--github.CircleBadge--small::after { - right: -5px; - bottom: -5px; -} - -.CircleBadge--github::after { - position: absolute; - right: 0; - bottom: 0; - display: block; - width: 22px; - height: 22px; - padding: 4px; - line-height: 0; - content: ""; - background: var(--bgColor-default, var(--color-canvas-default)) url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyMnB4IiBoZWlnaHQ9IjIycHgiIHZpZXdCb3g9IjAgMCAyMiAyMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TaGFwZSBDb3B5PC90aXRsZT4gICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+ICAgIDxkZWZzPjwvZGVmcz4gICAgPGcgaWQ9IktpdGNoZW4tc2luayIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iT2N0aWNvbnMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zNzAuMDAwMDAwLCAtMTU4NC4wMDAwMDApIiBmaWxsPSIjMUIxRjIzIj4gICAgICAgICAgICA8cGF0aCBkPSJNMzgxLDE1ODQgQzM3NC45MjI1LDE1ODQgMzcwLDE1ODguOTIyNSAzNzAsMTU5NSBDMzcwLDE1OTkuODY3NSAzNzMuMTQ4NzUsMTYwMy45Nzg3NSAzNzcuNTIxMjUsMTYwNS40MzYyNSBDMzc4LjA3MTI1LDE2MDUuNTMyNSAzNzguMjc3NSwxNjA1LjIwMjUgMzc4LjI3NzUsMTYwNC45MTM3NSBDMzc4LjI3NzUsMTYwNC42NTI1IDM3OC4yNjM3NSwxNjAzLjc4NjI1IDM3OC4yNjM3NSwxNjAyLjg2NSBDMzc1LjUsMTYwMy4zNzM3NSAzNzQuNzg1LDE2MDIuMTkxMjUgMzc0LjU2NSwxNjAxLjU3MjUgQzM3NC40NDEyNSwxNjAxLjI1NjI1IDM3My45MDUsMTYwMC4yOCAzNzMuNDM3NSwxNjAwLjAxODc1IEMzNzMuMDUyNSwxNTk5LjgxMjUgMzcyLjUwMjUsMTU5OS4zMDM3NSAzNzMuNDIzNzUsMTU5OS4yOSBDMzc0LjI5LDE1OTkuMjc2MjUgMzc0LjkwODc1LDE2MDAuMDg3NSAzNzUuMTE1LDE2MDAuNDE3NSBDMzc2LjEwNSwxNjAyLjA4MTI1IDM3Ny42ODYyNSwxNjAxLjYxMzc1IDM3OC4zMTg3NSwxNjAxLjMyNSBDMzc4LjQxNSwxNjAwLjYxIDM3OC43MDM3NSwxNjAwLjEyODc1IDM3OS4wMiwxNTk5Ljg1Mzc1IEMzNzYuNTcyNSwxNTk5LjU3ODc1IDM3NC4wMTUsMTU5OC42MyAzNzQuMDE1LDE1OTQuNDIyNSBDMzc0LjAxNSwxNTkzLjIyNjI1IDM3NC40NDEyNSwxNTkyLjIzNjI1IDM3NS4xNDI1LDE1OTEuNDY2MjUgQzM3NS4wMzI1LDE1OTEuMTkxMjUgMzc0LjY0NzUsMTU5MC4wNjM3NSAzNzUuMjUyNSwxNTg4LjU1MTI1IEMzNzUuMjUyNSwxNTg4LjU1MTI1IDM3Ni4xNzM3NSwxNTg4LjI2MjUgMzc4LjI3NzUsMTU4OS42Nzg3NSBDMzc5LjE1NzUsMTU4OS40MzEyNSAzODAuMDkyNSwxNTg5LjMwNzUgMzgxLjAyNzUsMTU4OS4zMDc1IEMzODEuOTYyNSwxNTg5LjMwNzUgMzgyLjg5NzUsMTU4OS40MzEyNSAzODMuNzc3NSwxNTg5LjY3ODc1IEMzODUuODgxMjUsMTU4OC4yNDg3NSAzODYuODAyNSwxNTg4LjU1MTI1IDM4Ni44MDI1LDE1ODguNTUxMjUgQzM4Ny40MDc1LDE1OTAuMDYzNzUgMzg3LjAyMjUsMTU5MS4xOTEyNSAzODYuOTEyNSwxNTkxLjQ2NjI1IEMzODcuNjEzNzUsMTU5Mi4yMzYyNSAzODguMDQsMTU5My4yMTI1IDM4OC4wNCwxNTk0LjQyMjUgQzM4OC4wNCwxNTk4LjY0Mzc1IDM4NS40Njg3NSwxNTk5LjU3ODc1IDM4My4wMjEyNSwxNTk5Ljg1Mzc1IEMzODMuNDIsMTYwMC4xOTc1IDM4My43NjM3NSwxNjAwLjg1NzUgMzgzLjc2Mzc1LDE2MDEuODg4NzUgQzM4My43NjM3NSwxNjAzLjM2IDM4My43NSwxNjA0LjU0MjUgMzgzLjc1LDE2MDQuOTEzNzUgQzM4My43NSwxNjA1LjIwMjUgMzgzLjk1NjI1LDE2MDUuNTQ2MjUgMzg0LjUwNjI1LDE2MDUuNDM2MjUgQzM4OC44NTEyNSwxNjAzLjk3ODc1IDM5MiwxNTk5Ljg1Mzc1IDM5MiwxNTk1IEMzOTIsMTU4OC45MjI1IDM4Ny4wNzc1LDE1ODQgMzgxLDE1ODQgTDM4MSwxNTg0IFoiIGlkPSJTaGFwZS1Db3B5Ij48L3BhdGg+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=") center no-repeat; - border-radius: 100px; -} - -body.page-responsive .flash-full .container { - width: 100%; - max-width: 980px; -} - -.ClipboardButton { - position: relative; -} - -.ClipboardButton.ClipboardButton--success { - border-color: var(--borderColor-success-emphasis, var(--color-success-emphasis)); - box-shadow: 0 0 0 .2em rgba(52,208,88,.4); -} - -.ClipboardButton.ClipboardButton--success:focus { - box-shadow: 0 0 0 .2em rgba(52,208,88,.4); -} - -@media (min-width: 768px) { - .MarketplacePlan--sticky { - position: sticky; - top: 24px; - z-index: 999; - } -} - -.MarketplaceBackground-wrapper { - position: relative; -} - -.MarketplaceBackground-recommendations { - position: relative; - top: -90px; - width: 313px; - margin-top: -150px; - margin-bottom: -120px; - overflow: hidden; -} - -.MarketplaceBackground-recommendations img { - position: relative; - top: 0; - right: 225px; - width: 549px; -} - -@media (min-width: 544px) { - .MarketplaceBackground-recommendations { - position: relative; - width: 463px; - margin-top: -180px; - margin-bottom: 70px; - overflow: hidden; - } - - .MarketplaceBackground-recommendations img { - right: 305px; - width: 730px; - } -} - -@media (min-width: 768px) { - .MarketplaceBackground-recommendations { - position: absolute; - top: -228px; - right: -69px; - width: 633px; - } - - .MarketplaceBackground-recommendations img { - right: 195px; - width: 750px; - } -} - -@media (min-width: 1012px) { - .MarketplaceBackground-recommendations { - top: -268px; - right: 0; - width: 1040px; - } - - .MarketplaceBackground-recommendations img { - right: -115px; - width: 900px; - } -} - -@media (min-width: 1280px) { - .MarketplaceBackground-recommendations { - top: -325px; - right: 105px; - width: 1040px; - } - - .MarketplaceBackground-recommendations img { - right: 0; - width: 1040px; - } -} - -.MarketplaceBackground-buffer { - padding-top: 40px; - margin-top: -146px; - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -@media (min-width: 544px) { - .MarketplaceBackground-buffer { - padding-top: 120px; - margin-top: -233px; - } -} - -@media (min-width: 768px) { - .MarketplaceBackground-buffer { - margin-top: -109px; - } -} - -@media (min-width: 1012px) { - .MarketplaceBackground-buffer { - margin-top: -89px; - } -} - -.MarketplaceHeader { - overflow: hidden; -} - -.Link--muted.filter-item.selected { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.MarketplaceAnnouncement { - color: #fff; - background: linear-gradient(90deg, #257bf9, #2426ca); -} - -.MarketplaceAnnouncement-icon { - width: 80px; - opacity: .9; -} - -.MarketplaceAnnouncement-description { - opacity: .7; -} - -.member-list-item .table-list-cell-checkbox { - width: 30px; -} - -.member-list-item.adminable .member-info { - padding-left: 4px; -} - -.member-list-item .member-avatar-cell { - width: 64px; -} - -.triage-mode .none-selected { - display: none; -} - -.merge-branch-heading { - margin: 0; - line-height: 1; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.merge-branch-description { - margin-right: 160px; - margin-bottom: -4px; - line-height: 1.6em; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.merge-branch-description.multi-line-error { - white-space: pre-wrap; -} - -.alt-merge-options { - display: inline-block; - margin-bottom: 0; - margin-left: 4px; - vertical-align: middle; -} - -.merged .merge-branch-description .commit-ref .css-truncate-target { - max-width: 180px; -} - -.merge-branch-prh-output { - margin-top: 8px; -} - -.merge-branch-form, -.queue-branch-form { - display: none; - padding-left: 60px; -} - -.merge-branch-manually { - display: none; - padding-top: 16px; - margin-top: 16px; - background-color: transparent; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.merge-branch-manually p { - margin-bottom: 0; -} - -.merge-branch-manually h3 { - margin-bottom: 8px; -} - -.merge-branch-manually .intro { - padding-bottom: 8px; - margin-top: 0; -} - -.merge-branch-manually .step { - margin: 16px 0 4px; -} - -.open .merge-branch-manually { - display: block; -} - -.select-menu-merge-method { - width: 310px; -} - -.select-menu-merge-method .select-menu-item:hover, -.select-menu-merge-method .select-menu-item:hover .octicon, -.select-menu-merge-method .select-menu-item:hover .select-menu-item-text { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.select-menu-merge-method .select-menu-item:hover .description { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.merge-pr.is-squashing .commit-author-fields { - display: none; -} - -.merge-pr.is-squashing .commit-author-fields.current-user-is-author { - display: block; -} - -.merge-pr.is-rebasing .commit-form-fields { - display: none; - transition: opacity .15s linear 0s,margin-top .25s ease .1s; -} - -.merge-pr .btn-group-merge, -.merge-pr .btn-group-merge-group, -.merge-pr .merge-queue-info, -.merge-pr .merge-queue-time-to-merge, -.merge-pr.is-squashing .btn-group-squash, -.merge-pr.is-rebasing .btn-group-rebase, -.merge-pr.is-updating-via-merge .btn-group-update-merge, -.merge-pr.is-updating-via-rebase .btn-group-update-rebase, -.merge-pr.is-merging-solo .btn-group-merge-solo, -.merge-pr.is-merging-jump .btn-group-merge-jump, -.merge-pr.is-merging-group .btn-group-merge-group, -.merge-pr.is-merging .btn-group-merge-directly, -.merge-pr.is-merging .merging-directly-warning { - display: inline-block; -} - -.merge-pr .merging-body, -.merge-pr .rebasing-body, -.merge-pr .squashing-body, -.merge-pr .merging-body-merge-warning, -.merge-pr .merging-directly-warning, -.merge-pr .squash-commit-author-email-info, -.merge-pr .merge-commit-author-email-info, -.merge-pr.is-merging .merge-queue-info, -.merge-pr.is-merging .branch-action-state-error-if-merging .merging-body { - display: none; -} - -.merge-pr.is-merging .merging-body, -.merge-pr.is-merging .merge-commit-author-email-info, -.merge-pr.is-merging-solo .merging-body, -.merge-pr.is-merging-jump .merging-body, -.merge-pr.is-merging-group .merging-body, -.merge-pr.is-rebasing .rebasing-body, -.merge-pr.is-squashing .squashing-body, -.merge-pr.is-squashing .squash-commit-author-email-info, -.merge-pr.is-merging .branch-action-state-error-if-merging .merging-body-merge-warning { - display: block; -} - -.merge-pr .btn-group-squash, -.merge-pr .btn-group-merge-solo, -.merge-pr .btn-group-merge-jump, -.merge-pr .btn-group-merge-directly, -.merge-pr .btn-group-rebase, -.merge-pr .btn-group-update-merge, -.merge-pr .btn-group-update-rebase, -.merge-pr.is-squashing .btn-group-merge, -.merge-pr.is-rebasing .btn-group-merge, -.merge-pr.is-merging-solo .btn-group-merge-group, -.merge-pr.is-merging-jump .btn-group-merge-group, -.merge-pr.is-merging .btn-group-merge-group { - display: none; - margin-left: 0; -} - -.commit-form-fields { - transition: opacity .15s linear .1s,margin-top .25s ease 0s; -} - -.unavailable-merge-method { - display: block; - margin-top: 4px; - color: var(--fgColor-severe, var(--color-severe-fg)); -} - -[aria-selected=true].disabled .unavailable-merge-method, -.navigation-focus.disabled .unavailable-merge-method { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.network .network-tree { - vertical-align: middle; -} - -.network .gravatar { - margin-right: 4px; - vertical-align: middle; - border-radius: 6px; -} - -.network .octicon { - display: inline-block; - width: 16px; - margin-left: 2px; - text-align: center; - vertical-align: middle; -} - -.owner-reponame dl.form-group { - margin-top: 4px; - margin-bottom: 0; -} - -.owner-reponame .slash { - float: left; - padding-top: 32px; - margin: 0 8px; - font-size: 20px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.owner-reponame .form-group.errored details details-menu label { - color: inherit; -} - -.owner-reponame .form-group.errored details .hack-repos-owner-summary { - border-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.reponame-suggestion { - color: var(--fgColor-success, var(--color-success-fg)); - cursor: pointer; -} - -.news .release { - margin-top: 0; - margin-bottom: 0; -} - -.news blockquote { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.news .alert { - position: relative; - padding: 0 0 1em 45px; - overflow: hidden; - border-top: 1px solid #eff3f6; -} - -.news .alert .commits { - padding-left: 40px; -} - -.news .alert .css-truncate.css-truncate-target, -.news .alert .css-truncate .css-truncate-target { - max-width: 180px; -} - -.news .alert p { - margin: 0; -} - -.news .alert .markdown-body blockquote { - padding: 0 0 0 40px; - border-width: 0; -} - -.news .alert .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.news .alert .dashboard-event-icon { - position: absolute; - top: 18px; - left: 22px; - transform: translateX(-50%); -} - -.news .alert .body { - padding: 1em 0 0; - overflow: hidden; - font-size: 14px; - border-bottom: 0; -} - -.news .alert .time { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.news .alert .title { - padding: 0; - font-weight: var(--base-text-weight-semibold, 600); -} - -.news .alert .title .subtle { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.news .alert .gravatar { - float: left; - margin-right: .6em; - line-height: 0; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 6px; -} - -.news .alert .simple .title { - display: inline-block; - font-size: 14px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.news .alert .simple .time { - display: inline-block; -} - -.news .alert:first-child { - border-top: 0; -} - -.news .alert:first-child .body { - padding-top: 0; -} - -.news .alert:first-child .dashboard-event-icon { - top: 0; -} - -.news .github-welcome .done { - color: var(--fgColor-muted, var(--color-fg-muted)); - text-decoration: line-through; -} - -.news .commits li { - margin-top: .15em; - list-style-type: none; -} - -.news .commits li.more { - padding-top: 2px; - font-size: 12px; -} - -.news .commits li .committer { - display: none; - padding-left: .5em; -} - -.news .commits li img { - margin: 0 1px 0 0; - vertical-align: middle; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 6px; -} - -.news .commits li img.emoji { - padding: 0; - margin: 0; - border: 0; -} - -.news .commits li .message { - display: inline-block; - max-width: 390px; - margin-top: 2px; - overflow: hidden; - font-size: 14px; - line-height: 1.3; - text-overflow: ellipsis; - white-space: nowrap; - vertical-align: top; -} - -.news div.message, -.news li blockquote { - display: inline; - font-size: 14px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-permissions-details { - position: relative; - padding: 16px; - margin: 0; - list-style: none; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.oauth-permissions-details:first-child { - border-radius: 6px 6px 0 0; -} - -.oauth-permissions-details:last-child { - border: 0; - border-radius: 0 0 6px 6px; -} - -.oauth-permissions-details.oauth-public-data-only { - border-radius: 6px; -} - -.oauth-permissions-details .markdown-body { - font-size: 12px; -} - -.oauth-permissions-details .content { - display: none; - margin-left: 45px; -} - -.oauth-permissions-details .content .form-checkbox { - margin-left: 0; -} - -.oauth-permissions-details .content .form-checkbox:last-child { - margin-bottom: 0; -} - -.oauth-permissions-details .octicon { - float: left; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.oauth-permissions-details .permission-help { - font-size: 12px; -} - -.oauth-permissions-details .permission-help ul { - padding-left: 16px; - margin: 1em 0; -} - -.oauth-permissions-details .permission-summary { - margin-left: 45px; -} - -.oauth-permissions-details .permission-summary .access-details { - position: relative; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-permissions-details .permission-summary em.highlight { - position: relative; - padding: 2px 4px; - margin-right: -2px; - margin-left: -4px; - font-style: normal; - color: var(--fgColor-default, var(--color-fg-default)); - background: var(--highlight-neutral-bgColor, var(--color-search-keyword-hl)); - border-radius: 6px; -} - -.oauth-permissions-details .permission-title { - display: block; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.oauth-permissions-details a.btn-sm { - float: right; - margin-top: 4px; -} - -.oauth-permissions-details.open a.btn-sm { - background-color: #dcdcdc; - background-image: none; - border-color: #b5b5b5; - box-shadow: inset 0 2px 4px rgba(0,0,0,.15); -} - -.oauth-permissions-details.open .content { - display: block; -} - -.oauth-permissions-details.default:not(.delete) .no-access, -.oauth-permissions-details.default:not(.delete) .default-access, -.oauth-permissions-details.none .no-access, -.oauth-permissions-details.none .default-access { - display: inline; -} - -.oauth-permissions-details.default:not(.delete) .access-details, -.oauth-permissions-details.default:not(.delete) .permission-title, -.oauth-permissions-details.none .access-details, -.oauth-permissions-details.none .permission-title { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-permissions-details.default:not(.delete) .octicon, -.oauth-permissions-details.none .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-permissions-details.default .default-access { - display: inline; -} - -.oauth-permissions-details.full .full-access { - display: inline; -} - -.oauth-details-toggle { - position: absolute; - top: 0; - right: 0; - padding: 16px 16px; -} - -.oauth-details-toggle .octicon-chevron-up { - display: none; -} - -.open .oauth-details-toggle .octicon-chevron-down { - display: none; -} - -.open .oauth-details-toggle .octicon-chevron-up { - display: block; -} - -.oauth-user-permissions .full-access, -.oauth-user-permissions .limited-access, -.oauth-user-permissions .limited-access-emails-followers, -.oauth-user-permissions .limited-access-emails-profile, -.oauth-user-permissions .limited-access-followers-profile, -.oauth-user-permissions .limited-access-profile, -.oauth-user-permissions .limited-access-followers, -.oauth-user-permissions .limited-access-emails, -.oauth-user-permissions .no-access { - display: none; -} - -.oauth-user-permissions.limited.limited-email .limited-access-emails { - display: inline; -} - -.oauth-user-permissions.limited.limited-email.limited-profile .limited-access-emails, -.oauth-user-permissions.limited.limited-email.limited-profile .limited-access-profile { - display: none; -} - -.oauth-user-permissions.limited.limited-email.limited-profile .limited-access-emails-profile { - display: inline; -} - -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-emails, -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-profile, -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-followers, -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-emails-profile, -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-emails-followers, -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access-followers-profile { - display: none; -} - -.oauth-user-permissions.limited.limited-email.limited-profile.limited-follow .limited-access { - display: inline; -} - -.oauth-user-permissions.limited.limited-email.limited-follow .limited-access-emails, -.oauth-user-permissions.limited.limited-email.limited-follow .limited-access-followers { - display: none; -} - -.oauth-user-permissions.limited.limited-email.limited-follow .limited-access-emails-followers { - display: inline; -} - -.oauth-user-permissions.limited.limited-follow .limited-access-followers { - display: inline; -} - -.oauth-user-permissions.limited.limited-follow.limited-profile .limited-access-followers, -.oauth-user-permissions.limited.limited-follow.limited-profile .limited-access-profile { - display: none; -} - -.oauth-user-permissions.limited.limited-follow.limited-profile .limited-access-followers-profile { - display: inline; -} - -.oauth-user-permissions.limited.limited-profile .limited-access-profile { - display: inline; -} - -.oauth-repo-permissions .default-access, -.oauth-repo-permissions .public-access, -.oauth-repo-permissions .limited-repo-invite-access, -.oauth-repo-permissions .full-access { - display: none; -} - -.oauth-repo-permissions.full .full-access { - display: inline; -} - -.oauth-repo-permissions.limited-repo-invite .limited-repo-invite-access { - display: inline; -} - -.oauth-repo-permissions.public .public-access { - display: inline; -} - -.oauth-repo-permissions.default .default-access { - display: inline; -} - -.oauth-delete-repo-permissions .octicon-alert { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.oauth-repo-status-permissions .no-access, -.oauth-repo-status-permissions .full-access, -.oauth-repo-deployment-permissions .no-access, -.oauth-repo-deployment-permissions .full-access { - display: none; -} - -.oauth-notifications-permissions .no-access, -.oauth-notifications-permissions .read-access, -.oauth-notifications-permissions .via-public-access, -.oauth-notifications-permissions .via-full-access { - display: none; -} - -.oauth-notifications-permissions.read .read-access { - display: inline; -} - -.oauth-notifications-permissions.via-public .via-public-access { - display: inline; -} - -.oauth-notifications-permissions.via-public .octicon { - display: none; -} - -.oauth-notifications-permissions.via-full .via-full-access { - display: inline; -} - -.oauth-gist-permissions .no-access, -.oauth-gist-permissions .full-access { - display: none; -} - -.oauth-granular-permissions .no-access, -.oauth-granular-permissions .read-access, -.oauth-granular-permissions .write-access, -.oauth-granular-permissions .full-access { - display: none; -} - -.oauth-granular-permissions.none .no-access { - display: inline; -} - -.oauth-granular-permissions.read .read-access { - display: inline; -} - -.oauth-granular-permissions.write .write-access { - display: inline; -} - -.oauth-granular-permissions.full .full-access { - display: inline; -} - -.oauth-no-description { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-org-access-details { - background: var(--bgColor-default, var(--color-canvas-default)); -} - -.oauth-org-access-details .oauth-org-item:hover { - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.oauth-org-access-details a:hover { - text-decoration: none; -} - -.oauth-org-access-details .boxed-group-inner { - border: 0; - border-radius: 6px; -} - -.oauth-org-access-details .oauth-org-item { - line-height: 24px; -} - -.oauth-org-access-details .oauth-org-item:first-child { - border-radius: 6px 6px 0 0; -} - -.oauth-org-access-details .oauth-org-item .loading-indicator { - display: none; - margin: 4px; -} - -.oauth-org-access-details .oauth-org-item.on .authorized-tools { - display: block; -} - -.oauth-org-access-details .oauth-org-item.on .unauthorized-tools { - display: none; -} - -.oauth-org-access-details .oauth-org-item.on strong { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.oauth-org-access-details .oauth-org-item.on .octicon-check { - display: inline; -} - -.oauth-org-access-details .oauth-org-item.on .octicon-x { - display: none; -} - -.oauth-org-access-details .oauth-org-item.revoked { - background: var(--bgColor-default, var(--color-canvas-default)); -} - -.oauth-org-access-details .oauth-org-item.revoked .unauthorized-tools, -.oauth-org-access-details .oauth-org-item.revoked .authorized-tools { - display: none; -} - -.oauth-org-access-details .oauth-org-item.revoked .octicon-x { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.oauth-org-access-details .oauth-org-item.loading .unauthorized-tools, -.oauth-org-access-details .oauth-org-item.loading .authorized-tools { - display: none; -} - -.oauth-org-access-details .oauth-org-item.loading .loading-indicator { - display: block; -} - -.oauth-org-access-details .oauth-org-item .authorized-tools { - display: none; -} - -.oauth-org-access-details .oauth-org-item .unauthorized-tools { - display: block; -} - -.oauth-org-access-details .btn { - line-height: 1.5em; -} - -.oauth-org-access-details .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-org-access-details .octicon-check { - display: none; - color: var(--fgColor-success, var(--color-success-fg)); -} - -.oauth-org-access-details .octicon-x { - display: inline; -} - -.oauth-org-access-details .octicon-x.org-access-denied { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.permission-title { - margin-top: 0; -} - -.boxed-group-inner .oauth-application-info { - margin-bottom: 8px; -} - -.oauth-application-info .application-title { - font-size: 32px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.oauth-application-info .application-description { - margin-top: 4px; - margin-bottom: 0; -} - -.oauth-application-info .listgroup-item { - line-height: inherit; -} - -.oauth-application-info .app-denied, -.oauth-application-info .app-approved { - margin-left: 8px; - font-size: 14px; - font-weight: var(--base-text-weight-normal, 400); - white-space: nowrap; -} - -.oauth-application-info .app-approved, -.oauth-application-info .octicon-check { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.oauth-application-info .app-denied, -.oauth-application-info .octicon-x { - color: var(--fgColor-severe, var(--color-severe-fg)); -} - -.app-transfer-actions form { - display: inline; -} - -.developer-app-item .developer-app-avatar-cell { - width: 60px; -} - -.developer-app-item .developer-app-name { - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 1.25; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.developer-app-item .developer-app-name:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.developer-app-item .developer-app-info-cell { - padding-left: 0; -} - -.developer-app-item .developer-app-list-meta { - margin-top: 4px; - margin-bottom: 2px; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.org-transfer-requests { - margin: 8px 0 16px; -} - -.toggle-secret-field .secret-standin { - display: block; -} - -.toggle-secret-field .secret-field { - display: none; -} - -.toggle-secret-field.open .secret-standin { - display: none; -} - -.toggle-secret-field.open .secret-field { - display: block; -} - -.invitation-2fa-banner { - margin-right: -24px; - margin-left: -24px; -} - -.sign-up-via-invitation .bleed-flush { - width: 100%; - padding: 0 16px; - margin-left: -16px; - border-color: var(--borderColor-default, var(--color-border-default)); -} - -.sign-up-via-invitation label { - font-size: 14px; -} - -.orghead { - padding-top: 16px; - padding-bottom: 0; - margin-bottom: 16px; - color: var(--fgColor-default, var(--color-fg-default)); - background-color: var(--page-header-bgColor, var(--color-page-header-bg)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.orghead .orgnav { - position: relative; - top: 1px; - margin-top: 8px; -} - -.org-repos .TableObject-item--primary { - white-space: normal; -} - -.org-name { - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-default, var(--color-fg-default)); -} - -.audit-log-search .member-info { - width: 300px; -} - -.audit-log-search .member-info .member-avatar { - float: left; - margin-right: 16px; -} - -.audit-log-search .member-info .member-link { - display: block; -} - -.audit-log-search .member-info .member-list-avatar { - margin-right: 0; -} - -.audit-log-search .member-info .ghost { - display: inline-block; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.audit-log-search .blankslate { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.audit-log-search .export-phrase { - margin: 4px 0; -} - -.audit-results-actions { - overflow: auto; -} - -.audit-search-clear { - float: left; - margin-bottom: 16px; - border: 0; -} - -.audit-search-clear .issues-reset-query { - margin-bottom: 0; -} - -.audit-type { - width: 200px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.audit-type .octicon { - margin-right: 4px; - font-weight: var(--base-text-weight-normal, 400); - vertical-align: bottom; -} - -.audit-type .repo { - color: var(--fgColor-severe, var(--color-severe-fg)); -} - -.audit-type .team { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.audit-type .user { - color: var(--fgColor-done, var(--color-done-fg)); -} - -.audit-type .oauth_access { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.audit-type .hook { - color: #e1bf4e; -} - -.export-phrase { - margin-top: 4px; -} - -.export-phrase pre { - padding-left: 8px; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - white-space: pre-wrap; - border-left: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.two-factor-enforcement-form .loading-spinner { - float: left; - margin: 0 0 0 -16px; - vertical-align: middle; -} - -.saml-enabled-banner-container { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.saml-settings-form .test-status-indicator, -.oidc-settings-form .test-status-indicator { - width: 30px; - height: 30px; - margin-top: -4px; - border-radius: 50%; -} - -.saml-settings-form .test-status-indicator .octicon, -.oidc-settings-form .test-status-indicator .octicon { - display: block; - margin-top: 8px; - margin-right: auto; - margin-left: auto; -} - -.saml-settings-form .form-group.errored, -.oidc-settings-form .form-group.errored { - margin-bottom: 40px; -} - -.saml-settings-form .test-status-indicator-error, -.oidc-settings-form .test-status-indicator-error { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.saml-settings-form .test-status-indicator-success, -.oidc-settings-form .test-status-indicator-success { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.saml-settings-form .details-container .method-field, -.oidc-settings-form .details-container .method-field { - display: none; -} - -.saml-settings-form .details-container .method-label, -.oidc-settings-form .details-container .method-label { - font-weight: var(--base-text-weight-normal, 400); -} - -.saml-settings-form .details-container .details-target, -.oidc-settings-form .details-container .details-target { - cursor: pointer; -} - -.saml-settings-form .details-container.open .method-value, -.saml-settings-form .details-container.open .details-target, -.oidc-settings-form .details-container.open .method-value, -.oidc-settings-form .details-container.open .details-target { - display: none; -} - -.saml-settings-form .details-container.open .method-field, -.oidc-settings-form .details-container.open .method-field { - display: inline-block; -} - -.saml-settings-form .saml-enforcement-disabled, -.oidc-settings-form .saml-enforcement-disabled { - opacity: .5; -} - -.form-group .form-control.saml-certificate-field { - width: 440px; - height: 150px; - min-height: 0; -} - -.member-avatar { - float: left; - margin: 1px; -} - -.member-fullname { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.auto-search-group { - position: relative; -} - -.auto-search-group .auto-search-input { - padding-left: 32px; -} - -.auto-search-group .spinner, -.auto-search-group > .octicon { - position: absolute; - left: 10px; - z-index: 5; - width: 16px; - height: 16px; -} - -.auto-search-group .spinner { - top: 9px; - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.auto-search-group > .octicon { - top: 10px; - font-size: 14px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.org-list .list-item { - position: relative; - padding-top: 16px; - padding-bottom: 16px; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.org-list .list-item::before { - display: table; - content: ""; -} - -.org-list .list-item::after { - display: table; - clear: both; - content: ""; -} - -.permission-level-cell .select-menu-button { - width: 90px; - text-align: left; -} - -.permission-level-cell .select-menu-button::after { - position: absolute; - top: 10px; - right: 10px; -} - -.permission-level-cell .spinner { - float: none; - opacity: 0; - transition: opacity .2s ease-in-out; -} - -.permission-level-cell .is-loading .spinner { - opacity: 1; -} - -.select-menu-option-title { - margin-top: 0; - margin-bottom: 0; -} - -.reinstate-org-member { - position: relative; - width: 500px; - margin: 40px auto; -} - -.reinstate-org-member .reinstate-lead { - margin-bottom: 32px; - font-size: 16px; -} - -.reinstate-org-member label { - cursor: pointer; -} - -.reinstate-org-member .reinstate-detail-container { - margin: 16px 0; -} - -.reinstate-org-member .reinstate-title { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.reinstate-org-member .reinstate-title .octicon { - width: 16px; - margin-right: 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.permission-title { - margin-top: 0; -} - -.invite-member-results ul { - margin: 0; -} - -.team-member-list { - list-style: none; -} - -.team-member-list .table-list-cell { - padding-top: 16px; - padding-bottom: 16px; -} - -.team-member-list .team-member-content { - margin-left: 50px; -} - -.team-member-list .team-member-username { - margin: 0; - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); - line-height: 20px; -} - -.team-member-list .Label--secondary { - cursor: default; -} - -.team-member-list .invite-icon { - width: 28px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.menu-item-danger, -.menu-item-danger.selected { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.menu-item-danger:hover, -.menu-item-danger[aria-selected=true], -.menu-item-danger.navigation-focus, -.menu-item-danger.selected:hover, -.menu-item-danger.selected[aria-selected=true], -.menu-item-danger.selected.navigation-focus { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); -} - -.team-member-list-avatar { - float: left; - margin-right: 8px; -} - -.team-member-list-avatar .octicon { - width: 40px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.confirm-removal-list-container { - margin-bottom: 16px; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.confirm-removal-list-item { - padding: 8px; - margin: 0; - font-size: 14px; - font-weight: var(--base-text-weight-semibold, 600); - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.confirm-removal-list-item:first-child { - border-top: 0; -} - -.manage-member-meta { - list-style: none; -} - -.manage-member-meta-item { - margin-top: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.manage-member-meta-item:first-child { - margin-top: 0; -} - -.manage-member-meta-item .btn-link { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.manage-member-meta-item > .octicon { - width: 14px; - margin-right: 4px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.manage-member-meta-item > .octicon-alert { - color: var(--fgColor-severe, var(--color-severe-fg)); -} - -.ldap-group-dn { - display: block; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.ldap-import-groups-container .blankslate { - display: none; -} - -.ldap-import-groups-container.is-empty .blankslate { - display: block; -} - -.ldap-import-groups-container.is-empty .ldap-memberships-list { - display: none; -} - -.ldap-memberships-list { - margin-bottom: 32px; -} - -.ldap-memberships-list .table-list-cell { - padding-top: 8px; - padding-bottom: 8px; - font-size: 12px; - vertical-align: middle; -} - -.ldap-memberships-list .table-list-cell:last-child { - width: 92px; -} - -.ldap-memberships-list .ldap-list-team-name { - width: 380px; -} - -.ldap-memberships-list .ldap-group-dn { - font-size: 12px; -} - -.ldap-memberships-list .ldap-mention-as { - width: 260px; -} - -.ldap-memberships-list .edit { - position: absolute; - padding: 8px; - margin-left: -32px; - color: var(--fgColor-accent, var(--color-accent-fg)); - cursor: pointer; -} - -.ldap-memberships-list .edit-fields { - display: none; -} - -.ldap-memberships-list .is-editing .edit-hide { - display: none; -} - -.ldap-memberships-list .is-editing .edit-fields { - display: block; -} - -.ldap-memberships-list .is-editing .spinner { - margin-left: 16px; - vertical-align: middle; -} - -.ldap-memberships-list .is-removing { - opacity: .25; -} - -.ldap-memberships-list .is-removing .edit { - opacity: .5; -} - -.team-name-field { - height: 33px; -} - -.ldap-import-form-actions { - margin-top: 32px; -} - -.invited .team-member-list { - margin: -16px 0; -} - -.invited .team-member-list .list-item { - padding: 8px 0; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.invited .team-member-list .list-item::before { - display: table; - content: ""; -} - -.invited .team-member-list .list-item::after { - display: table; - clear: both; - content: ""; -} - -.invited .team-member-list .list-item:last-of-type { - border: 0; -} - -.invited .team-member-list .list-item .edit-invitation { - float: right; - margin-top: 4px; -} - -.invited-banner::before { - display: table; - content: ""; -} - -.invited-banner::after { - display: table; - clear: both; - content: ""; -} - -.invited-banner .btn-sm { - float: right; - margin-left: 4px; -} - -.invited-banner p { - font-size: 14px; - line-height: 1.5; -} - -.invited-banner .inviter-link { - font-weight: var(--base-text-weight-semibold, 600); -} - -.manage-member-sso-sessions.has-active-sessions .blankslate { - display: none; -} - -.org-menu-item:not([aria-current=page]) + .org-sub-menu { - display: none; -} - -.trial-banner-notice { - background-image: linear-gradient(180deg, #0366d6 0%, #2188ff 100%); -} - -@media (min-width: 768px) { - .Popover-message--extra-large { - min-width: 544px; - } -} - -.recommended-projects-form { - height: 200px; -} - -.theme-name { - display: inline-block; - margin-right: 8px; - margin-left: 8px; - font-size: 20px; - line-height: 1; - vertical-align: middle; -} - -.pinned-items-spinner { - position: relative; - top: 2px; - left: 6px; -} - -.pinned-items-setting-link { - font-size: 12px; - font-weight: var(--base-text-weight-normal, 400); -} - -.pinned-item-name { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.pinned-item-checkbox + .pinned-item-name:hover { - cursor: pointer; - background-color: var(--control-transparent-bgColor-hover, var(--color-action-list-item-default-hover-bg)); - border-radius: 6px; -} - -.pinned-item-checkbox:disabled + .pinned-item-name { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.pinned-item-checkbox:disabled + .pinned-item-name:hover { - cursor: default; -} - -.pinned-gist-blob-num { - min-width: 36px; - cursor: default; -} - -.pinned-gist-blob-num:hover { - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: default; -} - -@media print { - #serverstats, - .Header-old, - .Header, - .header-search, - .reponav, - .comment::before, - .comment::after, - .footer, - .pagehead-actions, - .discussion-timeline-actions, - .timeline-comment-actions, - .timeline-new-comment, - .thread-subscription-status, - .lock-toggle-link, - .header, - .file-actions, - .js-expandable-line, - .gh-header-sticky, - .pr-toolbar.is-placeholder, - .language-color { - display: none; - } - - .repository-lang-stats-graph { - height: 0; - } - - p, - .comment h2 { - page-break-inside: avoid; - } - - .markdown-body h2 { - page-break-after: avoid; - } - - .topic-tag { - padding: 0; - } - - .topic-tag::before { - margin-right: -2px; - content: "#"; - } - - .blob-num { - border-right: 2px solid var(--color-border-default); - } - - .blob-num-deletion { - border-right-color: var(--color-danger-emphasis); - } - - .blob-num-addition { - border-right-color: var(--color-success-emphasis); - } - - .blob-code-addition .x { - border-bottom: 2px solid var(--color-success-emphasis); - border-radius: 0; - } - - .blob-code-deletion .x { - border-bottom: 2px solid var(--color-danger-emphasis); - border-radius: 0; - } - - .pr-toolbar.is-stuck { - position: static; - width: 100%; - } - - .diffstat-block-neutral { - border: 4px solid var(--color-border-default); - } - - .diffstat-block-deleted { - border: 4px solid var(--color-danger-emphasis); - } - - .diffstat-block-added { - border: 4px solid var(--color-success-emphasis); - } - - .State { - color: var(--color-fg-default); - background: none; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-color: none; - } - - .State--open { - color: var(--color-success-fg); - border: 1px solid #2cbe4e; - } - - .State--merged { - color: var(--color-done-fg); - border: 1px solid var(--color-done-emphasis); - } - - .State--closed { - color: var(--color-danger-fg); - border: 1px solid var(--color-danger-emphasis); - } - - .markdown-body pre > code { - white-space: pre-wrap; - } -} - -.projects-splash-dialog { - position: fixed; - top: 0; - right: auto; - left: 50%; - z-index: 999; - width: 90vw; - max-width: 700px; - max-height: 80vh; - margin: 10vh auto; - transform: translateX(-50%); -} - -@media (min-width: 544px) { - .projects-splash-dialog { - margin: 20vh auto; - } -} - -.projects-splash-banner { - background-image: url("/images/modules/memexes/projects-beta-banner-mobile.png"); - background-repeat: no-repeat; - background-position: left; - background-size: cover; -} - -@media (min-width: 768px) { - .projects-splash-banner { - background-image: url("/images/modules/memexes/projects-beta-banner.png"); - } -} - -.projects-splash-banner p { - max-width: 100%; -} - -@media (min-width: 768px) { - .projects-splash-banner p { - max-width: 55%; - } -} - -@media (min-width: 768px) { - [data-color-mode=light][data-light-theme*=dark] .projects-splash-banner, - [data-color-mode=dark][data-dark-theme*=dark] .projects-splash-banner { - background-image: url("/images/modules/memexes/projects-beta-banner-dark.png"); - } -} - -@media (prefers-color-scheme: light)and (min-width: 768px) { - [data-color-mode=auto][data-light-theme*=dark] .projects-splash-banner { - background-image: url("/images/modules/memexes/projects-beta-banner-dark.png"); - } -} - -@media (prefers-color-scheme: dark)and (min-width: 768px) { - [data-color-mode=auto][data-dark-theme*=dark] .projects-splash-banner { - background-image: url("/images/modules/memexes/projects-beta-banner-dark.png"); - } -} - -.project-description p:last-child { - margin-bottom: 0; -} - -.pending-cards-status { - top: -2px; - right: -9px; - width: 14px; - height: 14px; - background-image: linear-gradient(#54a3ff, #006eed); - background-clip: padding-box; - border: 2px solid var(--bgColor-default, var(--color-canvas-default)); -} - -.project-column { - min-width: 100%; - max-width: 100%; - background-color: var(--bgColor-inset, var(--color-canvas-inset)); - border-width: 0; - border-radius: 0; -} - -.project-column:focus { - outline: none; -} - -@media (min-width: 544px) { - .project-column { - min-width: 355px; - max-width: 355px; - border-width: 1px; - border-radius: 6px; - } - - .project-column:focus { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-fg)); - box-shadow: 0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); - } -} - -.project-column.moving { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - box-shadow: 0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); - transform: translateX(4px) translateY(-4px); -} - -.sortable-ghost { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - opacity: .5; -} - -.project-card { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); -} - -.project-card .project-reference-markdown > p, -.project-card:last-child { - margin-bottom: 0; -} - -.project-card:first-child { - margin-top: 8px; -} - -@media (min-width: 544px) { - .project-card:first-child { - margin-top: 4px; - } -} - -.project-card ul, -.project-card ol { - margin-bottom: 8px; - margin-left: 16px; -} - -.project-card blockquote { - padding: 0 .75em; - color: var(--fgColor-muted, var(--color-fg-muted)); - border-left: .25em solid var(--borderColor-default, var(--color-border-default)); -} - -.project-card .contains-task-list { - margin-left: 24px; -} - -.project-card:hover { - border-color: var(--borderColor-default, var(--color-border-default)); - box-shadow: 0 1px 3px rgba(106,115,125,.3); -} - -.project-card:focus { - outline: none; -} - -@media (min-width: 544px) { - .project-card:focus { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-fg)); - box-shadow: 0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); - } -} - -.project-card.moving { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); - box-shadow: 0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg)); - transform: translateX(4px) translateY(0); -} - -.issue-card.draggable { - cursor: move; -} - -.issue-card .AvatarStack:hover .from-avatar { - margin-right: -4px; -} - -.issue-card pre { - word-wrap: break-word; - white-space: pre-wrap; -} - -@keyframes show-pane { - 0% { - transform: translateX(390px); - } - - 100% { - transform: translateX(0); - } -} - -.project-note-form textarea { - resize: vertical; -} - -.card-menu-container .dropdown-menu, -.column-menu-container .dropdown-menu { - min-width: 180px; -} - -.card-octicon { - top: 6px; - left: 10px; -} - -.card-note-octicon { - top: 8px; -} - -.is-sending .auto-search-group .chooser-spinner { - top: 15px; - right: 21px; - left: auto; -} - -.card-filter-autocomplete-dropdown { - z-index: 500; - float: none; - min-width: 240px; - max-height: 270px; - cursor: pointer; -} - -.card-filter-autocomplete-dropdown [aria-selected=true], -.card-filter-autocomplete-dropdown .navigation-focus { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); - border-radius: 6px; -} - -.card-filter-autocomplete-dropdown [aria-selected=true] .autocomplete-text-qualifier, -.card-filter-autocomplete-dropdown .navigation-focus .autocomplete-text-qualifier { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.projects-reset-query:hover { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.projects-reset-query:hover .projects-reset-query-icon { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.projects-reset-query-icon { - width: 18px; - height: 18px; - padding: 1px; -} - -.project-small-menu-dropdown::before, -.project-small-menu-dropdown::after { - display: none; -} - -.project-edit-mode .column-menu-container, -.project-edit-mode .column-menu-item { - display: none; -} - -.project-edit-mode .project-move-actions { - display: flex; -} - -.push-board-over { - padding-right: 0; - transition: all .2s ease; -} - -@media (min-width: 544px) { - .push-board-over { - padding-right: 360px; - } -} - -.projects-comment-form .comment-md-support-link { - float: none; - width: 100%; - text-align: center; -} - -.projects-comment-form .comment-form-actions { - width: 100%; - padding: 8px 16px; - margin: 4px 0; -} - -.projects-comment-form .comment-form-actions button { - width: 100%; - margin: 4px 0; -} - -.projects-comment-form .comment-form-head { - padding: 0; - margin: 0; - border-bottom: 0; -} - -.projects-comment-form .comment-form-head .tabnav-tabs { - padding: 8px 8px 0; -} - -.projects-comment-form .comment-form-head .toolbar-commenting { - width: 100%; - padding-top: 4px; - text-align: center; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.projects-comment-form .comment-form-head::after { - display: block; - clear: both; - content: " "; -} - -.projects-comment-form .comment-form-textarea { - height: 250px; -} - -.projects-comment-form .preview-content { - margin: 0; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.projects-comment-form .preview-content .comment-body { - padding: 16px; -} - -.project-issue-body-wrapper { - max-height: 200px; - overflow: hidden; -} - -.Details--on .project-issue-body-wrapper { - max-height: none; - overflow: visible; -} - -.project-issue-body-blur { - height: 32px; - background: linear-gradient(to top, var(--color-project-gradient-in), var(--color-project-gradient-out)); -} - -.Details--on .project-issue-body-blur { - height: 0; -} - -.project-comment-title-hover .comment-action, -.project-comment-body-hover .comment-action { - opacity: 0; -} - -.project-comment-title-hover:hover .comment-action, -.project-comment-body-hover:hover .comment-action { - opacity: 1; -} - -.project-comment-body-reaction .timeline-comment-action { - padding: 4px 8px; -} - -.project-name-hover .project-name-edit-action { - opacity: 0; -} - -.project-name-hover:hover .project-name-edit-action { - opacity: 1; -} - -.project-icon path { - fill: var(--fgColor-default, var(--color-fg-default)); -} - -.vcard-fullname { - font-size: 24px; - line-height: 1.25; -} - -.vcard-username { - font-size: 20px; - font-style: normal; - font-weight: var(--base-text-weight-light, 300); - line-height: 24px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.user-profile-bio-message { - margin: 4px 0 0; - font-size: 12px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.profile-readme .markdown-body .anchor { - scroll-margin-top: 64px; -} - -.user-profile-following-container .user-following-container.on .follow, -.user-profile-following-container .user-following-container .unfollow { - display: none; -} - -.user-profile-following-container .user-following-container .follow, -.user-profile-following-container .user-following-container.on .unfollow { - display: block; -} - -.user-repo-search-results-summary { - white-space: normal; -} - -.pull-request-tab-content { - display: none; -} - -.pull-request-tab-content.is-visible { - display: block; -} - -.discussion-timeline p.explain { - margin: 0; - font-size: 12px; -} - -.pull-request-ref-restore { - display: none; -} - -.pull-request-ref-restore-text { - display: block; -} - -.pull-discussion-timeline.is-pull-restorable .pull-request-ref-restore.last { - display: block; -} - -.files-bucket { - margin-bottom: 16px; -} - -.full-width .diffbar .container { - padding-right: 0; - padding-left: 0; -} - -.stale-files-tab { - float: left; - padding: 4px 8px; - margin-top: -4px; - margin-bottom: -4px; - color: var(--fgColor-severe, var(--color-severe-fg)); - background-color: var(--bgColor-severe-muted, var(--color-severe-subtle)); - border-radius: 6px; -} - -.stale-files-tab-link { - font-weight: var(--base-text-weight-semibold, 600); - color: inherit; -} - -.pr-toolbar { - position: sticky; - top: 0; - z-index: 29; - min-height: 60px; - padding: 0 16px; - margin: -16px -16px 0; -} - -.pr-toolbar .float-right .diffbar-item { - margin-right: 0; -} - -.pr-toolbar .float-right .diffbar-item + .diffbar-item { - margin-left: 16px; -} - -.pr-toolbar.is-stuck { - height: 60px; - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.commit-toolbar { - top: var(--base-sticky-header-height, 0); -} - -@media (min-width: 1150px) { - .commit-build-statuses .status-checks-dropdown { - width: 500px; - } -} - -.full-commit .commit-build-statuses .status-checks-dropdown { - width: 500px; -} - -.files-next-bucket .file, -.files-next-bucket .full-commit { - margin-top: 0; - margin-bottom: 16px; -} - -.diffbar { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.diffbar .show-if-stuck { - display: none; -} - -.diffbar .container { - width: auto; -} - -.diffbar .table-of-contents { - margin-bottom: 0; -} - -.diffbar .table-of-contents ol { - margin-bottom: -16px; -} - -.diffbar .table-of-contents li { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.diffbar .table-of-contents li:first-child { - border-top: 0; -} - -.diffbar [role^=menuitem]:focus:not(.is-range-selected) .text-emphasized, -.diffbar [role^=menuitem]:hover:not(.is-range-selected) .text-emphasized { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.is-stuck .diffbar .show-if-stuck { - display: block; -} - -.is-stuck .diffbar .diffstat { - display: none; -} - -.is-stuck .diffbar .stale-files-tab { - margin-top: -8px; -} - -.diffbar-item { - float: left; - font-size: 12px; - vertical-align: middle; -} - -.add-comment-label, -.is-review-pending .start-review-label { - display: none; -} - -.start-review-label, -.is-review-pending .add-comment-label { - display: inline-block; -} - -.is-review-pending .review-simple-reply-button { - display: none; -} - -.review-comment-contents { - margin-left: 44px; -} - -.review-comment::after, -.review-comment-loader::after, -.review-comment.is-comment-editing::after { - position: absolute; - top: 31px; - left: 29px; - z-index: -1; - width: 3px; - height: 100%; - content: ""; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.review-comment { - position: relative; - padding: 8px 16px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.review-comment:first-child { - padding-top: 16px; -} - -.review-comment:last-child { - padding-bottom: 16px; -} - -.review-comment .comment-body, -.review-comment .comment-reactions { - padding: 0; -} - -.review-comment .comment-body { - padding-top: 4px; -} - -.review-comment .comment-body .suggested-change-form-container:nth-last-of-type(2) { - margin-bottom: 0; -} - -.review-comment .comment-reactions { - margin-top: 4px; - border-top: 0; -} - -.review-comment .comment-reactions.has-reactions { - margin-top: 12px; -} - -.review-comment .show-more-popover.dropdown-menu-sw { - right: -5px; - margin-top: 4px; -} - -.review-comment:last-child::after, -.review-comment:last-child .review-comment-contents::after { - display: none; -} - -.review-comment .timeline-comment-action { - padding: 0 4px; -} - -.review-comment .is-comment-editing { - position: relative; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.review-comment .is-comment-editing::after { - top: 100%; - bottom: 0; - left: 19px; - height: 20px; -} - -.review-comment .is-comment-editing .timeline-comment-actions, -.review-comment .is-comment-editing .edit-comment-hide { - display: none; -} - -.review-comment .is-comment-editing .previewable-comment-form { - display: block; -} - -.review-comment.is-comment-loading .previewable-comment-form { - opacity: .5; -} - -.pr-review-reactions .just-bottom, -.pr-review-reactions .has-reactions, -.pr-review-reactions .has-reactions.comment-reactions { - margin-bottom: 16px; - margin-left: 16px; -} - -.pr-review-reactions.pr-review-reactions-no-margin .just-bottom, -.pr-review-reactions.pr-review-reactions-no-margin .has-reactions, -.pr-review-reactions.pr-review-reactions-no-margin .has-reactions.comment-reactions { - margin-left: 0; -} - -.timeline-comment.is-comment-editing .discussion-item-header { - display: none; -} - -.timeline-comment.is-comment-editing .pr-review-reactions { - display: none; -} - -.review-thread-reply { - padding: 8px 16px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 0 0 6px 6px; -} - -.review-thread-reply .inline-comment-form { - margin: -8px -16px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 0; -} - -.review-thread-reply-button { - display: inline-block; - min-height: 28px; - padding: 4px 8px; - margin-left: 8px; - cursor: text; -} - -.readme.contributing > div { - max-height: 250px; - overflow: auto; -} - -.readme .markdown-body, -.readme .plain { - word-wrap: break-word; -} - -.readme .plain pre { - font-size: 14px; - white-space: pre-wrap; -} - -.file .readme table[data-table-type=yaml-metadata] { - font-size: 12px; - line-height: 1; -} - -.file .readme table[data-table-type=yaml-metadata] table { - margin: 0; -} - -.labels-list .blankslate { - display: none; -} - -.labels-list .table-list-header { - display: block; -} - -.labels-list.is-empty .blankslate { - display: block; -} - -.labels-list.is-empty .table-list-header { - display: none; -} - -.label-select-menu-item .g-emoji { - font-size: 12px; - line-height: 1; - vertical-align: baseline; -} - -.label-edit::before { - display: table; - content: ""; -} - -.label-edit::after { - display: table; - clear: both; - content: ""; -} - -.label-edit label { - display: block; - margin-bottom: 8px; -} - -.label-edit .error { - float: left; - margin-top: 8px; - margin-left: 8px; - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.label-edit.loading { - display: block; -} - -.label-characters-remaining { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.repo-list { - position: relative; -} - -.repo-list-item { - position: relative; - padding-top: 32px; - padding-bottom: 32px; - list-style: none; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.repo-list-item-with-avatar { - padding-left: 42px; -} - -.repo-list-item-hanging-avatar { - float: left; - margin-left: -42px; -} - -.mini-repo-list-item { - position: relative; - display: block; - padding: 4px 64px 4px 32px; - font-size: 14px; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.mini-repo-list-item:hover { - text-decoration: none; -} - -.mini-repo-list-item:hover .repo, -.mini-repo-list-item:hover .owner { - text-decoration: underline; -} - -.mini-repo-list-item .repo-icon { - float: left; - margin-top: 2px; - margin-left: -16px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.mini-repo-list-item .repo-and-owner { - max-width: 220px; -} - -.mini-repo-list-item .owner { - max-width: 110px; -} - -.mini-repo-list-item .repo { - font-weight: var(--base-text-weight-semibold, 600); -} - -.mini-repo-list-item .stars { - position: absolute; - top: 0; - right: 10px; - margin-top: 4px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.mini-repo-list-item .repo-description { - display: block; - max-width: 100%; - font-size: 12px; - line-height: 21px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.private .mini-repo-list-item { - background-color: var(--bgColor-attention-muted, var(--color-attention-subtle)); -} - -.private .mini-repo-list-item .repo-icon { - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.form-group.errored label .commit-ref { - background-color: var(--bgColor-danger-muted, var(--color-danger-subtle)); -} - -.repo-menu-item:not([aria-current=page]) + .repo-sub-menu { - display: none; -} - -.feature-callout .new-label-hidden { - display: none; -} - -.feature-callout .new-feature-label.new-label-hidden { - display: inline; -} - -.repository-og-image { - width: 100%; - max-width: 640px; - height: 320px; - object-fit: cover; - object-position: center; - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} - -.line-clamp-2 { - display: -webkit-box; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical; - overflow: hidden; -} - -.timeout { - width: auto; - height: 300px; - padding: 0; - margin: 16px 0; - background-color: transparent; - border: 0; -} - -.timeout h3 { - padding-top: 100px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.repo-language-color { - position: relative; - top: 1px; - display: inline-block; - width: 12px; - height: 12px; - border: 1px solid var(--borderColor-muted, var(--color-primer-border-contrast)); - border-radius: 50%; -} - -.iconbutton .octicon { - margin-right: 0; -} - -.prereceive-feedback { - padding: 16px; - margin-bottom: 16px; - border: 1px solid #dfe2e5; - border-left: 6px solid #caa21a; - border-radius: 6px; -} - -.prereceive-feedback-heading { - margin-top: 0; - margin-bottom: 8px; - color: var(--fgColor-attention, var(--color-attention-fg)); -} - -.repository-item-checkbox:checked + .repository-item-name { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.custom-role-icon { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.profile-picture { - margin: 8px 0 0; -} - -.profile-picture > p { - float: left; - margin: 0; - line-height: 30px; -} - -.profile-picture > img { - float: left; - margin: 0 8px 0 0; - border-radius: 6px; -} - -.app-owner { - margin: 16px 0 0; -} - -.avatar-upload .flash { - width: 100%; - padding: 32px 16px; - border: dashed 1px var(--borderColor-danger-emphasis, var(--color-danger-emphasis)); - box-shadow: none; -} - -.avatar-upload .upload-state { - display: none; - padding: 8px 0; -} - -.avatar-upload .upload-state p { - margin: 0; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.avatar-upload .avatar-upload .octicon { - display: inline-block; -} - -.is-uploading .avatar-upload .loading { - display: block; - padding: 0; -} - -.is-uploading .avatar-upload .loading img { - vertical-align: top; -} - -.is-uploading .avatar-upload .button-change-avatar { - display: none; -} - -.is-bad-file .avatar-upload .bad-file { - display: block; - margin: 0; -} - -.is-too-big .avatar-upload .too-big { - display: block; - margin: 0; -} - -.is-bad-dimensions .avatar-upload .bad-dimensions { - display: block; - margin: 0; -} - -.is-bad-format .avatar-upload .bad-format { - display: block; - margin: 0; -} - -.is-failed .avatar-upload .failed-request { - display: block; - margin: 0; -} - -.is-empty .avatar-upload .file-empty { - display: block; - margin: 0; -} - -dl.new-email-form { - padding: 8px 8px 0; - margin: 0 -8px 8px; - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.recent-user-key-access { - color: #1e7e34; -} - -.oauth-app-info-container .float-left-container { - float: left; - text-align: left; -} - -.oauth-app-info-container .float-right-container { - float: right; - text-align: right; -} - -.oauth-app-info-container dl.keys { - margin: 8px 0; -} - -.oauth-app-info-container dl.keys dt { - margin-top: 8px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.oauth-app-info-container dl.keys dd { - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.oauth-app-info-container .user-count { - font-size: 32px; - font-weight: var(--base-text-weight-light, 300); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.access-token { - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.access-token:last-child { - border: 0; -} - -.access-token .last-used { - margin-right: 8px; -} - -.access-token.new-token { - background-color: rgba(108,198,68,.1); -} - -.access-token.new-token .octicon-check { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.access-token .token-description { - max-width: 450px; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.access-token .token { - font-size: 14px; -} - -.access-token .token-type { - min-width: 76px; -} - -table.security-history-detail { - width: 100%; - font-size: 12px; -} - -table.security-history-detail td { - max-width: 200px; - word-wrap: break-word; -} - -.u2f-registration { - position: relative; - padding-bottom: 4px; - margin-bottom: 4px; -} - -.new-u2f-registration { - position: relative; -} - -.new-u2f-registration .add-u2f-registration-form:not(.for-trusted-device) { - display: none; - margin-bottom: 8px; -} - -.new-u2f-registration.is-active .add-u2f-registration-link { - display: none; -} - -.new-u2f-registration.is-active .add-u2f-registration-form { - display: block; -} - -.new-u2f-registration .webauthn-request-interaction, -.new-u2f-registration .webauthn-request-error { - display: none; -} - -.new-u2f-registration.is-sending .webauthn-request-interaction { - display: block; -} - -.new-u2f-registration.is-showing-error .webauthn-request-error { - display: block; -} - -.spinner { - display: none; -} - -.is-sending .spinner { - display: inline-block; -} - -.confirmation-phrase { - font-style: italic; - font-weight: var(--base-text-weight-normal, 400); -} - -.session-device .session-state-indicator.recent { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); - box-shadow: 0 0 10px rgba(108,198,68,.5); -} - -.session-device .session-state-indicator.revoked { - background-color: var(--bgColor-danger-emphasis, var(--color-danger-emphasis)); - box-shadow: 0 0 10px rgba(198,108,68,.5); -} - -.session-device .session-state-indicator.not-recent { - background-image: linear-gradient(#aaa, #ccc); - box-shadow: 0 1px 0 #fff; -} - -.collaborators .collab-list { - border-bottom-width: 0; -} - -.collaborators .collab-list-item:first-child .collab-list-cell { - border-top-width: 0; -} - -.collaborators .collab-list-cell { - padding-top: 16px; - padding-bottom: 16px; - vertical-align: middle; -} - -.collaborators .collab-meta { - width: 140px; -} - -.collaborators .collab-remove { - padding-right: 16px; - text-align: right; -} - -.collaborators .collab-remove .remove-link { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.collaborators .collab-remove .remove-link:hover { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.collaborators .collab-team-link { - width: 300px; -} - -.collaborators .collab-team-link:hover { - text-decoration: none; -} - -.collaborators .collab-team-link .avatar { - float: left; - margin-top: 1px; - margin-right: 8px; -} - -.collaborators .collab-team-link.disabled { - pointer-events: none; -} - -.collaborators .collab-info { - height: 100%; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.collaborators .collab-info .description { - padding-right: 50px; - margin-top: 4px; - margin-bottom: 4px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.collaborators .collab-info .collab-name { - display: block; - font-size: 14px; -} - -.collaborators .collab-info .collab-message { - position: relative; - top: 25%; - display: block; -} - -.collaborators .copy-invite-modal { - left: 0; - width: 300px; -} - -@media (min-width: 768px) { - .collaborators .copy-invite-modal { - right: 0; - left: unset; - width: 352px; - } -} - -.collaborators .copy-invite-modal::before, -.collaborators .copy-invite-modal::after { - display: none; -} - -.access-form-wrapper { - padding: 8px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 0 0 6px 6px; -} - -.access-flash { - padding: 8px; - margin-right: 8px; - margin-bottom: 8px; - margin-left: 8px; -} - -.repo-access-group .blankslate { - display: none; -} - -.repo-access-group.is-empty .blankslate { - display: block; -} - -.boxed-group-list .access-level { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.boxed-group-list .access-level.css-truncate-target { - max-width: 500px; -} - -.settings-next { - font-size: 14px; - line-height: 1.5; -} - -.settings-next label { - font-size: 14px; -} - -.settings-next .note { - font-size: 12px; -} - -.settings-next .form-checkbox input[type=radio], -.settings-next .form-checkbox input[type=checkbox] { - margin-top: 4px; -} - -dl.form-group > dd textarea.compact { - height: 100px; - min-height: 0; -} - -.form-hr { - margin-top: 16px; - margin-bottom: 16px; - border-bottom-color: var(--borderColor-default, var(--color-border-default, #e5e5e5)); -} - -.listgroup { - list-style: none; - border: 1px solid var(--borderColor-default, var(--color-border-default, #e5e5e5)); - border-radius: 6px; -} - -.listgroup-item { - min-height: inherit; - padding: 8px; - font-size: 12px; - line-height: 26px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.listgroup-item::before { - display: table; - content: ""; -} - -.listgroup-item::after { - display: table; - clear: both; - content: ""; -} - -.listgroup-item + .listgroup-item { - border-top: 1px solid var(--borderColor-default, var(--color-border-default, #e5e5e5)); -} - -.listgroup-item.listgroup-item-preview { - line-height: inherit; -} - -.listgroup-item.listgroup-item-preview .BtnGroup { - margin-top: 4px; -} - -.listgroup-item .css-truncate-target { - max-width: 200px; -} - -.listgroup-item-title { - display: block; - font-weight: var(--base-text-weight-semibold, 600); -} - -.listgroup-item-body { - display: block; -} - -.listgroup-header { - border-top: 0; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default, #e5e5e5)); -} - -.listgroup-overflow { - max-height: 240px; - overflow-y: auto; - background-color: var(--bgColor-muted, var(--color-canvas-subtle, #f5f5f5)); -} - -.listgroup-sm .listgroup-item { - padding-top: 4px; - padding-bottom: 4px; -} - -.protected-branches { - margin-top: 16px; - margin-bottom: 16px; -} - -.protected-branch-options { - margin-left: 16px; - opacity: .5; -} - -.protected-branch-options.active { - opacity: 1; -} - -.protected-branch-reviews.on .require-code-owner-review, -.protected-branch-reviews.on .reviews-dismiss-on-push, -.protected-branch-reviews.on .reviews-include-dismiss, -.protected-branch-reviews.on .ignore-approvals-from-contributors, -.protected-branch-reviews.on .require-last-push-approval, -.protected-branch-reviews.on .allow-force-pushes, -.protected-branch-reviews.on .require-approving-reviews { - display: block; -} - -.protected-branch-reviews .require-code-owner-review, -.protected-branch-reviews .reviews-dismiss-on-push, -.protected-branch-reviews .reviews-include-dismiss, -.protected-branch-reviews .ignore-approvals-from-contributors, -.protected-branch-reviews .require-last-push-approval, -.protected-branch-reviews .allow-force-pushes, -.protected-branch-reviews .require-approving-reviews { - display: none; -} - -.authorized-pushers { - width: 440px; -} - -.authorized-pushers .add-protected-branch-actor { - display: block; -} - -.authorized-pushers .actor-limit-reached { - display: none; - padding: 8px; - font-size: 12px; -} - -.authorized-pushers.at-limit .add-protected-branch-actor { - display: none; -} - -.authorized-pushers.at-limit .actor-limit-reached { - display: block; - width: 440px; -} - -.protected-branch-authorized-pushers-table, -.protected-branch-pushers-table { - margin-top: 8px; -} - -.protected-branch-authorized-pushers-table .boxed-group-inner, -.protected-branch-pushers-table .boxed-group-inner { - max-height: 350px; - overflow-y: auto; -} - -.protected-branch-authorized-pushers-table .table-list, -.protected-branch-pushers-table .table-list { - border-bottom: 0; -} - -.protected-branch-authorized-pushers-table .table-list-cell, -.protected-branch-pushers-table .table-list-cell { - vertical-align: middle; -} - -.protected-branch-authorized-pushers-table .table-list-cell:first-child, -.protected-branch-pushers-table .table-list-cell:first-child { - width: 100%; -} - -.protected-branch-authorized-pushers-table .avatar, -.protected-branch-authorized-pushers-table .octicon-jersey, -.protected-branch-authorized-pushers-table .octicon-organization, -.protected-branch-pushers-table .avatar, -.protected-branch-pushers-table .octicon-jersey, -.protected-branch-pushers-table .octicon-organization { - width: 36px; - margin-right: 8px; - text-align: center; -} - -.user-already-added::after { - display: inline-block; - padding: 1px 4px; - margin-left: 4px; - font-size: 12px; - line-height: 1.4; - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - content: "Already added"; - background: var(--bgColor-severe-emphasis, var(--color-severe-emphasis)); - border-radius: 6px; -} - -.protected-branch-admin-permission { - padding: 4px; - margin: -2px 0 -2px -4px; - line-height: normal; - border: 1px solid transparent; - border-radius: 6px; -} - -.protected-branch-admin-permission.active { - animation: toggle-color 1s ease-in-out 0s; -} - -@keyframes toggle-color { - 0% { - background-color: transparent; - } - - 50% { - color: #4c4a42; - background-color: #fff9ea; - border-color: #dfd8c2; - } - - 100% { - background-color: transparent; - } -} - -.automated-check-options { - margin-top: 8px; -} - -.automated-check-options .listgroup-item label { - font-size: inherit; -} - -.automated-check-options .listgroup-item input[type=checkbox] { - float: none; - margin-top: -2px; - margin-right: 4px; - margin-left: 0; -} - -.automated-check-options .label { - margin-top: 4px; -} - -.repository-settings-actions [role=tab][aria-selected=true] { - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-default, var(--color-fg-default)); - border-color: var(--borderColor-severe-emphasis, var(--color-severe-emphasis)); -} - -.repository-settings-actions [role=tab][aria-selected=true] .UnderlineNav-octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.repository-visibility-change-warning::before { - display: none; -} - -.two-factor-recovery-codes { - margin: 32px 0; - font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace; - font-size: 20px; -} - -.two-factor-recovery-code-mark { - width: 24px; - height: 24px; - font-size: 24px; - line-height: 16px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.two-factor-recovery-code { - display: inline-block; - width: 48%; - line-height: 1.6; - text-align: center; -} - -.two-factor-recovery-code::before { - position: relative; - top: -3px; - margin-right: 8px; - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - content: "●"; -} - -.recovery-codes-saving-options { - margin-left: 32px; -} - -.recovery-codes-saving-options .recovery-code-save-button { - width: 115px; - margin-right: 16px; - text-align: center; -} - -.recovery-codes-warning { - margin: 0 -16px; -} - -.two-factor-steps { - padding: 16px 16px 0; - margin: 32px 0; - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; -} - -.setup-wrapper { - width: 750px; - padding-top: 32px; - margin: 0 auto; -} - -.setup-wrapper::before { - display: table; - content: ""; -} - -.setup-wrapper::after { - display: table; - clear: both; - content: ""; -} - -.setup-header { - padding-bottom: 16px; - margin: 0 auto 32px; - overflow: hidden; - text-align: left; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.setup-header h1 { - margin-top: 0; - margin-bottom: 0; - font-size: 48px; - font-weight: var(--base-text-weight-normal, 400); - line-height: 1.1; - letter-spacing: -1px; -} - -.setup-header h1 .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.setup-header .lead { - margin-top: 2px; - margin-bottom: 0; - font-size: 20px; -} - -.setup-header .lead a { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.setup-header .lead a:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - text-decoration: none; -} - -.setup-org { - padding-bottom: 0; - border-bottom: 0; -} - -.setup-main { - float: left; - width: 450px; -} - -.setup-secondary { - float: right; - width: 250px; -} - -.setup-secondary .info { - padding-top: 0; - padding-bottom: 0; - margin-top: -8px; - font-size: 12px; - line-height: 18px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-align: center; -} - -.setup-info-module { - margin-bottom: 32px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 6px; - box-shadow: 0 1px 3px rgba(0,0,0,.075); -} - -.setup-info-module h2 { - padding: 16px; - margin-bottom: 16px; - overflow: hidden; - font-size: 16px; - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.setup-info-module h2 .price { - float: right; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.setup-info-module h3 { - padding: 0 16px; - margin: 0 0 -8px; - font-size: 14px; -} - -.setup-info-module p { - padding: 0 16px; - margin: 16px 0; -} - -.features-list { - padding: 0 16px 16px; - margin: 0; - font-size: 14px; - list-style: none; -} - -.features-list li { - margin-top: 8px; -} - -.features-list li:first-child { - margin-top: 0; -} - -.features-list .list-divider { - margin: 16px -16px; - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.features-list .octicon-check { - margin-right: 4px; - color: var(--fgColor-success, var(--color-success-fg)); -} - -.features-list .octicon-question { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.features-list .tooltipped::after { - width: 250px; - white-space: normal; -} - -.setup-form-container .setup-form-title { - font-size: 16px; -} - -.setup-form-container .secure { - float: right; - margin-top: 2px; - font-size: 12px; - color: var(--fgColor-success, var(--color-success-fg)); - text-transform: uppercase; -} - -.setup-form-container hr { - margin-top: 24px; - margin-bottom: 24px; -} - -.setup-form-container .form-actions { - padding-top: 0; - padding-bottom: 0; - text-align: left; -} - -.team-member-container { - margin-bottom: 16px; -} - -.team-member-container .team-member-username { - line-height: 1.2; -} - -.setup-form { - padding-bottom: 16px; -} - -.setup-form .form-group.successed .error { - display: none; -} - -.setup-form .form-group dd .form-control { - width: 100%; -} - -.setup-form .form-group dd .form-control.short { - width: 250px; -} - -.setup-form dd { - position: relative; -} - -.setup-form dd .octicon { - position: absolute; - top: 8px; - right: 25px; -} - -.setup-form .octicon-alert { - color: var(--fgColor-danger, var(--color-danger-fg)); -} - -.setup-form .octicon-check { - color: var(--fgColor-success, var(--color-success-fg)); -} - -.setup-form .tos-info, -.setup-form .setup-organization-next { - margin: 16px 0; - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.setup-form .tos-info { - padding: 16px 0; -} - -.setup-form .setup-organization-next { - padding-top: 16px; - padding-bottom: 16px; -} - -.setup-form .setup-plans { - border-collapse: separate; - border: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.setup-form .setup-plans tr.selected { - background-color: var(--bgColor-accent-muted, var(--color-accent-subtle)); -} - -.setup-form .setup-plans .name { - font-weight: var(--base-text-weight-semibold, 600); -} - -.setup-form .setup-plans .choose-plan input[type=radio] { - display: none; -} - -.setup-creditcard-form .country-form, -.setup-creditcard-form .state-form { - float: left; - margin: 0; - word-wrap: normal; -} - -.setup-creditcard-form .country-form, -.setup-creditcard-form .postal-code-form { - margin-top: 0; - margin-bottom: 16px; -} - -.setup-creditcard-form .form-group select.select-country { - width: 182px; - margin-right: 4px; -} - -.setup-creditcard-form .form-group select:invalid { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.setup-creditcard-form .form-group select.select-state { - width: 113px; -} - -.setup-creditcard-form .form-group .input-vat { - width: 288px; -} - -.setup-creditcard-form .form-group input.input-postal-code { - width: 180px; -} - -.setup-creditcard-form.is-vat-country .vat-field { - display: block; -} - -.setup-creditcard-form.is-international .form-group select.select-country { - width: 300px; -} - -.setup-creditcard-form.is-international .state-form { - display: none; -} - -.setup-creditcard-form.no-postcodes .postal-code-form { - display: none; -} - -.setup-creditcard-form dd .octicon-credit-card { - position: inherit; -} - -.setup-creditcard-form .vat-field { - display: none; -} - -.setup-creditcard-form .vat-field.prefilled { - display: block; -} - -.setup-creditcard-form .help-text { - font-size: 80%; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.user-identification-questions { - float: none; - width: auto; - margin-top: 40px; -} - -.user-identification-questions .question { - margin-bottom: 32px; -} - -.user-identification-questions .response-group label { - font-weight: var(--base-text-weight-normal, 400); -} - -.user-identification-questions .form-checkbox { - margin: 8px 0; -} - -.user-identification-questions .disclaimer { - margin: 40px 0 0; - text-align: center; -} - -.user-identification-questions.redesign .question { - margin-bottom: 96px; -} - -.user-identification-questions.redesign .topic-input-container .tag-input { - width: 100%; - border: 0; - border-bottom: 6px solid #000; - box-shadow: 0 0 0; -} - -.signup-plan-summary-subhead { - border-bottom: 6px solid; -} - -.signup-btn:disabled { - opacity: .5; -} - -.collection-search-results em { - padding: .1em; - background-color: #faffa6; -} - -.draft-tag { - padding: 4px 8px; - font-weight: var(--base-text-weight-semibold, 600); - color: #eee; - background-color: #404040; -} - -.showcase-page-pattern { - position: relative; - z-index: -1; - height: 100px; - margin-top: -24px; - margin-bottom: -70px; -} - -.showcase-page-pattern::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - display: block; - content: ""; - background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.85), white); -} - -.showcase-page-repo-list { - border-top: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.slash-command-menu-item .command-description { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.slash-command-menu-item[aria-selected=true] { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.slash-command-menu-item[aria-selected=true] .command-description { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.modal-anchor::before { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 99; - display: block; - cursor: default; - content: " "; - background: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); -} - -.sortable-button-item:first-of-type .sortable-button[data-direction=up], -.sortable-button-item:last-of-type .sortable-button[data-direction=down] { - display: none; -} - -@keyframes sponsors-progress-animation { - 0% { - background-position: 100%; - } - - 100% { - background-position: 0%; - } -} - -@keyframes circle-progress { - 0% { - stroke-dasharray: 0 100; - } -} - -.sponsors-funded-dependencies-percent-circle-bg, -.sponsors-funded-dependencies-percent-circle { - fill: none; - stroke-width: 3; - stroke-linecap: round; -} - -.sponsors-funded-dependencies-percent-circle-bg { - stroke: var(--bgColor-done-muted, var(--color-done-subtle)); -} - -.sponsors-funded-dependencies-percent-circle { - animation: circle-progress 1s ease-out forwards; -} - -.sponsors-goal-progress-bar { - background: #ec6cb9; - transition: width .5s ease-in; -} - -@media (prefers-reduced-motion: no-preference) { - .sponsors-goal-progress-bar:hover { - background: linear-gradient(90deg, #ffd33d 0%, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #ffd33d 68%, #ea4aaa 85%, #b34bff 100%); - background-size: 300% 100%; - animation: sponsors-progress-animation 2s linear infinite; - } -} - -.sponsors-goal-completed-bar { - background: linear-gradient(90deg, #ffd33d 0%, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #ffd33d 68%, #ea4aaa 85%, #b34bff 100%); - background-size: 300% 100%; -} - -@media (prefers-reduced-motion: no-preference) { - .sponsors-goal-completed-bar { - transition: width .5s ease-in; - animation: sponsors-progress-animation 2s linear infinite; - } -} - -.sponsors-goals-avatar-border { - background-color: var(--bgColor-default, var(--color-canvas-default)); - border: 1px solid var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.bulk-sponsorship-secondary-cell { - width: 1%; -} - -.sponsors-goals-heart-anim { - width: 100px; - height: 100px; - cursor: pointer; - background: url("/images/modules/site/sponsors/heart-explosion.png") no-repeat; - background-position: 0 0; - background-size: 600px 100px; - transition: background-position .3s steps(5); - transition-duration: 0s; -} - -.sponsors-goals-heart-anim.is-active { - background-position: -500px 0; - transition-duration: .3s; -} - -.open > .sponsors-foldable { - max-height: 700px; -} - -.open .sponsors-foldable-opened { - display: block; -} - -.open .sponsors-foldable-closed { - display: none; -} - -.sponsors-foldable { - max-height: 0; - box-sizing: border-box; - overflow-y: auto; - transition: max-height .25s ease-in-out; -} - -.sponsors-foldable-opened { - display: none; -} - -.sponsors-foldable-closed { - display: block; -} - -.sponsor-card { - width: 100%; - height: 450px; - border: 0; -} - -@media (min-width: 544px) { - .sponsor-card { - height: 260px; - } -} - -.sponsor-cell { - padding: 8px; - vertical-align: middle; - border-right: 1px solid var(--borderColor-neutral-muted, var(--color-neutral-muted)); - border-bottom: 1px solid var(--borderColor-neutral-muted, var(--color-neutral-muted)); -} - -.sponsor-cell:first-child { - width: 45px; - padding-left: 32px; - border-right-width: 0; -} - -.sponsor-cell:last-child { - padding-left: 8px; - border-right-width: 0; -} - -.sponsor-header-cell { - padding-right: 16px; - font-weight: var(--base-text-weight-semibold, 600); - text-align: left; - border-top: 1px solid var(--borderColor-neutral-muted, var(--color-neutral-muted)); -} - -.sponsor-row-number { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -@media (prefers-reduced-motion: no-preference) { - .tier-category:hover .tier-emoji { - animation: wiggle .1s alternate; - animation-timing-function: ease; - animation-delay: .1s; - animation-iteration-count: 4; - } -} - -@keyframes wiggle { - 0% { - transform: rotate(-25deg); - } - - 100% { - transform: rotate(15deg) scale(1.2); - } -} - -.sponsors-featured-item { - width: 100%; -} - -@media (min-width: 768px) { - .sponsors-featured-item { - width: calc(50% - 8px); - } -} - -.bulk-sponsorship-import-dropzone .bulk-sponsorship-import-outline { - top: 8px; - right: 8px; - bottom: 8px; - left: 8px; -} - -.bulk-sponsorship-import-dropzone .bulk-sponsorship-show-on-dragover { - display: none; -} - -.bulk-sponsorship-import-dropzone .bulk-sponsorship-template-image { - width: 47%; - max-width: 100%; - height: 51%; -} - -.bulk-sponsorship-import-dropzone.bulk-sponsor-dragover .bulk-sponsorship-show-on-dragover { - display: inline; -} - -.bulk-sponsorship-import-dropzone.bulk-sponsor-dragover .bulk-sponsorship-hide-on-dragover { - display: none; -} - -.bulk-sponsorship-import-dropzone.bulk-sponsor-dragover .bulk-sponsorship-import-outline { - border: 6px dashed var(--borderColor-default, var(--color-border-default)); -} - -.bulk-sponsorship-import-csv { - display: none; -} - -.bulk-sponsorship-import-csv-label:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: -2px; - box-shadow: none; -} - -.bulk-sponsorship-table { - display: block; - width: 100%; - min-height: .01%; - overflow-x: auto; -} - -@media (min-width: 544px) { - .bulk-sponsorship-table { - display: table; - } -} - -.bulk-sponsorship-table-for-individuals { - display: block; - width: 100%; - min-height: .01%; - overflow-x: auto; -} - -@media (min-width: 768px) { - .bulk-sponsorship-table-for-individuals { - display: table; - } -} - -@media (max-width: 768px) { - .bulk-sponsorship-amount-cell-non-correctble-error { - padding-right: 24px; - } -} - -@media (min-width: 768px) { - .bulk-sponsorship-amount-cell-non-correctble-error { - padding-right: 8px; - } -} - -@media (min-width: 0) { - .bulk-sponsorship-amount-column-header { - min-width: 150px; - } -} - -@media (min-width: 768px) { - .bulk-sponsorship-amount-column-header { - min-width: 200px; - } -} - -.hx_status-indicator .status-indicator-spinner { - display: none; -} - -.hx_status-indicator.status-indicator-loading { - background-image: none; -} - -.hx_status-indicator.status-indicator-loading .status-indicator-spinner { - display: inline-block; -} - -.tab-size[data-tab-size="1"] { - tab-size: 1; -} - -.tab-size[data-tab-size="2"] { - tab-size: 2; -} - -.tab-size[data-tab-size="3"] { - tab-size: 3; -} - -.tab-size[data-tab-size="4"] { - tab-size: 4; -} - -.tab-size[data-tab-size="5"] { - tab-size: 5; -} - -.tab-size[data-tab-size="6"] { - tab-size: 6; -} - -.tab-size[data-tab-size="7"] { - tab-size: 7; -} - -.tab-size[data-tab-size="8"] { - tab-size: 8; -} - -.tab-size[data-tab-size="9"] { - tab-size: 9; -} - -.tab-size[data-tab-size="10"] { - tab-size: 10; -} - -.tab-size[data-tab-size="11"] { - tab-size: 11; -} - -.tab-size[data-tab-size="12"] { - tab-size: 12; -} - -.team-label-ldap { - display: inline-block; - padding: 0 8px; - line-height: 25px; - color: var(--fgColor-muted, var(--color-fg-muted)); - text-transform: uppercase; - cursor: default; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; - box-shadow: none; -} - -.team-label-ldap.header-label-ldap { - padding: 4px 4px; -} - -.team-member-ellipsis { - width: 25px; - height: 25px; - line-height: 24px; -} - -.team-member-ellipsis:hover { - color: var(--fgColor-accent, var(--color-accent-fg)); - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.team-listing .nested-teams-checkbox { - padding-left: 4px; -} - -.team-listing .nested-teams-checkbox.show { - padding-right: 12px; -} - -.team-listing .nested-teams-checkbox.indent-1 { - padding-left: 30px; -} - -.team-listing .nested-teams-checkbox.indent-2 { - padding-left: 54px; -} - -.team-listing .nested-teams-checkbox.indent-3 { - padding-left: 78px; -} - -.team-listing .nested-teams-checkbox.indent-4 { - padding-left: 102px; -} - -.team-listing .nested-teams-checkbox.indent-5 { - padding-left: 126px; -} - -.team-listing .nested-teams-checkbox.indent-6 { - padding-left: 150px; -} - -.team-listing .nested-teams-checkbox.indent-7 { - padding-left: 174px; -} - -.team-listing .nested-teams-checkbox.indent-8 { - padding-left: 198px; -} - -.team-listing .nested-teams-checkbox.indent-9 { - padding-left: 222px; -} - -.team-listing .nested-teams-checkbox.indent-10 { - padding-left: 246px; -} - -.team-listing .nested-teams-checkbox.indent-11 { - padding-left: 270px; -} - -.team-listing .nested-teams-checkbox.indent-12 { - padding-left: 294px; -} - -.team-listing .nested-teams-checkbox.indent-13 { - padding-left: 318px; -} - -.team-listing .nested-teams-checkbox.indent-14 { - padding-left: 342px; -} - -.team-listing .nested-teams-checkbox.indent-15 { - padding-left: 366px; -} - -.team-listing .team-info { - width: 280px; -} - -.team-listing .team-short-info { - width: 170px; -} - -.team-listing .nested-team-info { - width: 650px; -} - -.team-listing .nested-team-name { - max-width: 268px; -} - -.team-listing .shortened-teams-avatars { - margin-left: auto; -} - -.team-listing .shortened-teams-avatars.width-0 { - width: 300px; -} - -.team-listing .shortened-teams-avatars.width-1 { - width: 233px; -} - -.team-listing .shortened-teams-avatars.width-2 { - width: 167px; -} - -.team-listing .shortened-teams-avatars.width-3 { - width: 99px; -} - -.team-listing .team-members-count { - width: 124px; -} - -.team-listing .team-show-more-cell { - width: 980px; -} - -.team-listing .team-buttons { - width: 150px; -} - -.team-listing .octicon-wrapper { - width: 16px; -} - -.team-listing .is-open.root-team { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.team-listing .is-open .expand-nested-team { - font-weight: var(--base-text-weight-semibold, 600); -} - -.team-listing .is-open .octicon-chevron-down { - transform: rotate(180deg); -} - -.traffic-graph { - min-height: 150px; -} - -.traffic-graph .activity { - margin-top: 0; -} - -.traffic-graph .activity .dots { - margin-top: 40px; -} - -.traffic-graph .path { - fill: none; - stroke-width: 2; -} - -.traffic-graph path.total { - stroke: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.traffic-graph path.unique { - stroke: var(--fgColor-accent, var(--color-accent-emphasis)); -} - -.traffic-graph .axis.x .tick:first-of-type line { - stroke: var(--borderColor-success-emphasis, var(--color-success-emphasis)); - stroke-width: 2px; -} - -.traffic-graph .y line { - stroke: var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.traffic-graph .y.unique line { - stroke: var(--fgColor-accent, var(--color-accent-emphasis)); -} - -.traffic-graph .overlay { - fill-opacity: 0; -} - -.uniques-graph .axis.x .tick:last-child line { - stroke: var(--fgColor-accent, var(--color-accent-emphasis)); - stroke-width: 2px; -} - -.svg-tip .date { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.top-domains .dots { - display: block; - margin: 167px auto 0; -} - -table.capped-list { - width: 100%; - line-height: 100%; -} - -table.capped-list th { - padding: 8px; - text-align: left; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -table.capped-list td { - padding: 8px; - font-size: 12px; - vertical-align: middle; - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -table.capped-list th.middle, -table.capped-list td.middle { - text-align: center; -} - -table.capped-list .favicon { - width: 16px; - height: 16px; - margin: 0 4px; - vertical-align: middle; -} - -table.capped-list .octicon { - margin-right: 8px; - color: var(--fgColor-muted, var(--color-fg-muted)); - vertical-align: -3px; -} - -table.capped-list tr:nth-child(even) { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.capped-list-label { - max-width: 200px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.traffic-graph-stats .summary-stats { - width: 100%; -} - -.traffic-graph-stats .summary-stats::before { - display: table; - content: ""; -} - -.traffic-graph-stats .summary-stats::after { - display: table; - clear: both; - content: ""; -} - -.traffic-graph-stats .summary-stats li { - display: block; - float: left; - width: 50%; -} - -.totals circle { - fill: var(--borderColor-success-emphasis, var(--color-success-emphasis)); - stroke: var(--bgColor-default, var(--color-canvas-default)); - stroke-width: 2; -} - -.uniques circle { - fill: var(--fgColor-accent, var(--color-accent-emphasis)); - stroke: var(--bgColor-default, var(--color-canvas-default)); - stroke-width: 2; -} - -ul.web-views li { - width: 140px; -} - -ul.clones li { - width: 170px; -} - -.TrackingBlock .TrackingBlock-list { - min-height: 4px; - padding-left: 0; -} - -.TrackingBlock .Label { - border-color: inherit; -} - -.TrackingBlock .tasklist-issue-chosen-item [role=tooltip] { - display: none; -} - -.TrackingBlock .tasklist-issue-chosen-item [role=tooltip]::before, -.TrackingBlock .tasklist-issue-chosen-item [role=tooltip]::after { - display: none; -} - -.TrackingBlock .Button--invisible:disabled { - background-color: transparent; -} - -.TrackingBlock-list:not(.js-tasklist-dragging) .TrackingBlock-item:hover { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.TrackingBlock-item .AvatarStack-body { - background: inherit; -} - -.TrackingBlock-item .AvatarStack-body .avatar { - max-width: none; -} - -.TrackingBlock-item .js-label-loading-container .Skeleton { - display: inline-block; - width: 30px; - height: 18px; - border-radius: 2em; -} - -.TrackingBlock-item .js-label-loading-container .Skeleton:first-child { - margin-right: 4px; -} - -.TrackingBlock-item .hide-labels { - position: absolute; - opacity: 0; -} - -.TrackingBlock-item .js-hidden-label-counter { - display: inline-block; - padding: 0 7px; - font-size: 12px; - font-weight: var(--base-text-weight-medium, 500); - line-height: 18px; - white-space: nowrap; - border: 1px solid transparent; - border-radius: 2em; -} - -.TrackingBlock-item .js-issue-template-content { - margin-top: 2px; - opacity: .6; -} - -.TrackingBlock-item .js-issue-template-content .octicon { - margin-right: 8px; -} - -.TrackingBlock-item .ActionListItem-label { - display: flex; -} - -.TrackingBlock-item .ActionListItem-label .octicon { - margin-top: 4px; -} - -.TrackingBlock-item:focus-visible { - outline-color: var(--focus-outlineColor, var(--color-accent-fg)); -} - -.tasklist-issue-content .no-truncate { - display: flex; -} - -.tasklist-issue-content .no-truncate .issue-state-icon { - margin-top: 2px; - margin-right: 8px; -} - -.tasklist-issue-content .no-truncate .issue-title { - font-weight: var(--base-text-weight-normal, 400); -} - -.tasklist-checkbox { - display: flex; - margin-top: 8px; - margin-left: .1em; - align-items: flex-start; -} - -.tasklist-checkbox.read-only { - padding-top: 4px; - padding-bottom: 4px; - margin-top: 4px; -} - -.tasklist-flex-grow { - flex-grow: 1; -} - -.tasklist-draft { - font-size: 14px; - align-items: center; -} - -.tasklist-textarea-container, -.tasklist-draft-title-container { - display: flex; - align-items: flex-start; - flex-grow: 1; - padding: 4px 0; -} - -.tasklist-textarea-container > textarea { - width: 100%; - max-height: none; - padding: 0 4px; - margin-left: -4px; - overflow: hidden; - font-weight: var(--base-text-weight-normal, 400); - color: var(--fgColor-default, var(--color-fg-default)); - vertical-align: middle; - resize: none; - background-color: inherit; - border: 0; - box-shadow: none; -} - -.tasklist-issue-handle { - display: block; - float: left; - padding-right: 4px; - margin-right: -8px; - margin-left: -16px; - color: var(--fgColor-muted, var(--color-fg-muted)); - -webkit-user-select: none; - user-select: none; - opacity: 0; - flex-shrink: 0; -} - -.tasklist-issue-handle.draft-handle { - display: flex; - align-items: flex-start; - margin-top: 6px; -} - -.dragger-icon { - width: 16px; - padding-right: -8px; - vertical-align: text-top; - cursor: grab; -} - -.dragger-icon:active { - cursor: grabbing; -} - -.TrackingBlock-list:not(.js-tasklist-dragging) .TrackingBlock-item:hover .tasklist-issue-handle { - opacity: 1; -} - -.tasklist-issue-ghost-item { - opacity: 0; -} - -.tasklist-omnibar { - position: relative; - display: flex; - width: 100%; - margin-top: 8px; - margin-left: 4px; - flex-direction: row; -} - -.tasklist-omnibar-autocomplete-wrapper { - width: 100%; - flex: 1; - margin-right: 8px; -} - -.tasklist-omnibar-autocomplete-wrapper .ActionListWrap { - padding: 8px; - margin: 0; -} - -.tasklist-omnibar-autocomplete-wrapper .ActionListItem-label .octicon { - margin-right: 4px; -} - -.tasklist-omnibar-input-wrapper:not([open]) .Overlay { - box-shadow: none; -} - -.tasklist-omnibar-input-wrapper .FormControl-input { - display: inline-block; - border-radius: 6px; -} - -.tasklist-omnibar-input-wrapper .FormControl-input:focus { - border-radius: 6px; -} - -.TrackingBlock details.dropdown[disabled] { - pointer-events: none; - -webkit-user-select: none; - user-select: none; - opacity: .5; -} - -.TrackingBlock .js-item-avatar-stack[disabled], -.TrackingBlock .js-label-assignee-container[disabled] { - pointer-events: none; - -webkit-user-select: none; - user-select: none; -} - -.tracking-block [data-disabled] .tasklist-omnibar { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.tracking-block [data-disabled] .tasklist-omnibar:hover { - outline: none; -} - -.autocomplete-suggestion { - display: inline-block; -} - -.truncated-autocomplete-suggestion-title { - display: inline-block; - max-width: 300px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - vertical-align: top; -} - -.autocomplete-suggestion-issue-number { - margin-left: 3px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.edit-metadata-popover-container[data-menu-type=project] .discussion-sidebar-item { - padding-top: 0; -} - -.edit-metadata-popover-container[data-menu-type=project] .discussion-sidebar-heading { - display: none; -} - -.edit-metadata-popover-container[data-menu-type=project] .js-discussion-sidebar-menu { - position: relative; - margin-top: 0; - margin-bottom: 0; - border-width: 0; -} - -.edit-metadata-popover-container[data-menu-type=project] [role=listbox] { - padding-left: 0; -} - -.edit-metadata-popover-container .discussion-sidebar-item { - padding-top: 8px; -} - -.edit-metadata-popover-container .select-menu { - margin: 0; -} - -.edit-metadata-popover-container .new-label-modal, -.edit-metadata-popover-container .edit-labels-button { - display: none; -} - -.edit-metadata-popover-container .Popover-message { - width: unset; -} - -.edit-metadata-popover-overlay, -.label-count-popover-overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 80; -} - -.avatar-template, -.label-template, -.label-popover-template { - display: none; -} - -.empty-avatar-icon { - width: 20px; - height: 20px; - padding: 2px; - border: 1px solid var(--borderColor-neutral-emphasis, var(--color-fg-muted)); - border-radius: 2em; -} - -.convert-to-issue-button { - width: 20px; - height: 20px; - padding: 2px; - background-color: transparent; -} - -.tasklist-metadata-toast { - position: fixed; - bottom: 20px; - left: 20px; - z-index: 999; - opacity: 0; - animation: tasklist-metadata-toast-slide-in 4s forwards; -} - -.tracking-block-list-item-dropdown-menu .tracking-block-menu-btn, -.tracking-block-list-item-dropdown-menu .tracking-block-item-menu-btn { - border: none; -} - -.tracking-block-list-item-dropdown-menu .tracking-block-item-menu-btn { - top: 3px; -} - -.tracking-block-list-item-dropdown-menu [role=menu] { - padding-left: 8px; - margin-bottom: 0; -} - -@keyframes tasklist-metadata-toast-slide-in { - 0% { - opacity: 0; - transform: translateX(-100%); - } - - 10% { - opacity: 1; - transform: translateX(0); - } - - 80% { - opacity: 1; - transform: translateX(0); - } - - 100% { - opacity: 0; - } -} - -.tasklist-title-edit-button { - opacity: 0; -} - -.tasklist-title-container:hover .tasklist-title-edit-button { - opacity: 1; -} - -.add-tasklist-spinner { - cursor: pointer; -} - -.add-tasklist-spinner .Button-label { - display: flex; - color: var(--fgColor-muted, var(--color-fg-muted)); - align-items: center; -} - -.add-tasklist-spinner .Button-label svg { - margin-right: 8px; -} - -.tlb, -.tlb-border, -.tlb-checkbox, -.tlb-header-title, -.tlb-icon, -.tlb-issue-reference-number, -.tlb-item-title, -.tlb-li, -.tlb-line-height, -.tlb-link-style-none, -.tlb-ol, -.tlb-overflow, -.tlb-rounded-header, -.tlb-text { - display: none; -} - -.typeahead-result { - position: relative; - display: block; - min-width: 100%; - padding: 8px; - margin-top: 0; - color: var(--fgColor-default, var(--color-fg-default)); - cursor: pointer; -} - -.typeahead-result::before { - display: table; - content: ""; -} - -.typeahead-result::after { - display: table; - clear: both; - content: ""; -} - -.typeahead-result:first-child { - border-top: 0; -} - -.typeahead-result:focus, -.typeahead-result:hover, -.typeahead-result[aria-selected=true], -.typeahead-result.navigation-focus { - text-decoration: none; -} - -.typeahead-result[aria-selected=true], -.typeahead-result:hover, -.typeahead-result.navigation-focus { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.typeahead-result[aria-selected=true] .octicon-plus, -.typeahead-result:hover .octicon-plus, -.typeahead-result.navigation-focus .octicon-plus { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.typeahead-result.disabled { - pointer-events: none; - opacity: .5; -} - -.member-suggestion { - padding-left: 44px; -} - -.member-suggestion .avatar { - float: left; - margin-right: 8px; - margin-left: -32px; -} - -.member-suggestion .member-suggestion-info { - width: 90%; - margin-top: 2px; - margin-bottom: 0; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.member-suggestion .member-name { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.member-suggestion .member-email { - margin-top: 0; - margin-bottom: 0; -} - -.member-suggestion .octicon-plus, -.member-suggestion .octicon-check { - position: absolute; - top: 50%; - right: 15px; - margin-top: -8px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.member-suggestion .already-member-note, -.member-suggestion .non-member-note, -.member-suggestion .non-member-action { - margin-top: 0; - margin-bottom: 0; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.member-suggestion .non-member-action { - display: none; -} - -.member-suggestion[aria-selected=true] .member-name, -.member-suggestion[aria-selected=true] .non-member-note, -.member-suggestion[aria-selected=true] .already-member-note, -.member-suggestion[aria-selected=true] .non-member-action, -.member-suggestion[aria-selected=true] .member-email, -.member-suggestion:hover .member-name, -.member-suggestion:hover .non-member-note, -.member-suggestion:hover .already-member-note, -.member-suggestion:hover .non-member-action, -.member-suggestion:hover .member-email, -.member-suggestion.navigation-focus .member-name, -.member-suggestion.navigation-focus .non-member-note, -.member-suggestion.navigation-focus .already-member-note, -.member-suggestion.navigation-focus .non-member-action, -.member-suggestion.navigation-focus .member-email { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.member-suggestion[aria-selected=true] .non-member-note, -.member-suggestion:hover .non-member-note, -.member-suggestion.navigation-focus .non-member-note { - display: none; -} - -.member-suggestion[aria-selected=true] .non-member-action, -.member-suggestion:hover .non-member-action, -.member-suggestion.navigation-focus .non-member-action { - display: block; -} - -.member-suggestion[aria-selected=true] .octicon, -.member-suggestion:hover .octicon, -.member-suggestion.navigation-focus .octicon { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -.member-suggestion.not-a-member .member-info, -.member-suggestion.disabled .member-info { - margin-top: -2px; -} - -.non-member-result { - padding-left: 32px; -} - -.email-suggestion { - padding-left: 32px; -} - -.email-suggestion .octicon-mail { - margin-left: -16px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.email-suggestion .member-suggestion-info { - margin-top: 1px; -} - -.repo-access-add-team .team-name { - font-size: 14px; -} - -.repo-access-add-team .team-description { - display: block; -} - -.repo-access-add-team .team-size, -.repo-access-add-team .team-description { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.repo-access-add-team[aria-selected=true] .team-size, -.repo-access-add-team[aria-selected=true] .team-description, -.repo-access-add-team.navigation-focus .team-size, -.repo-access-add-team.navigation-focus .team-description { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); -} - -#user-content-toc { - overflow: visible; -} - -#user-content-toc tr { - border-top: 0; -} - -#user-content-toc td { - padding: 0 16px; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - border: 0; - border-radius: 6px; -} - -#user-content-toc ul { - padding-left: 0; - font-weight: var(--base-text-weight-semibold, 600); - list-style: none; -} - -#user-content-toc ul li { - padding-left: .2em; -} - -#user-content-toc ul ul { - font-weight: var(--base-text-weight-normal, 400); -} - -#user-content-toc ul ul li::before { - float: left; - margin-top: -0.2em; - margin-right: .2em; - font-size: 1.2em; - line-height: 1; - color: var(--fgColor-muted, var(--color-fg-muted)); - content: "⌞"; -} - -#user-content-toc ul ul ul { - padding-left: .9em; -} - -#user-content-toctitle h2 { - margin-top: 1em; - margin-bottom: .5em; - font-size: 1.25em; - border-bottom: 0; -} - -.user-list-info { - min-height: 48px; - padding: 0; - font-size: 16px; - font-weight: var(--base-text-weight-normal, 400); - line-height: 20px; -} - -.WorkflowJob-deployment-progress .Progress { - background: none; -} - -.WorkflowJob-deployment-progress .WorkflowJob-deployment-progress-complete { - background-color: var(--color-workflow-card-progress-complete-bg); -} - -.WorkflowJob-deployment-progress .WorkflowJob-deployment-progress-incomplete { - background-color: var(--color-workflow-card-progress-incomplete-bg); -} - -.WorkflowJob { - padding: 12px; - transition: opacity ease-out .12s; -} - -.WorkflowJob-title { - height: 20px; - line-height: 20px; -} - -.WorkflowJob-title::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - content: ""; -} - -.MatrixComponent-pending { - padding: 12px; - transition: opacity ease-out .12s; -} - -.MatrixComponent-collapse--title { - line-height: 20px; -} - -.actions-workflow-table.sticky th { - position: sticky; - top: 0; - z-index: 1; - background-color: var(--color-primer-canvas-sticky); -} - -.actions-workflow-table th { - height: auto; - line-height: 44px; - text-align: left; -} - -.actions-workflow-table td { - height: 64px; - padding-top: 12px; - padding-bottom: 12px; - line-height: 20px; -} - -.actions-workflow-table td.compact { - height: 48px; -} - -.actions-workflow-table th:first-child, -.actions-workflow-table td:first-child { - padding-left: 16px; -} - -@media (min-width: 768px) { - .actions-workflow-table th:first-child, - .actions-workflow-table td:first-child { - padding-left: 20px; - } -} - -.actions-workflow-table th:last-child, -.actions-workflow-table td:last-child { - padding-right: 20px; -} - -@media (max-width: 768px) { - .actions-fullwidth-module { - position: relative; - margin-right: -16px; - margin-left: -16px; - border-right: 0; - border-left: 0; - } - - .actions-fullwidth-module.actions-fullwidth-module { - border-radius: 0; - } - - .actions-fullwidth-module::after { - position: absolute; - right: 0; - bottom: -17px; - left: 0; - z-index: 0; - height: 16px; - content: ""; - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); - } -} - -.annotation--contracted div:first-child { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.annotation--expanded div:first-child { - word-break: break-word; - white-space: pre-wrap; -} - -.enterprise-settings .field-with-errors { - min-width: 0; - padding: 0; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -.billing-manager-banner { - padding: 32px 16px; - margin-bottom: 32px; - overflow: hidden; - background: var(--bgColor-muted, var(--color-canvas-subtle)); - border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted)); -} - -.billing-manager-banner .container { - position: relative; -} - -.billing-manager-banner-text { - margin-left: 210px; - font-size: 14px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.billing-manager-banner-text .btn { - margin-top: 8px; - margin-right: 8px; -} - -.billing-manager-banner-title { - font-size: 12px; - font-weight: var(--base-text-weight-semibold, 600); - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.billing-manager-icon { - position: absolute; - top: -35px; - left: 0; - width: 180px; - height: 180px; - font-size: 180px; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.dashboard-changelog .octicon.octicon-dot-fill { - fill: var(--borderColor-default, var(--color-border-default)); -} - -.dashboard-changelog .TimelineItem-badge { - margin-left: -15.5px; -} - -.dashboard-changelog .TimelineItem::before { - width: 1px; -} - -.dashboard-changelog-timestamp::first-letter { - text-transform: uppercase; -} - -.new-feed-onboarding-notice { - background: var(--light-grad-pink-blue, radial-gradient(ellipse at 40% 0%, #bf398910 0, transparent 75%), radial-gradient(ellipse at 60% 0%, #096bde10 0, transparent 75%)); -} - -.feed-item-heading-icon { - right: -8px; - background-color: var(--bgColor-default, var(--color-canvas-default)); - box-shadow: 0 0 0 2px var(--bgColor-inset, var(--color-canvas-inset)); -} - -.feed-item-heading-icon.color-fg-attention { - color: var(--color-scale-yellow-2); -} - -.feed-item-heading-icon.feed-next { - right: -5px; - bottom: 2px; -} - -.feed-item-user-avatar { - border: 1px solid var(--bgColor-inset, var(--color-canvas-inset)); -} - -.feed-sponsored-user-description p:last-child { - margin-bottom: 0; -} - -@media (prefers-color-scheme: dark) { - .feed-background { - background-color: var(--bgColor-inset, var(--color-canvas-inset)); - } -} - -@media (prefers-color-scheme: light) { - .feed-background { - background-color: var(--bgColor-default, var(--color-canvas-default)); - } -} - -html[data-color-mode=dark] .feed-background { - background-color: var(--bgColor-inset, var(--color-canvas-inset)); -} - -html[data-color-mode=light] .feed-background { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -@media (prefers-color-scheme: dark) { - .feed-item-content { - background-color: var(--bgColor-default, var(--color-canvas-default)); - } -} - -@media (prefers-color-scheme: light) { - .feed-item-content { - background-color: var(--overlay-bgColor, var(--color-canvas-overlay)); - } -} - -.discover-people-gradient { - background: radial-gradient(ellipse at 40% -8%, var(--bgColor-accent-muted, var(--color-accent-muted)) 0, transparent 48%),radial-gradient(ellipse at 60% -8%, var(--bgColor-done-muted, var(--color-done-muted)) 0, transparent 48%); -} - -@media screen and (prefers-reduced-motion: no-preference) { - .js-pinned-announcement-container { - transition: opacity 250ms ease-in-out; - } -} - -.js-pinned-announcement-container.transition { - opacity: 0; -} - -.release-feed-inline-last-p p:last-of-type { - display: inline; -} - -[data-dev-analytics-enabled] .Truncate-text { - overflow: visible; -} - -[data-dev-analytics-enabled] [data-feeds-analytics] { - box-shadow: 0 0 0 1px var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -[data-dev-analytics-enabled] [data-feeds-analytics]::after { - position: absolute; - top: 0; - left: 0; - display: none; - overflow: auto; - font-size: 12px; - color: var(--fgColor-default, var(--color-fg-default)); - pointer-events: none; - content: attr(data-feeds-analytics); - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -[data-dev-analytics-enabled] [data-feeds-analytics]:hover { - position: relative; -} - -[data-dev-analytics-enabled] [data-feeds-analytics]:hover::after { - display: block; -} - -.feed-post-url-embed .preview-image { - width: 60px; - height: 60px; - background-position: center center; - background-size: cover; -} - -:root { - --feed-sidebar: 256px; -} - -.feed-content { - gap: 24px; - width: 100%; - margin-inline: auto; -} - -.feed-content .feed-main { - width: 100%; -} - -@media (min-width: 768px) { - .feed-content { - padding-inline: 24px; - } -} - -@media (min-width: 768px) { - .feed-content { - max-width: calc(995px + var(--feed-sidebar) + 48px); - } - - .feed-content .feed-main { - max-width: 680px; - } -} - -@media (min-width: 1400px) { - .feed-content .feed-main { - max-width: 900px; - } -} - -.feed-left-sidebar { - width: var(--feed-sidebar); -} - -@media (min-width: 768px) { - .feed-left-sidebar { - --feed-sidebar: 320px; - } -} - -@media (min-width: 1400px) { - .feed-left-sidebar { - --feed-sidebar: 336px; - } -} - -.feed-left-sidebar .team-avatar { - width: 80px; - height: 80px; -} - -@media (min-width: 768px) { - .feed-left-sidebar .team-avatar { - width: 140px; - height: 140px; - } -} - -.feed-right-sidebar { - display: none; - max-width: 315px; -} - -.feed-right-sidebar .team-avatar { - width: 80px; - height: 80px; -} - -@media (min-width: 768px) { - .feed-right-sidebar .team-avatar { - width: 140px; - height: 140px; - } -} - -@media (min-width: 1280px) { - .feed-right-sidebar { - display: block; - } -} - -@media (min-width: 1400px) { - .feed-right-sidebar { - display: block; - max-width: 356px; - } -} - -.user-repos .mini-repo-list-item { - padding-right: 4px; -} - -.user-repos .mini-repo-list-item .repo-and-owner { - max-width: 100%; -} - -.user-repos .mini-repo-list-item .owner { - max-width: 145px; -} - -.dashboard-sidebar { - position: sticky; - top: 0; - bottom: 0; - z-index: 30; - display: flex; - min-height: 50vh; - max-height: 100vh; - flex-direction: column; -} - -.dashboard-sidebar-favorites-modal .auto-search-group > .octicon { - top: 8px; -} - -.dashboard-sidebar-sortable-item .pinned-item-handle { - visibility: hidden; -} - -.dashboard-sidebar-sortable-item:hover .pinned-item-handle { - visibility: visible; -} - -.dashboard-sidebar-sortable-item:hover .pinned-item-handle:hover { - cursor: grab; -} - -.dashboard-sidebar-sortable-item:hover.is-dragging, -.dashboard-sidebar-sortable-item:hover.is-dragging .pinned-item-handle { - cursor: grabbing; -} - -.dashboard-sidebar .loading-context { - min-height: 50vh; - flex: 1; -} - -.dashboard-sidebar .loading-context .loading-context-spinner { - position: absolute; - z-index: 1000; - display: flex; - width: 100%; - height: 100%; - justify-content: center; - align-items: center; - flex: 1; -} - -.dashboard h1 { - margin-bottom: .5em; - font-size: 160%; -} - -.dashboard h1 a { - font-weight: var(--base-text-weight-normal, 400); -} - -.dashboard .notice { - padding: 16px; - margin-top: 0; - margin-bottom: 0; - text-align: center; -} - -.dashboard .UnderlineNav-item .Label { - text-shadow: none; -} - -.timeline-comment.timeline-chosen-answer { - border: 2px solid var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.timeline-child-comment-answer-border { - outline: 1px solid var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.sidebar-emoji-box { - width: auto; - height: auto; -} - -.discussions-timeline-scroll-target { - width: 100%; - padding-top: 60px; - margin-top: -60px; - pointer-events: none; -} - -.discussions-timeline-scroll-target > * { - pointer-events: auto; -} - -.discussions-emoji-box { - font-size: 14px; - line-height: 14px; - vertical-align: 0; - cursor: default; -} - -@media (min-width: 768px) { - .discussions-emoji-box { - font-size: 16px; - line-height: 16px; - vertical-align: 0; - } -} - -.discussion-timeline-item::before { - display: none; -} - -.discussion-primer-next-nested-comment-timeline-item::before { - left: 30px; -} - -.discussion-nested-comment-timeline-item::before { - left: 25px; -} - -@media (min-width: 544px) { - .discussion-nested-comment-timeline-item::before { - left: 30px; - } -} - -.discussion-nested-comment-timeline-item:first-child::before { - top: 16px; -} - -.discussion-nested-comment-group { - margin-left: 32px; -} - -.discussion-nested-comment-paging-form::before { - width: 0; - background-color: transparent; -} - -.discussion-nested-comment-paging-badge .octicon { - fill: var(--borderColor-muted, var(--color-border-muted)); - transform: rotate(90deg); -} - -.discussion-nested-comment-paging-form-body { - margin-left: 24px; -} - -:target .discussion-nested-comment-group .timeline-comment { - box-shadow: none; -} - -.discussion-nested-comment-timeline-item:target { - outline: none; - box-shadow: 0 0 0 2px var(--color-accent-fg); -} - -.inline-comment-form-container.open .discussion-nested-comment-inline-form .previewable-comment-form { - display: block; -} - -.discussion-footer-answered-badge { - padding: 0 8px 0 4px; - line-height: inherit; -} - -.discussion-footer-answer-icon { - width: 26px; - height: 26px; -} - -.discussion-footer-answer-button { - padding: 0 8px; - line-height: inherit; -} - -.discussion-event-wrapper:last-child .discussion-event-timeline-item { - padding-bottom: 0; -} - -.discussion-event-wrapper:last-child .discussion-event-timeline-item::before { - display: none; -} - -.discussion-event-timeline-item::before { - left: -6px; -} - -.is-comment-editing .discussion-comment .previewable-comment-form { - display: none; -} - -.is-comment-editing .discussion-comment .timeline-comment-actions, -.is-comment-editing .discussion-comment .edit-comment-hide { - display: block; -} - -.discussion-comment .previewable-edit.is-comment-editing .timeline-comment-header { - display: flex; -} - -.discussion-Link--secondary:visited { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.disabled-category-form { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: default; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.bg-discussions-row-emoji-box { - width: 42px; - height: 42px; - background: var(--color-bg-discussions-row-emoji-box); -} - -.bg-discussions-row-emoji-box-small { - width: 30px; - height: 30px; - background: var(--color-bg-discussions-row-emoji-box); -} - -:target .nested-discussion-timeline-comment { - box-shadow: none; -} - -.nested-discussion-timeline-comment .markdown-body pre { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); -} - -.comment-body div[type=discussions-op-text] { - padding: 8px; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.comment-body div[type=discussions-op-text] p { - margin-bottom: 0; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -.discussion-spotlight-container { - height: 150px; - overflow: hidden; - cursor: pointer; -} - -.discussion-spotlight-container .discussion-title { - display: -webkit-box; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; - overflow: hidden; -} - -.discussion-spotlight-container .spotlight-avatar { - border-color: var(--bgColor-default, var(--color-canvas-default)); - border-width: 3px; -} - -.discussions-spotlight-wrapper:first-of-type { - padding-left: 0; -} - -.discussion-spotlight-color-container { - width: 210px; - height: 80px; -} - -.discussion-spotlight-color-container .discussion-spotlight-gradient { - width: 35px; - height: 35px; -} - -.discussion-spotlight-checkmark { - position: absolute; - display: flex; - width: 23px; - height: 23px; - margin-top: 6px; - margin-left: 6px; - background: rgba(7,7,7,.63); -} - -.discussion-spotlight-color-container input:not(:checked) ~ .discussion-spotlight-checkmark { - display: none; -} - -.discussion-spotlight-color-container input:checked + .discussion-spotlight-checkmark::after { - display: flex; -} - -.discussion-spotlight-color-container input:checked { - box-shadow: inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em var(--borderColor-accent-muted, var(--color-accent-muted)); -} - -.timeline-comment.timeline-chosen-answer { - border: 2px solid var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.timeline-child-comment-answer-border { - outline: 1px solid var(--borderColor-success-emphasis, var(--color-success-emphasis)); -} - -.sidebar-emoji-box { - width: auto; - height: auto; -} - -.discussions-timeline-scroll-target { - width: 100%; - padding-top: 60px; - margin-top: -60px; - pointer-events: none; -} - -.discussions-timeline-scroll-target > * { - pointer-events: auto; -} - -.discussions-emoji-box { - font-size: 14px; - line-height: 14px; - vertical-align: 0; - cursor: default; -} - -@media (min-width: 768px) { - .discussions-emoji-box { - font-size: 16px; - line-height: 16px; - vertical-align: 0; - } -} - -.discussion-timeline-item::before { - display: none; -} - -.discussion-primer-next-nested-comment-timeline-item::before { - left: 30px; -} - -.discussion-nested-comment-timeline-item::before { - left: 25px; -} - -@media (min-width: 544px) { - .discussion-nested-comment-timeline-item::before { - left: 30px; - } -} - -.discussion-nested-comment-timeline-item:first-child::before { - top: 16px; -} - -.discussion-nested-comment-group { - margin-left: 32px; -} - -.discussion-nested-comment-paging-form::before { - width: 0; - background-color: transparent; -} - -.discussion-nested-comment-paging-badge .octicon { - fill: var(--borderColor-muted, var(--color-border-muted)); - transform: rotate(90deg); -} - -.discussion-nested-comment-paging-form-body { - margin-left: 24px; -} - -:target .discussion-nested-comment-group .timeline-comment { - box-shadow: none; -} - -.discussion-nested-comment-timeline-item:target { - outline: none; - box-shadow: 0 0 0 2px var(--color-accent-fg); -} - -.inline-comment-form-container.open .discussion-nested-comment-inline-form .previewable-comment-form { - display: block; -} - -.discussion-footer-answered-badge { - padding: 0 8px 0 4px; - line-height: inherit; -} - -.discussion-footer-answer-icon { - width: 26px; - height: 26px; -} - -.discussion-footer-answer-button { - padding: 0 8px; - line-height: inherit; -} - -.discussion-event-wrapper:last-child .discussion-event-timeline-item { - padding-bottom: 0; -} - -.discussion-event-wrapper:last-child .discussion-event-timeline-item::before { - display: none; -} - -.discussion-event-timeline-item::before { - left: -6px; -} - -.is-comment-editing .discussion-comment .previewable-comment-form { - display: none; -} - -.is-comment-editing .discussion-comment .timeline-comment-actions, -.is-comment-editing .discussion-comment .edit-comment-hide { - display: block; -} - -.discussion-comment .previewable-edit.is-comment-editing .timeline-comment-header { - display: flex; -} - -.discussion-Link--secondary:visited { - color: var(--fgColor-muted, var(--color-fg-subtle)); -} - -.disabled-category-form { - color: var(--fgColor-disabled, var(--color-primer-fg-disabled)); - cursor: default; - background-color: var(--bgColor-neutral-muted, var(--color-neutral-subtle)); -} - -.bg-discussions-row-emoji-box { - width: 42px; - height: 42px; - background: var(--color-bg-discussions-row-emoji-box); -} - -.bg-discussions-row-emoji-box-small { - width: 30px; - height: 30px; - background: var(--color-bg-discussions-row-emoji-box); -} - -:target .nested-discussion-timeline-comment { - box-shadow: none; -} - -.nested-discussion-timeline-comment .markdown-body pre { - background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); -} - -.comment-body div[type=discussions-op-text] { - padding: 8px; - border: 1px solid var(--borderColor-muted, var(--color-border-muted)); - border-radius: 6px; -} - -.comment-body div[type=discussions-op-text] p { - margin-bottom: 0; -} - -.discussion-vote-form .slidey-boi { - transition: .4s ease-in-out; - transform: perspective(1px) translateY(0%); -} - -.discussion-vote-form.is-upvoted .slidey-boi { - transform: perspective(1px) translateY(-50%); -} - -.js-discussion-poll-component .poll-title:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-emphasis)); -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -/*! - * @primer/css/marketing - * http://primer.style/css - * - * Released under MIT license. Copyright (c) 2019 GitHub Inc. - */ - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -.h0-mktg, -.h1-mktg, -.h2-mktg, -.h3-mktg, -.h4-mktg, -.h5-mktg, -.h6-mktg { - font-family: "Mona Sans","Mona Sans Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-feature-settings: "ss02" on,"ss01" on; - font-weight: 700; - letter-spacing: -0.01em; -} - -.h0-mktg { - font-size: 48px; - line-height: 52px; - font-weight: 800; -} - -@media (min-width: 768px) { - .h0-mktg { - font-size: 72px; - line-height: 76px; - } -} - -@media (min-width: 1012px) { - .h0-mktg { - font-size: 96px; - line-height: 100px; - } -} - -.h1-mktg { - font-size: 40px; - line-height: 44px; - font-weight: 800; -} - -@media (min-width: 768px) { - .h1-mktg { - font-size: 56px; - line-height: 60px; - letter-spacing: -0.03em; - } -} - -@media (min-width: 1012px) { - .h1-mktg { - font-size: 72px; - line-height: 76px; - } -} - -.h2-mktg { - font-size: 32px; - line-height: 36px; - font-weight: 800; -} - -@media (min-width: 768px) { - .h2-mktg { - font-size: 48px; - line-height: 52px; - letter-spacing: -0.03em; - } -} - -@media (min-width: 1012px) { - .h2-mktg { - font-size: 64px; - line-height: 68px; - } -} - -.h3-mktg { - font-size: 28px; - line-height: 32px; - font-weight: 800; -} - -@media (min-width: 768px) { - .h3-mktg { - font-size: 40px; - line-height: 44px; - } -} - -@media (min-width: 1012px) { - .h3-mktg { - font-size: 48px; - line-height: 52px; - letter-spacing: -0.03em; - } -} - -.h4-mktg { - font-size: 24px; - line-height: 28px; - font-weight: 800; -} - -@media (min-width: 768px) { - .h4-mktg { - font-size: 28px; - line-height: 32px; - } -} - -@media (min-width: 1012px) { - .h4-mktg { - font-size: 32px; - line-height: 36px; - } -} - -.h5-mktg { - font-size: 20px; - line-height: 24px; -} - -@media (min-width: 768px) { - .h5-mktg { - font-size: 24px; - line-height: 28px; - font-weight: 800; - } -} - -.h6-mktg { - font-size: 16px; - line-height: 20px; -} - -@media (min-width: 768px) { - .h6-mktg { - font-size: 20px; - line-height: 24px; - } -} - -.f0-mktg, -.f1-mktg, -.f2-mktg, -.f3-mktg, -.f4-mktg, -.f5-mktg, -.f6-mktg { - font-family: "Mona Sans","Mona Sans Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-feature-settings: "ss02" on,"ss01" on; - font-weight: var(--base-text-weight-normal, 400); -} - -.f0-mktg { - font-size: 28px; - line-height: 40px; - letter-spacing: -0.01em; - font-weight: 600; -} - -@media (min-width: 768px) { - .f0-mktg { - font-size: 40px; - line-height: 52px; - } -} - -@media (min-width: 1012px) { - .f0-mktg { - font-size: 48px; - line-height: 64px; - } -} - -.f1-mktg { - font-size: 24px; - line-height: 32px; - font-weight: 600; -} - -@media (min-width: 768px) { - .f1-mktg { - font-size: 28px; - line-height: 40px; - letter-spacing: -0.01em; - } -} - -@media (min-width: 1012px) { - .f1-mktg { - font-size: 32px; - line-height: 44px; - } -} - -.f2-mktg { - font-size: 20px; - line-height: 28px; -} - -@media (min-width: 1012px) { - .f2-mktg { - font-size: 24px; - line-height: 32px; - font-weight: 500; - } -} - -.f3-mktg { - font-size: 16px; - line-height: 24px; -} - -@media (min-width: 768px) { - .f3-mktg { - font-size: 20px; - line-height: 28px; - } -} - -.f4-mktg { - font-size: 16px; - line-height: 24px; -} - -.f5-mktg { - font-size: 14px; - line-height: 20px; -} - -.f6-mktg { - font-size: 12px; - line-height: 20px; -} - -.text-medium { - font-weight: 500; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -.btn-mktg { - position: relative; - z-index: 1; - display: inline-block; - padding: .9rem 1.5rem 1.1rem; - font-size: 1rem; - font-weight: 700; - line-height: 1; - color: var(--bgColor-default, var(--color-canvas-default)); - text-align: center; - white-space: nowrap; - vertical-align: middle; - -webkit-user-select: none; - user-select: none; - background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%),var(--color-mktg-btn-bg); - border: 0; - border-radius: .375rem; - transition: box-shadow .2s,outline .2s ease; - -webkit-appearance: none; - appearance: none; -} - -.btn-mktg::before { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: -1; - content: ""; - background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%); - border-radius: inherit; - opacity: 0; - opacity: 0; - transition: opacity .2s; - background-blend-mode: normal; -} - -.btn-mktg:hover { - text-decoration: none; - box-shadow: var(--color-mktg-btn-shadow-hover); -} - -.btn-mktg:hover::before, -.btn-mktg:focus::before, -.btn-mktg:focus-visible::before, -.btn-mktg.focus::before { - opacity: 1; -} - -.btn-mktg:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; - box-shadow: none; -} - -.btn-mktg:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.btn-mktg:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; - box-shadow: none; -} - -.btn-mktg:active::before { - opacity: .5; -} - -.btn-mktg.disabled, -.btn-mktg[disabled] { - pointer-events: none; - cursor: default; - opacity: .5; -} - -.btn-muted-mktg { - color: var(--fgColor-default, var(--color-fg-default)); - background: none; - box-shadow: var(--color-mktg-btn-shadow-outline); -} - -.btn-muted-mktg::before { - display: none; -} - -.btn-muted-mktg:hover { - box-shadow: var(--color-mktg-btn-shadow-hover-muted); -} - -.btn-muted-mktg:active { - box-shadow: var(--fgColor-default, var(--color-fg-default)) 0 0 0 3px inset; -} - -.btn-muted-mktg:disabled { - box-shadow: var(--fgColor-muted, var(--color-fg-subtle)) 0 0 0 1px inset; -} - -.btn-subtle-mktg { - color: var(--fgColor-default, var(--color-fg-default)); - background: none; - box-shadow: none; -} - -.btn-subtle-mktg::before { - background: none; -} - -.btn-subtle-mktg:hover { - box-shadow: var(--color-mktg-btn-shadow-hover-muted); -} - -.btn-signup-mktg { - color: #fff; - background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%),#2ea44f; -} - -.btn-signup-mktg::before { - background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%); -} - -.btn-signup-mktg:focus { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; - box-shadow: none; -} - -.btn-signup-mktg:focus:not(:focus-visible) { - outline: solid 1px transparent; - box-shadow: none; -} - -.btn-signup-mktg:focus-visible { - outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg)); - outline-offset: 2px; - box-shadow: none; -} - -.btn-small-mktg { - padding: .625rem 1rem .8125rem; -} - -.btn-large-mktg { - padding: 16px 30px 20px; - font-size: 1.25rem; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -.link-mktg { - position: relative; - display: inline-block; -} - -.link-mktg:hover { - text-decoration: none; -} - -.link-mktg::after, -.link-mktg.link-emphasis-mktg::before { - position: absolute; - bottom: -0.15em; - left: 0; - width: calc(100% - 1em); - height: 2px; - pointer-events: none; - content: ""; - background-color: currentColor; - transform: scaleX(0); - transform-origin: 0 0; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .link-mktg::after, - .link-mktg.link-emphasis-mktg::before { - transition: transform .3s ease; - } -} - -.link-mktg.link-emphasis-mktg::before { - opacity: .2; - transform: scaleX(1); -} - -.link-mktg:hover::after, -.link-mktg:active::after { - transform: scaleX(1); -} - -.link-mktg:focus, -.link-mktg:focus-visible { - outline-offset: 2px; -} - -.link-mktg.arrow-target-mktg .arrow-symbol-mktg { - margin-left: -0.25em; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -.hover-grow-mktg { - transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1); -} - -.hover-grow-mktg:hover { - transform: scale3d(1.025, 1.025, 1.025); -} - -.btn-mktg .octicon, -.link-mktg .octicon, -.arrow-target-mktg .octicon { - width: 1em; - height: 1em; -} - -.btn-mktg .arrow-symbol-mktg, -.link-mktg .arrow-symbol-mktg, -.arrow-target-mktg .arrow-symbol-mktg { - transition: transform .2s; - transform: translateX(0); -} - -.btn-mktg .arrow-symbol-mktg path:last-child, -.link-mktg .arrow-symbol-mktg path:last-child, -.arrow-target-mktg .arrow-symbol-mktg path:last-child { - stroke-dasharray: 10; - stroke-dashoffset: 10; - transition: stroke-dashoffset .2s; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .btn-mktg:hover .arrow-symbol-mktg, - .btn-mktg:focus .arrow-symbol-mktg, - .link-mktg:hover .arrow-symbol-mktg, - .link-mktg:focus .arrow-symbol-mktg, - .arrow-target-mktg:hover .arrow-symbol-mktg, - .arrow-target-mktg:focus .arrow-symbol-mktg { - transform: translateX(4px); - } - - .btn-mktg:hover .arrow-symbol-mktg path:last-child, - .btn-mktg:focus .arrow-symbol-mktg path:last-child, - .link-mktg:hover .arrow-symbol-mktg path:last-child, - .link-mktg:focus .arrow-symbol-mktg path:last-child, - .arrow-target-mktg:hover .arrow-symbol-mktg path:last-child, - .arrow-target-mktg:focus .arrow-symbol-mktg path:last-child { - stroke-dashoffset: 20; - } - - .btn-mktg:active .arrow-symbol-mktg, - .link-mktg:active .arrow-symbol-mktg, - .arrow-target-mktg:active .arrow-symbol-mktg { - transform: translateX(6px); - } -} - -.grayscale { - filter: grayscale(100%); -} - -.top-1 { - top: 4px; -} - -.right-1 { - right: 4px; -} - -.bottom-1 { - bottom: 4px; -} - -.left-1 { - left: 4px; -} - -.top-n1 { - top: -4px; -} - -.right-n1 { - right: -4px; -} - -.bottom-n1 { - bottom: -4px; -} - -.left-n1 { - left: -4px; -} - -.top-2 { - top: 8px; -} - -.right-2 { - right: 8px; -} - -.bottom-2 { - bottom: 8px; -} - -.left-2 { - left: 8px; -} - -.top-n2 { - top: -8px; -} - -.right-n2 { - right: -8px; -} - -.bottom-n2 { - bottom: -8px; -} - -.left-n2 { - left: -8px; -} - -.top-3 { - top: 16px; -} - -.right-3 { - right: 16px; -} - -.bottom-3 { - bottom: 16px; -} - -.left-3 { - left: 16px; -} - -.top-n3 { - top: -16px; -} - -.right-n3 { - right: -16px; -} - -.bottom-n3 { - bottom: -16px; -} - -.left-n3 { - left: -16px; -} - -.top-4 { - top: 24px; -} - -.right-4 { - right: 24px; -} - -.bottom-4 { - bottom: 24px; -} - -.left-4 { - left: 24px; -} - -.top-n4 { - top: -24px; -} - -.right-n4 { - right: -24px; -} - -.bottom-n4 { - bottom: -24px; -} - -.left-n4 { - left: -24px; -} - -.top-5 { - top: 32px; -} - -.right-5 { - right: 32px; -} - -.bottom-5 { - bottom: 32px; -} - -.left-5 { - left: 32px; -} - -.top-n5 { - top: -32px; -} - -.right-n5 { - right: -32px; -} - -.bottom-n5 { - bottom: -32px; -} - -.left-n5 { - left: -32px; -} - -.top-6 { - top: 40px; -} - -.right-6 { - right: 40px; -} - -.bottom-6 { - bottom: 40px; -} - -.left-6 { - left: 40px; -} - -.top-n6 { - top: -40px; -} - -.right-n6 { - right: -40px; -} - -.bottom-n6 { - bottom: -40px; -} - -.left-n6 { - left: -40px; -} - -.top-7 { - top: 48px; -} - -.right-7 { - right: 48px; -} - -.bottom-7 { - bottom: 48px; -} - -.left-7 { - left: 48px; -} - -.top-n7 { - top: -48px; -} - -.right-n7 { - right: -48px; -} - -.bottom-n7 { - bottom: -48px; -} - -.left-n7 { - left: -48px; -} - -.top-8 { - top: 64px; -} - -.right-8 { - right: 64px; -} - -.bottom-8 { - bottom: 64px; -} - -.left-8 { - left: 64px; -} - -.top-n8 { - top: -64px; -} - -.right-n8 { - right: -64px; -} - -.bottom-n8 { - bottom: -64px; -} - -.left-n8 { - left: -64px; -} - -.top-9 { - top: 80px; -} - -.right-9 { - right: 80px; -} - -.bottom-9 { - bottom: 80px; -} - -.left-9 { - left: 80px; -} - -.top-n9 { - top: -80px; -} - -.right-n9 { - right: -80px; -} - -.bottom-n9 { - bottom: -80px; -} - -.left-n9 { - left: -80px; -} - -.top-10 { - top: 96px; -} - -.right-10 { - right: 96px; -} - -.bottom-10 { - bottom: 96px; -} - -.left-10 { - left: 96px; -} - -.top-n10 { - top: -96px; -} - -.right-n10 { - right: -96px; -} - -.bottom-n10 { - bottom: -96px; -} - -.left-n10 { - left: -96px; -} - -.top-11 { - top: 112px; -} - -.right-11 { - right: 112px; -} - -.bottom-11 { - bottom: 112px; -} - -.left-11 { - left: 112px; -} - -.top-n11 { - top: -112px; -} - -.right-n11 { - right: -112px; -} - -.bottom-n11 { - bottom: -112px; -} - -.left-n11 { - left: -112px; -} - -.top-12 { - top: 128px; -} - -.right-12 { - right: 128px; -} - -.bottom-12 { - bottom: 128px; -} - -.left-12 { - left: 128px; -} - -.top-n12 { - top: -128px; -} - -.right-n12 { - right: -128px; -} - -.bottom-n12 { - bottom: -128px; -} - -.left-n12 { - left: -128px; -} - -@media (min-width: 768px) { - .top-md-0 { - top: 0; - } - - .right-md-0 { - right: 0; - } - - .bottom-md-0 { - bottom: 0; - } - - .left-md-0 { - left: 0; - } - - .top-md-1 { - top: 4px; - } - - .right-md-1 { - right: 4px; - } - - .bottom-md-1 { - bottom: 4px; - } - - .left-md-1 { - left: 4px; - } - - .top-md-n1 { - top: -4px; - } - - .right-md-n1 { - right: -4px; - } - - .bottom-md-n1 { - bottom: -4px; - } - - .left-md-n1 { - left: -4px; - } - - .top-md-2 { - top: 8px; - } - - .right-md-2 { - right: 8px; - } - - .bottom-md-2 { - bottom: 8px; - } - - .left-md-2 { - left: 8px; - } - - .top-md-n2 { - top: -8px; - } - - .right-md-n2 { - right: -8px; - } - - .bottom-md-n2 { - bottom: -8px; - } - - .left-md-n2 { - left: -8px; - } - - .top-md-3 { - top: 16px; - } - - .right-md-3 { - right: 16px; - } - - .bottom-md-3 { - bottom: 16px; - } - - .left-md-3 { - left: 16px; - } - - .top-md-n3 { - top: -16px; - } - - .right-md-n3 { - right: -16px; - } - - .bottom-md-n3 { - bottom: -16px; - } - - .left-md-n3 { - left: -16px; - } - - .top-md-4 { - top: 24px; - } - - .right-md-4 { - right: 24px; - } - - .bottom-md-4 { - bottom: 24px; - } - - .left-md-4 { - left: 24px; - } - - .top-md-n4 { - top: -24px; - } - - .right-md-n4 { - right: -24px; - } - - .bottom-md-n4 { - bottom: -24px; - } - - .left-md-n4 { - left: -24px; - } - - .top-md-5 { - top: 32px; - } - - .right-md-5 { - right: 32px; - } - - .bottom-md-5 { - bottom: 32px; - } - - .left-md-5 { - left: 32px; - } - - .top-md-n5 { - top: -32px; - } - - .right-md-n5 { - right: -32px; - } - - .bottom-md-n5 { - bottom: -32px; - } - - .left-md-n5 { - left: -32px; - } - - .top-md-6 { - top: 40px; - } - - .right-md-6 { - right: 40px; - } - - .bottom-md-6 { - bottom: 40px; - } - - .left-md-6 { - left: 40px; - } - - .top-md-n6 { - top: -40px; - } - - .right-md-n6 { - right: -40px; - } - - .bottom-md-n6 { - bottom: -40px; - } - - .left-md-n6 { - left: -40px; - } - - .top-md-7 { - top: 48px; - } - - .right-md-7 { - right: 48px; - } - - .bottom-md-7 { - bottom: 48px; - } - - .left-md-7 { - left: 48px; - } - - .top-md-n7 { - top: -48px; - } - - .right-md-n7 { - right: -48px; - } - - .bottom-md-n7 { - bottom: -48px; - } - - .left-md-n7 { - left: -48px; - } - - .top-md-8 { - top: 64px; - } - - .right-md-8 { - right: 64px; - } - - .bottom-md-8 { - bottom: 64px; - } - - .left-md-8 { - left: 64px; - } - - .top-md-n8 { - top: -64px; - } - - .right-md-n8 { - right: -64px; - } - - .bottom-md-n8 { - bottom: -64px; - } - - .left-md-n8 { - left: -64px; - } - - .top-md-9 { - top: 80px; - } - - .right-md-9 { - right: 80px; - } - - .bottom-md-9 { - bottom: 80px; - } - - .left-md-9 { - left: 80px; - } - - .top-md-n9 { - top: -80px; - } - - .right-md-n9 { - right: -80px; - } - - .bottom-md-n9 { - bottom: -80px; - } - - .left-md-n9 { - left: -80px; - } - - .top-md-10 { - top: 96px; - } - - .right-md-10 { - right: 96px; - } - - .bottom-md-10 { - bottom: 96px; - } - - .left-md-10 { - left: 96px; - } - - .top-md-n10 { - top: -96px; - } - - .right-md-n10 { - right: -96px; - } - - .bottom-md-n10 { - bottom: -96px; - } - - .left-md-n10 { - left: -96px; - } - - .top-md-11 { - top: 112px; - } - - .right-md-11 { - right: 112px; - } - - .bottom-md-11 { - bottom: 112px; - } - - .left-md-11 { - left: 112px; - } - - .top-md-n11 { - top: -112px; - } - - .right-md-n11 { - right: -112px; - } - - .bottom-md-n11 { - bottom: -112px; - } - - .left-md-n11 { - left: -112px; - } - - .top-md-12 { - top: 128px; - } - - .right-md-12 { - right: 128px; - } - - .bottom-md-12 { - bottom: 128px; - } - - .left-md-12 { - left: 128px; - } - - .top-md-n12 { - top: -128px; - } - - .right-md-n12 { - right: -128px; - } - - .bottom-md-n12 { - bottom: -128px; - } - - .left-md-n12 { - left: -128px; - } -} - -@media (min-width: 1012px) { - .top-lg-0 { - top: 0; - } - - .right-lg-0 { - right: 0; - } - - .bottom-lg-0 { - bottom: 0; - } - - .left-lg-0 { - left: 0; - } - - .top-lg-1 { - top: 4px; - } - - .right-lg-1 { - right: 4px; - } - - .bottom-lg-1 { - bottom: 4px; - } - - .left-lg-1 { - left: 4px; - } - - .top-lg-n1 { - top: -4px; - } - - .right-lg-n1 { - right: -4px; - } - - .bottom-lg-n1 { - bottom: -4px; - } - - .left-lg-n1 { - left: -4px; - } - - .top-lg-2 { - top: 8px; - } - - .right-lg-2 { - right: 8px; - } - - .bottom-lg-2 { - bottom: 8px; - } - - .left-lg-2 { - left: 8px; - } - - .top-lg-n2 { - top: -8px; - } - - .right-lg-n2 { - right: -8px; - } - - .bottom-lg-n2 { - bottom: -8px; - } - - .left-lg-n2 { - left: -8px; - } - - .top-lg-3 { - top: 16px; - } - - .right-lg-3 { - right: 16px; - } - - .bottom-lg-3 { - bottom: 16px; - } - - .left-lg-3 { - left: 16px; - } - - .top-lg-n3 { - top: -16px; - } - - .right-lg-n3 { - right: -16px; - } - - .bottom-lg-n3 { - bottom: -16px; - } - - .left-lg-n3 { - left: -16px; - } - - .top-lg-4 { - top: 24px; - } - - .right-lg-4 { - right: 24px; - } - - .bottom-lg-4 { - bottom: 24px; - } - - .left-lg-4 { - left: 24px; - } - - .top-lg-n4 { - top: -24px; - } - - .right-lg-n4 { - right: -24px; - } - - .bottom-lg-n4 { - bottom: -24px; - } - - .left-lg-n4 { - left: -24px; - } - - .top-lg-5 { - top: 32px; - } - - .right-lg-5 { - right: 32px; - } - - .bottom-lg-5 { - bottom: 32px; - } - - .left-lg-5 { - left: 32px; - } - - .top-lg-n5 { - top: -32px; - } - - .right-lg-n5 { - right: -32px; - } - - .bottom-lg-n5 { - bottom: -32px; - } - - .left-lg-n5 { - left: -32px; - } - - .top-lg-6 { - top: 40px; - } - - .right-lg-6 { - right: 40px; - } - - .bottom-lg-6 { - bottom: 40px; - } - - .left-lg-6 { - left: 40px; - } - - .top-lg-n6 { - top: -40px; - } - - .right-lg-n6 { - right: -40px; - } - - .bottom-lg-n6 { - bottom: -40px; - } - - .left-lg-n6 { - left: -40px; - } - - .top-lg-7 { - top: 48px; - } - - .right-lg-7 { - right: 48px; - } - - .bottom-lg-7 { - bottom: 48px; - } - - .left-lg-7 { - left: 48px; - } - - .top-lg-n7 { - top: -48px; - } - - .right-lg-n7 { - right: -48px; - } - - .bottom-lg-n7 { - bottom: -48px; - } - - .left-lg-n7 { - left: -48px; - } - - .top-lg-8 { - top: 64px; - } - - .right-lg-8 { - right: 64px; - } - - .bottom-lg-8 { - bottom: 64px; - } - - .left-lg-8 { - left: 64px; - } - - .top-lg-n8 { - top: -64px; - } - - .right-lg-n8 { - right: -64px; - } - - .bottom-lg-n8 { - bottom: -64px; - } - - .left-lg-n8 { - left: -64px; - } - - .top-lg-9 { - top: 80px; - } - - .right-lg-9 { - right: 80px; - } - - .bottom-lg-9 { - bottom: 80px; - } - - .left-lg-9 { - left: 80px; - } - - .top-lg-n9 { - top: -80px; - } - - .right-lg-n9 { - right: -80px; - } - - .bottom-lg-n9 { - bottom: -80px; - } - - .left-lg-n9 { - left: -80px; - } - - .top-lg-10 { - top: 96px; - } - - .right-lg-10 { - right: 96px; - } - - .bottom-lg-10 { - bottom: 96px; - } - - .left-lg-10 { - left: 96px; - } - - .top-lg-n10 { - top: -96px; - } - - .right-lg-n10 { - right: -96px; - } - - .bottom-lg-n10 { - bottom: -96px; - } - - .left-lg-n10 { - left: -96px; - } - - .top-lg-11 { - top: 112px; - } - - .right-lg-11 { - right: 112px; - } - - .bottom-lg-11 { - bottom: 112px; - } - - .left-lg-11 { - left: 112px; - } - - .top-lg-n11 { - top: -112px; - } - - .right-lg-n11 { - right: -112px; - } - - .bottom-lg-n11 { - bottom: -112px; - } - - .left-lg-n11 { - left: -112px; - } - - .top-lg-12 { - top: 128px; - } - - .right-lg-12 { - right: 128px; - } - - .bottom-lg-12 { - bottom: 128px; - } - - .left-lg-12 { - left: 128px; - } - - .top-lg-n12 { - top: -128px; - } - - .right-lg-n12 { - right: -128px; - } - - .bottom-lg-n12 { - bottom: -128px; - } - - .left-lg-n12 { - left: -128px; - } -} - -.offset-n1 { - margin-left: -8.33333333%; -} - -.offset-n2 { - margin-left: -16.66666666%; -} - -.offset-n3 { - margin-left: -24.99999999%; -} - -.offset-n4 { - margin-left: -33.33333332%; -} - -.offset-n5 { - margin-left: -41.66666665%; -} - -.offset-n6 { - margin-left: -49.99999998%; -} - -.offset-n7 { - margin-left: -58.33333331%; -} - -@media (min-width: 544px) { - .offset-sm-n1 { - margin-left: -8.33333333%; - } - - .offset-sm-n2 { - margin-left: -16.66666666%; - } - - .offset-sm-n3 { - margin-left: -24.99999999%; - } - - .offset-sm-n4 { - margin-left: -33.33333332%; - } - - .offset-sm-n5 { - margin-left: -41.66666665%; - } - - .offset-sm-n6 { - margin-left: -49.99999998%; - } - - .offset-sm-n7 { - margin-left: -58.33333331%; - } -} - -@media (min-width: 768px) { - .offset-md-n1 { - margin-left: -8.33333333%; - } - - .offset-md-n2 { - margin-left: -16.66666666%; - } - - .offset-md-n3 { - margin-left: -24.99999999%; - } - - .offset-md-n4 { - margin-left: -33.33333332%; - } - - .offset-md-n5 { - margin-left: -41.66666665%; - } - - .offset-md-n6 { - margin-left: -49.99999998%; - } - - .offset-md-n7 { - margin-left: -58.33333331%; - } -} - -@media (min-width: 1012px) { - .offset-lg-n1 { - margin-left: -8.33333333%; - } - - .offset-lg-n2 { - margin-left: -16.66666666%; - } - - .offset-lg-n3 { - margin-left: -24.99999999%; - } - - .offset-lg-n4 { - margin-left: -33.33333332%; - } - - .offset-lg-n5 { - margin-left: -41.66666665%; - } - - .offset-lg-n6 { - margin-left: -49.99999998%; - } - - .offset-lg-n7 { - margin-left: -58.33333331%; - } -} - -@media (min-width: 1280px) { - .offset-xl-n1 { - margin-left: -8.33333333%; - } - - .offset-xl-n2 { - margin-left: -16.66666666%; - } - - .offset-xl-n3 { - margin-left: -24.99999999%; - } - - .offset-xl-n4 { - margin-left: -33.33333332%; - } - - .offset-xl-n5 { - margin-left: -41.66666665%; - } - - .offset-xl-n6 { - margin-left: -49.99999998%; - } - - .offset-xl-n7 { - margin-left: -58.33333331%; - } -} - -.width-auto { - width: auto; -} - -.height-auto { - height: auto; -} - -.object-fit-cover { - object-fit: cover; -} - -.z-1 { - z-index: 1; -} - -.z-2 { - z-index: 2; -} - -.z-3 { - z-index: 3; -} - -.z-n1 { - z-index: -1; -} - -.z-n2 { - z-index: -2; -} - -.box-shadow-default-mktg { - box-shadow: 0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017); -} - -.box-shadow-active-mktg { - box-shadow: 0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); -} - -.box-shadow-card-mktg { - box-shadow: 0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02); -} - -.box-shadow-default-border-mktg { - box-shadow: 0 0 0 1px rgba(53,72,91,.14),0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017); -} - -.box-shadow-active-border-mktg { - box-shadow: 0 0 0 1px rgba(53,72,91,.14),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); -} - -.box-shadow-active-border-inverse-mktg { - box-shadow: 0 0 0 1px rgba(0,0,0,.5),0 70px 65px rgba(0,0,0,.18),0 30px 30px rgba(0,0,0,.14),0 15px 15px rgba(0,0,0,.12),0 10px 8px rgba(0,0,0,.1),0 4px 4px rgba(0,0,0,.08),0 2px 2px rgba(0,0,0,.06); -} - -.box-shadow-active-border-light-mktg { - box-shadow: 0 0 0 1px rgba(255,255,255,.1),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); -} - -.box-shadow-card-border-mktg { - box-shadow: 0 0 0 1px rgba(53,72,91,.14),0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02); -} - -[data-color-mode=dark] .box-shadow-card-border-mktg { - box-shadow: 0 0 0 1px rgba(255,255,255,.1); -} - -[data-color-mode=light] .box-shadow-card-border-mktg { - box-shadow: 0 0 0 1px rgba(53,72,91,.14),0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02); -} - -.box-shadow-card-border-inverse-mktg { - box-shadow: 0 0 0 1px rgba(0,0,0,.5),0 97px 77px rgba(0,0,0,.02),0 40px 32px rgba(0,0,0,.02),0 21.6px 17px rgba(0,0,0,.03),0 12px 9.7px rgba(0,0,0,.04),0 6.4px 5px rgba(0,0,0,.04),0 2.7px 2.1px rgba(0,0,0,.07); -} - -.box-shadow-card-border-light-mktg { - box-shadow: 0 0 0 1px rgba(255,255,255,.1),0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02); -} - -.box-shadow-mktg-xl { - box-shadow: 0 2.74416px 2.74416px rgba(0,0,0,.0274351),0 5.48831px 5.48831px rgba(0,0,0,.0400741),0 13.7208px 10.9766px rgba(0,0,0,.0499982),0 20.5812px 20.5812px rgba(0,0,0,.0596004),0 41.1623px 41.1623px rgba(0,0,0,.0709366),0 96.0454px 89.1851px rgba(0,0,0,.09); -} - -.box-shadow-card-dark-mktg { - position: relative; - box-shadow: 0 0 0 1px #000,0 30px 30px rgba(0,0,0,.07),0 15px 15px rgba(0,0,0,.06),0 10px 8px rgba(0,0,0,.05),0 4px 4px rgba(0,0,0,.04),0 2px 2px rgba(0,0,0,.03); -} - -.box-shadow-card-dark-mktg::after { - position: absolute; - top: 0; - left: 0; - display: block; - width: 100%; - height: 100%; - pointer-events: none; - content: ""; - border-radius: inherit; - box-shadow: inset 0 1px 1px rgba(255,255,255,.1); -} - -.opacity-4 { - opacity: .4; -} - -.text-gray-mktg { - color: #627597; -} - -.text-gray-dark-mktg { - color: #040d21; -} - -.text-gray-light-mktg { - color: #8193b2; -} - -.text-purple-mktg { - color: #6f57ff; - transition: color .4s; -} - -a.text-purple-mktg:hover { - color: #614eda; -} - -.text-white-fade { - color: rgba(255,255,255,.7); -} - -.code-green { - color: #0dbc79; -} - -.code-pink { - color: #ea4aaa; -} - -.bg-gray-dark-mktg { - background-color: #040d21; -} - -.bg-blue-dark { - background-color: #032f62; -} - -.bg-radial-white { - background: radial-gradient(145.3% 145.3% at 65.91% 0%, #fff 0%, #f0f0f0 100%); -} - -.bg-gray-800-mktg { - background-color: #0c162d; -} - -.text-gradient-mint-blue-dark { - background: -webkit-linear-gradient(-70deg, #a2facf 0%, #64acff 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-coral-yellow-dark { - background: -webkit-linear-gradient(-70deg, #ff7170 0%, #ffe57f 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-turq-purple-dark { - background: -webkit-linear-gradient(-70deg, #3bf0e4 0%, #bca1f7 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-blue-green { - background: -webkit-linear-gradient(-70deg, #2188ff 0%, #01a49e 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-red-orange { - background: -webkit-linear-gradient(-70deg, #ed4e50 0%, #f06f00 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-purple-coral { - background: -webkit-linear-gradient(-70deg, #9867f0 0%, #ed4e50 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-blue-purple { - background: -webkit-linear-gradient(-70deg, #2188ff 0%, #804eda 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-mint-blue { - background: linear-gradient(271.72deg, #a2facf 7.09%, #64acff 96.61%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; -} - -.text-gradient-pink-blue { - background: -webkit-linear-gradient(-70deg, #db469f 0%, #2188ff 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-mktg { - background: -webkit-linear-gradient(-70deg, var(--mktg-accent-primary, #9867f0) 0%, var(--mktg-accent-secondary, #ed4e50) 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-copilot { - background: -webkit-linear-gradient(300deg, #93f5ec 20%, #a77bf3 70%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.text-gradient-premium-support { - background: -webkit-linear-gradient(0deg, #79c0ff 0%, #d2a8ff 57.57%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; -} - -.gradient-border-mktg { - position: relative; -} - -.gradient-border-mktg::before { - position: absolute; - top: -1px; - left: -1px; - z-index: -1; - width: 100%; - height: 100%; - content: ""; - background-image: linear-gradient(var(--bgColor-default, var(--color-canvas-default)), var(--bgColor-default, var(--color-canvas-default))),radial-gradient(circle at top left, var(--mktg-accent-primary, #9867f0), var(--mktg-accent-secondary, #ed4e50)); - background-clip: content-box,border-box; - background-origin: border-box; - border: double 1px transparent; - border-radius: 2em; -} - -:root [data-color-mode=dark] { - --color-canvas-default: #0d1117; -} - -.by-2 > * + * { - margin-top: 8px; -} - -@media (min-width: 1012px) { - .bx-lg-2 > * + * { - margin-left: 8px; - } -} - -@media (min-width: 768px) { - .bx-md-4 > * + * { - margin-left: 24px; - } -} - -@media (min-width: 768px) { - .by-md-0 > * + * { - margin-top: 0; - } -} - -@media (min-width: 1012px) { - .by-lg-0 > * + * { - margin-top: 0; - } -} - -.col-5-max { - width: 100%; - max-width: 33.75rem; -} - -@media (min-width: 544px) { - .col-5-max { - max-width: 34.375rem; - } -} - -@media (min-width: 544px) { - .col-5-max { - max-width: 33.75rem; - } -} - -.col-6-max { - width: 100%; - max-width: 40.5rem; -} - -@media (min-width: 544px) { - .col-6-max { - max-width: 41.25rem; - } -} - -@media (min-width: 1012px) { - .col-6-max { - max-width: 40.5rem; - } -} - -.col-7-max { - width: 100%; - max-width: 47.25rem; -} - -@media (min-width: 544px) { - .col-7-max { - max-width: 48.125rem; - } -} - -@media (min-width: 1012px) { - .col-7-max { - max-width: 47.25rem; - } -} - -.col-8-max { - width: 100%; - max-width: 54rem; -} - -@media (min-width: 544px) { - .col-8-max { - max-width: 55rem; - } -} - -@media (min-width: 1012px) { - .col-8-max { - max-width: 54rem; - } -} - -.col-9-max { - width: 100%; - max-width: 60.75rem; -} - -@media (min-width: 544px) { - .col-9-max { - max-width: 61.875rem; - } -} - -@media (min-width: 1012px) { - .col-9-max { - max-width: 61.5rem; - } -} - -.col-10-max { - width: 100%; - max-width: 67.5rem; -} - -@media (min-width: 544px) { - .col-10-max { - max-width: 68.75rem; - } -} - -@media (min-width: 1012px) { - .col-10-max { - max-width: 67.5rem; - } -} - -.container-xxl { - max-width: 1548px; - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 544px) { - .gutter-sm-0 { - margin-right: 0rem; - margin-left: 0rem; - } - - .gutter-sm-0 > [class*=col-] { - padding-right: 0rem; - padding-left: 0rem; - } -} - -@media (min-width: 768px) { - .gutter-md-0 { - margin-right: 0rem; - margin-left: 0rem; - } - - .gutter-md-0 > [class*=col-] { - padding-right: 0rem; - padding-left: 0rem; - } -} - -@media (min-width: 1012px) { - .gutter-lg-0 { - margin-right: 0rem; - margin-left: 0rem; - } - - .gutter-lg-0 > [class*=col-] { - padding-right: 0rem; - padding-left: 0rem; - } -} - -@media (min-width: 1280px) { - .top-xl-0 { - top: 0; - } -} - -@media (min-width: 1280px) { - .top-xl-3 { - top: 16px; - } -} - -@media (min-width: 1280px) { - .top-xl-5 { - top: 32px; - } -} - -@media (min-width: 1280px) { - .top-xl-n5 { - top: -32px; - } -} - -@media (min-width: 1280px) { - .top-xl-n10 { - top: -96px; - } -} - -@media (min-width: 1280px) { - .top-xl-n12 { - top: -128px; - } -} - -@media (min-width: 1280px) { - .right-xl-0 { - right: 0; - } -} - -@media (min-width: 768px) { - .left-md-auto.left-md-auto { - left: auto; - } -} - -.wide-block { - max-width: 1464px; - padding: 6.5rem 0 0; - background-color: #040d21; -} - -@media (min-width: 1464px) { - .wide-block { - border-radius: 1rem; - } -} - -@media (max-width: 1464px) { - .wide-block-container { - overflow: hidden; - } -} - -@media (min-width: 1464px) { - .wide-block-container { - margin-bottom: 80px; - } -} - -.img-responsive { - display: block; - width: 100%; - max-width: 100%; - height: auto; -} - -.underlined-mktg { - position: relative; - text-decoration: none; -} - -.underlined-mktg::after { - position: absolute; - bottom: -0.15em; - left: 0; - display: block; - width: 100%; - height: 1px; - pointer-events: none; - content: ""; - background-color: currentColor; - opacity: .5; - transition: opacity .3s ease; -} - -.underlined-mktg:hover::after { - opacity: 1; -} - -.cursor-pointer { - cursor: pointer; -} - -.events-none { - pointer-events: none; -} - -.events-auto { - pointer-events: auto; -} - -@media (min-width: 1012px) { - .mr-lg-9 { - margin-right: 80px; - } -} - -.my-auto { - margin-top: auto; - margin-bottom: auto; -} - -.mr-7 { - margin-right: 48px; -} - -.ml-n7 { - margin-left: -48px; -} - -@media (min-width: 768px) { - .pt-md-0 { - margin-bottom: 0; - } - - .py-md-7 { - padding-top: 48px; - padding-bottom: 48px; - } - - .px-md-8 { - padding-right: 64px; - padding-left: 64px; - } - - .px-md-10 { - padding-right: 96px; - padding-left: 96px; - } -} - -@media (min-width: 1012px) { - .px-lg-8 { - padding-right: 64px; - padding-left: 64px; - } -} - -@font-face { - font-family: "Mona Sans"; - src: url("/static/fonts/github/mona-sans.woff2") format("woff2 supports variations"),url("/static/fonts/github/mona-sans.woff2") format("woff2-variations"); - font-weight: 200 900; - font-stretch: 75% 125%; - font-display: swap; -} - -@font-face { - font-family: "Hubot Sans"; - src: url("/static/fonts/github/hubot-sans.woff2") format("woff2 supports variations"),url("/static/fonts/github/hubot-sans.woff2") format("woff2-variations"); - font-weight: 200 900; - font-stretch: 75% 125%; - font-display: swap; -} - -@font-face { - font-family: "Mona Sans Fallback"; - size-adjust: 108.5%; - ascent-override: 82%; - src: local(Arial); -} - -@font-face { - font-family: "Mona Sans Header Fallback"; - size-adjust: 102.7%; - ascent-override: 82%; - src: local(Arial Bold); -} - -.font-mktg { - font-family: "Mona Sans","Mona Sans Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - word-break: keep-all; -} - -.font-mktg .text-semibold { - font-weight: 600; -} - -.font-mktg .text-bold { - font-family: "Mona Sans","Mona Sans Header Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-weight: 700; -} - -.font-mktg .text-italic { - font-variation-settings: "ital" 10; - font-synthesis: none; -} - -.font-mktg [data-color-mode=dark] { - --color-fg-default: #fff ; -} - -.font-mktg .font-alt-mktg { - font-family: "Hubot Sans","Mona Sans","Mona Sans Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-feature-settings: "liga","ss02"; -} - -.h0-mktg { - font-weight: 600; - letter-spacing: -0.03em; -} - -@media (min-width: 1012px) { - .h0-mktg { - font-size: 80px; - line-height: 80px; - } -} - -.h0-mktg, -.h1-mktg, -.h2-mktg, -.h3-mktg, -.h4-mktg, -.h5-mktg { - font-family: "Mona Sans","Mona Sans Header Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-feature-settings: unset; -} - -.f0-mktg, -.f1-mktg, -.f2-mktg, -.f3-mktg, -.f4-mktg, -.f5-mktg, -.f6-mktg { - font-feature-settings: unset; -} - -.text-ultra-light { - font-weight: 200; -} - -.text-medium { - font-weight: 500; -} - -.text-extrabold { - font-family: "Mona Sans","Mona Sans Header Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-weight: 800; -} - -.text-heavy { - font-family: "Mona Sans","Mona Sans Header Fallback",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; - font-weight: 900; -} - -.lh-condensed-mktg { - line-height: 1.1; -} - -.btn-mktg { - padding-top: 1rem; - padding-bottom: 1rem; -} - -.btn-small-mktg { - padding: .7rem 1rem; -} - -.btn-large-mktg { - padding: 18px 30px; -} - -.text-spaced { - letter-spacing: .075em; -} - -.line-clamp-2 { - display: -webkit-box; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical; - overflow: hidden; -} - -.river-mktg em { - font-style: normal; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.river-mktg strike { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.river-mktg p code { - font-size: 90%; -} - -.river-mktg code i { - font-style: normal; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.feature-card-mktg em { - font-style: normal; - color: var(--fgColor-default, var(--color-fg-default)); -} - -.feature-card-mktg .color-fg-muted { - color: rgba(235,245,255,.5); -} - -.arrow-target-mktg .octicon { - width: auto; - height: auto; -} - -.arrow-target-mktg .arrow-symbol-mktg { - width: 1em; - height: 1em; -} - -.card-icon-mktg .octicon { - width: 20px; - height: 20px; -} - -.text-extra-condensed { - font-stretch: 75%; -} - -.text-condensed { - font-stretch: 87.5%; -} - -.text-expanded { - font-stretch: 125%; -} - -.unselectable { - -webkit-user-select: none; - user-select: none; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.pre-line { - white-space: pre-line; -} - -.hanging-quote-mktg { - position: relative; -} - -.hanging-quote-mktg::before { - position: absolute; - top: 0; - left: 0; - font-size: 1em; - font-weight: 700; - line-height: 1; - pointer-events: none; - content: "“"; - background: var(--mktg-accent-primary); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - transform: translateY(-60%); - clip-path: polygon(0 0, 100% 0, 100% 98%, 0 98%); -} - -@media (min-width: 768px) { - .hanging-quote-mktg::before { - transform: translateX(-130%); - } -} - -.build-in-fade { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); -} - -.build-in-fade.build-in-animate { - opacity: 1; -} - -.build-out-fade { - opacity: 1; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); -} - -.build-out-fade.build-in-animate { - opacity: 0; -} - -.build-in-slideY { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: translateY(15px); -} - -.build-in-slideY.build-in-animate { - opacity: 1; - transform: translateY(0); -} - -.build-in-slideX-left { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: translateX(-15px); -} - -.build-in-slideX-left.build-in-animate { - opacity: 1; - transform: translateX(0); -} - -.build-in-slideX-right { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: translateX(15px); -} - -.build-in-slideX-right.build-in-animate { - opacity: 1; - transform: translateX(0); -} - -.build-in-scale-up { - opacity: 0; - transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1),transform .7s cubic-bezier(0.16, 1, 0.3, 1); - transform: scale(0.96) translateY(24px); -} - -.build-in-scale-up.build-in-animate { - opacity: 1; - transform: scale(1) translateY(0); -} - -.build-in-scale-down { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: translateY(-50px) scale(0); -} - -.build-in-scale-down.build-in-animate { - opacity: 1; - transform: translateY(0); -} - -.build-in-scale-right { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: scale(0.9) translateX(-20px); -} - -.build-in-scale-right.build-in-animate { - opacity: 1; - transform: translateY(0); -} - -.build-in-scale-left { - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: scale(0.9) translateX(20px); -} - -.build-in-scale-left.build-in-animate { - opacity: 1; - transform: translateY(0); -} - -.build-in-scale-fade { - opacity: 0; - transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1),transform .7s cubic-bezier(0.16, 1, 0.3, 1); - transform: scale(0.96); -} - -.build-in-scale-fade.build-in-animate { - opacity: 1; - transform: scale(1); -} - -.build-in-reduced { - transition-delay: 0s; - transition-duration: 0s; - animation-duration: 0s; - animation-delay: 0s; -} - -.build-in-reduced * { - transition-delay: 0s; - transition-duration: 0s; - animation-duration: 0s; - animation-delay: 0s; -} - -@keyframes fade-in { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -@keyframes float-translate { - 50% { - transform: translateY(-7px); - } -} - -@keyframes float { - 0% { - transform: rotate(10deg) translateY(0); - } - - 50% { - transform: rotate(5deg) translateY(-10px); - } - - 100% { - transform: rotate(10deg) translateY(0); - } -} - -.animation-is-typing { - position: relative; -} - -.animation-is-typing::before { - position: absolute; - top: 0; - right: -0.8em; - bottom: 0; - display: block; - height: 100%; - margin-top: auto; - margin-bottom: auto; - font-size: 1em; - line-height: 1em; - content: "▊"; -} - -.build-in-animate .animation-is-typing::before { - animation: BlinkingCursor .75s infinite; -} - -@keyframes BlinkingCursor { - 0%, - 45% { - opacity: 1; - } - - 55%, - 100% { - opacity: 0; - } -} - -.animate-float { - animation: float 12s ease-in-out infinite; -} - -.header-white .header-logged-out, -.header-white .Header { - background-color: #fff; -} - -.header-white .header-logged-out:not(.open), -.header-white .Header:not(.open) { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.header-white .header-logged-out:not(.open) .HeaderMenu-toggle-bar, -.header-white .Header:not(.open) .HeaderMenu-toggle-bar { - background-color: var(--fgColor-default, var(--color-fg-default)); -} - -.header-white .Header-link, -.header-white .HeaderMenu-link { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.header-white .Header-link:hover, -.header-white .HeaderMenu-link:hover { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -@media (min-width: 1012px) { - .header-white .header-search-wrapper { - background: #dfdfdf; - border-color: transparent; - } -} - -.header-white header:not(.header-logged-out) .header-search-wrapper, -.header-white header:not(.header-logged-out) .search-input-container { - background: #dfdfdf; - border-color: transparent; -} - -.header-white header:not(.header-logged-out) .header-search-button, -.header-white header:not(.header-logged-out) .header-search-input { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.header-white header:not(.header-logged-out) .header-search-button.placeholder, -.header-white header:not(.header-logged-out) .header-search-input::placeholder { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.header-white .notification-indicator .mail-status { - border-color: #fff; -} - -.header-white-transparent .header-logged-out, -.header-white-transparent .Header { - background-color: transparent; -} - -.header-dark .Header-old, -.header-dark .Header, -.header-dark .AppHeader { - --AppHeader-bg: rgb(13, 17, 23); - background-color: var(--AppHeader-bg); -} - -.header-black .Header-old, -.header-black .Header, -.header-black .AppHeader { - --AppHeader-bg: black; - background-color: var(--AppHeader-bg); -} - -.header-overlay .header-logged-out, -.header-overlay .Header, -.header-overlay .AppHeader { - position: absolute; - right: 0; - left: 0; -} - -.header-overlay .AppHeader { - --AppHeader-bg: transparent; - z-index: 2; -} - -.header-overlay .header-logged-out, -.header-overlay .Header:not(.open) { - background-color: transparent; -} - -@media (min-width: 1012px) { - .header-overlay .header-search-wrapper { - background-color: rgba(46,55,74,.82); - } -} - -.header-overlay .Header-button, -.header-overlay .search-input-container { - background-color: rgba(46,55,74,.82); -} - -.header-overlay .header-overlay-hide-flash { - display: none; -} - -.header-overlay .Header-old.header-logged-out + .stale-session-flash { - top: 72px; - z-index: 2; -} - -.header-overlay .AppHeader, -.header-overlay .AppHeader .form-control, -.header-overlay .AppHeader .AppHeader-button, -.header-dark .AppHeader, -.header-dark .AppHeader .form-control, -.header-dark .AppHeader .AppHeader-button, -.header-black .AppHeader, -.header-black .AppHeader .form-control, -.header-black .AppHeader .AppHeader-button { - box-shadow: none; -} - -.header-overlay .AppHeader, -.header-overlay .AppHeader .AppHeader-logo > *, -.header-overlay .AppHeader .AppHeader-logo .octicon-mark-github, -.header-overlay .AppHeader .AppHeader-button, -.header-dark .AppHeader, -.header-dark .AppHeader .AppHeader-logo > *, -.header-dark .AppHeader .AppHeader-logo .octicon-mark-github, -.header-dark .AppHeader .AppHeader-button, -.header-black .AppHeader, -.header-black .AppHeader .AppHeader-logo > *, -.header-black .AppHeader .AppHeader-logo .octicon-mark-github, -.header-black .AppHeader .AppHeader-button { - color: #fff; -} - -[data-color-mode=dark] .footer-logo-mktg { - color: var(--color-scale-white); -} - -.testimonial-logo { - height: 3rem; -} - -.testimonial-avatar { - width: 5rem; - height: 5rem; - border: 4px solid #fff; -} - -.testimonial-image-blend { - mix-blend-mode: color-burn; -} - -.terminal-mktg { - min-height: 280px; -} - -.terminal-mktg a { - color: var(--fgColor-default, var(--color-fg-default)); -} - -.terminal-mktg var { - font-style: normal; - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.terminal-mktg em { - font-style: normal; - color: var(--fgColor-success, var(--color-success-fg)); -} - -.terminal-mktg del { - color: var(--fgColor-danger, var(--color-danger-fg)); - text-decoration: none; -} - -.site-subnav { - box-shadow: 0 1px 0 rgba(0,0,0,.1); -} - -.subnav-link { - font-size: 12px; - color: var(--fgColor-muted, var(--color-fg-muted)); - cursor: pointer; - border: 0; - border-bottom: 2px solid transparent; - transition: border-bottom-color .4s; -} - -@media (min-width: 768px) { - .subnav-link { - font-size: 14px; - } -} - -.subnav-link:hover { - color: var(--fgColor-default, var(--color-fg-default)); - border-bottom-color: var(--borderColor-default, var(--color-border-default)); -} - -.subnav-link.selected { - font-weight: 600; - color: var(--fgColor-default, var(--color-fg-default)); - border-bottom-color: #1074e7; -} - -.subnav-primary { - flex-basis: 100%; - border-bottom-color: transparent; -} - -@media (min-width: 768px) { - .subnav-primary { - flex-basis: auto; - } -} - -.subnav-primary:hover { - border-bottom-color: transparent; -} - -@media (min-width: 768px) { - .subnav-primary:hover { - border-bottom-color: var(--borderColor-default, var(--color-border-default)); - } -} - -.subnav-primary.selected { - border-bottom-color: transparent; -} - -@media (min-width: 768px) { - .subnav-primary.selected { - border-bottom-color: #1074e7; - } -} - -.site-subnav-sticky { - position: sticky; - top: 0; - z-index: 21; -} - -.site-subnav-sticky.is-stuck { - background-clip: padding-box; -} - -.pattern-container { - height: 160%; -} - -.resource-card { - transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1); -} - -.resource-card::before { - position: absolute; - top: 0; - left: 0; - z-index: -1; - width: 100%; - height: 100%; - content: ""; - border-radius: inherit; - box-shadow: 0 4px 14px rgba(0,0,0,.1); - opacity: 0; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1); -} - -.resource-card:hover { - transform: scale3d(1.025, 1.025, 1); -} - -.resource-card:hover::before { - opacity: 1; -} - -.resource-card:hover .octicon-chevrow, -.resource-card:focus .octicon-chevrow { - transform: translateX(8px); -} - -.read-more-link::before { - position: absolute; - top: 0; - left: 0%; - width: 100%; - height: 100%; - content: ""; - box-shadow: 0 1px 1px rgba(0,0,0,.1),0 2px 2px rgba(0,0,0,.1),0 4px 4px rgba(0,0,0,.1),0 8px 8px rgba(0,0,0,.1),0 16px 16px rgba(0,0,0,.1); - opacity: 0; - transition: opacity .6s ease; -} - -.read-more-link:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} - -.read-more-link:first-child::before { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} - -.read-more-link:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; -} - -.read-more-link:last-child::before { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; -} - -.read-more-link:hover::before { - opacity: 1; -} - -.read-more-link ~ .read-more-link { - border-top: 1px solid var(--borderColor-default, var(--color-border-default)); -} - -.icon-container { - width: 6rem; - height: 6rem; - line-height: 5.75rem; - background: radial-gradient(227.48% 373.86% at 50% 220.45%, #9e7bff 31.77%, #3d8bd3 100%); -} - -.icon-container img { - width: 3.5rem; - height: 3.5rem; -} - -.looping-mktg[loop]:hover { - cursor: url("/images/modules/site/icons/cursor-pause.svg"),auto; -} - -.looping-paused-mktg[loop]:hover { - cursor: url("/images/modules/site/icons/cursor-play.svg"),auto; -} - -@media screen and (prefers-reduced-motion: no-preference) { - .img-reduced-motion { - display: none; - } -} - -@media screen and (prefers-reduced-motion: reduce) { - .video-reduced-motion { - display: none; - } -} - -.video-responsive { - position: relative; - max-width: 100%; - height: 0; - padding-bottom: 56.25%; -} - -.video-responsive iframe, -.video-responsive object, -.video-responsive embed { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -.togglevideo .togglevideo-hidewhencollapsed { - display: none; -} - -.togglevideo.is-expanded .togglevideo-hidewhenexpanded { - display: none; -} - -.togglevideo.is-expanded .togglevideo-showwhenexpanded { - display: block; -} - -.SegmentedNav .selected { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.SegmentedContent { - display: none; -} - -.SegmentedContent.active { - display: block; -} - -.SegmentedNav .UnderlineNav-item.selected { - border-bottom-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.SegmentedNav .subnav-item { - background-color: var(--bgColor-default, var(--color-canvas-default)); -} - -.SegmentedNav .subnav-item:hover, -.SegmentedNav .subnav-item:focus { - background-color: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.SegmentedNav .subnav-item.selected { - color: var(--fgColor-onEmphasis, var(--color-fg-on-emphasis)); - background-color: var(--bgColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.fade-img-to-white-bg::before, -.fade-img-to-white-bg::after { - display: block; - height: 8px; - content: ""; -} - -@media (min-width: 768px) { - .fade-img-to-white-bg::before, - .fade-img-to-white-bg::after { - height: 40px; - } -} - -.fade-img-to-white-bg::before { - background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%); -} - -.fade-img-to-white-bg::after { - background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%); -} - -.pricing-card-accordion[open] .octicon-chevron-right { - height: auto; - transform: rotate(90deg); -} - -.pricing-card-accordion:hover .pricing-card-accordion-state .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); -} - -.pricing-card-accordion-state .octicon { - color: var(--fgColor-muted, var(--color-fg-muted)); - transition: transform .09s ease-out; -} - -.diagonal_line_through { - position: relative; - display: inline-block; -} - -.diagonal_line_through::before { - position: absolute; - top: 50%; - right: 0; - width: 100%; - content: ""; - border-bottom-color: var(--borderColor-neutral-emphasis, var(--color-fg-subtle)); - border-bottom-style: solid; - border-bottom-width: 3px; - transform: skewY(45deg); -} - -.sub-nav-mktg.is-stuck { - background: var(--bgColor-default, var(--color-canvas-default)); - box-shadow: var(--shadow-resting-medium, var(--color-shadow-medium)),0 1px 1px rgba(0,0,0,.1); -} - -.sub-nav-mktg-shadow { - box-shadow: var(--sub-nav-mktg-shadow); -} - -:root { - --sub-nav-mktg-shadow: 0 0 0 1px rgba(53, 72, 91, 0.14), 0 3px 2px rgba(0, 0, 0, 0.04), 0 7px 7px rgba(0, 0, 0, 0.03); -} - -:root [data-color-mode=dark] { - --sub-nav-mktg-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 3px 2px rgba(0, 0, 0, 0.2), 0 7px 7px rgba(0, 0, 0, 0.15); -} - -.init-hidden:not(.is-stuck) { - visibility: hidden; -} - -@media (max-width: 1011px) { - .sub-nav-mktg-ctas { - display: none; - } -} - -@media (max-width: 1011px) { - .sub-nav-mktg.scrollnav:not(.is-stuck) { - visibility: hidden; - } - - .sub-nav-mktg-toggle:hover { - color: var(--fgColor-default, var(--color-fg-default)); - } - - .sub-nav-mktg.on .on-hidden { - display: none; - } - - .sub-nav-mktg.on .sub-nav-title-link { - margin-bottom: 8px; - } - - .sub-nav-mktg.on .sub-nav-mktg-link { - display: block; - } - - .sub-nav-mktg.on .sub-nav-mktg-link.active, - .sub-nav-mktg.on .sub-nav-mktg-link.selected { - color: var(--fgColor-accent, var(--color-accent-fg)); - } - - .sub-nav-mktg.on .sub-nav-mktg-wrapper { - display: block; - background-color: var(--bgColor-default, var(--color-canvas-default)); - } - - .sub-nav-mktg.on .sub-nav-mktg-ctas { - display: block; - padding-top: 8px; - } - - .sub-nav-mktg.on .sub-nav-mktg-links { - gap: 16px; - } - - .sub-nav-mktg.on::after { - position: fixed; - top: 0; - z-index: -1; - width: 100%; - height: 100%; - content: ""; - background: var(--overlay-backdrop-bgColor, var(--color-primer-canvas-backdrop)); - } - - .sub-nav-mktg.on::after, - .sub-nav-mktg.on .sub-nav-mktg-link, - .sub-nav-mktg.on .sub-nav-mktg-ctas { - animation: fade-in 300ms ease-in; - } - - .sub-nav-mktg:not(.on) .on-visible { - display: none; - } - - .sub-nav-mktg:not(.on) .sub-nav-mktg-links.with-title { - text-align: right; - } - - .sub-nav-mktg:not(.on) .sub-nav-mktg-link { - display: inline-block; - } - - .sub-nav-mktg:not(.on) .sub-nav-mktg-link:not(.active, .selected) { - display: none; - } -} - -@media (min-width: 1012px) { - .sub-nav-mktg-link { - position: relative; - } - - .sub-nav-mktg-link::after { - position: absolute; - bottom: 0; - left: 15%; - width: 70%; - height: 1px; - content: ""; - background-color: var(--fgColor-default, var(--color-fg-default)); - transition: transform .25s ease-in-out; - transform: scale(0); - } - - .sub-nav-mktg-link:hover::after { - background-color: var(--bgColor-accent-emphasis, var(--color-accent-fg)); - } - - .sub-nav-mktg-link:hover::after, - .sub-nav-mktg-link.active::after, - .sub-nav-mktg-link.selected::after { - transform: scale(1); - } - - .sub-nav-mktg-link.selected::after { - transition-delay: .2s; - } - - .sub-nav-mktg-ctas { - transition: opacity .5s; - } - - .sub-nav-mktg:not(.ctas-always-visible):not(.is-stuck) .sub-nav-mktg-ctas { - visibility: hidden; - opacity: 0; - } -} - -.faq-mktg summary::marker, -.faq-mktg summary::-webkit-details-marker { - display: none; -} - -.faq-mktg summary::after, -.faq-mktg summary::before { - position: absolute; - top: -8px; - bottom: 0; - left: 0; - display: block; - width: 23px; - height: 30px; - margin-top: auto; - margin-bottom: auto; - font-size: 32px; - line-height: 1em; - text-align: center; - background: linear-gradient(-70deg, var(--mktg-accent-primary, var(--color-fg-muted)) 0%, var(--mktg-accent-secondary, var(--color-fg-muted)) 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; - transition: transform .3s ease,opacity .2s ease; -} - -.faq-mktg summary::after { - content: "+"; -} - -.faq-mktg summary::before { - top: -12px; - font-weight: 700; - content: "-"; - opacity: 0; -} - -.faq-mktg details[open] summary::after { - opacity: 0; - transform: rotateZ(180deg); -} - -.faq-mktg details[open] summary::before { - opacity: 1; - transform: rotateZ(180deg); -} - -.faq-mktg details[open] div { - animation: fade-in .5s; -} - -.faq-mktg details ol, -.faq-mktg details ul { - margin-top: 16px; - margin-bottom: 16px; - margin-left: 16px; -} - -.faq-mktg-item-hover-effect { - height: 1px; - border-bottom-width: 3px; - transition: .3s transform; - transform: scaleY(0); - transform-origin: 50% 100%; -} - -.faq-mktg-item:hover .faq-mktg-item-hover-effect { - transform: scaleY(1); -} - -.code-editor-component .animation-is-typing::before { - content: "|"; -} - -[data-target="card-skew.shine"] { - width: 650px; - height: 650px; - background-color: var(--mktg-accent-primary); - filter: blur(180px); - border-radius: 300px; - opacity: 0; - transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1); - mix-blend-mode: soft-light; - will-change: transform; -} - -card-skew:hover [data-target="card-skew.shine"] { - opacity: .85; -} - -.timeline-list-item-mktg { - position: relative; -} - -.timeline-list-item-mktg:not(:last-child)::before { - position: absolute; - top: 4px; - left: 0; - height: 100%; - content: ""; - border-left: 2px solid var(--borderColor-default, var(--color-border-default)); -} - -.timeline-list-item-mktg::after { - position: absolute; - top: 8px; - left: -5px; - width: 8px; - height: 8px; - content: ""; - background: var(--bgColor-default, var(--color-canvas-default)); - border: 2px solid var(--borderColor-default, var(--color-border-default)); - border-radius: 50%; - box-shadow: 0 0 0 4px var(--bgColor-default, var(--color-canvas-default)); -} - -.eyebrow-banner { - max-width: 573px; - padding: 12px 16px; - background: rgba(1,1,1,.6); - background: linear-gradient(90deg, rgba(1, 1, 1, 0.6) 0%, rgba(1, 1, 1, 0.461139) 59.76%, rgba(1, 1, 1, 0) 100%); - border-color: #424b5b; - border-radius: 100px; -} - -@media (min-width: 768px) { - .eyebrow-banner { - padding: 14px 20px; - font-size: 16px; - } -} - -.eyebrow-banner-icon { - max-width: 36px; - max-height: 36px; -} - -@media (min-width: 768px) { - .eyebrow-banner-icon { - max-width: 44px; - max-height: 44px; - } -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -.before-after-toggle { - width: 60px; - height: 32px; -} - -.before-after-toggle-checkbox { - -webkit-appearance: none; - appearance: none; - cursor: pointer; - background-color: #24292f; - border-radius: 32px; -} - -.before-after-toggle-knob { - bottom: 5px; - left: 5px; - width: 22px; - height: 22px; - background-color: #fff; - border-radius: 50%; - transition: .4s transform cubic-bezier(0.16, 1, 0.3, 1); -} - -.before-after-toggle-checkbox:checked + .before-after-toggle-knob { - transform: translateX(28px); -} - -.before-after-slider { - width: 10%; - background: linear-gradient(90deg, transparent 80%, rgba(179, 146, 240, 0.3) 100%),linear-gradient(90deg, transparent 0%, rgba(9, 105, 218, 0.3) 100%); - border-width: 2px; - opacity: 0; - transition: transform 1s ease,opacity 1s ease; - transform: scaleX(-1); -} - -[data-toggled] .before-after-slider { - transform: translateX(900%); -} - -[data-animating] .before-after-slider { - opacity: 1; -} - -.after-element { - transition: -webkit-mask-size 1s ease; - transition: mask-size 1s ease; - transition: mask-size 1s ease, -webkit-mask-size 1s ease; - -webkit-mask: linear-gradient(#000 0 0) left no-repeat; - mask: linear-gradient(#000 0 0) left no-repeat; - -webkit-mask-size: 0% 100%; - mask-size: 0% 100%; -} - -[data-toggled] .after-element { - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (min-width: 768px) { - .home-globe-container { - height: auto; - } -} - -.home-globe-container-video, -.home-globe-container-webgl { - position: relative; - left: -100vw; - width: 300vw; - height: 150vw; - max-height: 900px; - margin-left: -0.9rem; -} - -@media (min-width: 768px) { - .home-globe-container-video, - .home-globe-container-webgl { - margin-left: -2rem; - } -} - -@media (min-width: 1012px) { - .home-globe-container-video, - .home-globe-container-webgl { - left: 0; - width: 900px; - height: 900px; - margin-left: -150px; - } -} - -.home-hero-container { - min-height: 750px; - max-height: 926px; - background-color: #040d21; -} - -@media (min-width: 544px) { - .home-hero-container { - min-height: 850px; - } -} - -@media (min-width: 768px) { - .home-hero-container { - height: 94vh; - min-height: 860px; - } -} - -.home-hero { - padding: 8rem 0 0; -} - -@media (min-width: 768px) { - .home-hero { - padding: 8rem 0; - } -} - -.home-astro-mona { - left: 50%; - max-width: 480px; - transform: translateX(-50%); -} - -.home-globe::after { - position: absolute; - top: 0; - right: -2rem; - bottom: 0; - left: -2rem; - display: block; - pointer-events: none; - content: ""; - background: linear-gradient(to bottom, rgba(4, 13, 33, 0) 0%, #040d21 60%); - opacity: .3; -} - -@media (min-width: 768px) { - .home-globe::after { - background: linear-gradient(to bottom, rgba(4, 13, 33, 0) 0%, #040d21 40%); - } -} - -@media (min-width: 1012px) { - .home-globe::after { - display: none; - } -} - -.home-hero-glow { - top: 50%; - left: 50%; - width: 200%; - transform: translate(-50%, -50%); -} - -.home-git-log-light, -.home-git-log-subtle, -.home-git-log-dark { - position: relative; -} - -.home-git-log-light::after, -.home-git-log-subtle::after, -.home-git-log-dark::after { - position: absolute; - top: 0; - bottom: 0; - left: -4px; - display: block; - width: 2px; - content: ""; - background: #dadfe9; -} - -@media (min-width: 544px) { - .home-git-log-light::after, - .home-git-log-subtle::after, - .home-git-log-dark::after { - left: -24px; - } -} - -.home-git-log-center { - position: relative; -} - -.home-git-log-center::after { - position: absolute; - top: 0; - bottom: 0; - left: calc(50% - 2px); - z-index: -1; - display: none; - width: 2px; - content: ""; - background: #dadfe9; -} - -@media (min-width: 1012px) { - .home-git-log-center::after { - display: block; - } -} - -.bg-home-dark { - background-color: #040d21; -} - -.home-git-log-dark::after, -.home-git-log-dark-icons::after { - background: #42526d; -} - -.home-git-log-dark .home-git-icon, -.home-git-log-dark-icons .home-git-icon { - background: #040d21; -} - -.home-git-log-dark .home-git-icon > path, -.home-git-log-dark-icons .home-git-icon > path { - fill: #42526d; -} - -.home-git-log-dark .home-git-icon > circle, -.home-git-log-dark-icons .home-git-icon > circle { - fill: #040d21; - stroke: #42526d; -} - -.home-git-log-dark .home-branch > path, -.home-git-log-dark-icons .home-branch > path { - stroke: #42526d; -} - -.home-git-log-light .home-git-icon { - background: var(--bgColor-default, var(--color-canvas-default)); -} - -.home-git-log-light .home-git-icon > rect { - fill: #fff; -} - -.home-git-log-light .home-git-icon > path { - fill: #dadfe9; -} - -.home-git-log-light .home-git-icon > circle { - fill: #fff; - stroke: #dadfe9; -} - -.home-git-log-light .home-branch > path { - stroke: #dadfe9; -} - -.home-git-log-subtle .home-git-icon { - background: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.home-git-log-subtle .home-git-icon > rect { - fill: var(--bgColor-muted, var(--color-canvas-subtle)); -} - -.home-git-log-subtle .home-git-icon > path { - fill: var(--borderColor-default, var(--color-border-default)); -} - -.home-git-log-subtle .home-git-icon > circle { - fill: var(--bgColor-muted, var(--color-canvas-subtle)); - stroke: var(--borderColor-default, var(--color-border-default)); -} - -.home-git-log-subtle .home-branch > path { - stroke: var(--borderColor-default, var(--color-border-default)); -} - -.home-branch { - left: calc(8.33333% - 1.5rem); - width: calc(8.33333% + .125rem); - height: 8.875rem; -} - -.home-branch-container { - margin-left: calc(8.33333% - 14px); -} - -@media (min-width: 544px) { - .home-branch-container { - margin-left: calc(8.33333% - 33px); - } -} - -@media (min-width: 768px) { - .home-branch-container { - margin-left: 0; - } -} - -.home-git-item { - margin-left: -41px; -} - -@media (min-width: 544px) { - .home-git-item { - margin-left: -61px; - } -} - -.home-git-timeline-item { - margin-left: -28px; -} - -@media (min-width: 544px) { - .home-git-timeline-item { - margin-left: -48px; - } -} - -.home-git-log-terminal { - margin-left: 0; -} - -@media (min-width: 768px) { - .home-git-log-terminal { - margin-left: -35px; - } -} - -.home-repo-comp::after { - position: absolute; - top: 0; - bottom: 0; - left: calc(8.33333% - 24px); - display: block; - width: 2px; - content: ""; - background: #42526d; -} - -@media (min-width: 544px) { - .home-repo-comp::after { - left: calc(8.33333% - 44px); - } -} - -.home-repo-editor { - min-height: 330px; - padding-top: 68.108974359%; - font-size: .8125rem; - background-color: #0c162d; - box-shadow: 0 0 0 1px rgba(255,255,255,.1),0 34px 65px #040d21,0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017); -} - -@media (min-width: 544px) { - .home-repo-editor { - min-height: 0; - } -} - -@media (min-width: 768px) { - .home-repo-editor { - padding-top: 59.2948717949%; - } -} - -.home-repo-editor.build-in-animate { - animation: .7s ease home-repo-editor-fly-up forwards 4s; -} - -@media (min-width: 768px) { - .home-repo-editor.build-in-animate { - animation: .7s ease home-repo-editor-fly-up-md forwards 4s; - } -} - -@media (min-width: 1012px) { - .home-repo-editor.build-in-animate { - animation: .7s ease home-repo-editor-fly-up-lg forwards 4s; - } -} - -.home-repo-editor-filetree { - background-color: #0c162d; - border-right: 1px solid #040d21; -} - -.home-repo-editor-tabs, -.home-repo-editor-filetree { - font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; - color: #b5bfd2; -} - -.home-repo-editor-tab, -.home-repo-editor-tab--active { - padding: .75rem 1rem; - border-right: 1px solid #040d21; -} - -.home-repo-editor-file { - background-color: #19253c; -} - -.home-repo-editor-terminal { - min-height: 70%; - background-color: #0c162d; - border-top: 1px solid #040d21; -} - -@media (min-width: 768px) { - .home-repo-editor-terminal { - min-height: 17.8125rem; - } -} - -.home-pre { - font-size: .8125rem; - line-height: 1.8; -} - -.home-repo-comp-browser { - visibility: hidden; -} - -.home-repo-comp-browser.build-in-animate { - visibility: visible; - animation: .7s ease home-repo-browser-fly-in both 4s; -} - -.home-repo-editor-ui.build-in-animate { - animation: .4s ease home-repo-editor-img forwards 4s; -} - -@keyframes home-repo-editor-img { - 0% { - opacity: 1; - } - - 100% { - opacity: .4; - } -} - -@keyframes home-repo-editor-fly-up { - to { - min-height: 0; - transform: translateY(-17px) scale(0.95, 0.95, 1); - } -} - -@keyframes home-repo-editor-fly-up-md { - to { - transform: translateY(-34px) scale(0.95, 0.95, 1); - } -} - -@keyframes home-repo-editor-fly-up-lg { - to { - transform: translateY(-50px) scale(0.95, 0.95, 1); - } -} - -@keyframes home-repo-browser-fly-in { - 0% { - opacity: 0; - transform: scale3d(1.05, 1.05, 1) translateY(4%); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateY(0); - } -} - -.package-registry { - box-shadow: 0 0 0 1px rgba(255,255,255,.1),0 34px 65px #040d21,0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017); -} - -.home-pr-description, -.home-pr-comment, -.home-pr-merge { - max-width: 490px; - font-size: 0; - background-color: var(--bgColor-default, var(--color-canvas-default)); - box-shadow: 0 0 0 1px rgba(53,72,91,.05); - transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1); - transform: translateX(35%); -} - -.home-pr-description img, -.home-pr-comment img, -.home-pr-merge img { - opacity: .25; - transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1); -} - -.home-pr-description.build-in-animate, -.home-pr-comment.build-in-animate, -.home-pr-merge.build-in-animate { - box-shadow: 0 0 0 1px rgba(53,72,91,.14),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); - opacity: 1; - transform: translateX(0); -} - -.home-pr-description.build-in-animate img, -.home-pr-comment.build-in-animate img, -.home-pr-merge.build-in-animate img { - opacity: 1; -} - -.home-mobile-iphone { - max-width: 280px; - min-height: 568px; - font-size: 0; - background-color: #040d21; - border: 1rem solid #040d21; - border-radius: 2.6875rem; -} - -.home-desktop-comp { - max-width: 490px; - min-height: 450px; -} - -@media (min-width: 1012px) { - .home-desktop-comp { - min-height: 569px; - } -} - -.home-desktop { - width: 144.75%; - font-size: 0; - border-radius: .625rem; -} - -.home-cli { - bottom: 2%; - opacity: 0; - transition: transform .6s,opacity .6s; - transform: translate(10%, 0); -} - -@media (min-width: 544px) { - .home-cli { - bottom: 5%; - } -} - -@media (min-width: 1012px) { - .home-cli { - bottom: 10%; - } -} - -.home-cli.build-in-animate { - opacity: 1; - transform: translate(0, 0); -} - -.home-pr-screen { - width: 129.5%; - margin-top: -10%; - opacity: .25; -} - -.home-codespaces-copy-item { - margin-bottom: 69vh; -} - -.home-codespaces-copy-item-1 { - margin-top: 20vh; -} - -.home-codespaces-copy-item-3 { - height: 78vh; - margin-bottom: 0; -} - -@media (min-width: 768px) { - .home-codespaces-copy-item-3 { - height: 70vh; - } -} - -@media (min-width: 1012px) { - .home-codespaces-copy-item-3 { - height: 58vh; - } -} - -@media (min-width: 768px) { - .home-codespaces-container { - padding-top: 6.5rem; - } -} - -.home-codespaces-img-container { - min-height: 100vh; - pointer-events: none; -} - -@media (min-width: 1012px) { - .home-codespaces-img-container { - height: 100vh; - padding-top: 18vh; - padding-bottom: 8vh; - } -} - -.home-codespaces-view { - position: relative; - bottom: -60vh; - width: 175%; -} - -@media (min-width: 544px) { - .home-codespaces-view { - width: 130%; - } -} - -@media (min-width: 768px) { - .home-codespaces-view { - width: 125%; - } -} - -@media (min-width: 1012px) { - .home-codespaces-view { - bottom: auto; - width: auto; - height: 100%; - max-height: 740px; - } -} - -.home-codespaces-view-2, -.home-codespaces-view-3 { - position: absolute; - opacity: 0; -} - -.home-codespaces-illo { - padding: 18.75rem 0 61.25rem; -} - -@media (min-width: 1012px) { - .home-codespaces-illo { - padding: 18.75rem 0 71.875rem; - } -} - -@media (min-width: 1012px)and (max-height: 900px) { - .home-codespaces-illo { - padding: 18.75rem 0 78.125rem; - } -} - -.home-codespaces-copy-item-2.build-in-animate ~ .home-codespaces-illo .home-codespaces-view-1 { - position: absolute; - opacity: 0; -} - -.home-codespaces-copy-item-2.build-in-animate ~ .home-codespaces-illo .home-codespaces-view-2 { - position: relative; - opacity: 1; -} - -.home-codespaces-copy-item-3.build-in-animate ~ .home-codespaces-illo .home-codespaces-view-1 { - position: absolute; - opacity: 0; -} - -.home-codespaces-copy-item-3.build-in-animate ~ .home-codespaces-illo .home-codespaces-view-3 { - position: relative; - opacity: 1; -} - -.home-codespaces-glow-container { - right: 0; - left: -70%; -} - -.home-codespaces-glow { - bottom: 0; - transform: translateY(50%); -} - -@media (min-width: 1012px) { - .home-codespaces-glow { - top: 50%; - bottom: auto; - left: 0; - width: 120%; - height: 100vh; - transform: translateY(-50%); - } -} - -.home-workflow-comp { - max-width: 706px; - font-size: 0; - opacity: 0; -} - -.home-workflow-comp.build-in-animate { - animation: .6s cubic-bezier(0.535, 0.15, 0.425, 1) home-enter both; -} - -.home-workflow-comp.build-in-animate .home-workflow-sidebar { - animation: .6s ease-in-out home-worflow-sidebar both; -} - -.home-workflow-comp.build-in-animate .home-workflow-actions { - animation: 1.2s cubic-bezier(0.535, 0.15, 0.425, 1) home-worflow-actions both; -} - -@keyframes home-worflow-sidebar { - 0% { - transform: translateX(100%); - } - - 100% { - transform: translateX(0); - } -} - -@keyframes home-worflow-actions { - 0% { - transform: translateY(-45%); - } - - 100% { - transform: translateY(0); - } -} - -.home-matrix-comp { - width: 100%; -} - -@media (min-width: 1012px) { - .home-matrix-comp { - left: 50%; - width: 140%; - transform: translateX(-50%); - } -} - -.home-matrix-comp.build-in-animate .home-matrix-build { - visibility: visible; - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-matrix-build forwards; -} - -.home-matrix-comp.build-in-animate .home-matrix-test { - visibility: visible; - box-shadow: 0 0 0 1px rgba(53,72,91,.14),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-matrix-test forwards; -} - -.home-matrix-comp.build-in-animate .home-matrix-publish { - visibility: visible; - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-matrix-publish forwards; -} - -.home-matrix-comp.build-in-animate .home-matrix-string::before { - opacity: 1; - transition: opacity 1s; - transition-delay: .4s; -} - -.home-matrix-spinner-1, -.home-matrix-spinner-2, -.home-matrix-spinner-3 { - opacity: 0; -} - -.build-in-animate .home-matrix-spinner-1 { - transform-origin: center; - animation: .4s linear spin 8 none; -} - -.build-in-animate .home-matrix-spinner-2 { - transform-origin: center; - animation: .4s linear spin 9 none; -} - -.build-in-animate .home-matrix-spinner-3 { - transform-origin: center; - animation: .4s linear spin 10 none; -} - -.home-matrix-success-1, -.home-matrix-success-2, -.home-matrix-success-3 { - visibility: hidden; -} - -.build-in-animate .home-matrix-success-1 { - visibility: visible; - transition-delay: 3.2s; -} - -.build-in-animate .home-matrix-success-2 { - visibility: visible; - transition-delay: 3.6s; -} - -.build-in-animate .home-matrix-success-3 { - visibility: visible; - transition-delay: 4s; -} - -@keyframes show-hide { - 0% { - visibility: hidden; - } - - 100% { - visibility: visible; - } -} - -@keyframes home-matrix-build { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93) translateX(3.125rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateX(0); - } -} - -@keyframes home-matrix-test { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1); - } -} - -@keyframes home-matrix-publish { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93) translateX(-3.125rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateX(0); - } -} - -.home-matrix-string::before { - position: absolute; - top: 2.3125rem; - right: 20%; - left: 20%; - display: block; - height: 2px; - content: ""; - background: var(--borderColor-default, var(--color-border-default)); - opacity: 0; -} - -.home-matrix-tab-container { - bottom: 100%; - left: -1px; - height: 21px; -} - -.home-matrix-tab { - height: 21px; -} - -.home-matrix-tab::before { - position: absolute; - top: 1px; - right: 1px; - bottom: -1px; - left: 1px; - display: block; - content: ""; - background: var(--bgColor-default, var(--color-canvas-default)); - border-radius: .375rem .375rem 0 0; - box-shadow: 0 0 0 1px rgba(53,72,91,.14); -} - -.home-matrix-connector { - position: absolute; - top: 2rem; - left: -6px; - width: 12px; - height: 12px; -} - -.home-matrix-build .home-matrix-connector { - top: 1rem; -} - -.home-matrix-connector::before { - position: relative; - z-index: 1; - display: block; - width: 6px; - height: 6px; - margin: 3px; - content: ""; - background: var(--bgColor-neutral-muted, var(--color-neutral-muted)); - border-radius: 50%; -} - -.home-matrix-connector--right { - right: -6px; - left: auto; -} - -.home-matrix-connector--right .home-matrix-connector-bg { - right: 0; -} - -.home-matrix-connector--right .home-matrix-connector-bg::before { - right: 1px; -} - -.home-matrix-connector-bg { - position: absolute; - top: 0; - width: 7px; - height: 12px; - padding: 1px; - overflow: hidden; -} - -.home-matrix-connector-bg::before { - position: absolute; - display: block; - width: 11px; - height: 10px; - content: ""; - background: var(--bgColor-default, var(--color-canvas-default)); - border-radius: 50%; - box-shadow: 0 0 0 1px rgba(53,72,91,.14); -} - -.home-matrix-build { - max-width: 260px; - font-size: 0; - visibility: hidden; - opacity: 0; -} - -.home-matrix-test, -.home-matrix-publish { - max-width: 292px; - font-size: 0; - visibility: hidden; -} - -.build-in-animate .home-actions-spinner { - animation: .4s linear spin infinite; -} - -.home-actions-success { - box-shadow: inset 0 0 0 0 var(--borderColor-success-emphasis, var(--color-success-emphasis)); - transition: transform .4s,opacity .4s; -} - -.home-actions-success .home-actions-success-check { - width: 50%; - opacity: 0; - transition: transform .4s,opacity .4s; - transform: translate(50%, 87%) scale(0.9); -} - -.build-in-animate .home-actions-success { - animation: .5s ease-in-out home-actions-success 3.5s forwards; -} - -.build-in-animate .home-actions-success .home-actions-success-check { - animation: .2s ease-in-out home-actions-success-check 4s forwards; -} - -@keyframes spin { - 0% { - opacity: 1; - transform: rotate(0deg); - } - - 100% { - opacity: 1; - transform: rotate(360deg); - } -} - -@keyframes home-actions-success { - from { - box-shadow: inset 0 0 0 0 var(--borderColor-success-emphasis, var(--color-success-emphasis)); - } - - to { - box-shadow: inset 0 0 0 170px var(--borderColor-success-emphasis, var(--color-success-emphasis)); - } -} - -@keyframes home-actions-success-check { - 0% { - opacity: 0; - transform: translate(50%, 87%) scale3d(0.9, 0.9, 0.9); - } - - 90% { - transform: translate(50%, 87%) scale3d(1.2, 1.2, 1.2); - } - - 100% { - opacity: 1; - transform: translate(50%, 87%) scale3d(1, 1, 1); - } -} - -.home-dependabot-comp { - max-width: 706px; - margin-top: -2rem; - font-size: 0; - visibility: hidden; -} - -.home-dependabot-comp.build-in-animate { - visibility: visible; - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-enter forwards; -} - -.home-dependabot-comp.build-in-animate .home-dependabot-pr { - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-dependabot-pr forwards; -} - -.home-dependabot-comp.build-in-animate .home-dependabot-merge { - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-dependabot-merge forwards; -} - -@keyframes home-dependabot-pr { - 0% { - transform: translateY(2rem); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes home-dependabot-merge { - 0% { - transform: translateY(0); - } - - 100% { - transform: translateY(14%); - } -} - -.home-codeql-step-1, -.home-codeql-step-2, -.home-codeql-step-3 { - font-size: 0; - visibility: hidden; -} - -.home-codeql-comp { - max-width: 490px; -} - -.home-codeql-comp.build-in-animate .home-codeql-step-2 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-codeql-step-2 forwards; -} - -.home-codeql-comp.build-in-animate .home-codeql-step-3 { - visibility: visible; - animation: .2s cubic-bezier(0.16, 1, 0.3, 1) home-codeql-step-3 forwards; -} - -.home-codeql-comp.build-in-animate .home-codeql-description { - opacity: 1; - transform: translateY(0); -} - -.build-in-animate .home-codeql-step-1 { - visibility: visible; - box-shadow: 0 0 65px rgba(237,78,80,.4),0 0 0 1px rgba(255,255,255,.1),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); - animation: .6s cubic-bezier(0.16, 1, 0.3, 1) home-codeql-step-1 forwards; -} - -.home-codeql-step-2 { - left: 50%; - width: 93%; - margin-left: -46.5%; - transform: translateY(-2.3rem); -} - -.home-codeql-step-3 { - left: 50%; - width: 87%; - margin-left: -43.5%; - transform: translateY(-4.4rem); -} - -.home-codeql-description { - opacity: 0; - transition: transform .6s,opacity .6s; - transform: translateY(-45%); -} - -@keyframes home-codeql-step-1 { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93) translateY(-3.0625rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateY(0); - } -} - -@keyframes home-codeql-step-2 { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93) translateY(-4.4rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateY(-2.3rem); - } -} - -@keyframes home-codeql-step-3 { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93) translateY(-6.7rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateY(-4.4rem); - } -} - -.home-secret-comp { - max-width: 490px; - font-size: 0; -} - -.home-secret-comp.build-in-animate .home-secret-alert { - visibility: visible; - box-shadow: 0 0 65px rgba(237,78,80,.4),0 0 0 1px rgba(255,255,255,.1),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-secret-alert forwards; -} - -.home-secret-comp.build-in-animate .home-secret-list { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-secret-list forwards; -} - -.home-secret-alert { - visibility: hidden; - box-shadow: 0 0 65px rgba(237,78,80,.4),0 0 0 1px rgba(255,255,255,.1),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); -} - -.home-secret-list { - visibility: hidden; -} - -.home-security-point-3::after { - display: block; -} - -@media (min-width: 768px) { - .home-security-point-3::after { - display: none; - } -} - -.home-security-alert-fan { - width: 65.25rem; - margin-left: -1.6875rem; - transform: translateX(-50%); -} - -@media (min-width: 544px) { - .home-security-alert-fan { - margin-left: -2.9375rem; - } -} - -@keyframes home-secret-alert { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 0.93) translateY(2rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateY(0); - } -} - -@keyframes home-secret-list { - 0% { - opacity: 0; - transform: translateY(2rem); - } - - 100% { - opacity: 1; - transform: translateY(0); - } -} - -@keyframes home-enter { - 0% { - opacity: 0; - transform: scale3d(0.93, 0.93, 1) translateY(3rem); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1) translateY(0); - } -} - -.home-discussions-comp { - max-width: 492px; - margin-top: 40px; - opacity: 0; - transition: opacity .4s; -} - -@media (min-width: 1012px) { - .home-discussions-comp { - margin-top: -30%; - } -} - -.home-discussions-comp.build-in-animate { - opacity: 1; -} - -.home-discussions-comp.build-in-animate .home-discussions-1 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-community-cards-1 forwards; -} - -.home-discussions-comp.build-in-animate .home-discussions-2 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-community-cards-2 forwards; -} - -.home-discussions-comp.build-in-animate .home-discussions-2 .home-discussions-check-0 { - animation-delay: 1.5s; -} - -.home-discussions-comp.build-in-animate .home-discussions-answer { - box-shadow: 0 0 0 2px #28a745; - transition-delay: 1.5s; - transition-duration: .2s; - transition-property: box-shadow; -} - -.home-discussions-1, -.home-discussions-2 { - width: 78%; - max-width: 382px; - margin: 0; - font-size: 0; -} - -.home-discussions-2 { - margin: -20% 0 0; -} - -.home-discussions-check-0, -.home-discussions-check-1, -.home-discussions-check-2, -.home-discussions-check-3 { - top: 3.4%; - right: 10.5%; - opacity: 0; -} - -.home-discussions-check-0 { - width: 7.25%; - border: 2px solid #fff; - border-radius: 30px; -} - -.home-discussions-check-0.build-in-animate { - animation: .2s ease-in-out home-discussions-check-0 forwards; -} - -.home-discussions-check-1.build-in-animate { - animation: 2s ease-in-out .7s home-discussions-check-1 infinite; -} - -.home-discussions-check-2.build-in-animate { - animation: 3s ease-in-out 1.2s home-discussions-check-2 infinite; -} - -.home-discussions-check-3.build-in-animate { - animation: 4s ease-in-out 1.7s home-discussions-check-3 infinite; -} - -.home-discussions-answer { - box-shadow: 0 0 0 1px rgba(53,72,91,.14); -} - -@keyframes home-discussions-check-0 { - 0% { - opacity: 0; - transform: scale3d(0.9, 0.9, 0.9); - } - - 90% { - transform: scale3d(1.2, 1.2, 1.2); - } - - 100% { - opacity: 1; - transform: scale3d(1, 1, 1); - } -} - -@keyframes home-discussions-check-1 { - 0% { - opacity: 0; - transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 0, 0) rotate(0); - } - - 45% { - opacity: 0; - } - - 50% { - opacity: .25; - } - - 100% { - opacity: 0; - transform: scale3d(1.2, 1.2, 1.2) translate3d(-25%, -160%, 0) rotate(-25deg); - } -} - -@keyframes home-discussions-check-2 { - 0% { - opacity: 0; - transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 0, 0) rotate(0); - } - - 45% { - opacity: 0; - } - - 50% { - opacity: .25; - } - - 100% { - opacity: 0; - transform: scale3d(1.4, 1.4, 1.4) translate3d(-125%, -100%, 0) rotate(-35deg); - } -} - -@keyframes home-discussions-check-3 { - 0% { - opacity: 0; - transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 0, 0) rotate(0); - } - - 45% { - opacity: 0; - } - - 50% { - opacity: .25; - } - - 100% { - opacity: 0; - transform: scale3d(1.1, 1.1, 1.1) translate3d(150%, -120%, 0) rotate(35deg); - } -} - -.home-readme-comp { - max-width: 492px; - opacity: 0; - transition: opacity .4s; -} - -.home-readme-comp.build-in-animate { - opacity: 1; -} - -.home-readme-comp.build-in-animate .home-readme-1 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-community-cards-1 forwards; -} - -.home-readme-comp.build-in-animate .home-readme-2 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-community-cards-2 forwards; -} - -.home-readme-1, -.home-readme-2 { - width: 78%; - max-width: 382px; - margin: 0 0 -40%; - font-size: 0; -} - -@media (min-width: 1012px) { - .home-readme-1, - .home-readme-2 { - margin: -2.5rem 0 -45%; - } -} - -.home-readme-2 { - margin: 0; -} - -@media (min-width: 1012px) { - .home-readme-2 { - margin: 0 0 -2.5rem; - } -} - -.home-sponsors-comp { - max-width: 490px; - opacity: 0; - transition: opacity .4s; -} - -.home-sponsors-comp.build-in-animate { - opacity: 1; -} - -.home-sponsors-comp.build-in-animate .home-sponsors-1 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-community-cards-1 forwards; -} - -.home-sponsors-comp.build-in-animate .home-sponsors-1 .home-sponsors-heart-1, -.home-sponsors-comp.build-in-animate .home-sponsors-1 .home-sponsors-heart-2, -.home-sponsors-comp.build-in-animate .home-sponsors-1 .home-sponsors-heart-3 { - bottom: 10%; - left: 8%; - opacity: 0; - animation-delay: .5s; -} - -.home-sponsors-comp.build-in-animate .home-sponsors-2 { - visibility: visible; - animation: .4s cubic-bezier(0.16, 1, 0.3, 1) home-community-cards-2 forwards; -} - -.home-sponsors-comp.build-in-animate .home-sponsors-2 .home-sponsors-heart-1, -.home-sponsors-comp.build-in-animate .home-sponsors-2 .home-sponsors-heart-2, -.home-sponsors-comp.build-in-animate .home-sponsors-2 .home-sponsors-heart-3 { - bottom: 10%; - left: 0; -} - -.home-sponsors-1, -.home-sponsors-2 { - width: 78%; - max-width: 382px; - margin-top: 0; - font-size: 0; - visibility: hidden; -} - -@media (min-width: 1012px) { - .home-sponsors-1, - .home-sponsors-2 { - margin-top: -20%; - } -} - -.home-sponsors-2 { - margin-top: -25%; -} - -.home-sponsors-heart-1.build-in-animate { - animation: 4s cubic-bezier(0.535, 0.15, 0.425, 1) home-sponsors-heart-1 infinite; -} - -.home-sponsors-heart-2.build-in-animate { - animation: 5s cubic-bezier(0.535, 0.15, 0.425, 1) -1s home-sponsors-heart-2 infinite; -} - -.home-sponsors-heart-3.build-in-animate { - animation: 6s cubic-bezier(0.535, 0.15, 0.425, 1) -2s home-sponsors-heart-3 infinite; -} - -@keyframes home-community-cards-1 { - 0% { - transform: translate3d(7%, 12%, 0); - } - - 100% { - transform: translate3d(0, 0, 0); - } -} - -@keyframes home-community-cards-2 { - 0% { - transform: translate3d(-7%, -12%, 0); - } - - 100% { - transform: translate3d(0, 0, 0); - } -} - -@keyframes home-sponsors-heart-1 { - 0% { - opacity: 0; - transform: scale3d(0.7, 0.7, 0.7) translate3d(0, 0, 0) rotate(0); - } - - 50% { - opacity: 1; - } - - 100% { - opacity: 0; - transform: scale3d(1, 1, 1) translate3d(-25%, -160%, 0) rotate(-25deg); - } -} - -@keyframes home-sponsors-heart-2 { - 0% { - opacity: 0; - transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 0, 0) rotate(0); - } - - 50% { - opacity: .75; - } - - 100% { - opacity: 0; - transform: scale3d(0.75, 0.75, 0.75) translate3d(-125%, -100%, 0) rotate(-35deg); - } -} - -@keyframes home-sponsors-heart-3 { - 0% { - opacity: 0; - transform: scale3d(0.35, 0.35, 0.35) translate3d(0, 0, 0) rotate(0); - } - - 50% { - opacity: .5; - } - - 100% { - opacity: 0; - transform: scale3d(0.5, 0.5, 0.5) translate3d(150%, -120%, 0) rotate(35deg); - } -} - -.home-footer-illustration { - left: 50%; - min-width: 119%; - max-width: 1450px; - margin-bottom: -28%; - transform: translate(-50%, -50%); -} - -@media (min-width: 1012px) { - .home-footer-illustration { - min-width: calc(119% - 2rem); - } -} - -@media (min-width: 1248px) { - .home-footer-illustration { - min-width: 115.5%; - margin-bottom: -33%; - } -} - -.home-featured-repos { - left: 50%; - width: 1080px; - transform: translateX(-50%); -} - -@media (min-width: 1012px) { - .home-featured-repos { - left: auto; - width: 1216px; - transform: translateX(0); - } -} - -.home-repo-card { - background-color: #0c162d; - transition: background-color .4s; -} - -.home-repo-card:hover { - background-color: #19253c; -} - -.rounded-pill { - border-radius: 500px; -} - -.password-validity-pill { - display: inline-block; - width: 48px; - height: 4px; - background-color: #627597; -} - -.password-validity-pill.password-validity-pill-fail { - background-color: #ed4e50; -} - -.password-validity-pill.password-validity-pill-close { - background-color: #ffd33d; -} - -.password-validity-pill.password-validity-pill-success { - background-color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.password-validity-summary.password-validity-summary-fail { - color: #ed4e50; -} - -.password-validity-summary.password-validity-summary-close { - color: #ffd33d; -} - -.password-validity-summary.password-validity-summary-success { - color: var(--bgColor-success-emphasis, var(--color-success-emphasis)); -} - -.code-editor-line-mktg { - border-left: 2px solid var(--bgColor-default, var(--color-canvas-default)); -} - -.code-editor-line-suggested-mktg { - border-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis)); -} - -.code-editor-line-suggested-mktg:empty::after { - content: " "; -} - -.copilot-marker { - border-top-left-radius: 0; - box-shadow: 0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09); -} - -.row-is-visible { - animation: row-reveal 800ms ease-out; -} - -@keyframes row-reveal { - 0%, - 40% { - opacity: 0; - transform: translateY(7px); - } - - 100% { - opacity: 1; - } -} - -:root .home-copilot-editor { - --color-canvas-subtle: #0c162d; - --color-canvas-default: #19253c; -} - -.home-tagline-appendix { - animation-name: home-tagline-in-out; - animation-duration: 1750ms; - animation-fill-mode: both; - animation-timing-function: cubic-bezier(0.48, 0.08, 0.19, 1); -} - -.home-tagline-appendix:last-of-type { - animation-name: home-tagline-in; -} - -@media screen and (prefers-reduced-motion: reduce) { - .home-tagline-appendix { - animation: none; - } - - .home-tagline-appendix:not(:last-of-type) { - display: none; - } -} - -@keyframes home-tagline-in { - 0% { - opacity: 0; - transform: translateY(120%); - } - - 25% { - opacity: 1; - transform: translateY(0); - } -} - -@keyframes home-tagline-in-out { - 0% { - opacity: 0; - transform: translateY(120%); - } - - 25%, - 75% { - opacity: 1; - transform: translateY(0); - } - - 100% { - opacity: 0; - transform: translateY(-120%); - } -} - -@keyframes hero-circle-rotate { - 0% { - transform: rotateZ(0); - } - - 100% { - transform: rotateZ(-1turn); - } -} - -@keyframes hero-item-rotate { - 0% { - transform: rotateZ(0); - } - - 100% { - transform: rotateZ(1turn); - } -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -:root { - --h00-size-mobile: 2.5rem; - --h0-size-mobile: 2rem; - --h1-size-mobile: 1.625rem; - --h2-size-mobile: 1.375rem; - --h3-size-mobile: 1.125rem; - --h00-size: 3rem; - --h0-size: 2.5rem; - --h1-size: 2rem; - --h2-size: 1.5rem; - --h3-size: 1.25rem; - --h4-size: 1rem; - --h5-size: 0.875rem; - --h6-size: 0.75rem; - --body-font-size: 0.875rem; - --font-size-small: 0.75rem; -} - -[data-color-mode=light][data-light-theme*=dark], -[data-color-mode=dark][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=dark] { - --color-mktg-btn-shadow-outline: rgba(255, 255, 255, 0.25) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-2); - --color-marketing-icon-secondary: var(--color-scale-blue-5); - --color-mktg-btn-bg: #f6f8fa; - --color-mktg-btn-shadow-focus: rgba(255, 255, 255, 0.25) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.034), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07); - --color-mktg-btn-shadow-hover-muted: white 0 0 0 2px inset; - } -} - -:root, -[data-color-mode=light][data-light-theme*=light], -[data-color-mode=dark][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; -} - -@media (prefers-color-scheme: light) { - [data-color-mode=auto][data-light-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (prefers-color-scheme: dark) { - [data-color-mode=auto][data-dark-theme*=light] { - --color-mktg-btn-shadow-outline: rgba(0, 0, 0, 0.15) 0 0 0 1px inset; - --color-marketing-icon-primary: var(--color-scale-blue-4); - --color-marketing-icon-secondary: var(--color-scale-blue-3); - --color-mktg-btn-bg: #1b1f23; - --color-mktg-btn-shadow-focus: rgba(0, 0, 0, 0.15) 0 0 0 4px; - --color-mktg-btn-shadow-hover: 0 3px 2px rgba(0, 0, 0, 0.07), 0 7px 5px rgba(0, 0, 0, 0.04), 0 12px 10px rgba(0, 0, 0, 0.03), 0 22px 18px rgba(0, 0, 0, 0.03), 0 42px 33px rgba(0, 0, 0, 0.02), 0 100px 80px rgba(0, 0, 0, 0.02); - --color-mktg-btn-shadow-hover-muted: rgba(0, 0, 0, 0.7) 0 0 0 2px inset; - } -} - -@media (min-width: 768px) { - .home-globe-container { - height: auto; - } -} - -.home-globe-container-video, -.home-globe-container-webgl { - position: relative; - left: -100vw; - width: 300vw; - height: 150vw; - max-height: 900px; - margin-left: -0.9rem; -} - -@media (min-width: 768px) { - .home-globe-container-video, - .home-globe-container-webgl { - margin-left: -2rem; - } -} - -@media (min-width: 1012px) { - .home-globe-container-video, - .home-globe-container-webgl { - left: 0; - width: 900px; - height: 900px; - margin-left: -150px; - } -} - -.home-campaign { - background-color: #0d1117; -} - -.home-campaign em { - font-style: normal; -} - -.home-campaign-signup-button { - background: linear-gradient(180deg, rgba(183, 52, 179, 0.15) 0%, rgba(164, 46, 156, 0) 100%),#6e40c9; -} - -.home-campaign-signup-button::before { - background: linear-gradient(180deg, rgba(184, 103, 185, 0.15) 0%, rgba(164, 46, 156, 0) 100%); -} - -.home-campaign-lines-hero { - left: calc(50% - 12px); - width: 300px; - height: 428px; -} - -@media (min-width: 768px) { - .home-campaign-lines-hero { - left: calc(50% - 14px); - width: 437px; - height: 643px; - } -} - -.home-campaign-git-line { - width: 2px; -} - -@media (min-width: 768px) { - .home-campaign-git-line { - width: 3px; - } -} - -.river-mktg h3 { - color: var(--color-default-fg); -} - -.river-mktg h3 em { - color: var(--mktg-accent-primary); -} - -@keyframes float-y { - 0%, - 100% { - transform: translateY(0); - } - - 50% { - transform: translateY(-10px); - } -} - -.home-drone { - animation: 10s ease infinite float-y paused; -} - -.home-drone.build-in-animate { - animation-play-state: running; -} - -.home-campaign-hero { - --mktg-accent-primary: #dd7df7; -} - -.home-campaign-enterprise { - box-shadow: #bc8cff 0 0 0 1px inset; -} - -.text-accent-primary { - color: var(--mktg-accent-primary); -} - -.home-campaign-productivity { - --mktg-accent-primary: #7ee787; - --mktg-accent-secondary: #aff5b4; -} - -.home-campaign-collaboration { - --mktg-accent-primary: #ffa28b; - --mktg-accent-secondary: #ffc2b2; -} - -.home-campaign-security { - --mktg-accent-primary: #939aff; - --mktg-accent-secondary: #abb4ff; -} - -.build-in-scale-top { - transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1); - transform: scaleY(0); - transform-origin: 0 0; -} - -.build-in-scale-top.build-in-animate { - transform: scaleY(1); -} - -.home-campaign-glowing-icon, -.home-campaign-glowing-icon-glow { - transform: translateZ(0); -} - -.home-campaign-ghas-connect { - top: -19px; - left: 36px; - width: 60px; - transform: rotate(90deg); -} - -@media (min-width: 768px) { - .home-campaign-ghas-connect { - top: 64px; - left: 50%; - width: auto; - margin-left: -28px; - transform: none; - } -} - -.home-globe-scene { - margin-bottom: -300px; -} - -@media (min-width: 544px) { - .home-globe-scene { - margin-bottom: -400px; - margin-top: -80px; - } -} - -.home-astrocat { - width: 267px; - height: 269px; -} - -@media (min-width: 544px) { - .home-astrocat { - width: 400px; - height: 403px; - } -} \ No newline at end of file diff --git a/src/__fixtures__/github-20231008.json b/src/__fixtures__/github-20231008.json deleted file mode 100644 index 3d5a7c14..00000000 --- a/src/__fixtures__/github-20231008.json +++ /dev/null @@ -1,102337 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 33278, - "linesOfCode": 51852, - "size": 1206900, - "complexity": 104774, - "comments": { - "total": 4, - "size": 528 - }, - "embeddedContent": { - "size": { - "total": 6990, - "ratio": 0.0057916977380064625 - }, - "types": { - "total": 13, - "totalUnique": 2, - "uniquenessRatio": 0.15384615384615385, - "unique": { - "image/svg+xml": { - "count": 11, - "size": 6722 - }, - "image/png": { - "count": 2, - "size": 268 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 5, - "totalUnique": 5, - "unique": [ - { - "font-family": "\"Noto Sans\"", - "src": "local(sans-serif)", - "unicode-range": "U+60" - }, - { - "font-family": "\"Mona Sans\"", - "src": "url(\"/static/fonts/github/mona-sans.woff2\") format(\"woff2 supports variations\"),url(\"/static/fonts/github/mona-sans.woff2\") format(\"woff2-variations\")", - "font-weight": "200 900", - "font-stretch": "75% 125%", - "font-display": "swap" - }, - { - "font-family": "\"Hubot Sans\"", - "src": "url(\"/static/fonts/github/hubot-sans.woff2\") format(\"woff2 supports variations\"),url(\"/static/fonts/github/hubot-sans.woff2\") format(\"woff2-variations\")", - "font-weight": "200 900", - "font-stretch": "75% 125%", - "font-display": "swap" - }, - { - "font-family": "\"Mona Sans Fallback\"", - "size-adjust": "108.5%", - "ascent-override": "82%", - "src": "local(Arial)" - }, - { - "font-family": "\"Mona Sans Header Fallback\"", - "size-adjust": "102.7%", - "ascent-override": "82%", - "src": "local(Arial Bold)" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 570, - "totalUnique": 53, - "unique": { - "(prefers-color-scheme: light)": 37, - "(prefers-color-scheme: dark)": 38, - "(pointer: coarse)": 11, - "(pointer: fine)": 3, - "(forced-colors: active)": 4, - "(min-width: 768px)": 126, - "(max-width: 767.98px)": 9, - "(prefers-reduced-motion: no-preference)": 5, - "(min-width: 544px)": 75, - "(min-width: 1012px)": 88, - "(min-width: 1280px)": 30, - "(min-width: 768px)and (min-width: 544px)": 1, - "(min-width: 768px)and (min-width: 768px)": 2, - "(min-width: 768px)and (min-width: 1012px)": 3, - "(min-width: 768px)and (min-width: 1280px)": 1, - "(min-width: 1400px)": 5, - "(max-width: 543.98px)": 5, - "(min-width: 544px)and (max-width: 767.98px)": 1, - "(min-width: 768px)and (max-width: 1011.98px)": 1, - "(max-width: 544px)": 3, - "(hover: hover)": 17, - "(hover: none)": 3, - "screen and (prefers-reduced-motion: no-preference)": 18, - "(max-width: 767px)": 17, - "screen and (max-width: 767px)and (prefers-reduced-motion: no-preference)": 4, - "(max-width: 1011.98px)": 3, - "(prefers-reduced-motion)": 2, - "print": 2, - "only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (-moz-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx)": 5, - "(max-width: 1011px)": 8, - "(max-width: 1012px)": 2, - "only screen and (max-width: 768px)": 1, - "screen and (max-width: 1012px)": 2, - "screen and (max-width: 1011px)": 1, - "(max-width: 768px)": 7, - "(max-width: 1280px)": 1, - "(max-width: 543px)": 7, - "(hover: hover)and (pointer: fine)": 2, - "only screen and (max-height: 560px)": 1, - "(-webkit-min-device-pixel-ratio: 2)and (-webkit-min-device-pixel-ratio: 0), (-webkit-min-device-pixel-ratio: 2)and (min-resolution: 0.001dpcm)": 1, - "(max-width: 543px)and (prefers-color-scheme: light)": 1, - "(max-width: 543px)and (prefers-color-scheme: dark)": 1, - "(max-width: 767px)and (max-height: 500px)": 1, - "screen and (prefers-reduced-motion: reduce)": 3, - "(min-width: 767px)": 1, - "(prefers-color-scheme: light)and (min-width: 768px)": 2, - "(prefers-color-scheme: dark)and (min-width: 768px)": 2, - "(min-width: 1150px)": 1, - "(min-width: 0)": 1, - "(min-width: 1464px)": 2, - "(max-width: 1464px)": 1, - "(min-width: 1012px)and (max-height: 900px)": 1, - "(min-width: 1248px)": 1 - }, - "uniquenessRatio": 0.09298245614035087, - "browserhacks": { - "total": 1, - "totalUnique": 1, - "unique": { - "(-webkit-min-device-pixel-ratio: 2)and (-webkit-min-device-pixel-ratio: 0), (-webkit-min-device-pixel-ratio: 2)and (min-resolution: 0.001dpcm)": 1 - }, - "uniquenessRatio": 1 - } - }, - "charset": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "supports": { - "total": 10, - "totalUnique": 10, - "unique": { - "(-webkit-touch-callout: none)": 1, - "(height: 100dvh)": 1, - "(max-height: 100dvh)": 1, - "(clip-path: polygon(50% 0, 100% 50%, 50% 100%))": 1, - "selector([popover]:popover-open)": 1, - "not (background-color: canvas)": 1, - "(width: -moz-fit-content)": 1, - "not (inset: 0)": 1, - "selector(:popover-open)": 1, - "not selector(.CommentBox:has(*:focus))": 1 - }, - "uniquenessRatio": 1, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 86, - "totalUnique": 81, - "unique": { - "@keyframes AppFrame-a11yLink-focus": 1, - "@keyframes tooltip-appear": 1, - "@keyframes fade-in": 2, - "@keyframes fade-out": 1, - "@keyframes fade-up": 1, - "@keyframes fade-down": 1, - "@keyframes grow-x": 1, - "@keyframes shrink-x": 1, - "@keyframes scale-in": 1, - "@keyframes pulse": 1, - "@keyframes pulse-in": 1, - "@keyframes rotate-keyframes": 1, - "@keyframes AnimatedEllipsis-keyframes": 1, - "@keyframes SelectMenu-modal-animation": 1, - "@keyframes SelectMenu-modal-animation--sm": 1, - "@keyframes Toast--animateIn": 1, - "@keyframes Toast--animateOut": 1, - "@keyframes Toast--spinner": 1, - "@keyframes checkmarkIn": 3, - "@keyframes checkmarkOut": 3, - "@keyframes Overlay--motion-scaleFade": 1, - "@keyframes Overlay--motion-slideDown": 1, - "@keyframes Overlay--motion-slideUp": 1, - "@keyframes Overlay--motion-slideInRight": 1, - "@keyframes Overlay--motion-slideInLeft": 1, - "@keyframes blink": 1, - "@keyframes notifications-component-dialog-animation--sm": 1, - "@keyframes skeleton-loading": 1, - "@keyframes hx-fade-out": 1, - "@keyframes dropdown-menu-animation": 1, - "@keyframes hx_rsm-trigger-animation": 1, - "@keyframes hx_rsm-modal-animation": 1, - "@keyframes lightbulb": 1, - "@keyframes pull-string": 1, - "@keyframes development-menu-component-dialog-animation--sm": 1, - "@keyframes show-pane": 1, - "@keyframes toggle-color": 1, - "@keyframes sponsors-progress-animation": 1, - "@keyframes circle-progress": 1, - "@keyframes wiggle": 1, - "@keyframes tasklist-metadata-toast-slide-in": 1, - "@keyframes float-translate": 1, - "@keyframes float": 1, - "@keyframes BlinkingCursor": 1, - "@keyframes home-repo-editor-img": 1, - "@keyframes home-repo-editor-fly-up": 1, - "@keyframes home-repo-editor-fly-up-md": 1, - "@keyframes home-repo-editor-fly-up-lg": 1, - "@keyframes home-repo-browser-fly-in": 1, - "@keyframes home-worflow-sidebar": 1, - "@keyframes home-worflow-actions": 1, - "@keyframes show-hide": 1, - "@keyframes home-matrix-build": 1, - "@keyframes home-matrix-test": 1, - "@keyframes home-matrix-publish": 1, - "@keyframes spin": 1, - "@keyframes home-actions-success": 1, - "@keyframes home-actions-success-check": 1, - "@keyframes home-dependabot-pr": 1, - "@keyframes home-dependabot-merge": 1, - "@keyframes home-codeql-step-1": 1, - "@keyframes home-codeql-step-2": 1, - "@keyframes home-codeql-step-3": 1, - "@keyframes home-secret-alert": 1, - "@keyframes home-secret-list": 1, - "@keyframes home-enter": 1, - "@keyframes home-discussions-check-0": 1, - "@keyframes home-discussions-check-1": 1, - "@keyframes home-discussions-check-2": 1, - "@keyframes home-discussions-check-3": 1, - "@keyframes home-community-cards-1": 1, - "@keyframes home-community-cards-2": 1, - "@keyframes home-sponsors-heart-1": 1, - "@keyframes home-sponsors-heart-2": 1, - "@keyframes home-sponsors-heart-3": 1, - "@keyframes row-reveal": 1, - "@keyframes home-tagline-in": 1, - "@keyframes home-tagline-in-out": 1, - "@keyframes hero-circle-rotate": 1, - "@keyframes hero-item-rotate": 1, - "@keyframes float-y": 1 - }, - "uniquenessRatio": 0.9418604651162791, - "prefixed": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 677, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0014771048744462, - "mode": 1, - "range": 1, - "sum": 678 - } - }, - "rules": { - "total": 8937, - "empty": { - "total": 2, - "ratio": 0.00022378874342620565 - }, - "sizes": { - "min": 2, - "max": 452, - "mean": 3.6455186304128904, - "mode": 2, - "range": 450, - "sum": 32580, - "items": [ - 16, - 3, - 452, - 3, - 449, - 448, - 448, - 16, - 450, - 448, - 448, - 18, - 5, - 13, - 7, - 4, - 4, - 68, - 46, - 4, - 2, - 2, - 3, - 2, - 2, - 3, - 5, - 5, - 2, - 12, - 2, - 5, - 3, - 2, - 3, - 2, - 5, - 3, - 3, - 2, - 3, - 3, - 2, - 6, - 2, - 2, - 2, - 2, - 6, - 2, - 4, - 6, - 2, - 3, - 3, - 5, - 4, - 7, - 2, - 4, - 3, - 3, - 3, - 3, - 2, - 7, - 6, - 3, - 2, - 3, - 4, - 2, - 3, - 8, - 4, - 5, - 3, - 3, - 3, - 2, - 2, - 2, - 8, - 6, - 8, - 7, - 4, - 3, - 7, - 12, - 8, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 5, - 3, - 5, - 2, - 5, - 5, - 2, - 5, - 8, - 6, - 2, - 2, - 3, - 5, - 16, - 2, - 4, - 4, - 4, - 2, - 6, - 3, - 7, - 6, - 4, - 4, - 6, - 4, - 5, - 5, - 4, - 3, - 4, - 5, - 6, - 4, - 3, - 2, - 4, - 3, - 4, - 2, - 6, - 3, - 3, - 7, - 6, - 5, - 6, - 7, - 4, - 3, - 2, - 2, - 6, - 3, - 3, - 7, - 7, - 4, - 4, - 3, - 4, - 2, - 5, - 4, - 3, - 3, - 4, - 3, - 5, - 3, - 4, - 6, - 11, - 2, - 3, - 4, - 3, - 6, - 11, - 5, - 14, - 2, - 6, - 4, - 6, - 6, - 10, - 2, - 5, - 10, - 2, - 3, - 4, - 3, - 2, - 5, - 2, - 4, - 2, - 6, - 14, - 4, - 4, - 4, - 2, - 15, - 3, - 3, - 2, - 5, - 2, - 15, - 5, - 6, - 5, - 5, - 9, - 5, - 3, - 3, - 4, - 2, - 2, - 6, - 2, - 3, - 2, - 6, - 4, - 7, - 5, - 6, - 2, - 3, - 2, - 3, - 4, - 3, - 5, - 4, - 3, - 2, - 5, - 3, - 4, - 2, - 2, - 8, - 3, - 2, - 12, - 2, - 2, - 3, - 2, - 2, - 5, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 4, - 3, - 3, - 2, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 6, - 2, - 2, - 3, - 3, - 20, - 27, - 10, - 11, - 5, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 5, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 4, - 3, - 2, - 4, - 3, - 2, - 3, - 4, - 9, - 4, - 4, - 3, - 3, - 4, - 2, - 4, - 2, - 11, - 8, - 3, - 2, - 2, - 9, - 12, - 9, - 2, - 3, - 3, - 2, - 2, - 4, - 2, - 4, - 4, - 2, - 2, - 3, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 6, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 9, - 3, - 9, - 3, - 11, - 3, - 11, - 4, - 7, - 4, - 2, - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 10, - 2, - 2, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 5, - 2, - 2, - 2, - 3, - 3, - 3, - 13, - 3, - 5, - 6, - 5, - 6, - 3, - 8, - 2, - 10, - 2, - 2, - 9, - 3, - 2, - 3, - 3, - 4, - 9, - 3, - 4, - 2, - 3, - 4, - 3, - 2, - 8, - 2, - 4, - 7, - 6, - 5, - 6, - 3, - 3, - 3, - 4, - 2, - 8, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 17, - 9, - 5, - 3, - 6, - 9, - 8, - 3, - 3, - 2, - 5, - 5, - 2, - 4, - 2, - 2, - 20, - 11, - 2, - 2, - 13, - 7, - 4, - 6, - 8, - 4, - 2, - 6, - 8, - 4, - 2, - 3, - 5, - 6, - 5, - 6, - 4, - 2, - 2, - 4, - 2, - 2, - 6, - 5, - 3, - 3, - 2, - 4, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 7, - 3, - 3, - 5, - 3, - 3, - 7, - 2, - 6, - 2, - 4, - 3, - 3, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 5, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 3, - 4, - 4, - 2, - 4, - 4, - 3, - 4, - 2, - 2, - 3, - 4, - 2, - 4, - 4, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 9, - 2, - 7, - 2, - 14, - 5, - 3, - 4, - 3, - 4, - 2, - 2, - 5, - 3, - 3, - 5, - 3, - 2, - 2, - 7, - 7, - 4, - 3, - 3, - 3, - 2, - 7, - 2, - 8, - 3, - 3, - 2, - 10, - 6, - 2, - 4, - 4, - 5, - 2, - 9, - 6, - 2, - 4, - 4, - 4, - 2, - 5, - 3, - 4, - 2, - 2, - 3, - 2, - 5, - 2, - 10, - 6, - 4, - 2, - 2, - 10, - 9, - 7, - 7, - 14, - 4, - 4, - 2, - 2, - 2, - 3, - 7, - 7, - 4, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 6, - 3, - 6, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 4, - 3, - 8, - 3, - 5, - 4, - 5, - 3, - 4, - 5, - 3, - 5, - 2, - 5, - 5, - 8, - 3, - 2, - 2, - 2, - 2, - 7, - 2, - 3, - 9, - 11, - 8, - 5, - 2, - 4, - 2, - 2, - 4, - 2, - 4, - 2, - 10, - 2, - 2, - 11, - 7, - 9, - 2, - 14, - 3, - 3, - 10, - 6, - 2, - 4, - 2, - 7, - 3, - 4, - 2, - 3, - 2, - 10, - 12, - 3, - 2, - 4, - 4, - 7, - 2, - 2, - 10, - 7, - 6, - 3, - 5, - 5, - 8, - 2, - 3, - 7, - 2, - 4, - 4, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 7, - 4, - 12, - 2, - 6, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 16, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 8, - 2, - 2, - 7, - 5, - 3, - 5, - 2, - 2, - 2, - 2, - 4, - 5, - 3, - 5, - 5, - 3, - 2, - 3, - 9, - 2, - 2, - 2, - 2, - 3, - 9, - 5, - 3, - 4, - 3, - 2, - 4, - 2, - 4, - 20, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 3, - 6, - 2, - 2, - 3, - 9, - 5, - 3, - 3, - 2, - 2, - 5, - 3, - 5, - 5, - 3, - 2, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 5, - 5, - 8, - 7, - 4, - 3, - 4, - 3, - 2, - 3, - 9, - 10, - 4, - 7, - 3, - 2, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 2, - 2, - 14, - 14, - 4, - 2, - 6, - 4, - 12, - 4, - 2, - 5, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 5, - 5, - 2, - 5, - 10, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 5, - 4, - 6, - 4, - 5, - 7, - 3, - 2, - 7, - 3, - 3, - 3, - 3, - 18, - 4, - 2, - 11, - 4, - 9, - 4, - 6, - 2, - 3, - 6, - 2, - 3, - 7, - 2, - 3, - 4, - 2, - 9, - 7, - 11, - 4, - 9, - 4, - 6, - 2, - 3, - 6, - 2, - 3, - 7, - 2, - 3, - 4, - 2, - 9, - 7, - 2, - 2, - 2, - 2, - 2, - 11, - 15, - 5, - 3, - 3, - 2, - 2, - 4, - 7, - 4, - 3, - 3, - 2, - 4, - 3, - 5, - 4, - 2, - 7, - 6, - 6, - 6, - 5, - 5, - 5, - 4, - 7, - 7, - 4, - 4, - 4, - 3, - 4, - 4, - 3, - 3, - 4, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 7, - 3, - 2, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 7, - 3, - 2, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 7, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 2, - 3, - 2, - 2, - 5, - 10, - 2, - 2, - 2, - 4, - 4, - 12, - 7, - 4, - 4, - 3, - 3, - 3, - 2, - 3, - 6, - 2, - 3, - 2, - 4, - 2, - 7, - 4, - 4, - 8, - 2, - 4, - 4, - 3, - 6, - 9, - 4, - 6, - 7, - 6, - 11, - 4, - 4, - 5, - 7, - 4, - 6, - 4, - 7, - 4, - 4, - 4, - 4, - 4, - 3, - 9, - 4, - 18, - 3, - 3, - 2, - 2, - 9, - 9, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 5, - 3, - 3, - 16, - 6, - 5, - 7, - 3, - 5, - 4, - 7, - 2, - 4, - 5, - 4, - 13, - 16, - 2, - 9, - 3, - 4, - 3, - 2, - 5, - 2, - 3, - 4, - 4, - 4, - 7, - 2, - 4, - 5, - 4, - 11, - 9, - 3, - 3, - 4, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 20, - 13, - 3, - 5, - 4, - 3, - 4, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 4, - 3, - 4, - 2, - 3, - 3, - 3, - 3, - 3, - 19, - 3, - 2, - 2, - 9, - 3, - 4, - 3, - 2, - 2, - 4, - 2, - 2, - 5, - 3, - 3, - 6, - 3, - 6, - 3, - 13, - 2, - 6, - 4, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 8, - 4, - 3, - 5, - 14, - 8, - 6, - 9, - 5, - 6, - 13, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 5, - 6, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 6, - 7, - 5, - 3, - 3, - 2, - 10, - 3, - 2, - 10, - 3, - 2, - 10, - 2, - 2, - 2, - 3, - 3, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 2, - 5, - 10, - 5, - 3, - 3, - 3, - 2, - 9, - 2, - 3, - 4, - 9, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 2, - 2, - 2, - 4, - 13, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 4, - 8, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 3, - 5, - 6, - 2, - 4, - 4, - 2, - 3, - 2, - 4, - 2, - 2, - 9, - 3, - 3, - 4, - 5, - 3, - 3, - 3, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 5, - 3, - 3, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 4, - 4, - 2, - 6, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 8, - 2, - 2, - 2, - 2, - 5, - 7, - 2, - 3, - 2, - 3, - 23, - 10, - 2, - 2, - 4, - 3, - 3, - 7, - 2, - 2, - 3, - 3, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 4, - 2, - 2, - 2, - 6, - 3, - 4, - 3, - 4, - 4, - 6, - 3, - 6, - 3, - 3, - 3, - 6, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 2, - 2, - 8, - 2, - 3, - 6, - 6, - 6, - 3, - 7, - 6, - 4, - 3, - 5, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 12, - 2, - 3, - 3, - 3, - 9, - 3, - 2, - 2, - 9, - 2, - 2, - 2, - 5, - 3, - 2, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 9, - 3, - 5, - 2, - 10, - 3, - 4, - 4, - 3, - 3, - 4, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 3, - 8, - 6, - 5, - 5, - 3, - 8, - 5, - 5, - 4, - 6, - 3, - 3, - 4, - 6, - 3, - 16, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 2, - 6, - 7, - 2, - 3, - 7, - 2, - 2, - 2, - 2, - 10, - 5, - 5, - 2, - 2, - 3, - 2, - 4, - 2, - 7, - 2, - 5, - 3, - 5, - 5, - 2, - 4, - 7, - 2, - 2, - 6, - 5, - 9, - 3, - 15, - 4, - 6, - 4, - 10, - 3, - 2, - 7, - 7, - 5, - 5, - 8, - 4, - 4, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 16, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 8, - 3, - 2, - 3, - 3, - 2, - 3, - 2, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 3, - 5, - 2, - 3, - 3, - 4, - 6, - 2, - 2, - 4, - 2, - 4, - 2, - 3, - 5, - 2, - 3, - 7, - 5, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 8, - 3, - 8, - 5, - 5, - 3, - 3, - 6, - 6, - 5, - 5, - 4, - 2, - 2, - 3, - 17, - 5, - 7, - 4, - 2, - 2, - 6, - 6, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 9, - 3, - 3, - 7, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 4, - 4, - 10, - 4, - 6, - 2, - 2, - 8, - 5, - 4, - 2, - 2, - 5, - 5, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 8, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 5, - 4, - 2, - 3, - 5, - 5, - 4, - 3, - 2, - 2, - 5, - 5, - 2, - 5, - 5, - 5, - 11, - 3, - 9, - 4, - 7, - 3, - 7, - 3, - 2, - 2, - 2, - 8, - 2, - 3, - 2, - 2, - 3, - 6, - 3, - 7, - 3, - 7, - 3, - 2, - 6, - 2, - 6, - 2, - 6, - 2, - 6, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 3, - 7, - 6, - 2, - 3, - 2, - 3, - 5, - 3, - 5, - 8, - 2, - 2, - 6, - 2, - 2, - 4, - 9, - 2, - 2, - 6, - 4, - 7, - 3, - 2, - 4, - 6, - 3, - 7, - 5, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 8, - 2, - 2, - 6, - 5, - 2, - 2, - 3, - 7, - 4, - 3, - 2, - 5, - 4, - 6, - 3, - 3, - 2, - 6, - 4, - 3, - 4, - 4, - 10, - 6, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 3, - 4, - 5, - 6, - 2, - 4, - 2, - 6, - 5, - 8, - 7, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 4, - 3, - 2, - 3, - 5, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 3, - 12, - 2, - 3, - 3, - 2, - 2, - 12, - 4, - 7, - 11, - 2, - 3, - 5, - 5, - 3, - 4, - 3, - 10, - 2, - 3, - 2, - 2, - 8, - 2, - 2, - 4, - 2, - 3, - 6, - 3, - 3, - 2, - 13, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 10, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 4, - 3, - 3, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 5, - 2, - 5, - 3, - 4, - 4, - 2, - 2, - 3, - 6, - 8, - 2, - 2, - 2, - 4, - 2, - 6, - 11, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 10, - 3, - 2, - 2, - 2, - 8, - 8, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 7, - 7, - 5, - 3, - 4, - 5, - 3, - 5, - 5, - 5, - 5, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 9, - 2, - 2, - 2, - 3, - 9, - 5, - 3, - 3, - 5, - 3, - 5, - 5, - 3, - 5, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 22, - 2, - 2, - 4, - 2, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 3, - 6, - 2, - 2, - 3, - 9, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 4, - 2, - 5, - 8, - 5, - 4, - 2, - 7, - 8, - 4, - 5, - 3, - 2, - 4, - 3, - 2, - 3, - 11, - 3, - 5, - 3, - 2, - 2, - 3, - 3, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 3, - 7, - 3, - 3, - 2, - 5, - 2, - 3, - 3, - 5, - 3, - 2, - 3, - 2, - 7, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 5, - 2, - 2, - 3, - 2, - 4, - 4, - 9, - 2, - 4, - 3, - 4, - 2, - 3, - 2, - 3, - 6, - 4, - 6, - 5, - 2, - 10, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 10, - 4, - 13, - 6, - 4, - 3, - 6, - 3, - 2, - 2, - 2, - 3, - 7, - 2, - 3, - 3, - 2, - 12, - 3, - 8, - 4, - 2, - 3, - 3, - 6, - 3, - 5, - 7, - 5, - 2, - 6, - 5, - 5, - 5, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 21, - 20, - 39, - 7, - 6, - 2, - 2, - 2, - 3, - 4, - 4, - 4, - 8, - 5, - 2, - 4, - 3, - 2, - 2, - 3, - 2, - 4, - 3, - 2, - 2, - 5, - 3, - 5, - 6, - 6, - 3, - 3, - 5, - 3, - 2, - 4, - 6, - 3, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 4, - 2, - 7, - 2, - 2, - 6, - 3, - 4, - 6, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 2, - 3, - 3, - 4, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 4, - 6, - 4, - 7, - 3, - 6, - 6, - 2, - 5, - 4, - 3, - 4, - 3, - 2, - 2, - 3, - 4, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 6, - 3, - 7, - 2, - 5, - 3, - 9, - 2, - 4, - 7, - 2, - 2, - 3, - 2, - 6, - 12, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 3, - 4, - 2, - 2, - 2, - 2, - 5, - 12, - 4, - 2, - 3, - 4, - 3, - 4, - 2, - 2, - 3, - 7, - 3, - 3, - 3, - 4, - 2, - 3, - 9, - 2, - 4, - 2, - 8, - 4, - 2, - 2, - 5, - 3, - 5, - 4, - 3, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 7, - 2, - 4, - 6, - 5, - 4, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 8, - 5, - 2, - 4, - 2, - 3, - 5, - 4, - 2, - 4, - 5, - 3, - 3, - 2, - 6, - 2, - 3, - 3, - 8, - 2, - 2, - 3, - 2, - 2, - 3, - 11, - 3, - 2, - 2, - 2, - 2, - 4, - 5, - 7, - 3, - 4, - 2, - 3, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 4, - 2, - 3, - 3, - 2, - 2, - 5, - 3, - 3, - 2, - 4, - 2, - 3, - 5, - 5, - 2, - 16, - 2, - 2, - 2, - 2, - 2, - 6, - 8, - 3, - 3, - 4, - 3, - 2, - 4, - 6, - 4, - 5, - 5, - 5, - 5, - 2, - 3, - 2, - 2, - 3, - 5, - 5, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 7, - 3, - 5, - 3, - 3, - 4, - 2, - 3, - 3, - 4, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 5, - 2, - 12, - 2, - 2, - 3, - 3, - 9, - 18, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 3, - 7, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 6, - 7, - 2, - 2, - 4, - 3, - 10, - 3, - 2, - 2, - 4, - 3, - 2, - 4, - 4, - 3, - 3, - 4, - 2, - 7, - 4, - 2, - 4, - 3, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 2, - 3, - 2, - 3, - 4, - 3, - 3, - 3, - 4, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 6, - 2, - 3, - 6, - 2, - 3, - 3, - 2, - 4, - 5, - 4, - 3, - 3, - 6, - 2, - 2, - 3, - 2, - 3, - 2, - 4, - 3, - 4, - 3, - 5, - 2, - 2, - 3, - 3, - 12, - 4, - 2, - 12, - 4, - 2, - 12, - 4, - 2, - 14, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 4, - 4, - 11, - 3, - 2, - 2, - 6, - 2, - 3, - 3, - 4, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 12, - 3, - 2, - 2, - 3, - 5, - 2, - 4, - 2, - 2, - 2, - 7, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 12, - 4, - 2, - 3, - 3, - 2, - 6, - 3, - 2, - 2, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 5, - 3, - 2, - 4, - 4, - 12, - 2, - 3, - 3, - 10, - 2, - 6, - 2, - 5, - 2, - 6, - 4, - 4, - 2, - 6, - 2, - 2, - 2, - 3, - 4, - 2, - 8, - 2, - 3, - 5, - 2, - 4, - 3, - 4, - 8, - 2, - 4, - 4, - 2, - 5, - 8, - 6, - 5, - 2, - 2, - 2, - 2, - 10, - 8, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 4, - 3, - 2, - 3, - 4, - 5, - 3, - 2, - 2, - 2, - 3, - 5, - 4, - 4, - 3, - 11, - 7, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 2, - 2, - 4, - 4, - 2, - 3, - 2, - 3, - 2, - 5, - 4, - 4, - 4, - 4, - 4, - 8, - 5, - 2, - 2, - 2, - 4, - 4, - 2, - 4, - 5, - 3, - 4, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 5, - 3, - 3, - 2, - 2, - 7, - 9, - 3, - 4, - 5, - 4, - 3, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 2, - 2, - 4, - 3, - 2, - 2, - 2, - 7, - 5, - 2, - 5, - 2, - 2, - 2, - 5, - 2, - 5, - 2, - 5, - 4, - 3, - 2, - 4, - 2, - 5, - 4, - 2, - 2, - 6, - 2, - 3, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 9, - 2, - 2, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 5, - 3, - 5, - 10, - 15, - 5, - 4, - 3, - 2, - 6, - 2, - 3, - 5, - 9, - 3, - 2, - 2, - 3, - 4, - 2, - 3, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 12, - 4, - 2, - 3, - 11, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 2, - 2, - 3, - 3, - 3, - 3, - 5, - 2, - 4, - 4, - 6, - 5, - 3, - 4, - 3, - 4, - 2, - 16, - 2, - 2, - 9, - 5, - 2, - 6, - 6, - 2, - 2, - 3, - 3, - 5, - 2, - 2, - 2, - 10, - 5, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 15, - 13, - 4, - 9, - 2, - 2, - 8, - 2, - 2, - 3, - 2, - 2, - 3, - 14, - 2, - 2, - 9, - 10, - 3, - 2, - 6, - 4, - 8, - 2, - 2, - 2, - 3, - 2, - 12, - 2, - 2, - 2, - 10, - 11, - 3, - 5, - 2, - 2, - 2, - 4, - 2, - 13, - 2, - 10, - 3, - 9, - 3, - 3, - 5, - 2, - 9, - 4, - 3, - 2, - 2, - 3, - 3, - 4, - 4, - 2, - 2, - 4, - 2, - 3, - 3, - 2, - 4, - 3, - 3, - 2, - 2, - 2, - 3, - 4, - 4, - 4, - 5, - 6, - 2, - 5, - 6, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 6, - 4, - 3, - 2, - 2, - 3, - 11, - 4, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 7, - 4, - 5, - 5, - 4, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 4, - 3, - 7, - 2, - 3, - 3, - 2, - 5, - 4, - 2, - 3, - 3, - 6, - 3, - 3, - 2, - 2, - 3, - 4, - 2, - 5, - 2, - 4, - 5, - 8, - 6, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 6, - 5, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 6, - 2, - 3, - 5, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 8, - 2, - 3, - 2, - 2, - 3, - 6, - 2, - 7, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 6, - 3, - 2, - 2, - 2, - 4, - 6, - 3, - 2, - 7, - 3, - 5, - 2, - 7, - 2, - 2, - 5, - 2, - 3, - 5, - 3, - 2, - 2, - 7, - 3, - 9, - 2, - 3, - 5, - 2, - 4, - 2, - 7, - 4, - 11, - 3, - 2, - 4, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 3, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 5, - 2, - 5, - 4, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 10, - 6, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 2, - 4, - 6, - 2, - 8, - 2, - 2, - 2, - 2, - 8, - 2, - 3, - 3, - 6, - 2, - 2, - 2, - 3, - 5, - 2, - 4, - 2, - 11, - 4, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 6, - 6, - 4, - 4, - 9, - 2, - 3, - 3, - 14, - 4, - 11, - 2, - 9, - 3, - 3, - 3, - 8, - 13, - 3, - 2, - 6, - 3, - 2, - 5, - 4, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 3, - 3, - 5, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 4, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 56, - 55, - 55, - 57, - 55, - 55, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 9, - 3, - 2, - 2, - 3, - 3, - 2, - 9, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 4, - 5, - 3, - 3, - 3, - 4, - 9, - 2, - 14, - 10, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 12, - 4, - 5, - 5, - 2, - 2, - 4, - 2, - 14, - 3, - 3, - 3, - 2, - 2, - 12, - 5, - 5, - 6, - 4, - 2, - 4, - 4, - 8, - 3, - 2, - 3, - 2, - 3, - 5, - 3, - 4, - 3, - 3, - 2, - 6, - 2, - 2, - 5, - 2, - 4, - 4, - 2, - 3, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 7, - 3, - 3, - 3, - 7, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 3, - 4, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 6, - 2, - 2, - 3, - 8, - 3, - 9, - 7, - 7, - 9, - 8, - 8, - 12, - 2, - 4, - 17, - 8, - 2, - 2, - 4, - 13, - 4, - 2, - 2, - 4, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 4, - 3, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 5, - 10, - 2, - 2, - 2, - 3, - 4, - 5, - 2, - 2, - 2, - 2, - 2, - 16, - 2, - 8, - 3, - 4, - 3, - 8, - 3, - 3, - 2, - 4, - 5, - 2, - 2, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 5, - 6, - 2, - 4, - 3, - 2, - 2, - 5, - 6, - 4, - 2, - 4, - 2, - 4, - 4, - 8, - 4, - 3, - 4, - 5, - 2, - 2, - 5, - 8, - 8, - 9, - 3, - 3, - 3, - 2, - 5, - 5, - 2, - 2, - 2, - 7, - 2, - 5, - 4, - 4, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 17, - 4, - 3, - 5, - 4, - 2, - 2, - 3, - 7, - 2, - 3, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 8, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 10, - 2, - 4, - 4, - 4, - 6, - 3, - 2, - 2, - 5, - 2, - 7, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 5, - 2, - 2, - 3, - 6, - 5, - 2, - 2, - 5, - 6, - 2, - 2, - 3, - 3, - 2, - 3, - 3, - 5, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 8, - 3, - 3, - 5, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 5, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 3, - 2, - 4, - 3, - 4, - 6, - 7, - 2, - 3, - 2, - 2, - 2, - 2, - 5, - 3, - 6, - 10, - 2, - 2, - 3, - 3, - 2, - 5, - 4, - 4, - 2, - 12, - 4, - 2, - 3, - 13, - 6, - 3, - 3, - 3, - 7, - 4, - 10, - 4, - 10, - 4, - 10, - 2, - 4, - 2, - 2, - 4, - 2, - 6, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 2, - 3, - 2, - 4, - 2, - 7, - 5, - 7, - 8, - 2, - 4, - 3, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 12, - 4, - 2, - 5, - 3, - 14, - 5, - 3, - 4, - 2, - 12, - 4, - 2, - 6, - 4, - 16, - 6, - 4, - 5, - 3, - 14, - 5, - 3, - 12, - 4, - 2, - 3, - 4, - 3, - 3, - 4, - 3, - 3, - 5, - 5, - 2, - 6, - 5, - 5, - 5, - 5, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 5, - 3, - 4, - 5, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 6, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 7, - 2, - 5, - 2, - 9, - 2, - 3, - 3, - 3, - 4, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 8, - 2, - 3, - 2, - 2, - 3, - 5, - 2, - 2, - 5, - 2, - 2, - 2, - 4, - 5, - 2, - 3, - 2, - 2, - 3, - 9, - 2, - 3, - 7, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 4, - 3, - 3, - 2, - 4, - 3, - 5, - 7, - 6, - 4, - 3, - 3, - 3, - 8, - 8, - 2, - 4, - 2, - 6, - 2, - 2, - 2, - 8, - 2, - 3, - 2, - 2, - 2, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 3, - 6, - 5, - 2, - 4, - 2, - 2, - 4, - 6, - 2, - 3, - 4, - 3, - 8, - 4, - 4, - 11, - 12, - 2, - 2, - 3, - 10, - 2, - 2, - 4, - 3, - 8, - 6, - 3, - 2, - 4, - 2, - 2, - 2, - 6, - 2, - 3, - 2, - 3, - 6, - 7, - 2, - 4, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 7, - 4, - 3, - 2, - 3, - 3, - 6, - 4, - 3, - 6, - 3, - 3, - 3, - 3, - 3, - 2, - 5, - 2, - 5, - 2, - 6, - 3, - 5, - 7, - 2, - 2, - 7, - 3, - 4, - 4, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 3, - 2, - 3, - 3, - 3, - 3, - 5, - 4, - 3, - 2, - 2, - 3, - 7, - 2, - 8, - 4, - 3, - 7, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 6, - 5, - 6, - 9, - 2, - 11, - 2, - 2, - 4, - 7, - 5, - 3, - 3, - 10, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 2, - 5, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 2, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 4, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 9, - 2, - 2, - 7, - 2, - 3, - 2, - 6, - 2, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 6, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 2, - 8, - 4, - 4, - 4, - 2, - 6, - 5, - 5, - 2, - 3, - 10, - 5, - 4, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 7, - 2, - 5, - 2, - 5, - 2, - 11, - 3, - 2, - 2, - 2, - 5, - 5, - 3, - 3, - 4, - 2, - 2, - 3, - 2, - 5, - 4, - 2, - 2, - 2, - 4, - 6, - 2, - 4, - 4, - 3, - 3, - 2, - 5, - 6, - 3, - 4, - 2, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 2, - 5, - 6, - 2, - 3, - 6, - 3, - 2, - 2, - 2, - 2, - 3, - 9, - 3, - 5, - 4, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 4, - 3, - 2, - 2, - 8, - 2, - 10, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 12, - 3, - 2, - 3, - 2, - 4, - 2, - 7, - 5, - 6, - 3, - 5, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 5, - 2, - 5, - 2, - 2, - 4, - 6, - 2, - 2, - 3, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 14, - 10, - 10, - 14, - 2, - 4, - 3, - 2, - 4, - 6, - 3, - 6, - 2, - 2, - 3, - 3, - 2, - 5, - 2, - 3, - 2, - 3, - 2, - 5, - 5, - 3, - 3, - 2, - 6, - 5, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 5, - 4, - 10, - 5, - 6, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 3, - 9, - 3, - 3, - 5, - 2, - 5, - 5, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 10, - 2, - 3, - 2, - 7, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 6, - 3, - 3, - 2, - 2, - 5, - 3, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 7, - 4, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 4, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 2, - 6, - 6, - 3, - 4, - 4, - 3, - 3, - 3, - 5, - 3, - 3, - 4, - 3, - 2, - 2, - 2, - 7, - 3, - 5, - 5, - 3, - 4, - 3, - 4, - 4, - 2, - 3, - 4, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 3, - 3, - 8, - 3, - 3, - 4, - 6, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 3, - 3, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 3, - 2, - 4, - 2, - 2, - 3, - 3, - 21, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 5, - 3, - 3, - 3, - 2, - 11, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 8, - 6, - 2, - 5, - 3, - 4, - 3, - 2, - 3, - 2, - 2, - 4, - 4, - 2, - 3, - 2, - 3, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 6, - 5, - 3, - 2, - 2, - 4, - 3, - 3, - 2, - 3, - 2, - 4, - 4, - 3, - 4, - 2, - 6, - 4, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 6, - 4, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 8, - 3, - 7, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 3, - 3, - 2, - 2, - 11, - 4, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 5, - 5, - 3, - 2, - 2, - 5, - 4, - 2, - 2, - 5, - 4, - 6, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 4, - 3, - 5, - 2, - 2, - 2, - 6, - 2, - 3, - 6, - 2, - 3, - 5, - 2, - 2, - 2, - 7, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 5, - 7, - 3, - 8, - 2, - 6, - 4, - 2, - 2, - 2, - 4, - 4, - 2, - 5, - 3, - 4, - 2, - 3, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 2, - 3, - 3, - 2, - 4, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 4, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 7, - 3, - 4, - 3, - 4, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 4, - 4, - 6, - 3, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 4, - 3, - 3, - 3, - 2, - 8, - 8, - 2, - 2, - 4, - 2, - 3, - 3, - 4, - 3, - 3, - 3, - 9, - 10, - 6, - 2, - 2, - 4, - 2, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 4, - 6, - 5, - 7, - 2, - 4, - 2, - 5, - 4, - 3, - 4, - 6, - 7, - 2, - 4, - 2, - 3, - 3, - 3, - 3, - 8, - 6, - 6, - 4, - 4, - 3, - 5, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 6, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 5, - 2, - 3, - 3, - 2, - 2, - 2, - 5, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 2, - 3, - 5, - 6, - 9, - 2, - 2, - 3, - 2, - 11, - 3, - 2, - 2, - 2, - 5, - 2, - 2, - 3, - 4, - 3, - 3, - 3, - 2, - 9, - 3, - 2, - 2, - 2, - 5, - 2, - 2, - 4, - 2, - 5, - 4, - 3, - 5, - 2, - 5, - 2, - 2, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 5, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 10, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 5, - 5, - 3, - 5, - 4, - 2, - 5, - 2, - 3, - 4, - 4, - 4, - 4, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 3, - 9, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 5, - 4, - 2, - 3, - 6, - 13, - 11, - 4, - 5, - 2, - 2, - 2, - 7, - 4, - 3, - 2, - 2, - 3, - 2, - 5, - 5, - 2, - 2, - 2, - 7, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 2, - 8, - 4, - 6, - 5, - 7, - 3, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 15, - 8, - 3, - 4, - 2, - 5, - 5, - 4, - 3, - 2, - 4, - 7, - 3, - 3, - 7, - 6, - 2, - 16, - 4, - 4, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 5, - 2, - 2, - 5, - 4, - 2, - 2, - 8, - 2, - 5, - 6, - 2, - 2, - 2, - 3, - 3, - 7, - 3, - 2, - 5, - 4, - 5, - 2, - 3, - 3, - 3, - 6, - 2, - 9, - 4, - 3, - 3, - 16, - 6, - 2, - 4, - 3, - 4, - 8, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 9, - 2, - 2, - 2, - 2, - 3, - 3, - 9, - 3, - 2, - 5, - 2, - 2, - 2, - 3, - 5, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 4, - 2, - 16, - 4, - 5, - 3, - 2, - 3, - 3, - 8, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 16, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 11, - 4, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 3, - 4, - 3, - 4, - 4, - 3, - 3, - 3, - 4, - 3, - 3, - 10, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 20, - 14, - 3, - 5, - 4, - 3, - 4, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 2, - 4, - 3, - 4, - 2, - 3, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 3, - 2, - 12, - 3, - 3, - 3, - 3, - 2, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 2, - 2, - 5, - 5, - 6, - 7, - 7, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 11, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 6, - 6, - 6, - 6, - 2, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 5, - 3, - 12, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 3, - 8, - 8, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 5, - 3, - 2, - 2, - 3, - 3, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 14, - 2, - 3, - 2, - 3, - 2, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 2, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 2, - 3, - 5, - 5, - 6, - 3, - 3, - 2, - 3, - 2, - 3, - 10, - 13, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 7, - 2, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 12, - 2, - 2, - 3, - 10, - 3, - 3, - 3, - 3, - 2, - 2, - 5, - 3, - 2, - 2, - 2, - 2, - 5, - 8, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 10, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 8, - 4, - 2, - 2, - 2, - 2, - 2, - 10, - 2, - 4, - 2, - 2, - 3, - 3, - 21, - 2, - 5, - 3, - 3, - 2, - 5, - 6, - 2, - 2, - 10, - 2, - 2, - 7, - 11, - 7, - 3, - 3, - 3, - 16, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 3, - 6, - 8, - 2, - 7, - 2, - 2, - 8, - 3, - 16, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 2, - 8, - 3, - 6, - 4, - 2, - 3, - 2, - 2, - 4, - 11, - 2, - 2, - 5, - 4, - 11, - 4, - 2, - 10, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 4, - 2, - 4, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 9, - 5, - 6, - 4, - 7, - 3, - 2, - 4, - 5, - 2, - 2, - 3, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 5, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 4, - 3, - 4, - 4, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 10, - 4, - 2, - 11, - 6, - 2, - 10, - 3, - 2, - 2, - 7, - 9, - 5, - 5, - 2, - 3, - 5, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 5, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 3, - 3, - 3, - 4, - 5, - 5, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 2, - 2, - 2, - 4, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 2, - 2, - 3, - 3, - 2, - 5, - 6, - 2, - 7, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 4, - 2, - 3, - 3, - 6, - 3, - 2, - 2, - 4, - 2, - 3, - 7, - 3, - 5, - 7, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 6, - 2, - 3, - 4, - 4, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 3, - 5, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 16, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 16, - 16, - 9, - 8, - 8, - 10, - 8, - 8, - 2, - 8, - 3, - 6, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 2, - 3, - 5, - 6, - 2, - 3, - 3, - 3 - ], - "total": 8937, - "totalUnique": 33, - "unique": { - "2": 4767, - "3": 1943, - "4": 780, - "5": 509, - "6": 270, - "7": 169, - "8": 140, - "9": 92, - "10": 74, - "11": 47, - "12": 36, - "13": 18, - "14": 19, - "15": 7, - "16": 29, - "17": 4, - "18": 4, - "19": 1, - "20": 6, - "21": 3, - "22": 1, - "23": 1, - "27": 1, - "39": 1, - "46": 1, - "55": 4, - "56": 1, - "57": 1, - "68": 1, - "448": 4, - "449": 1, - "450": 1, - "452": 1 - }, - "uniquenessRatio": 0.0036925142665323934 - }, - "selectors": { - "min": 1, - "max": 38, - "mean": 1.2223341165939354, - "mode": 1, - "range": 37, - "sum": 10924, - "items": [ - 1, - 3, - 6, - 3, - 3, - 2, - 2, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 5, - 5, - 6, - 1, - 2, - 6, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 10, - 1, - 1, - 1, - 1, - 5, - 10, - 4, - 1, - 1, - 4, - 2, - 1, - 2, - 4, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 9, - 18, - 9, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 6, - 3, - 2, - 3, - 6, - 2, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 6, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 6, - 6, - 6, - 6, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 6, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 6, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 2, - 2, - 2, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 3, - 3, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 12, - 6, - 6, - 3, - 3, - 3, - 3, - 4, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 7, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 2, - 6, - 2, - 6, - 2, - 1, - 5, - 1, - 5, - 1, - 5, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 19, - 19, - 38, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 6, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 2, - 8, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 2, - 3, - 2, - 2, - 6, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 2, - 8, - 1, - 1, - 8, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 6, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 6, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 4, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 6, - 3, - 3, - 2, - 2, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 6, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 6, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 4, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 13, - 9, - 9, - 12, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 2, - 1, - 6, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 20, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 7, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 14, - 1, - 1, - 1, - 1, - 4, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 15, - 3, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 6, - 6, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 3, - 3, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 9, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 8937, - "totalUnique": 19, - "unique": { - "1": 7874, - "2": 681, - "3": 201, - "4": 87, - "5": 19, - "6": 39, - "7": 7, - "8": 4, - "9": 8, - "10": 4, - "11": 1, - "12": 4, - "13": 1, - "14": 1, - "15": 1, - "18": 1, - "19": 2, - "20": 1, - "38": 1 - }, - "uniquenessRatio": 0.002125993062548954 - }, - "declarations": { - "min": 0, - "max": 446, - "mean": 2.423184513818955, - "mode": 1, - "range": 446, - "sum": 21656, - "items": [ - 15, - 0, - 446, - 0, - 446, - 446, - 446, - 15, - 446, - 446, - 446, - 17, - 4, - 12, - 6, - 3, - 3, - 67, - 45, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 6, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 3, - 5, - 2, - 1, - 1, - 3, - 1, - 2, - 6, - 2, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 4, - 1, - 4, - 7, - 5, - 1, - 1, - 2, - 4, - 15, - 1, - 1, - 3, - 3, - 1, - 5, - 2, - 6, - 3, - 3, - 2, - 3, - 1, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 1, - 2, - 1, - 3, - 2, - 3, - 1, - 4, - 1, - 1, - 4, - 3, - 2, - 3, - 4, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 4, - 4, - 1, - 1, - 2, - 3, - 1, - 4, - 3, - 2, - 2, - 3, - 1, - 4, - 2, - 3, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 13, - 1, - 2, - 2, - 5, - 4, - 6, - 1, - 2, - 9, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 3, - 1, - 5, - 12, - 2, - 2, - 3, - 1, - 14, - 1, - 2, - 1, - 4, - 1, - 13, - 3, - 4, - 3, - 1, - 5, - 1, - 1, - 1, - 3, - 1, - 1, - 5, - 1, - 2, - 1, - 5, - 3, - 6, - 3, - 5, - 1, - 1, - 1, - 2, - 3, - 2, - 3, - 2, - 2, - 1, - 3, - 2, - 3, - 1, - 1, - 7, - 2, - 1, - 11, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 11, - 9, - 1, - 2, - 4, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 4, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 8, - 3, - 3, - 2, - 2, - 3, - 1, - 3, - 1, - 10, - 7, - 2, - 1, - 1, - 8, - 11, - 8, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 8, - 2, - 8, - 2, - 10, - 2, - 10, - 3, - 6, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 12, - 2, - 2, - 3, - 2, - 3, - 2, - 7, - 1, - 9, - 1, - 1, - 8, - 2, - 1, - 1, - 1, - 3, - 8, - 2, - 2, - 1, - 2, - 3, - 2, - 1, - 7, - 1, - 2, - 4, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 1, - 7, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 14, - 3, - 2, - 1, - 3, - 3, - 6, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 19, - 10, - 1, - 1, - 7, - 1, - 1, - 3, - 5, - 3, - 1, - 3, - 5, - 3, - 1, - 1, - 4, - 5, - 4, - 5, - 2, - 1, - 1, - 2, - 1, - 1, - 5, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 6, - 2, - 2, - 4, - 2, - 2, - 6, - 1, - 5, - 1, - 3, - 2, - 2, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 2, - 3, - 3, - 1, - 3, - 3, - 2, - 3, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 6, - 1, - 13, - 4, - 2, - 3, - 2, - 3, - 1, - 1, - 3, - 1, - 1, - 4, - 2, - 1, - 1, - 6, - 6, - 3, - 2, - 2, - 2, - 1, - 6, - 1, - 7, - 2, - 2, - 1, - 9, - 5, - 1, - 3, - 2, - 4, - 1, - 8, - 5, - 1, - 3, - 3, - 3, - 1, - 4, - 2, - 3, - 1, - 1, - 2, - 1, - 4, - 1, - 2, - 5, - 3, - 1, - 1, - 4, - 3, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 2, - 5, - 1, - 2, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 2, - 7, - 2, - 4, - 3, - 4, - 2, - 3, - 4, - 2, - 4, - 1, - 4, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 2, - 7, - 9, - 6, - 4, - 1, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 9, - 1, - 1, - 10, - 6, - 8, - 1, - 13, - 2, - 2, - 9, - 5, - 1, - 3, - 1, - 6, - 2, - 3, - 1, - 2, - 1, - 9, - 11, - 2, - 1, - 3, - 3, - 6, - 1, - 1, - 9, - 6, - 5, - 2, - 4, - 3, - 7, - 1, - 2, - 6, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 6, - 3, - 11, - 1, - 5, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 15, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 19, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 2, - 5, - 1, - 1, - 1, - 8, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 4, - 6, - 6, - 3, - 2, - 3, - 2, - 1, - 1, - 8, - 9, - 3, - 6, - 2, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 1, - 1, - 13, - 13, - 3, - 1, - 3, - 1, - 11, - 3, - 1, - 4, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 4, - 4, - 1, - 4, - 9, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 4, - 3, - 5, - 3, - 4, - 6, - 2, - 1, - 6, - 2, - 2, - 2, - 2, - 17, - 2, - 1, - 10, - 3, - 8, - 2, - 5, - 1, - 2, - 5, - 1, - 2, - 6, - 1, - 2, - 3, - 1, - 8, - 6, - 10, - 3, - 8, - 2, - 5, - 1, - 2, - 5, - 1, - 2, - 6, - 1, - 2, - 3, - 1, - 8, - 6, - 1, - 1, - 1, - 1, - 1, - 10, - 14, - 3, - 2, - 2, - 1, - 1, - 3, - 6, - 3, - 2, - 1, - 1, - 2, - 2, - 4, - 3, - 1, - 6, - 5, - 5, - 5, - 4, - 4, - 4, - 2, - 6, - 6, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 6, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 6, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 6, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 11, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 2, - 1, - 3, - 1, - 6, - 3, - 2, - 7, - 1, - 3, - 3, - 2, - 3, - 6, - 1, - 3, - 4, - 3, - 8, - 1, - 1, - 2, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 8, - 3, - 17, - 2, - 2, - 1, - 1, - 8, - 8, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 4, - 2, - 2, - 15, - 5, - 3, - 3, - 1, - 3, - 3, - 6, - 1, - 3, - 4, - 3, - 12, - 15, - 1, - 8, - 2, - 3, - 2, - 1, - 4, - 1, - 2, - 3, - 3, - 3, - 6, - 1, - 3, - 4, - 3, - 10, - 8, - 2, - 2, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 19, - 12, - 2, - 1, - 3, - 2, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 2, - 3, - 1, - 2, - 1, - 2, - 2, - 2, - 18, - 1, - 1, - 1, - 8, - 1, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 4, - 2, - 1, - 5, - 2, - 4, - 2, - 12, - 1, - 5, - 3, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 7, - 3, - 2, - 4, - 13, - 5, - 5, - 8, - 4, - 3, - 10, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 4, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 6, - 4, - 2, - 2, - 1, - 9, - 2, - 1, - 9, - 2, - 1, - 9, - 1, - 1, - 1, - 2, - 1, - 5, - 5, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 7, - 4, - 2, - 2, - 2, - 1, - 8, - 1, - 2, - 3, - 8, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 3, - 12, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 3, - 6, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 4, - 5, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 8, - 2, - 2, - 3, - 4, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 5, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 4, - 6, - 1, - 1, - 1, - 2, - 22, - 9, - 1, - 1, - 2, - 2, - 1, - 6, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 1, - 1, - 5, - 2, - 3, - 2, - 3, - 2, - 4, - 2, - 5, - 2, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 7, - 1, - 1, - 4, - 5, - 5, - 2, - 5, - 4, - 2, - 2, - 4, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 11, - 1, - 2, - 2, - 2, - 8, - 2, - 1, - 1, - 8, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 8, - 1, - 4, - 1, - 8, - 1, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 7, - 4, - 4, - 4, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 6, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 8, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 6, - 1, - 4, - 2, - 4, - 4, - 1, - 3, - 6, - 1, - 1, - 3, - 4, - 8, - 2, - 14, - 3, - 5, - 3, - 9, - 2, - 1, - 6, - 3, - 3, - 1, - 7, - 2, - 3, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 15, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 1, - 3, - 1, - 2, - 4, - 1, - 2, - 6, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 2, - 4, - 4, - 4, - 2, - 2, - 5, - 5, - 4, - 4, - 3, - 1, - 1, - 2, - 15, - 3, - 6, - 3, - 1, - 1, - 1, - 5, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 8, - 2, - 2, - 6, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 9, - 3, - 5, - 1, - 1, - 6, - 4, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 7, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 3, - 3, - 1, - 1, - 1, - 4, - 4, - 1, - 4, - 4, - 4, - 10, - 2, - 8, - 2, - 6, - 2, - 2, - 1, - 1, - 1, - 1, - 7, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 2, - 6, - 5, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 7, - 1, - 1, - 5, - 1, - 1, - 3, - 7, - 1, - 1, - 5, - 2, - 6, - 2, - 1, - 2, - 5, - 2, - 3, - 4, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 7, - 1, - 1, - 5, - 4, - 1, - 1, - 2, - 6, - 3, - 2, - 1, - 4, - 3, - 2, - 2, - 2, - 1, - 4, - 3, - 1, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 4, - 5, - 1, - 3, - 1, - 5, - 4, - 4, - 6, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 2, - 1, - 2, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 11, - 1, - 2, - 2, - 1, - 1, - 11, - 3, - 6, - 10, - 1, - 2, - 4, - 4, - 2, - 3, - 2, - 9, - 1, - 2, - 1, - 1, - 7, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 12, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 9, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 4, - 1, - 4, - 2, - 3, - 3, - 1, - 1, - 2, - 5, - 7, - 1, - 1, - 1, - 3, - 1, - 5, - 10, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 9, - 2, - 1, - 1, - 1, - 7, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 6, - 6, - 4, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 8, - 3, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 21, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 2, - 5, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 4, - 6, - 4, - 3, - 1, - 6, - 7, - 3, - 4, - 2, - 1, - 3, - 2, - 1, - 2, - 9, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 1, - 3, - 2, - 6, - 2, - 2, - 1, - 4, - 1, - 2, - 2, - 4, - 2, - 1, - 2, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 3, - 3, - 8, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 5, - 3, - 5, - 4, - 1, - 9, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 3, - 12, - 4, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 2, - 2, - 1, - 10, - 1, - 4, - 3, - 1, - 1, - 2, - 5, - 2, - 4, - 6, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 3, - 4, - 5, - 2, - 2, - 4, - 2, - 1, - 3, - 5, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 6, - 1, - 1, - 5, - 2, - 3, - 5, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 5, - 3, - 6, - 2, - 5, - 5, - 1, - 4, - 3, - 2, - 3, - 2, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 6, - 1, - 1, - 1, - 7, - 1, - 3, - 6, - 1, - 1, - 2, - 1, - 4, - 11, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 4, - 10, - 3, - 1, - 2, - 3, - 2, - 3, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 2, - 1, - 2, - 8, - 1, - 3, - 1, - 7, - 3, - 1, - 1, - 4, - 1, - 4, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 6, - 1, - 3, - 5, - 4, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 7, - 4, - 1, - 3, - 1, - 2, - 4, - 3, - 1, - 3, - 4, - 2, - 1, - 1, - 5, - 1, - 2, - 2, - 7, - 1, - 1, - 2, - 1, - 1, - 2, - 10, - 2, - 1, - 1, - 1, - 1, - 3, - 4, - 6, - 2, - 3, - 1, - 2, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 15, - 1, - 1, - 1, - 1, - 1, - 5, - 7, - 2, - 2, - 2, - 1, - 1, - 2, - 5, - 1, - 4, - 4, - 4, - 4, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 4, - 6, - 2, - 4, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 11, - 1, - 1, - 1, - 1, - 8, - 17, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 4, - 1, - 1, - 3, - 2, - 9, - 2, - 1, - 1, - 3, - 2, - 1, - 3, - 3, - 2, - 2, - 3, - 1, - 6, - 3, - 1, - 3, - 2, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 2, - 5, - 1, - 2, - 1, - 1, - 3, - 4, - 3, - 2, - 2, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 10, - 3, - 1, - 10, - 3, - 1, - 10, - 3, - 1, - 10, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 10, - 2, - 1, - 1, - 5, - 1, - 2, - 2, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 11, - 2, - 1, - 1, - 2, - 4, - 1, - 3, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 3, - 1, - 2, - 2, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 11, - 1, - 2, - 2, - 9, - 1, - 5, - 1, - 4, - 1, - 5, - 3, - 3, - 1, - 5, - 1, - 1, - 1, - 2, - 3, - 1, - 7, - 1, - 2, - 4, - 1, - 3, - 2, - 3, - 7, - 1, - 2, - 3, - 1, - 4, - 7, - 5, - 4, - 1, - 1, - 1, - 1, - 9, - 7, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 6, - 8, - 1, - 3, - 4, - 3, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 6, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 5, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 8, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 4, - 9, - 14, - 4, - 3, - 2, - 1, - 5, - 1, - 2, - 4, - 8, - 2, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 10, - 3, - 1, - 1, - 10, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 5, - 4, - 2, - 3, - 2, - 3, - 1, - 15, - 1, - 1, - 8, - 4, - 1, - 5, - 5, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 9, - 4, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 14, - 12, - 3, - 8, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 1, - 2, - 13, - 1, - 1, - 8, - 9, - 2, - 1, - 5, - 3, - 7, - 1, - 1, - 1, - 2, - 1, - 11, - 1, - 1, - 1, - 9, - 10, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 12, - 1, - 9, - 2, - 8, - 2, - 2, - 4, - 1, - 8, - 3, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 2, - 1, - 1, - 2, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 6, - 3, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 6, - 1, - 2, - 2, - 1, - 4, - 3, - 1, - 2, - 2, - 5, - 2, - 2, - 1, - 1, - 2, - 3, - 1, - 4, - 1, - 2, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 2, - 4, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 6, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 5, - 2, - 1, - 1, - 1, - 2, - 5, - 2, - 1, - 6, - 1, - 4, - 1, - 5, - 1, - 1, - 4, - 1, - 2, - 4, - 1, - 1, - 1, - 6, - 2, - 7, - 1, - 2, - 4, - 1, - 3, - 1, - 6, - 3, - 9, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 9, - 5, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 3, - 5, - 1, - 7, - 1, - 1, - 1, - 1, - 7, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 2, - 4, - 1, - 3, - 1, - 10, - 3, - 3, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 5, - 3, - 3, - 8, - 1, - 2, - 2, - 13, - 3, - 10, - 1, - 8, - 2, - 2, - 2, - 7, - 12, - 2, - 1, - 5, - 2, - 1, - 4, - 3, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 54, - 54, - 54, - 54, - 54, - 54, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 2, - 2, - 1, - 8, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 13, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 11, - 3, - 4, - 4, - 1, - 1, - 2, - 1, - 13, - 1, - 2, - 2, - 1, - 1, - 10, - 4, - 3, - 4, - 3, - 1, - 3, - 2, - 6, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 4, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 2, - 3, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 7, - 2, - 6, - 6, - 6, - 7, - 7, - 7, - 9, - 1, - 3, - 14, - 2, - 1, - 1, - 3, - 10, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 9, - 1, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 15, - 1, - 7, - 2, - 3, - 2, - 7, - 2, - 2, - 1, - 3, - 4, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 4, - 5, - 1, - 3, - 2, - 1, - 1, - 4, - 5, - 3, - 1, - 3, - 1, - 3, - 3, - 7, - 3, - 2, - 3, - 4, - 1, - 1, - 4, - 7, - 7, - 8, - 2, - 1, - 2, - 1, - 4, - 4, - 1, - 1, - 1, - 6, - 1, - 4, - 3, - 3, - 2, - 2, - 4, - 2, - 2, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 16, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 2, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 6, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 9, - 1, - 3, - 3, - 3, - 5, - 2, - 1, - 1, - 4, - 1, - 6, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 4, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 7, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 2, - 1, - 4, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 3, - 2, - 3, - 5, - 6, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 8, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 10, - 3, - 1, - 2, - 12, - 5, - 2, - 2, - 2, - 6, - 2, - 8, - 2, - 8, - 2, - 8, - 1, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 1, - 3, - 1, - 6, - 4, - 6, - 5, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 10, - 3, - 1, - 3, - 1, - 10, - 3, - 1, - 3, - 1, - 10, - 3, - 1, - 3, - 1, - 10, - 3, - 1, - 3, - 1, - 10, - 3, - 1, - 10, - 3, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 4, - 1, - 8, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 7, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 1, - 1, - 3, - 4, - 1, - 2, - 1, - 1, - 2, - 8, - 1, - 2, - 6, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 3, - 5, - 5, - 3, - 2, - 2, - 2, - 7, - 7, - 1, - 3, - 1, - 5, - 1, - 1, - 1, - 7, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 5, - 4, - 1, - 3, - 1, - 1, - 3, - 5, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 10, - 11, - 1, - 1, - 2, - 9, - 1, - 1, - 2, - 2, - 7, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 5, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 2, - 1, - 2, - 2, - 5, - 3, - 2, - 5, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 1, - 4, - 1, - 5, - 2, - 3, - 5, - 1, - 1, - 6, - 2, - 3, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 1, - 1, - 2, - 6, - 1, - 7, - 3, - 2, - 6, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 8, - 1, - 10, - 1, - 1, - 3, - 6, - 4, - 2, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 8, - 1, - 1, - 6, - 1, - 2, - 1, - 5, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 9, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 6, - 1, - 3, - 1, - 4, - 1, - 10, - 2, - 1, - 1, - 1, - 4, - 4, - 2, - 2, - 3, - 1, - 1, - 2, - 1, - 4, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 3, - 2, - 2, - 1, - 4, - 5, - 2, - 3, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 4, - 5, - 1, - 2, - 5, - 2, - 1, - 1, - 1, - 1, - 2, - 7, - 2, - 3, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 3, - 2, - 1, - 1, - 7, - 1, - 9, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 11, - 2, - 1, - 2, - 1, - 3, - 1, - 6, - 4, - 5, - 2, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 4, - 1, - 1, - 2, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 3, - 5, - 2, - 5, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 4, - 4, - 2, - 2, - 1, - 5, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 3, - 9, - 3, - 5, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 8, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 6, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 4, - 4, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 5, - 2, - 4, - 4, - 2, - 3, - 2, - 3, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 2, - 1, - 2, - 2, - 2, - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 3, - 2, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 1, - 10, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 5, - 1, - 4, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 5, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 2, - 3, - 1, - 5, - 3, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 7, - 2, - 6, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 8, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 3, - 5, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 2, - 4, - 1, - 1, - 1, - 5, - 1, - 2, - 5, - 1, - 1, - 4, - 1, - 1, - 1, - 6, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 4, - 6, - 2, - 7, - 1, - 5, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 4, - 2, - 3, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 2, - 2, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 6, - 2, - 3, - 2, - 3, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 3, - 5, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 9, - 5, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 3, - 5, - 4, - 6, - 1, - 3, - 1, - 4, - 3, - 2, - 3, - 5, - 6, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 7, - 5, - 5, - 3, - 3, - 2, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 5, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 2, - 4, - 5, - 8, - 1, - 1, - 2, - 1, - 10, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 3, - 2, - 2, - 2, - 1, - 8, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 4, - 3, - 2, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 4, - 4, - 1, - 4, - 3, - 1, - 4, - 1, - 2, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 8, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 3, - 1, - 2, - 4, - 12, - 10, - 3, - 4, - 1, - 1, - 1, - 6, - 3, - 2, - 1, - 1, - 2, - 1, - 4, - 3, - 1, - 1, - 1, - 6, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 5, - 4, - 6, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 7, - 2, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 6, - 2, - 2, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 3, - 1, - 1, - 7, - 1, - 4, - 5, - 1, - 1, - 1, - 2, - 2, - 6, - 2, - 1, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 5, - 1, - 8, - 3, - 2, - 2, - 15, - 5, - 1, - 3, - 2, - 3, - 7, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 2, - 8, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 4, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 15, - 3, - 4, - 2, - 1, - 2, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 15, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 3, - 2, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 1, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 19, - 13, - 2, - 1, - 3, - 2, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 3, - 2, - 3, - 1, - 2, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 2, - 1, - 10, - 1, - 2, - 1, - 1, - 1, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 10, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 5, - 5, - 5, - 5, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 2, - 11, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 13, - 1, - 2, - 1, - 2, - 1, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 6, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 11, - 1, - 1, - 1, - 9, - 2, - 2, - 2, - 2, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 9, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 2, - 1, - 19, - 1, - 4, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 9, - 1, - 1, - 6, - 10, - 6, - 2, - 2, - 2, - 15, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 2, - 5, - 7, - 1, - 6, - 1, - 1, - 7, - 2, - 15, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 1, - 6, - 1, - 4, - 3, - 1, - 2, - 1, - 1, - 3, - 10, - 1, - 1, - 4, - 1, - 8, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 6, - 2, - 3, - 1, - 6, - 2, - 1, - 3, - 4, - 1, - 1, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 2, - 3, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 3, - 1, - 10, - 5, - 1, - 9, - 2, - 1, - 1, - 6, - 8, - 4, - 3, - 1, - 2, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 3, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 1, - 1, - 2, - 2, - 1, - 4, - 4, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 3, - 1, - 2, - 4, - 2, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 5, - 1, - 2, - 3, - 3, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 15, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 15, - 15, - 7, - 7, - 7, - 7, - 7, - 7, - 1, - 6, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 1, - 4, - 5, - 1, - 2, - 2, - 2 - ], - "total": 8937, - "totalUnique": 26, - "unique": { - "0": 2, - "1": 5369, - "2": 1728, - "3": 702, - "4": 378, - "5": 199, - "6": 138, - "7": 128, - "8": 79, - "9": 50, - "10": 52, - "11": 22, - "12": 15, - "13": 13, - "14": 7, - "15": 27, - "16": 1, - "17": 4, - "18": 1, - "19": 5, - "21": 1, - "22": 1, - "45": 1, - "54": 6, - "67": 1, - "446": 7 - }, - "uniquenessRatio": 0.0029092536645406735 - } - }, - "selectors": { - "total": 10736, - "totalUnique": 9591, - "uniquenessRatio": 0.893349478390462, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 1, - 2, - 1 - ], - "sum": [ - 12, - 19836, - 2273 - ], - "mean": [ - 0.0011177347242921013, - 1.8476154992548435, - 0.21171758569299554 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 8, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 0, - 1 - ], - [ - 1, - 0, - 2 - ], - [ - 1, - 0, - 2 - ], - [ - 1, - 0, - 4 - ], - [ - 1, - 0, - 3 - ], - [ - 1, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ] - ], - "total": 10736, - "totalUnique": 35, - "unique": { - "0,1,0": 4261, - "0,2,0": 2345, - "0,1,1": 631, - "0,2,1": 568, - "0,0,1": 115, - "0,0,0": 1, - "0,0,2": 9, - "0,1,2": 82, - "0,3,0": 1503, - "0,3,1": 313, - "0,0,3": 4, - "0,4,0": 496, - "0,2,2": 78, - "0,2,3": 13, - "0,3,2": 35, - "0,5,0": 91, - "0,4,1": 81, - "0,5,1": 29, - "0,6,1": 11, - "0,6,0": 22, - "0,4,2": 8, - "0,1,3": 4, - "0,8,2": 1, - "0,5,2": 1, - "0,7,1": 3, - "0,7,0": 5, - "0,8,0": 9, - "1,0,0": 3, - "0,4,3": 1, - "0,3,3": 4, - "1,2,1": 1, - "1,0,1": 4, - "1,0,2": 2, - "1,0,4": 1, - "1,0,3": 1 - }, - "uniquenessRatio": 0.0032600596125186287 - }, - "complexity": { - "min": 1, - "max": 17, - "mean": 2.779433681073025, - "mode": 1, - "range": 16, - "sum": 29840, - "total": 10736, - "totalUnique": 16, - "unique": { - "1": 4355, - "2": 1060, - "3": 1966, - "4": 1317, - "5": 1040, - "6": 477, - "7": 299, - "8": 103, - "9": 58, - "10": 26, - "11": 10, - "12": 10, - "13": 6, - "14": 7, - "15": 1, - "17": 1 - }, - "uniquenessRatio": 0.0014903129657228018, - "items": [ - 1, - 1, - 4, - 4, - 1, - 2, - 4, - 5, - 4, - 5, - 1, - 4, - 5, - 1, - 4, - 5, - 4, - 5, - 4, - 5, - 1, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 7, - 2, - 2, - 3, - 4, - 4, - 4, - 4, - 5, - 6, - 6, - 2, - 2, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 7, - 7, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 3, - 1, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 4, - 5, - 1, - 2, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 4, - 5, - 3, - 3, - 3, - 5, - 3, - 1, - 2, - 3, - 4, - 5, - 4, - 5, - 2, - 2, - 3, - 3, - 3, - 4, - 5, - 5, - 6, - 3, - 3, - 4, - 2, - 2, - 3, - 4, - 4, - 5, - 3, - 1, - 3, - 2, - 3, - 4, - 5, - 4, - 5, - 2, - 2, - 3, - 2, - 2, - 3, - 4, - 4, - 5, - 4, - 4, - 5, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 3, - 3, - 1, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 6, - 5, - 7, - 4, - 6, - 4, - 6, - 4, - 6, - 1, - 4, - 4, - 3, - 4, - 5, - 4, - 4, - 4, - 4, - 6, - 5, - 7, - 4, - 6, - 4, - 6, - 4, - 6, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 3, - 3, - 4, - 4, - 4, - 1, - 2, - 2, - 2, - 2, - 3, - 2, - 5, - 2, - 2, - 3, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 1, - 2, - 2, - 1, - 2, - 3, - 1, - 4, - 2, - 4, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 4, - 2, - 4, - 3, - 5, - 3, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 6, - 5, - 5, - 3, - 1, - 6, - 4, - 1, - 2, - 2, - 3, - 7, - 7, - 7, - 7, - 3, - 3, - 3, - 3, - 2, - 2, - 3, - 5, - 1, - 3, - 3, - 1, - 3, - 2, - 6, - 6, - 6, - 6, - 1, - 2, - 1, - 5, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 3, - 3, - 3, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 5, - 5, - 7, - 4, - 5, - 5, - 7, - 4, - 4, - 5, - 5, - 1, - 3, - 1, - 3, - 4, - 5, - 2, - 4, - 4, - 3, - 1, - 1, - 1, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 6, - 4, - 2, - 2, - 1, - 3, - 2, - 2, - 3, - 1, - 2, - 4, - 6, - 3, - 5, - 4, - 4, - 3, - 5, - 4, - 5, - 4, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 3, - 5, - 7, - 7, - 5, - 7, - 7, - 3, - 3, - 4, - 5, - 8, - 8, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 5, - 3, - 5, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 4, - 6, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 4, - 6, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 4, - 6, - 3, - 5, - 1, - 1, - 1, - 4, - 4, - 5, - 1, - 2, - 2, - 3, - 5, - 3, - 4, - 6, - 5, - 6, - 8, - 3, - 4, - 6, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 6, - 4, - 1, - 1, - 2, - 5, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 2, - 2, - 2, - 3, - 5, - 3, - 4, - 6, - 5, - 6, - 8, - 3, - 4, - 6, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 4, - 4, - 3, - 5, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 4, - 6, - 3, - 3, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 1, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 3, - 4, - 6, - 4, - 5, - 7, - 5, - 4, - 5, - 3, - 4, - 6, - 4, - 5, - 7, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 2, - 1, - 3, - 5, - 4, - 4, - 4, - 6, - 6, - 5, - 4, - 7, - 6, - 7, - 6, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 4, - 4, - 5, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 5, - 3, - 3, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 5, - 3, - 5, - 5, - 5, - 7, - 5, - 7, - 5, - 3, - 5, - 5, - 3, - 4, - 6, - 8, - 8, - 4, - 6, - 8, - 4, - 6, - 8, - 4, - 6, - 4, - 6, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 4, - 3, - 5, - 7, - 5, - 7, - 6, - 7, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 3, - 3, - 2, - 2, - 2, - 3, - 5, - 2, - 3, - 6, - 2, - 2, - 6, - 2, - 2, - 6, - 2, - 5, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 4, - 2, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 5, - 5, - 6, - 8, - 1, - 2, - 2, - 5, - 5, - 7, - 7, - 4, - 4, - 5, - 5, - 5, - 4, - 8, - 7, - 5, - 4, - 7, - 6, - 8, - 10, - 7, - 9, - 3, - 4, - 6, - 4, - 4, - 2, - 6, - 4, - 5, - 7, - 5, - 5, - 6, - 6, - 7, - 7, - 6, - 7, - 3, - 4, - 4, - 4, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 1, - 4, - 2, - 5, - 5, - 5, - 4, - 4, - 6, - 7, - 7, - 7, - 5, - 5, - 6, - 5, - 5, - 4, - 6, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 4, - 4, - 3, - 2, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 4, - 4, - 1, - 1, - 2, - 4, - 2, - 2, - 3, - 4, - 4, - 5, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 6, - 7, - 3, - 4, - 3, - 5, - 2, - 6, - 2, - 6, - 2, - 6, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 6, - 8, - 8, - 3, - 5, - 5, - 7, - 7, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 4, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 4, - 4, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 3, - 1, - 2, - 4, - 5, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 5, - 5, - 4, - 5, - 5, - 2, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 6, - 6, - 5, - 6, - 6, - 2, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 6, - 6, - 5, - 6, - 6, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 4, - 4, - 4, - 4, - 5, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 5, - 3, - 4, - 7, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 4, - 4, - 7, - 7, - 7, - 9, - 9, - 9, - 7, - 7, - 7, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 5, - 3, - 5, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 5, - 4, - 6, - 7, - 4, - 5, - 4, - 6, - 6, - 7, - 4, - 5, - 1, - 2, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 7, - 10, - 12, - 10, - 4, - 5, - 5, - 5, - 9, - 5, - 6, - 6, - 6, - 7, - 5, - 5, - 6, - 4, - 5, - 7, - 10, - 12, - 10, - 4, - 5, - 9, - 5, - 6, - 6, - 10, - 10, - 5, - 4, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 4, - 2, - 3, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 3, - 4, - 3, - 6, - 6, - 5, - 5, - 5, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 5, - 5, - 3, - 6, - 6, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 6, - 6, - 2, - 4, - 5, - 3, - 5, - 5, - 4, - 3, - 4, - 3, - 4, - 5, - 3, - 4, - 5, - 3, - 4, - 5, - 3, - 6, - 1, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 5, - 3, - 3, - 6, - 4, - 3, - 3, - 3, - 3, - 4, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 4, - 4, - 5, - 5, - 4, - 6, - 4, - 2, - 3, - 3, - 3, - 3, - 3, - 6, - 7, - 4, - 5, - 5, - 3, - 1, - 1, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 4, - 5, - 3, - 3, - 5, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 2, - 1, - 4, - 3, - 4, - 1, - 2, - 2, - 2, - 6, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 3, - 3, - 1, - 4, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 6, - 1, - 3, - 6, - 1, - 1, - 4, - 2, - 4, - 2, - 4, - 3, - 2, - 3, - 3, - 1, - 4, - 4, - 3, - 2, - 3, - 1, - 2, - 4, - 6, - 4, - 3, - 2, - 3, - 4, - 3, - 5, - 1, - 4, - 2, - 2, - 2, - 3, - 1, - 4, - 6, - 4, - 3, - 2, - 3, - 4, - 5, - 3, - 1, - 2, - 2, - 1, - 3, - 4, - 4, - 4, - 6, - 3, - 6, - 3, - 1, - 2, - 3, - 1, - 1, - 3, - 5, - 6, - 1, - 3, - 4, - 4, - 5, - 3, - 6, - 4, - 6, - 3, - 5, - 3, - 5, - 3, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 2, - 2, - 2, - 5, - 5, - 5, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 4, - 5, - 5, - 5, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 2, - 2, - 3, - 2, - 4, - 5, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 4, - 1, - 3, - 1, - 2, - 4, - 6, - 3, - 5, - 7, - 1, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 6, - 8, - 5, - 7, - 9, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 4, - 4, - 4, - 4, - 6, - 8, - 5, - 5, - 5, - 6, - 5, - 1, - 1, - 1, - 1, - 3, - 5, - 6, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 5, - 3, - 3, - 4, - 4, - 1, - 1, - 5, - 5, - 6, - 6, - 6, - 3, - 4, - 1, - 1, - 1, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 5, - 6, - 7, - 1, - 3, - 1, - 1, - 4, - 3, - 3, - 1, - 6, - 6, - 6, - 6, - 1, - 6, - 6, - 6, - 6, - 1, - 3, - 5, - 3, - 5, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 2, - 2, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 5, - 5, - 4, - 5, - 5, - 5, - 3, - 3, - 5, - 3, - 4, - 3, - 3, - 5, - 5, - 5, - 5, - 4, - 4, - 3, - 4, - 4, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 1, - 3, - 3, - 5, - 5, - 5, - 4, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 5, - 4, - 5, - 4, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 2, - 1, - 2, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 5, - 5, - 3, - 7, - 1, - 3, - 2, - 3, - 4, - 4, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 4, - 3, - 3, - 2, - 4, - 2, - 1, - 2, - 2, - 4, - 3, - 1, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 1, - 4, - 2, - 3, - 1, - 2, - 3, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 1, - 1, - 2, - 3, - 3, - 5, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 4, - 6, - 6, - 8, - 5, - 6, - 5, - 6, - 1, - 5, - 6, - 8, - 6, - 8, - 7, - 8, - 7, - 8, - 12, - 8, - 9, - 1, - 2, - 2, - 4, - 5, - 8, - 9, - 4, - 5, - 6, - 7, - 7, - 9, - 8, - 10, - 7, - 9, - 8, - 10, - 7, - 9, - 8, - 10, - 4, - 5, - 5, - 4, - 3, - 4, - 4, - 6, - 4, - 6, - 4, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 7, - 7, - 7, - 4, - 4, - 4, - 3, - 5, - 5, - 3, - 1, - 4, - 2, - 2, - 4, - 2, - 5, - 5, - 5, - 4, - 4, - 6, - 7, - 7, - 7, - 5, - 5, - 6, - 5, - 5, - 4, - 6, - 5, - 7, - 5, - 2, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 3, - 1, - 2, - 2, - 1, - 3, - 4, - 4, - 3, - 3, - 5, - 5, - 6, - 6, - 5, - 5, - 4, - 7, - 9, - 3, - 4, - 4, - 4, - 4, - 6, - 3, - 3, - 3, - 1, - 3, - 2, - 2, - 3, - 4, - 1, - 3, - 1, - 2, - 1, - 1, - 5, - 3, - 4, - 4, - 4, - 6, - 6, - 6, - 5, - 5, - 5, - 5, - 7, - 6, - 2, - 5, - 1, - 6, - 3, - 3, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 3, - 4, - 2, - 3, - 4, - 2, - 4, - 3, - 5, - 5, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 4, - 4, - 2, - 1, - 1, - 3, - 3, - 4, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 4, - 5, - 4, - 1, - 4, - 4, - 4, - 1, - 3, - 3, - 3, - 1, - 5, - 2, - 2, - 2, - 3, - 3, - 4, - 4, - 5, - 5, - 3, - 3, - 4, - 4, - 4, - 4, - 5, - 5, - 3, - 3, - 3, - 9, - 9, - 5, - 3, - 2, - 5, - 2, - 4, - 4, - 2, - 3, - 3, - 4, - 2, - 3, - 3, - 4, - 2, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 5, - 5, - 6, - 4, - 5, - 5, - 6, - 4, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 4, - 4, - 5, - 5, - 5, - 5, - 6, - 6, - 4, - 4, - 5, - 5, - 5, - 5, - 6, - 6, - 4, - 4, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 7, - 3, - 3, - 4, - 4, - 3, - 5, - 5, - 6, - 6, - 5, - 3, - 5, - 5, - 6, - 5, - 5, - 2, - 7, - 7, - 4, - 7, - 7, - 4, - 7, - 7, - 7, - 7, - 4, - 4, - 9, - 9, - 6, - 5, - 4, - 4, - 3, - 3, - 3, - 1, - 5, - 5, - 2, - 1, - 3, - 2, - 1, - 4, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 4, - 4, - 1, - 5, - 1, - 2, - 2, - 1, - 2, - 2, - 3, - 1, - 1, - 3, - 5, - 4, - 3, - 5, - 4, - 4, - 5, - 5, - 4, - 4, - 3, - 5, - 4, - 3, - 4, - 4, - 5, - 3, - 5, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 4, - 4, - 4, - 1, - 1, - 2, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 5, - 6, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 2, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 4, - 3, - 3, - 5, - 6, - 6, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 2, - 2, - 1, - 3, - 2, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 1, - 3, - 5, - 4, - 6, - 5, - 3, - 3, - 4, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 4, - 1, - 3, - 2, - 3, - 3, - 5, - 3, - 3, - 5, - 7, - 1, - 1, - 3, - 1, - 2, - 4, - 3, - 5, - 6, - 6, - 7, - 6, - 6, - 7, - 6, - 7, - 3, - 3, - 5, - 5, - 6, - 3, - 5, - 1, - 3, - 1, - 3, - 5, - 3, - 3, - 4, - 3, - 4, - 3, - 4, - 1, - 3, - 3, - 1, - 1, - 3, - 4, - 1, - 2, - 2, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 5, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 7, - 4, - 4, - 4, - 1, - 1, - 4, - 3, - 6, - 7, - 4, - 4, - 4, - 4, - 3, - 3, - 5, - 1, - 2, - 2, - 2, - 3, - 2, - 1, - 1, - 3, - 3, - 2, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 8, - 8, - 6, - 6, - 6, - 6, - 1, - 3, - 3, - 4, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 2, - 1, - 3, - 3, - 3, - 5, - 2, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 1, - 2, - 3, - 2, - 3, - 2, - 1, - 1, - 3, - 3, - 1, - 5, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 4, - 6, - 4, - 4, - 4, - 1, - 5, - 3, - 3, - 8, - 7, - 10, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 5, - 3, - 4, - 3, - 3, - 3, - 1, - 1, - 3, - 2, - 4, - 2, - 3, - 3, - 3, - 4, - 3, - 3, - 1, - 3, - 5, - 5, - 3, - 3, - 4, - 1, - 2, - 2, - 1, - 3, - 3, - 2, - 2, - 3, - 3, - 1, - 3, - 5, - 1, - 3, - 5, - 5, - 5, - 4, - 6, - 6, - 6, - 3, - 5, - 5, - 4, - 4, - 6, - 6, - 1, - 3, - 1, - 1, - 4, - 4, - 5, - 6, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 2, - 4, - 3, - 3, - 2, - 4, - 4, - 7, - 2, - 2, - 4, - 4, - 4, - 4, - 7, - 7, - 2, - 5, - 6, - 6, - 7, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 2, - 1, - 2, - 3, - 3, - 1, - 5, - 1, - 4, - 1, - 2, - 2, - 3, - 2, - 3, - 1, - 3, - 5, - 3, - 1, - 1, - 3, - 2, - 3, - 3, - 1, - 4, - 8, - 8, - 6, - 3, - 5, - 5, - 6, - 2, - 4, - 4, - 5, - 5, - 6, - 2, - 4, - 5, - 5, - 5, - 5, - 1, - 3, - 3, - 1, - 6, - 6, - 6, - 6, - 9, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 1, - 1, - 3, - 1, - 2, - 4, - 3, - 3, - 5, - 3, - 1, - 3, - 4, - 3, - 3, - 4, - 4, - 3, - 1, - 3, - 2, - 2, - 4, - 1, - 2, - 2, - 1, - 3, - 2, - 2, - 2, - 4, - 1, - 3, - 3, - 4, - 7, - 9, - 5, - 8, - 1, - 3, - 4, - 6, - 5, - 5, - 4, - 3, - 5, - 3, - 3, - 4, - 5, - 7, - 9, - 7, - 8, - 7, - 8, - 7, - 7, - 3, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 8, - 8, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 7, - 7, - 7, - 11, - 11, - 5, - 7, - 7, - 7, - 5, - 7, - 7, - 7, - 5, - 7, - 7, - 5, - 5, - 5, - 8, - 8, - 10, - 9, - 9, - 7, - 7, - 5, - 6, - 6, - 8, - 10, - 8, - 8, - 17, - 8, - 10, - 5, - 7, - 5, - 9, - 11, - 9, - 6, - 6, - 11, - 11, - 11, - 7, - 7, - 7, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 3, - 3, - 1, - 3, - 4, - 4, - 2, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 4, - 2, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 3, - 3, - 1, - 1, - 2, - 2, - 2, - 4, - 2, - 2, - 3, - 3, - 2, - 1, - 2, - 1, - 2, - 2, - 5, - 3, - 4, - 4, - 3, - 4, - 4, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 4, - 3, - 1, - 1, - 4, - 2, - 4, - 6, - 7, - 6, - 7, - 7, - 6, - 7, - 8, - 4, - 5, - 6, - 6, - 6, - 7, - 7, - 1, - 2, - 1, - 1, - 3, - 5, - 1, - 3, - 4, - 1, - 3, - 1, - 5, - 6, - 5, - 7, - 6, - 6, - 5, - 8, - 7, - 5, - 7, - 8, - 8, - 9, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 5, - 6, - 7, - 6, - 7, - 4, - 5, - 14, - 15, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 4, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 6, - 6, - 6, - 6, - 6, - 5, - 5, - 5, - 7, - 5, - 7, - 5, - 7, - 9, - 10, - 10, - 9, - 9, - 9, - 9, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 10, - 10, - 12, - 7, - 9, - 9, - 9, - 7, - 5, - 7, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 12, - 7, - 7, - 7, - 7, - 7, - 9, - 7, - 9, - 7, - 10, - 11, - 10, - 10, - 11, - 11, - 7, - 8, - 8, - 8, - 8, - 8, - 9, - 5, - 5, - 6, - 6, - 5, - 3, - 3, - 3, - 3, - 5, - 4, - 4, - 4, - 5, - 3, - 2, - 2, - 4, - 4, - 2, - 2, - 1, - 1, - 5, - 1, - 3, - 1, - 2, - 1, - 2, - 2, - 3, - 4, - 1, - 1, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 4, - 4, - 2, - 5, - 7, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 5, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 7, - 5, - 5, - 5, - 4, - 5, - 5, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 3, - 5, - 1, - 3, - 3, - 2, - 4, - 4, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 1, - 2, - 3, - 3, - 2, - 2, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 1, - 4, - 4, - 4, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 4, - 3, - 3, - 1, - 5, - 1, - 3, - 4, - 4, - 5, - 7, - 9, - 9, - 5, - 7, - 7, - 7, - 8, - 6, - 9, - 3, - 3, - 5, - 6, - 6, - 5, - 5, - 4, - 6, - 5, - 6, - 6, - 4, - 6, - 6, - 1, - 2, - 2, - 1, - 1, - 4, - 4, - 1, - 3, - 3, - 4, - 4, - 1, - 2, - 2, - 3, - 3, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 3, - 4, - 1, - 2, - 3, - 3, - 4, - 4, - 4, - 3, - 4, - 3, - 4, - 5, - 3, - 3, - 5, - 3, - 3, - 1, - 2, - 1, - 3, - 3, - 1, - 5, - 5, - 3, - 3, - 4, - 1, - 3, - 4, - 4, - 2, - 4, - 1, - 1, - 4, - 4, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 4, - 3, - 5, - 6, - 3, - 1, - 2, - 1, - 7, - 7, - 5, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 4, - 2, - 2, - 2, - 1, - 4, - 6, - 2, - 5, - 6, - 4, - 7, - 5, - 5, - 1, - 1, - 3, - 5, - 5, - 6, - 5, - 3, - 5, - 5, - 3, - 4, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 1, - 1, - 4, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 2, - 2, - 5, - 6, - 5, - 5, - 5, - 5, - 3, - 5, - 4, - 4, - 1, - 1, - 3, - 2, - 4, - 3, - 4, - 8, - 10, - 8, - 8, - 8, - 8, - 8, - 14, - 14, - 14, - 12, - 12, - 12, - 13, - 13, - 13, - 13, - 13, - 13, - 14, - 14, - 14, - 1, - 3, - 4, - 4, - 3, - 1, - 3, - 4, - 2, - 2, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 1, - 2, - 6, - 4, - 3, - 4, - 2, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 2, - 1, - 1, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 1, - 5, - 5, - 5, - 8, - 1, - 2, - 4, - 1, - 3, - 6, - 6, - 8, - 8, - 8, - 8, - 3, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 3, - 4, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 1, - 3, - 2, - 3, - 5, - 7, - 2, - 4, - 1, - 2, - 1, - 3, - 4, - 3, - 1, - 3, - 3, - 4, - 3, - 3, - 7, - 5, - 6, - 6, - 5, - 1, - 7, - 5, - 3, - 5, - 5, - 6, - 5, - 3, - 5, - 5, - 5, - 5, - 3, - 6, - 4, - 7, - 5, - 5, - 6, - 4, - 3, - 3, - 5, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 4, - 5, - 4, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 2, - 1, - 1, - 7, - 7, - 7, - 6, - 6, - 6, - 7, - 6, - 7, - 6, - 7, - 6, - 7, - 7, - 7, - 6, - 6, - 6, - 7, - 6, - 7, - 6, - 7, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 5, - 4, - 1, - 1, - 1, - 4, - 5, - 1, - 1, - 3, - 4, - 7, - 7, - 1, - 5, - 5, - 2, - 2, - 3, - 1, - 1, - 3, - 3, - 2, - 1, - 3, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 4, - 4, - 1, - 2, - 5, - 1, - 1, - 2, - 2, - 3, - 4, - 1, - 5, - 1, - 5, - 7, - 9, - 1, - 6, - 7, - 6, - 4, - 4, - 7, - 7, - 5, - 4, - 4, - 5, - 8, - 11, - 10, - 6, - 9, - 8, - 6, - 9, - 8, - 5, - 5, - 3, - 4, - 3, - 3, - 3, - 3, - 1, - 9, - 10, - 12, - 9, - 10, - 12, - 4, - 5, - 7, - 6, - 5, - 1, - 5, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 2, - 4, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 5, - 5, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 3, - 1, - 2, - 4, - 1, - 1, - 2, - 1, - 2, - 4, - 5, - 3, - 4, - 3, - 1, - 3, - 5, - 6, - 3, - 5, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 5, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 4, - 5, - 5, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 4, - 6, - 6, - 4, - 5, - 3, - 4, - 4, - 3, - 4, - 5, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 1, - 3, - 3, - 3, - 2, - 3, - 1, - 4, - 3, - 4, - 3, - 3, - 1, - 3, - 1, - 2, - 2, - 3, - 5, - 1, - 3, - 4, - 4, - 4, - 9, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 4, - 1, - 3, - 3, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 2, - 4, - 4, - 6, - 6, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 6, - 6, - 4, - 4, - 3, - 4, - 6, - 4, - 3, - 1, - 2, - 1, - 5, - 1, - 2, - 2, - 3, - 1, - 2, - 1, - 1, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 5, - 3, - 1, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 3, - 1, - 4, - 4, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 4, - 3, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 6, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 5, - 3, - 3, - 5, - 4, - 4, - 4, - 4, - 6, - 6, - 4, - 4, - 6, - 4, - 4, - 6, - 3, - 5, - 3, - 5, - 4, - 4, - 6, - 6, - 4, - 6, - 4, - 6, - 4, - 4, - 4, - 4, - 3, - 1, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 3, - 3, - 5, - 3, - 5, - 1, - 6, - 1, - 3, - 2, - 4, - 1, - 1, - 4, - 6, - 6, - 6, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 1, - 3, - 4, - 3, - 3, - 4, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 3, - 4, - 5, - 6, - 3, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 1, - 1, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 6, - 4, - 5, - 7, - 5, - 3, - 7, - 3, - 5, - 3, - 3, - 5, - 3, - 6, - 3, - 4, - 1, - 7, - 3, - 3, - 3, - 3, - 4, - 7, - 1, - 2, - 2, - 4, - 1, - 2, - 4, - 4, - 2, - 3, - 1, - 3, - 1, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 3, - 1, - 3, - 3, - 4, - 3, - 5, - 5, - 3, - 5, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 3, - 3, - 3, - 7, - 3, - 5, - 5, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 5, - 5, - 3, - 4, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 5, - 5, - 5, - 5, - 1, - 3, - 4, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 1, - 3, - 7, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 3, - 5, - 5, - 5, - 5, - 3, - 5, - 6, - 6, - 7, - 8, - 5, - 5, - 6, - 4, - 3, - 5, - 7, - 3, - 3, - 1, - 1, - 1, - 3, - 4, - 3, - 3, - 4, - 3, - 3, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 7, - 3, - 3, - 5, - 5, - 6, - 6, - 1, - 3, - 4, - 4, - 6, - 6, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 2, - 4, - 6, - 4, - 4, - 5, - 3, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 3, - 1, - 2, - 2, - 1, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 4, - 7, - 3, - 5, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 7, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 3, - 3, - 2, - 4, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 4, - 4, - 1, - 1, - 3, - 3, - 1, - 5, - 7, - 6, - 4, - 3, - 4, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 3, - 2, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 6, - 6, - 5, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 2, - 4, - 2, - 2, - 1, - 2, - 1, - 2, - 4, - 1, - 3, - 3, - 3, - 5, - 3, - 1, - 1, - 3, - 4, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 3, - 5, - 1, - 3, - 5, - 7, - 3, - 1, - 3, - 3, - 4, - 1, - 2, - 2, - 4, - 3, - 3, - 6, - 6, - 5, - 6, - 6, - 5, - 5, - 5, - 4, - 3, - 4, - 4, - 5, - 4, - 6, - 6, - 7, - 6, - 6, - 6, - 7, - 6, - 3, - 5, - 1, - 2, - 2, - 3, - 1, - 2, - 1, - 6, - 5, - 2, - 1, - 3, - 3, - 3, - 1, - 4, - 4, - 3, - 6, - 1, - 6, - 9, - 8, - 8, - 8, - 8, - 9, - 1, - 3, - 4, - 4, - 5, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 4, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 4, - 4, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 4, - 1, - 3, - 3, - 3, - 4, - 4, - 5, - 5, - 3, - 5, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 6, - 1, - 2, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 4, - 3, - 3, - 1, - 1, - 2, - 1, - 7, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 4, - 6, - 6, - 6, - 4, - 5, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 5, - 4, - 3, - 3, - 3, - 4, - 3, - 10, - 8, - 1, - 3, - 3, - 3, - 5, - 6, - 7, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 7, - 7, - 4, - 6, - 6, - 5, - 5, - 6, - 7, - 7, - 8, - 7, - 4, - 5, - 1, - 2, - 2, - 2, - 3, - 3, - 5, - 6, - 3, - 3, - 5, - 3, - 5, - 6, - 3, - 4, - 5, - 4, - 6, - 6, - 4, - 4, - 6, - 6, - 4, - 4, - 6, - 4, - 4, - 4, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 6, - 6, - 6, - 5, - 6, - 6, - 6, - 5, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 4, - 4, - 3, - 3, - 4, - 5, - 6, - 6, - 6, - 6, - 6, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 5, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 1, - 3, - 3, - 4, - 4, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 4, - 4, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 3, - 3, - 4, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 3, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 2, - 3, - 4, - 3, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 3, - 4, - 4, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 5, - 1, - 1, - 3, - 5, - 6, - 6, - 6, - 7, - 2, - 2, - 3, - 3, - 3, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 6, - 6, - 6, - 6, - 4, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 5, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 3, - 3, - 3, - 1, - 1, - 5, - 1, - 4, - 3, - 6, - 5, - 2, - 4, - 1, - 2, - 2, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 5, - 3, - 5, - 5, - 4, - 3, - 3, - 5, - 1, - 3, - 1, - 3, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 3, - 1, - 1, - 1, - 5, - 6, - 5, - 5, - 6, - 1, - 1, - 2, - 4, - 1, - 1, - 5, - 1, - 5, - 1, - 1, - 1, - 5, - 7, - 2, - 1, - 3, - 5, - 3, - 3, - 1, - 3, - 3, - 3, - 5, - 5, - 6, - 9, - 9, - 5, - 5, - 5, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 7, - 3, - 4, - 4, - 3, - 5, - 3, - 3, - 4, - 5, - 5, - 5, - 4, - 3, - 3, - 4, - 4, - 4, - 5, - 4, - 4, - 1, - 3, - 1, - 4, - 3, - 3, - 5, - 7, - 9, - 3, - 3, - 4, - 4, - 3, - 2, - 2, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 6, - 6, - 3, - 4, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 1, - 3, - 3, - 4, - 6, - 6, - 3, - 1, - 2, - 3, - 2, - 4, - 3, - 3, - 3, - 2, - 4, - 1, - 1, - 5, - 4, - 4, - 3, - 3, - 4, - 4, - 1, - 3, - 1, - 4, - 4, - 4, - 3, - 6, - 3, - 3, - 3, - 5, - 6, - 3, - 4, - 5, - 4, - 3, - 5, - 5, - 5, - 3, - 3, - 4, - 4, - 1, - 1, - 3, - 4, - 3, - 4, - 1, - 3, - 3, - 7, - 7, - 7, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 4, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 1, - 2, - 1, - 5, - 7, - 3, - 6, - 8, - 2, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 5, - 3, - 5, - 6, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 3, - 3, - 1, - 3, - 4, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 6, - 7, - 8, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 5, - 9, - 3, - 3, - 3, - 3, - 6, - 6, - 6, - 5, - 6, - 4, - 7, - 4, - 4, - 5, - 3, - 4, - 3, - 1, - 3, - 5, - 3, - 3, - 4, - 6, - 1, - 2, - 3, - 1, - 1, - 2, - 1, - 3, - 3, - 5, - 2, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 3, - 3, - 3, - 4, - 4, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 2, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 4, - 5, - 5, - 1, - 3, - 5, - 3, - 4, - 4, - 9, - 5, - 6, - 3, - 9, - 3, - 3, - 2, - 4, - 4, - 5, - 5, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 5, - 3, - 3, - 4, - 4, - 3, - 3, - 6, - 7, - 7, - 4, - 6, - 3, - 5, - 5, - 6, - 3, - 3, - 3, - 5, - 3, - 5, - 2, - 3, - 5, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 8, - 1, - 1, - 1, - 3, - 5, - 5, - 3, - 4, - 5, - 4, - 4, - 5, - 6, - 1, - 1, - 1, - 5, - 5, - 5, - 6, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 4, - 1, - 4, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 5, - 4, - 4, - 2, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 5, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 1, - 3, - 3, - 3, - 5, - 5, - 8, - 7, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 4, - 4, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 4, - 3, - 4, - 2, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 1, - 5, - 5, - 1, - 1, - 1, - 1, - 2, - 4, - 3, - 3, - 4, - 4, - 5, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 3, - 5, - 5, - 1, - 5, - 3, - 4, - 5, - 3, - 5, - 3, - 5, - 3, - 5, - 3, - 5, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 2, - 3, - 1, - 5, - 2, - 6, - 1, - 1, - 1, - 4, - 5, - 2, - 5, - 5, - 5, - 6, - 2, - 1, - 1, - 1, - 3, - 5, - 5, - 7, - 1, - 1, - 3, - 3, - 2, - 1, - 3, - 1, - 7, - 7, - 4, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 1, - 2, - 3, - 1, - 5, - 2, - 6, - 1, - 1, - 1, - 4, - 5, - 2, - 5, - 5, - 5, - 6, - 2, - 1, - 1, - 1, - 3, - 5, - 5, - 7, - 3, - 4, - 4, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 4, - 2, - 3, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 2, - 4, - 1, - 3, - 3, - 5, - 5, - 7, - 7, - 3, - 3, - 4, - 4, - 3, - 7, - 7, - 7, - 7, - 8, - 8, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 6, - 3, - 5, - 5, - 3, - 5, - 5, - 3, - 5, - 5, - 3, - 7, - 7, - 5, - 3, - 7, - 7, - 5, - 3, - 7, - 7, - 5, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 3, - 4, - 4, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 1, - 2, - 4, - 3, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 6, - 3, - 1, - 2, - 2, - 1, - 1, - 4, - 3, - 1, - 4, - 2, - 4, - 4, - 4, - 5, - 5, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 5, - 6, - 5, - 8, - 1, - 2, - 3, - 3, - 3, - 3, - 3, - 1, - 7, - 4, - 5, - 4, - 4, - 4, - 4, - 7, - 7, - 6, - 5, - 5, - 1, - 4, - 4, - 2, - 5, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 1, - 1, - 4, - 4, - 4, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 2, - 1, - 1, - 2, - 1, - 3, - 2, - 1, - 3, - 4, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 5, - 1, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 6, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 6, - 6, - 6, - 4, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ] - }, - "id": { - "total": 12, - "totalUnique": 12, - "unique": { - "#__primerPortalRoot__": 1, - ".hx_tabnav-in-dropdown #cloud-tab[aria-selected=false]::after": 1, - "#serverstats": 1, - "#user-content-toc": 1, - "#user-content-toc tr": 1, - "#user-content-toc td": 1, - "#user-content-toc ul": 1, - "#user-content-toc ul li": 1, - "#user-content-toc ul ul": 1, - "#user-content-toc ul ul li::before": 1, - "#user-content-toc ul ul ul": 1, - "#user-content-toctitle h2": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0011177347242921013 - }, - "pseudoClasses": { - "total": 1942, - "totalUnique": 33, - "unique": { - "root": 65, - "not": 344, - "hover": 484, - "focus": 252, - "focus-visible": 112, - "disabled": 57, - "only-child": 6, - "active": 107, - "first-child": 91, - "last-child": 87, - "checked": 22, - "focus-within": 11, - "first-of-type": 14, - "last-of-type": 14, - "nth-child": 10, - "nth-last-child": 1, - "target": 16, - "empty": 13, - "is": 4, - "popover-open": 1, - "before": 113, - "after": 71, - "indeterminate": 1, - "nth-of-type": 30, - "has": 2, - "placeholder-shown": 3, - "placeholder": 1, - "dir": 2, - "defined": 1, - "-webkit-autofill": 2, - "invalid": 2, - "nth-last-of-type": 1, - "visited": 2 - }, - "uniquenessRatio": 0.016992790937178166 - }, - "accessibility": { - "total": 331, - "totalUnique": 317, - "unique": { - "[role=button]:focus": 1, - "[role=button]:focus:not(:focus-visible)": 1, - "[role=button]:focus-visible": 1, - ".btn[aria-disabled=true]": 2, - ".btn[aria-selected=true]": 1, - ".btn[aria-disabled=true] .octicon": 1, - ".btn-primary[aria-selected=true]": 1, - ".btn-primary[aria-disabled=true]": 1, - ".btn-primary[aria-disabled=true] .octicon": 1, - ".btn-outline[aria-selected=true]": 1, - ".btn-outline[aria-selected=true]:focus": 1, - ".btn-outline[aria-selected=true]:focus:not(:focus-visible)": 1, - ".btn-outline[aria-selected=true]:focus-visible": 1, - ".btn-outline[aria-disabled=true]": 1, - ".btn-outline[aria-disabled=true] .Counter": 1, - ".btn-danger[aria-selected=true]": 1, - ".btn-danger[aria-disabled=true]": 1, - ".btn-danger[aria-disabled=true] .Counter": 1, - ".btn-danger[aria-disabled=true] .octicon": 1, - ".BtnGroup-item[aria-selected=true]": 1, - ".BtnGroup-item[aria-selected=true] + .BtnGroup-item": 1, - ".BtnGroup-item[aria-selected=true] + .BtnGroup-parent .BtnGroup-item": 1, - ".BtnGroup-parent[aria-selected=true] .BtnGroup-item": 1, - ".BtnGroup-parent[aria-selected=true] + .BtnGroup-item": 1, - ".BtnGroup-parent[aria-selected=true] + .BtnGroup-parent .BtnGroup-item": 1, - ".btn-link[aria-disabled=true]": 1, - ".btn-link[aria-disabled=true]:hover": 1, - ".btn-invisible[aria-selected=true]": 1, - ".btn-invisible[aria-disabled=true]": 1, - ".btn-octicon[aria-disabled=true]": 1, - ".btn-octicon[aria-disabled=true]:hover": 1, - ".filter-item[aria-selected=true]": 1, - ".filter-item[aria-current]:not([aria-current=false])": 1, - ".filter-item[aria-selected=true]:focus": 1, - ".filter-item[aria-current]:not([aria-current=false]):focus": 1, - ".filter-item[aria-selected=true]:focus:not(:focus-visible)": 1, - ".filter-item[aria-current]:not([aria-current=false]):focus:not(:focus-visible)": 1, - ".filter-item[aria-selected=true]:focus-visible": 1, - ".filter-item[aria-current]:not([aria-current=false]):focus-visible": 1, - ".SideNav-item[aria-current]:not([aria-current=false])": 1, - ".SideNav-item[aria-selected=true]": 1, - ".SideNav-item[aria-current]:not([aria-current=false])::before": 1, - ".SideNav-item[aria-selected=true]::before": 1, - ".SideNav-subItem[aria-current]:not([aria-current=false])": 1, - ".SideNav-subItem[aria-selected=true]": 1, - ".subnav-item[aria-selected=true]": 1, - ".subnav-item[aria-current]:not([aria-current=false])": 1, - ".subnav-item[aria-selected=true]:focus": 1, - ".subnav-item[aria-current]:not([aria-current=false]):focus": 1, - ".subnav-item[aria-selected=true]:focus:not(:focus-visible)": 1, - ".subnav-item[aria-current]:not([aria-current=false]):focus:not(:focus-visible)": 1, - ".subnav-item[aria-selected=true]:focus-visible": 1, - ".subnav-item[aria-current]:not([aria-current=false]):focus-visible": 1, - ".pagination [aria-current]:not([aria-current=false])": 1, - ".pagination [aria-disabled=true]": 1, - ".pagination [aria-disabled=true]:hover": 1, - ".suggester li[aria-selected=true]": 1, - ".suggester li[aria-selected=true] small": 1, - ".suggester li[aria-selected=true] .octicon": 1, - ".SelectMenu-tab[aria-selected=true]": 2, - ".SelectMenu-item[aria-checked=true]": 1, - ".SelectMenu-item[aria-checked=true] .SelectMenu-icon--check": 1, - ".SelectMenu-item[aria-disabled=true]": 2, - ".SelectMenu-tab:not([aria-selected=true]):active": 1, - ".ActionListItem[aria-selected=true]": 1, - ".ActionListItem[aria-selected=true]:hover": 1, - ".ActionListItem[aria-selected=true] + .ActionListItem:before": 1, - ".ActionListItem[aria-selected=true]:before": 1, - ".ActionListItem[aria-selected=true]:after": 1, - ".ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-description": 1, - ".ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-label": 1, - ".ActionListItem[aria-disabled=true] .ActionListContent .ActionListItem-visual": 1, - ".ActionListItem[aria-disabled=true]:hover": 1, - ".ActionListContent[aria-disabled=true] .ActionListItem-description": 1, - ".ActionListContent[aria-disabled=true] .ActionListItem-label": 1, - ".ActionListContent[aria-disabled=true] .ActionListItem-visual": 1, - ".ActionListContent[aria-disabled=true]:hover": 1, - ".ActionListContent[aria-expanded] + .ActionList--subGroup": 1, - ".ActionListContent[aria-expanded] + .ActionList--subGroup .ActionListContent": 1, - ".ActionListContent.ActionListContent--visual16[aria-expanded] + .ActionList--subGroup .ActionListContent": 1, - ".ActionListContent.ActionListContent--visual20[aria-expanded] + .ActionList--subGroup .ActionListContent": 1, - ".ActionListContent.ActionListContent--visual24[aria-expanded] + .ActionList--subGroup .ActionListContent": 1, - ".ActionListContent[aria-expanded=true] .ActionListItem-collapseIcon": 1, - ".ActionListContent[aria-expanded=true] + .ActionList--subGroup": 1, - ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=true] > .ActionListItem-label": 1, - ".ActionListContent[aria-expanded=false] .ActionListItem-collapseIcon": 1, - ".ActionListContent[aria-expanded=false] + .ActionList--subGroup": 1, - ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]": 1, - ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] .ActionListItem-label": 1, - ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false] + .ActionListItem:before": 1, - ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:before": 1, - ".ActionListContent.ActionListContent--hasActiveSubItem[aria-expanded=false]:after": 1, - ".ActionListContent[aria-checked=true] .ActionListItem-multiSelectCheckmark": 1, - ".ActionListContent[aria-selected=true] .ActionListItem-multiSelectCheckmark": 1, - ".ActionListContent[aria-checked=true] .ActionListItem-singleSelectCheckmark": 2, - ".ActionListContent[aria-selected=true] .ActionListItem-singleSelectCheckmark": 2, - ".ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect": 1, - ".ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect": 1, - ".ActionListContent[aria-checked=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark": 1, - ".ActionListContent[aria-selected=true] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectCheckmark": 1, - ".ActionListContent[aria-checked=false] .ActionListItem-multiSelectCheckmark": 1, - ".ActionListContent[aria-selected=false] .ActionListItem-multiSelectCheckmark": 1, - ".ActionListContent[aria-checked=false] .ActionListItem-singleSelectCheckmark": 2, - ".ActionListContent[aria-selected=false] .ActionListItem-singleSelectCheckmark": 2, - ".ActionListContent[aria-checked=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect": 1, - ".ActionListContent[aria-selected=false] .ActionListItem-multiSelectIcon .ActionListItem-multiSelectIconRect": 1, - ".ActionListContent[aria-checked=false] .ActionListItem-multiSelectIconRect": 1, - ".ActionListContent[aria-selected=false] .ActionListItem-multiSelectIconRect": 1, - ".autocomplete-item[aria-selected=true]": 1, - ".autocomplete-item[aria-selected=true] *": 1, - ".dropdown-item[aria-checked=false] .octicon-check": 1, - ".tabnav-tab[aria-current]:not([aria-current=false])": 1, - ".tabnav-tab[aria-selected=true]": 1, - ".tabnav-tab[aria-current]:not([aria-current=false]) .octicon": 1, - ".tabnav-tab[aria-selected=true] .octicon": 1, - ".ToggleSwitch-track[aria-pressed=true][disabled]": 1, - ".ToggleSwitch-track[aria-pressed=true]": 1, - ".ToggleSwitch-track[aria-pressed=true]:not([disabled]):hover": 1, - ".ToggleSwitch-track[aria-pressed=true]:not([disabled]):active": 1, - ".ToggleSwitch-track[aria-pressed=true] .ToggleSwitch-knob": 1, - ".ToggleSwitch-track[aria-pressed=true] .ToggleSwitch-lineIcon": 1, - ".ToggleSwitch-track[aria-pressed=true] .ToggleSwitch-circleIcon": 1, - ".UnderlineNav-item[aria-current]:not([aria-current=false])": 1, - ".UnderlineNav-item[role=tab][aria-selected=true]": 1, - ".UnderlineNav-item[aria-current]:not([aria-current=false]):after": 1, - ".UnderlineNav-item[role=tab][aria-selected=true]:after": 1, - ".menu-item[aria-current]:not([aria-current=false])": 1, - ".menu-item[aria-selected=true]": 1, - ".menu-item[aria-current]:not([aria-current=false]):before": 1, - ".menu-item[aria-selected=true]:before": 1, - ".breadcrumb-item[aria-current]:not([aria-current=false]):after": 1, - ".Button[aria-disabled=true]": 1, - ".Button--primary[aria-pressed=true]": 1, - ".Button--primary[aria-disabled=true]": 1, - ".Button--secondary[aria-pressed=true]": 1, - ".Button--secondary[aria-disabled=true]": 1, - ".Button--invisible[aria-pressed=true]": 1, - ".Button--invisible[aria-disabled=true]": 1, - ".Button--link[aria-disabled=true]": 1, - ".Button--danger[aria-pressed=true]": 1, - ".Button--danger[aria-disabled=true]": 1, - ".Button--danger[aria-disabled=true] .Counter": 1, - "body.intent-mouse [role=button]:focus": 1, - "body.intent-mouse [role=tabpanel][tabindex=\"0\"]:focus": 1, - ".jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon": 1, - ".jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path": 1, - ".jump-to-suggestions-results-container [aria-selected=true] mark": 1, - ".jump-to-suggestions-results-container [aria-selected=true] .d-on-nav-focus": 1, - ".ActionList--tree .ActionList-content[aria-expanded] + .ActionList--subGroup": 1, - ".ActionList--tree .ActionList-content[aria-expanded] + .ActionList--subGroup .ActionList-content": 1, - ".ActionList--tree .ActionList-content[aria-expanded=true] .ActionList-item-collapseIcon": 1, - ".ActionList--tree .ActionList-content[aria-expanded=true].ActionList-content--hasActiveSubItem > .ActionList-item-label": 1, - ".ActionList--tree .ActionList-content[aria-expanded=false] .ActionList-item-collapseIcon": 1, - ".ActionList--tree .ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem > .ActionList-item-label": 1, - ".ActionList--tree > [aria-level=\"1\"].ActionList-item--hasSubItem > .ActionList--subGroup::before": 1, - ".ActionList--tree .ActionList-item--hasSubItem:not([aria-level=\"1\"]) > .ActionList--subGroup::before": 1, - ".ActionList-item[aria-selected=true]": 1, - ".ActionList-item[aria-selected=true]:hover": 1, - ".ActionList-item[aria-selected=true]::before": 1, - ".ActionList-item[aria-selected=true] + .ActionList-item::before": 1, - ".ActionList-item[aria-selected=true]::after": 1, - ".ActionList-item[aria-checked=true] .ActionList-item-multiSelectCheckmark": 1, - ".ActionList-item[aria-selected=true] .ActionList-item-multiSelectCheckmark": 1, - ".ActionList-item[aria-checked=true] .ActionList-item-singleSelectCheckmark": 2, - ".ActionList-item[aria-selected=true] .ActionList-item-singleSelectCheckmark": 2, - ".ActionList-item[aria-checked=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect": 1, - ".ActionList-item[aria-selected=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect": 1, - ".ActionList-item[aria-checked=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectCheckmark": 1, - ".ActionList-item[aria-selected=true] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectCheckmark": 1, - ".ActionList-item[aria-checked=false] .ActionList-item-multiSelectCheckmark": 1, - ".ActionList-item[aria-selected=false] .ActionList-item-multiSelectCheckmark": 1, - ".ActionList-item[aria-checked=false] .ActionList-item-singleSelectCheckmark": 2, - ".ActionList-item[aria-selected=false] .ActionList-item-singleSelectCheckmark": 2, - ".ActionList-item[aria-checked=false] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect": 1, - ".ActionList-item[aria-selected=false] .ActionList-item-multiSelectIcon .ActionList-item-multiSelectIconRect": 1, - ".ActionList-item[aria-checked=false] .ActionList-item-multiSelectIconRect": 1, - ".ActionList-item[aria-selected=false] .ActionList-item-multiSelectIconRect": 1, - ".ActionList-item[aria-disabled=true] .ActionList-content .ActionList-item-label": 1, - ".ActionList-item[aria-disabled=true] .ActionList-content .ActionList-item-description": 1, - ".ActionList-item[aria-disabled=true] .ActionList-content .ActionList-item-visual": 1, - ".ActionList-item[aria-disabled=true]:hover": 1, - ".ActionList-content[aria-disabled=true] .ActionList-item-label": 1, - ".ActionList-content[aria-disabled=true] .ActionList-item-description": 1, - ".ActionList-content[aria-disabled=true] .ActionList-item-visual": 1, - ".ActionList-content[aria-disabled=true]:hover": 1, - ".ActionList-content[aria-expanded] + .ActionList--subGroup": 1, - ".ActionList-content[aria-expanded] + .ActionList--subGroup .ActionList-content": 1, - ".ActionList-content[aria-expanded].ActionList-content--visual16 + .ActionList--subGroup .ActionList-content": 1, - ".ActionList-content[aria-expanded].ActionList-content--visual20 + .ActionList--subGroup .ActionList-content": 1, - ".ActionList-content[aria-expanded].ActionList-content--visual24 + .ActionList--subGroup .ActionList-content": 1, - ".ActionList-content[aria-expanded=true] .ActionList-item-collapseIcon": 1, - ".ActionList-content[aria-expanded=true] + .ActionList--subGroup": 1, - ".ActionList-content[aria-expanded=true].ActionList-content--hasActiveSubItem > .ActionList-item-label": 1, - ".ActionList-content[aria-expanded=false] .ActionList-item-collapseIcon": 1, - ".ActionList-content[aria-expanded=false] + .ActionList--subGroup": 1, - ".ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem": 1, - ".ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem .ActionList-item-label": 1, - ".ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem::before": 1, - ".ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem + .ActionList-item::before": 1, - ".ActionList-content[aria-expanded=false].ActionList-content--hasActiveSubItem::after": 1, - ".select-menu-tabs a[aria-selected=true]": 1, - ".select-menu-tabs .select-menu-tab-nav[aria-selected=true]": 1, - ".select-menu-item[aria-disabled=true]": 1, - ".select-menu-item[aria-disabled=true] .description": 1, - ".select-menu-item[aria-disabled=true].opaque": 1, - ".select-menu-item[aria-disabled=true] .select-menu-item-gravatar": 1, - ".select-menu-item.navigation-focus[aria-checked=true]": 1, - ".select-menu-item[aria-checked=true]:focus": 1, - ".select-menu-item[aria-checked=true]:hover": 1, - ".select-menu-item[aria-selected=true]:hover": 1, - ".select-menu-item[aria-selected=true]:focus": 1, - ".select-menu-item[aria-selected=true].select-menu-action": 1, - ".select-menu-item[aria-selected=true] .description-inline": 1, - ".select-menu-item.navigation-focus[aria-checked=true] > .octicon": 1, - ".select-menu-item[aria-checked=true]:focus > .octicon": 1, - ".select-menu-item[aria-checked=true]:hover > .octicon": 1, - ".select-menu-item[aria-selected=true]:hover > .octicon": 1, - ".select-menu-item[aria-selected=true]:focus > .octicon": 1, - ".select-menu-item[aria-selected=true].select-menu-action > .octicon": 1, - ".select-menu-item[aria-selected=true] .description-inline > .octicon": 1, - ".select-menu-item.navigation-focus[aria-checked=true] .description": 1, - ".select-menu-item.navigation-focus[aria-checked=true] .description-warning": 1, - ".select-menu-item[aria-checked=true]:focus .description": 1, - ".select-menu-item[aria-checked=true]:focus .description-warning": 1, - ".select-menu-item[aria-checked=true]:hover .description": 1, - ".select-menu-item[aria-checked=true]:hover .description-warning": 1, - ".select-menu-item[aria-selected=true]:hover .description": 1, - ".select-menu-item[aria-selected=true]:hover .description-warning": 1, - ".select-menu-item[aria-selected=true]:focus .description": 1, - ".select-menu-item[aria-selected=true]:focus .description-warning": 1, - ".select-menu-item[aria-selected=true].select-menu-action .description": 1, - ".select-menu-item[aria-selected=true].select-menu-action .description-warning": 1, - ".select-menu-item[aria-selected=true] .description-inline .description": 1, - ".select-menu-item[aria-selected=true] .description-inline .description-warning": 1, - ".select-menu-item[aria-disabled=true]:hover": 1, - ".select-menu-item[aria-selected=true].disabled": 1, - ".select-menu-item[aria-disabled=true]:hover .description": 1, - ".select-menu-item[aria-selected=true].disabled .description": 1, - ".select-menu-item[aria-checked=mixed] > .octicon-check": 1, - ".select-menu-item[aria-checked=mixed] > .octicon-dash": 1, - "details-menu .select-menu-item[aria-checked=true]": 1, - "details-menu .select-menu-item[aria-selected=true]": 1, - "details-menu .select-menu-item[aria-checked=true] .description": 1, - "details-menu .select-menu-item[aria-selected=true] .description": 1, - "details-menu .select-menu-item[aria-checked=true] > .octicon": 1, - "details-menu .select-menu-item[aria-selected=true] > .octicon": 1, - "details-menu .select-menu-item[aria-checked=true] .octicon-check": 1, - "details-menu .select-menu-item[aria-checked=true] .octicon-circle-slash": 1, - "details-menu .select-menu-item[aria-selected=true] .octicon-check": 1, - "details-menu .select-menu-item[aria-selected=true] .octicon-circle-slash": 1, - "details-menu .select-menu-item[aria-checked=true] .select-menu-item-text .octicon-x": 1, - "details-menu .select-menu-item[aria-selected=true] .select-menu-item-text .octicon-x": 1, - ".table-list-header-toggle .select-menu-item[aria-checked=true]": 1, - ".commits-list-item[aria-selected=true]": 1, - "[aria-selected=true] .AvatarStack-body": 1, - ".emoji-tab[role=tab][aria-selected=true]": 1, - ".emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon": 1, - ".notifications .read[aria-selected=true]": 1, - ".hx_badge[aria-pressed=true]": 1, - ".dropdown-item.btn-link[aria-disabled=true]": 1, - ".dropdown-item.btn-link[aria-disabled=true]:hover": 1, - "label.SelectMenu-item[aria-checked=true]": 1, - ".tabnav--responsive .tabnav-tab[aria-selected=true]": 1, - ".UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon": 1, - ".UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon": 1, - ".hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:first-child .tabnav-tab[aria-selected=true]": 1, - ".hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:first-child .tabnav-tab[aria-current]:not([aria-current=false])": 1, - ".hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:last-child .tabnav-tab[aria-selected=true]": 1, - ".hx_tabnav-in-dropdown .tabnav-tabs .hx_tabnav-in-dropdown-wrapper:last-child .tabnav-tab[aria-current]:not([aria-current=false])": 1, - ".hx_tabnav-in-dropdown .tabnav-tab[aria-selected=true]": 1, - ".hx_tabnav-in-dropdown .tabnav-tab[aria-current]:not([aria-current=false])": 1, - ".hx_tabnav-in-dropdown #cloud-tab[aria-selected=false]::after": 1, - ".integrations-install-target [aria-selected=true].private": 1, - ".integrations-install-target [aria-selected=true].octicon-lock": 1, - ".business-menu-item:not([aria-current=page]) + .business-sub-menu": 1, - "development-menu .SelectMenu-item[aria-disabled=true]": 1, - ".label-select-menu .select-menu-item[aria-checked=true]:hover": 1, - ".label-select-menu .select-menu-item[aria-checked=true]:focus": 1, - ".label-select-menu [aria-checked=true] .select-menu-item-icon": 1, - ".label-select-menu [aria-checked=mixed] .select-menu-item-icon": 1, - ".label-select-menu [aria-checked=true] .octicon-circle-slash": 1, - ".label-select-menu [aria-checked=mixed] .octicon-circle-slash": 1, - ".label-select-menu [aria-checked=true]:active": 1, - ".label-select-menu [aria-checked=mixed]:active": 1, - ".label-select-menu .select-menu-item[aria-selected=true]": 1, - ".label-select-menu .select-menu-item[aria-selected=true] .select-menu-item-icon": 1, - ".label-select-menu .select-menu-item[aria-selected=true] .label-options-icon": 1, - ".reaction-sort-item[aria-checked=true]": 1, - ".select-menu-item[aria-selected=true] > .octicon.label-options-icon": 1, - "[aria-selected=true].disabled .unavailable-merge-method": 1, - ".menu-item-danger[aria-selected=true]": 1, - ".menu-item-danger.selected[aria-selected=true]": 1, - ".org-menu-item:not([aria-current=page]) + .org-sub-menu": 1, - ".card-filter-autocomplete-dropdown [aria-selected=true]": 1, - ".card-filter-autocomplete-dropdown [aria-selected=true] .autocomplete-text-qualifier": 1, - ".diffbar [role^=menuitem]:focus:not(.is-range-selected) .text-emphasized": 1, - ".diffbar [role^=menuitem]:hover:not(.is-range-selected) .text-emphasized": 1, - ".repo-menu-item:not([aria-current=page]) + .repo-sub-menu": 1, - ".repository-settings-actions [role=tab][aria-selected=true]": 1, - ".repository-settings-actions [role=tab][aria-selected=true] .UnderlineNav-octicon": 1, - ".slash-command-menu-item[aria-selected=true]": 1, - ".slash-command-menu-item[aria-selected=true] .command-description": 1, - ".TrackingBlock .tasklist-issue-chosen-item [role=tooltip]": 1, - ".TrackingBlock .tasklist-issue-chosen-item [role=tooltip]::before": 1, - ".TrackingBlock .tasklist-issue-chosen-item [role=tooltip]::after": 1, - ".edit-metadata-popover-container[data-menu-type=project] [role=listbox]": 1, - ".tracking-block-list-item-dropdown-menu [role=menu]": 1, - ".typeahead-result[aria-selected=true]": 2, - ".typeahead-result[aria-selected=true] .octicon-plus": 1, - ".member-suggestion[aria-selected=true] .member-name": 1, - ".member-suggestion[aria-selected=true] .non-member-note": 2, - ".member-suggestion[aria-selected=true] .already-member-note": 1, - ".member-suggestion[aria-selected=true] .non-member-action": 2, - ".member-suggestion[aria-selected=true] .member-email": 1, - ".member-suggestion[aria-selected=true] .octicon": 1, - ".repo-access-add-team[aria-selected=true] .team-size": 1, - ".repo-access-add-team[aria-selected=true] .team-description": 1 - }, - "uniquenessRatio": 0.9577039274924471, - "ratio": 0.030830849478390463 - }, - "keyframes": { - "total": 188, - "totalUnique": 21, - "unique": { - "0%": 71, - "50%": 15, - "55%": 2, - "100%": 54, - "from": 5, - "to": 15, - "10%": 3, - "8%": 1, - "14%": 1, - "25%": 3, - "5%": 1, - "30%": 1, - "70%": 1, - "16%": 1, - "60%": 1, - "80%": 2, - "90%": 3, - "94%": 1, - "75%": 2, - "45%": 4, - "40%": 1 - }, - "uniquenessRatio": 0.11170212765957446 - }, - "prefixed": { - "total": 31, - "totalUnique": 31, - "unique": { - "[type=number]::-webkit-inner-spin-button": 1, - "[type=number]::-webkit-outer-spin-button": 1, - "[type=search]::-webkit-search-cancel-button": 1, - "[type=search]::-webkit-search-decoration": 1, - "::-webkit-input-placeholder": 1, - "::-webkit-file-upload-button": 1, - ".input-hide-webkit-autofill::-webkit-contacts-auto-fill-button": 1, - "input::-webkit-outer-spin-button": 1, - "input::-webkit-inner-spin-button": 1, - ".form-select::-ms-expand": 1, - ".details-reset > summary::-webkit-details-marker": 1, - ".SelectMenu-tabs::-webkit-scrollbar": 1, - ".CodeMirror-gutter-wrapper ::-moz-selection": 1, - ".CodeMirror-line::-moz-selection": 1, - ".CodeMirror-line > span::-moz-selection": 1, - ".CodeMirror-line > span > span::-moz-selection": 1, - ".cm-s-github-light .CodeMirror-line::-moz-selection": 1, - ".cm-s-github-light .CodeMirror-line > span::-moz-selection": 1, - ".cm-s-github-light .CodeMirror-line > span > span::-moz-selection": 1, - ".header-search-input::-ms-clear": 1, - ".header-search-button::-ms-clear": 1, - ".manual-file-chooser-transparent::-webkit-file-upload-button": 1, - ".QueryBuilder-StyledInputContainer::-webkit-scrollbar": 1, - ".form-control:-webkit-autofill": 1, - ".form-control:-webkit-autofill:focus": 1, - "::-webkit-calendar-picker-indicator": 1, - ".codespaces-policy-form details > summary::-webkit-details-marker": 1, - ".integrations-select-repos::-webkit-scrollbar": 1, - ".integrations-select-repos::-webkit-scrollbar-thumb": 1, - ".integrations-select-repos::-webkit-scrollbar-track-piece": 1, - ".faq-mktg summary::-webkit-details-marker": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0028874813710879285 - }, - "combinators": { - "total": 6287, - "totalUnique": 4, - "unique": { - " ": 5639, - ">": 464, - "+": 156, - "~": 28 - }, - "uniquenessRatio": 0.0006362334976936536 - } - }, - "declarations": { - "total": 21677, - "totalUnique": 5246, - "uniquenessRatio": 0.24200765788623887, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 21677 - } - }, - "properties": { - "total": 21677, - "totalUnique": 929, - "unique": { - "--h00-size-mobile": 20, - "--h0-size-mobile": 20, - "--h1-size-mobile": 20, - "--h2-size-mobile": 20, - "--h3-size-mobile": 20, - "--h00-size": 20, - "--h0-size": 20, - "--h1-size": 20, - "--h2-size": 20, - "--h3-size": 20, - "--h4-size": 20, - "--h5-size": 20, - "--h6-size": 20, - "--body-font-size": 20, - "--font-size-small": 20, - "--color-canvas-default-transparent": 7, - "--color-page-header-bg": 7, - "--color-marketing-icon-primary": 67, - "--color-marketing-icon-secondary": 67, - "--color-diff-blob-addition-num-text": 7, - "--color-diff-blob-addition-fg": 7, - "--color-diff-blob-addition-num-bg": 7, - "--color-diff-blob-addition-line-bg": 7, - "--color-diff-blob-addition-word-bg": 7, - "--color-diff-blob-deletion-num-text": 7, - "--color-diff-blob-deletion-fg": 7, - "--color-diff-blob-deletion-num-bg": 7, - "--color-diff-blob-deletion-line-bg": 7, - "--color-diff-blob-deletion-word-bg": 7, - "--color-diff-blob-hunk-num-bg": 7, - "--color-diff-blob-expander-icon": 7, - "--color-diff-blob-selected-line-highlight-mix-blend-mode": 13, - "--color-diffstat-deletion-border": 7, - "--color-diffstat-addition-border": 7, - "--color-diffstat-addition-bg": 7, - "--color-search-keyword-hl": 7, - "--color-prettylights-syntax-comment": 7, - "--color-prettylights-syntax-constant": 7, - "--color-prettylights-syntax-entity": 7, - "--color-prettylights-syntax-storage-modifier-import": 7, - "--color-prettylights-syntax-entity-tag": 7, - "--color-prettylights-syntax-keyword": 7, - "--color-prettylights-syntax-string": 7, - "--color-prettylights-syntax-variable": 7, - "--color-prettylights-syntax-brackethighlighter-unmatched": 7, - "--color-prettylights-syntax-invalid-illegal-text": 7, - "--color-prettylights-syntax-invalid-illegal-bg": 7, - "--color-prettylights-syntax-carriage-return-text": 7, - "--color-prettylights-syntax-carriage-return-bg": 7, - "--color-prettylights-syntax-string-regexp": 7, - "--color-prettylights-syntax-markup-list": 7, - "--color-prettylights-syntax-markup-heading": 7, - "--color-prettylights-syntax-markup-italic": 7, - "--color-prettylights-syntax-markup-bold": 7, - "--color-prettylights-syntax-markup-deleted-text": 7, - "--color-prettylights-syntax-markup-deleted-bg": 7, - "--color-prettylights-syntax-markup-inserted-text": 7, - "--color-prettylights-syntax-markup-inserted-bg": 7, - "--color-prettylights-syntax-markup-changed-text": 7, - "--color-prettylights-syntax-markup-changed-bg": 7, - "--color-prettylights-syntax-markup-ignored-text": 7, - "--color-prettylights-syntax-markup-ignored-bg": 7, - "--color-prettylights-syntax-meta-diff-range": 7, - "--color-prettylights-syntax-brackethighlighter-angle": 7, - "--color-prettylights-syntax-sublimelinter-gutter-mark": 7, - "--color-prettylights-syntax-constant-other-reference-link": 7, - "--color-codemirror-text": 7, - "--color-codemirror-bg": 7, - "--color-codemirror-gutters-bg": 7, - "--color-codemirror-guttermarker-text": 7, - "--color-codemirror-guttermarker-subtle-text": 7, - "--color-codemirror-linenumber-text": 7, - "--color-codemirror-cursor": 7, - "--color-codemirror-selection-bg": 7, - "--color-codemirror-activeline-bg": 7, - "--color-codemirror-matchingbracket-text": 7, - "--color-codemirror-lines-bg": 7, - "--color-codemirror-syntax-comment": 7, - "--color-codemirror-syntax-constant": 7, - "--color-codemirror-syntax-entity": 7, - "--color-codemirror-syntax-keyword": 7, - "--color-codemirror-syntax-storage": 7, - "--color-codemirror-syntax-string": 7, - "--color-codemirror-syntax-support": 7, - "--color-codemirror-syntax-variable": 7, - "--color-checks-bg": 7, - "--color-checks-run-border-width": 7, - "--color-checks-container-border-width": 7, - "--color-checks-text-primary": 7, - "--color-checks-text-secondary": 7, - "--color-checks-text-link": 7, - "--color-checks-btn-icon": 7, - "--color-checks-btn-hover-icon": 7, - "--color-checks-btn-hover-bg": 7, - "--color-checks-input-text": 7, - "--color-checks-input-placeholder-text": 7, - "--color-checks-input-focus-text": 7, - "--color-checks-input-bg": 7, - "--color-checks-input-shadow": 7, - "--color-checks-donut-error": 13, - "--color-checks-donut-pending": 13, - "--color-checks-donut-success": 13, - "--color-checks-donut-neutral": 13, - "--color-checks-dropdown-text": 7, - "--color-checks-dropdown-bg": 7, - "--color-checks-dropdown-border": 7, - "--color-checks-dropdown-shadow": 7, - "--color-checks-dropdown-hover-text": 7, - "--color-checks-dropdown-hover-bg": 7, - "--color-checks-dropdown-btn-hover-text": 7, - "--color-checks-dropdown-btn-hover-bg": 7, - "--color-checks-scrollbar-thumb-bg": 7, - "--color-checks-header-label-text": 7, - "--color-checks-header-label-open-text": 7, - "--color-checks-header-border": 7, - "--color-checks-header-icon": 7, - "--color-checks-line-text": 7, - "--color-checks-line-num-text": 7, - "--color-checks-line-timestamp-text": 7, - "--color-checks-line-hover-bg": 7, - "--color-checks-line-selected-bg": 7, - "--color-checks-line-selected-num-text": 7, - "--color-checks-line-dt-fm-text": 7, - "--color-checks-line-dt-fm-bg": 7, - "--color-checks-gate-bg": 7, - "--color-checks-gate-text": 7, - "--color-checks-gate-waiting-text": 7, - "--color-checks-step-header-open-bg": 7, - "--color-checks-step-error-text": 7, - "--color-checks-step-warning-text": 7, - "--color-checks-logline-text": 7, - "--color-checks-logline-num-text": 7, - "--color-checks-logline-debug-text": 7, - "--color-checks-logline-error-text": 7, - "--color-checks-logline-error-num-text": 7, - "--color-checks-logline-error-bg": 7, - "--color-checks-logline-warning-text": 7, - "--color-checks-logline-warning-num-text": 7, - "--color-checks-logline-warning-bg": 7, - "--color-checks-logline-command-text": 7, - "--color-checks-logline-section-text": 7, - "--color-checks-ansi-black": 7, - "--color-checks-ansi-black-bright": 7, - "--color-checks-ansi-white": 7, - "--color-checks-ansi-white-bright": 7, - "--color-checks-ansi-gray": 7, - "--color-checks-ansi-red": 7, - "--color-checks-ansi-red-bright": 7, - "--color-checks-ansi-green": 7, - "--color-checks-ansi-green-bright": 7, - "--color-checks-ansi-yellow": 7, - "--color-checks-ansi-yellow-bright": 7, - "--color-checks-ansi-blue": 7, - "--color-checks-ansi-blue-bright": 7, - "--color-checks-ansi-magenta": 7, - "--color-checks-ansi-magenta-bright": 7, - "--color-checks-ansi-cyan": 7, - "--color-checks-ansi-cyan-bright": 7, - "--color-project-header-bg": 13, - "--color-project-sidebar-bg": 13, - "--color-project-gradient-in": 13, - "--color-project-gradient-out": 13, - "--color-mktg-btn-bg": 61, - "--color-mktg-btn-shadow-outline": 67, - "--color-mktg-btn-shadow-focus": 61, - "--color-mktg-btn-shadow-hover": 61, - "--color-mktg-btn-shadow-hover-muted": 61, - "--color-control-border-color-emphasis": 7, - "--color-avatar-bg": 7, - "--color-avatar-border": 7, - "--color-avatar-stack-fade": 7, - "--color-avatar-stack-fade-more": 7, - "--color-avatar-child-shadow": 7, - "--color-topic-tag-border": 7, - "--color-counter-border": 7, - "--color-select-menu-backdrop-border": 7, - "--color-select-menu-tap-highlight": 7, - "--color-select-menu-tap-focus-bg": 7, - "--color-overlay-shadow": 7, - "--color-overlay-backdrop": 7, - "--color-header-text": 7, - "--color-header-bg": 7, - "--color-header-divider": 7, - "--color-header-logo": 7, - "--color-header-search-bg": 7, - "--color-header-search-border": 7, - "--color-sidenav-selected-bg": 7, - "--color-menu-bg-active": 7, - "--color-input-disabled-bg": 7, - "--color-timeline-badge-bg": 7, - "--color-ansi-black": 7, - "--color-ansi-black-bright": 7, - "--color-ansi-white": 7, - "--color-ansi-white-bright": 7, - "--color-ansi-gray": 7, - "--color-ansi-red": 7, - "--color-ansi-red-bright": 7, - "--color-ansi-green": 7, - "--color-ansi-green-bright": 7, - "--color-ansi-yellow": 7, - "--color-ansi-yellow-bright": 7, - "--color-ansi-blue": 7, - "--color-ansi-blue-bright": 7, - "--color-ansi-magenta": 7, - "--color-ansi-magenta-bright": 7, - "--color-ansi-cyan": 7, - "--color-ansi-cyan-bright": 7, - "--color-btn-text": 7, - "--color-btn-bg": 7, - "--color-btn-border": 7, - "--color-btn-shadow": 7, - "--color-btn-inset-shadow": 7, - "--color-btn-hover-bg": 7, - "--color-btn-hover-border": 7, - "--color-btn-active-bg": 7, - "--color-btn-active-border": 7, - "--color-btn-selected-bg": 7, - "--color-btn-counter-bg": 7, - "--color-btn-primary-text": 7, - "--color-btn-primary-bg": 7, - "--color-btn-primary-border": 7, - "--color-btn-primary-shadow": 7, - "--color-btn-primary-inset-shadow": 7, - "--color-btn-primary-hover-bg": 7, - "--color-btn-primary-hover-border": 7, - "--color-btn-primary-selected-bg": 7, - "--color-btn-primary-selected-shadow": 7, - "--color-btn-primary-disabled-text": 7, - "--color-btn-primary-disabled-bg": 7, - "--color-btn-primary-disabled-border": 7, - "--color-btn-primary-icon": 7, - "--color-btn-primary-counter-bg": 7, - "--color-btn-outline-text": 7, - "--color-btn-outline-hover-text": 7, - "--color-btn-outline-hover-bg": 7, - "--color-btn-outline-hover-border": 7, - "--color-btn-outline-hover-shadow": 7, - "--color-btn-outline-hover-inset-shadow": 7, - "--color-btn-outline-hover-counter-bg": 7, - "--color-btn-outline-selected-text": 7, - "--color-btn-outline-selected-bg": 7, - "--color-btn-outline-selected-border": 7, - "--color-btn-outline-selected-shadow": 7, - "--color-btn-outline-disabled-text": 7, - "--color-btn-outline-disabled-bg": 7, - "--color-btn-outline-disabled-counter-bg": 7, - "--color-btn-outline-counter-bg": 7, - "--color-btn-outline-counter-fg": 7, - "--color-btn-outline-hover-counter-fg": 7, - "--color-btn-outline-disabled-counter-fg": 7, - "--color-btn-danger-text": 7, - "--color-btn-danger-hover-text": 7, - "--color-btn-danger-hover-bg": 7, - "--color-btn-danger-hover-border": 7, - "--color-btn-danger-hover-shadow": 7, - "--color-btn-danger-hover-inset-shadow": 7, - "--color-btn-danger-hover-counter-bg": 7, - "--color-btn-danger-selected-text": 7, - "--color-btn-danger-selected-bg": 7, - "--color-btn-danger-selected-border": 7, - "--color-btn-danger-selected-shadow": 7, - "--color-btn-danger-disabled-text": 7, - "--color-btn-danger-disabled-bg": 7, - "--color-btn-danger-disabled-counter-bg": 7, - "--color-btn-danger-counter-bg": 7, - "--color-btn-danger-icon": 7, - "--color-btn-danger-hover-icon": 7, - "--color-btn-danger-counter-fg": 7, - "--color-btn-danger-hover-counter-fg": 7, - "--color-btn-danger-disabled-counter-fg": 7, - "--color-underlinenav-icon": 7, - "--color-underlinenav-border-hover": 7, - "--color-action-list-item-inline-divider": 7, - "--color-action-list-item-default-hover-bg": 7, - "--color-action-list-item-default-hover-border": 7, - "--color-action-list-item-default-active-bg": 7, - "--color-action-list-item-default-active-border": 7, - "--color-action-list-item-default-selected-bg": 7, - "--color-action-list-item-danger-hover-bg": 7, - "--color-action-list-item-danger-active-bg": 7, - "--color-action-list-item-danger-hover-text": 7, - "--color-switch-track-bg": 7, - "--color-switch-track-hover-bg": 7, - "--color-switch-track-active-bg": 7, - "--color-switch-track-disabled-bg": 7, - "--color-switch-track-fg": 7, - "--color-switch-track-disabled-fg": 7, - "--color-switch-track-border": 7, - "--color-switch-track-checked-bg": 7, - "--color-switch-track-checked-hover-bg": 7, - "--color-switch-track-checked-active-bg": 7, - "--color-switch-track-checked-fg": 7, - "--color-switch-track-checked-disabled-fg": 7, - "--color-switch-track-checked-border": 7, - "--color-switch-knob-bg": 7, - "--color-switch-knob-disabled-bg": 7, - "--color-switch-knob-border": 7, - "--color-switch-knob-checked-bg": 7, - "--color-switch-knob-checked-disabled-bg": 7, - "--color-switch-knob-checked-border": 7, - "--color-segmented-control-bg": 7, - "--color-segmented-control-button-bg": 7, - "--color-segmented-control-button-hover-bg": 7, - "--color-segmented-control-button-active-bg": 7, - "--color-segmented-control-button-selected-border": 7, - "--color-tree-view-item-chevron-hover-bg": 7, - "--color-tree-view-item-directory-fill": 7, - "--color-fg-default": 11, - "--color-fg-muted": 7, - "--color-fg-subtle": 7, - "--color-fg-on-emphasis": 8, - "--color-canvas-default": 12, - "--color-canvas-overlay": 7, - "--color-canvas-inset": 7, - "--color-canvas-subtle": 8, - "--color-border-default": 7, - "--color-border-muted": 7, - "--color-border-subtle": 7, - "--color-shadow-small": 7, - "--color-shadow-medium": 7, - "--color-shadow-large": 7, - "--color-shadow-extra-large": 7, - "--color-neutral-emphasis-plus": 7, - "--color-neutral-emphasis": 7, - "--color-neutral-muted": 7, - "--color-neutral-subtle": 7, - "--color-accent-fg": 7, - "--color-accent-emphasis": 8, - "--color-accent-muted": 7, - "--color-accent-subtle": 7, - "--color-success-fg": 7, - "--color-success-emphasis": 7, - "--color-success-muted": 7, - "--color-success-subtle": 7, - "--color-attention-fg": 7, - "--color-attention-emphasis": 7, - "--color-attention-muted": 7, - "--color-attention-subtle": 7, - "--color-severe-fg": 7, - "--color-severe-emphasis": 7, - "--color-severe-muted": 7, - "--color-severe-subtle": 7, - "--color-danger-fg": 7, - "--color-danger-emphasis": 7, - "--color-danger-muted": 7, - "--color-danger-subtle": 7, - "--color-open-fg": 8, - "--color-open-emphasis": 8, - "--color-open-muted": 8, - "--color-open-subtle": 8, - "--color-closed-fg": 8, - "--color-closed-emphasis": 8, - "--color-closed-muted": 8, - "--color-closed-subtle": 8, - "--color-done-fg": 7, - "--color-done-emphasis": 7, - "--color-done-muted": 7, - "--color-done-subtle": 7, - "--color-sponsors-fg": 7, - "--color-sponsors-emphasis": 7, - "--color-sponsors-muted": 7, - "--color-sponsors-subtle": 7, - "--color-primer-fg-disabled": 7, - "--color-primer-canvas-backdrop": 7, - "--color-primer-canvas-sticky": 7, - "--color-primer-border-active": 7, - "--color-primer-border-contrast": 7, - "--color-primer-shadow-highlight": 7, - "--color-primer-shadow-inset": 7, - "--color-scale-black": 7, - "--color-scale-white": 7, - "--color-scale-gray-0": 7, - "--color-scale-gray-1": 7, - "--color-scale-gray-2": 7, - "--color-scale-gray-3": 7, - "--color-scale-gray-4": 7, - "--color-scale-gray-5": 7, - "--color-scale-gray-6": 7, - "--color-scale-gray-7": 7, - "--color-scale-gray-8": 7, - "--color-scale-gray-9": 7, - "--color-scale-blue-0": 7, - "--color-scale-blue-1": 7, - "--color-scale-blue-2": 7, - "--color-scale-blue-3": 7, - "--color-scale-blue-4": 7, - "--color-scale-blue-5": 7, - "--color-scale-blue-6": 7, - "--color-scale-blue-7": 7, - "--color-scale-blue-8": 7, - "--color-scale-blue-9": 7, - "--color-scale-green-0": 7, - "--color-scale-green-1": 7, - "--color-scale-green-2": 7, - "--color-scale-green-3": 7, - "--color-scale-green-4": 7, - "--color-scale-green-5": 7, - "--color-scale-green-6": 7, - "--color-scale-green-7": 7, - "--color-scale-green-8": 7, - "--color-scale-green-9": 7, - "--color-scale-yellow-0": 7, - "--color-scale-yellow-1": 7, - "--color-scale-yellow-2": 7, - "--color-scale-yellow-3": 7, - "--color-scale-yellow-4": 7, - "--color-scale-yellow-5": 7, - "--color-scale-yellow-6": 7, - "--color-scale-yellow-7": 7, - "--color-scale-yellow-8": 7, - "--color-scale-yellow-9": 7, - "--color-scale-orange-0": 7, - "--color-scale-orange-1": 7, - "--color-scale-orange-2": 7, - "--color-scale-orange-3": 7, - "--color-scale-orange-4": 7, - "--color-scale-orange-5": 7, - "--color-scale-orange-6": 7, - "--color-scale-orange-7": 7, - "--color-scale-orange-8": 7, - "--color-scale-orange-9": 7, - "--color-scale-red-0": 7, - "--color-scale-red-1": 7, - "--color-scale-red-2": 7, - "--color-scale-red-3": 7, - "--color-scale-red-4": 7, - "--color-scale-red-5": 7, - "--color-scale-red-6": 7, - "--color-scale-red-7": 7, - "--color-scale-red-8": 7, - "--color-scale-red-9": 7, - "--color-scale-purple-0": 7, - "--color-scale-purple-1": 7, - "--color-scale-purple-2": 7, - "--color-scale-purple-3": 7, - "--color-scale-purple-4": 7, - "--color-scale-purple-5": 7, - "--color-scale-purple-6": 7, - "--color-scale-purple-7": 7, - "--color-scale-purple-8": 7, - "--color-scale-purple-9": 7, - "--color-scale-pink-0": 7, - "--color-scale-pink-1": 7, - "--color-scale-pink-2": 7, - "--color-scale-pink-3": 7, - "--color-scale-pink-4": 7, - "--color-scale-pink-5": 7, - "--color-scale-pink-6": 7, - "--color-scale-pink-7": 7, - "--color-scale-pink-8": 7, - "--color-scale-pink-9": 7, - "--color-scale-coral-0": 7, - "--color-scale-coral-1": 7, - "--color-scale-coral-2": 7, - "--color-scale-coral-3": 7, - "--color-scale-coral-4": 7, - "--color-scale-coral-5": 7, - "--color-scale-coral-6": 7, - "--color-scale-coral-7": 7, - "--color-scale-coral-8": 7, - "--color-scale-coral-9": 7, - "--base-size-4": 1, - "--base-size-8": 1, - "--base-size-12": 1, - "--base-size-16": 1, - "--base-size-20": 1, - "--base-size-24": 1, - "--base-size-28": 1, - "--base-size-32": 1, - "--base-size-36": 1, - "--base-size-40": 1, - "--base-size-44": 1, - "--base-size-48": 1, - "--base-size-64": 1, - "--base-size-80": 1, - "--base-size-96": 1, - "--base-size-112": 1, - "--base-size-128": 1, - "--base-text-weight-light": 1, - "--base-text-weight-normal": 1, - "--base-text-weight-medium": 1, - "--base-text-weight-semibold": 1, - "--boxShadow-thin": 1, - "--boxShadow-thick": 1, - "--boxShadow-thicker": 1, - "--borderWidth-thin": 1, - "--borderWidth-thick": 1, - "--borderWidth-thicker": 1, - "--borderRadius-small": 1, - "--borderRadius-medium": 1, - "--borderRadius-large": 1, - "--borderRadius-full": 1, - "--outline-focus-offset": 1, - "--outline-focus-width": 1, - "--breakpoint-xsmall": 1, - "--breakpoint-small": 1, - "--breakpoint-medium": 1, - "--breakpoint-large": 1, - "--breakpoint-xlarge": 1, - "--breakpoint-xxlarge": 1, - "--control-minTarget-auto": 2, - "--controlStack-small-gap-auto": 2, - "--controlStack-medium-gap-auto": 2, - "--control-minTarget-fine": 1, - "--control-minTarget-coarse": 1, - "--control-xsmall-size": 1, - "--control-xsmall-lineBoxHeight": 1, - "--control-xsmall-paddingBlock": 1, - "--control-xsmall-paddingInline-condensed": 1, - "--control-xsmall-paddingInline-normal": 1, - "--control-xsmall-paddingInline-spacious": 1, - "--control-xsmall-gap": 1, - "--control-small-size": 1, - "--control-small-lineBoxHeight": 1, - "--control-small-paddingBlock": 1, - "--control-small-paddingInline-condensed": 1, - "--control-small-paddingInline-normal": 1, - "--control-small-gap": 1, - "--control-medium-size": 1, - "--control-medium-lineBoxHeight": 1, - "--control-medium-paddingBlock": 1, - "--control-medium-paddingInline-condensed": 1, - "--control-medium-paddingInline-normal": 1, - "--control-medium-paddingInline-spacious": 1, - "--control-medium-gap": 1, - "--control-large-size": 1, - "--control-large-lineBoxHeight": 1, - "--control-large-paddingBlock": 1, - "--control-large-paddingInline-normal": 1, - "--control-large-paddingInline-spacious": 1, - "--control-large-gap": 1, - "--control-xlarge-size": 1, - "--control-xlarge-lineBoxHeight": 1, - "--control-xlarge-paddingBlock": 1, - "--control-xlarge-paddingInline-normal": 1, - "--control-xlarge-paddingInline-spacious": 1, - "--control-xlarge-gap": 1, - "--controlStack-small-gap-condensed": 1, - "--controlStack-small-gap-spacious": 1, - "--controlStack-medium-gap-condensed": 1, - "--controlStack-medium-gap-spacious": 1, - "--controlStack-large-gap-auto": 1, - "--controlStack-large-gap-condensed": 1, - "--controlStack-large-gap-spacious": 1, - "--space-xxsmall": 1, - "--space-xsmall": 1, - "--space-small": 1, - "--space-medium": 1, - "--space-large": 1, - "--space-xlarge": 1, - "--stack-padding-condensed": 1, - "--stack-padding-normal": 1, - "--stack-padding-spacious": 1, - "--stack-gap-condensed": 1, - "--stack-gap-normal": 1, - "--stack-gap-spacious": 1, - "--overlay-width-xsmall": 1, - "--overlay-width-small": 1, - "--overlay-width-medium": 1, - "--overlay-width-large": 1, - "--overlay-width-xlarge": 1, - "--overlay-height-small": 1, - "--overlay-height-medium": 1, - "--overlay-height-large": 1, - "--overlay-height-xlarge": 1, - "--overlay-padding-normal": 1, - "--overlay-padding-condensed": 1, - "--overlay-paddingBlock-condensed": 1, - "--overlay-paddingBlock-normal": 1, - "--overlay-borderRadius": 1, - "--text-codeInline-size": 1, - "--text-codeBlock-lineHeight": 1, - "--text-codeBlock-size": 1, - "--text-caption-lineHeight": 1, - "--text-caption-size": 1, - "--text-body-lineHeight-small": 1, - "--text-body-lineHeight-medium": 1, - "--text-body-lineHeight-large": 1, - "--text-body-size-small": 1, - "--text-body-size-medium": 1, - "--text-body-size-large": 1, - "--text-subtitle-lineHeight": 1, - "--text-subtitle-size": 1, - "--text-title-lineHeight-small": 1, - "--text-title-lineHeight-medium": 1, - "--text-title-lineHeight-large": 1, - "--text-title-size-small": 1, - "--text-title-size-medium": 1, - "--text-title-size-large": 1, - "--text-display-lineHeight": 1, - "--text-display-size": 1, - "--text-display-lineBoxHeight": 1, - "--fontStack-monospace": 1, - "--fontStack-sansSerif": 1, - "--fontStack-system": 1, - "--text-codeInline-weight": 1, - "--text-codeBlock-weight": 1, - "--text-caption-weight": 1, - "--text-body-weight": 1, - "--text-subtitle-weight": 1, - "--text-title-weight-small": 1, - "--text-title-weight-medium": 1, - "--text-title-weight-large": 1, - "--text-display-weight": 1, - "--text-codeInline-shorthand": 1, - "--text-codeBlock-shorthand": 1, - "--text-caption-shorthand": 1, - "--text-body-shorthand-small": 1, - "--text-body-shorthand-medium": 1, - "--text-body-shorthand-large": 1, - "--text-subtitle-shorthand": 1, - "--text-title-shorthand-small": 1, - "--text-title-shorthand-medium": 1, - "--text-title-shorthand-large": 1, - "--text-display-shorthand": 1, - "color-scheme": 6, - "color": 1100, - "background-color": 702, - "--fgColor-onEmphasis": 1, - "--fgColor-accent": 1, - "font-size": 408, - "font-family": 43, - "-ms-text-size-adjust": 1, - "-webkit-text-size-adjust": 1, - "margin": 303, - "display": 1224, - "height": 459, - "vertical-align": 123, - "border-bottom": 132, - "text-decoration": 134, - "-webkit-text-decoration": 1, - "font-weight": 257, - "font-style": 25, - "line-height": 244, - "position": 507, - "bottom": 191, - "top": 375, - "border-style": 12, - "overflow": 154, - "box-sizing": 17, - "font": 13, - "text-transform": 7, - "-webkit-appearance": 18, - "border": 296, - "padding": 466, - "max-width": 174, - "white-space": 118, - "opacity": 317, - "background": 288, - "content": 229, - "clear": 37, - "border-spacing": 1, - "border-collapse": 5, - "cursor": 154, - "border-radius": 328, - "outline": 126, - "outline-offset": 64, - "box-shadow": 285, - "border-color": 240, - "border-bottom-color": 34, - "margin-top": 455, - "margin-bottom": 407, - "padding-left": 245, - "list-style-type": 23, - "margin-left": 478, - "fill": 102, - "width": 723, - "margin-right": 315, - "background-clip": 24, - "border-width": 30, - "border-bottom-width": 6, - "border-top-left-radius": 85, - "border-top-right-radius": 79, - "max-height": 73, - "overflow-y": 46, - "padding-top": 223, - "text-align": 122, - "-webkit-user-select": 26, - "user-select": 26, - "appearance": 14, - "text-shadow": 7, - "transition": 139, - "transition-property": 16, - "transition-duration": 15, - "float": 136, - "border-right-width": 12, - "border-bottom-left-radius": 78, - "border-bottom-right-radius": 76, - "border-left-width": 8, - "z-index": 159, - "border-left": 63, - "background-repeat": 22, - "background-position": 23, - "-webkit-text-fill-color": 19, - "padding-bottom": 195, - "min-height": 87, - "right": 242, - "pointer-events": 78, - "visibility": 111, - "left": 345, - "padding-right": 184, - "background-image": 102, - "background-size": 33, - "padding-block-end": 1, - "isolation": 2, - "align-items": 116, - "gap": 48, - "clip": 5, - "justify-content": 84, - "text-indent": 6, - "transform": 253, - "animation": 85, - "flex-direction": 57, - "flex": 58, - "--Layout-pane-width": 8, - "--Layout-content-width": 5, - "--Layout-template-columns": 5, - "--Layout-template-areas": 8, - "--Layout-column-gap": 5, - "--Layout-row-gap": 5, - "--Layout-outer-spacing-x": 4, - "--Layout-outer-spacing-y": 4, - "--Layout-inner-spacing-min": 3, - "--Layout-inner-spacing-max": 4, - "border-top": 110, - "border-right": 52, - "scrollbar-width": 3, - "grid": 1, - "row-gap": 3, - "column-gap": 5, - "grid-template-columns": 21, - "grid-template-rows": 5, - "grid-template-areas": 8, - "grid-area": 24, - "--Stack-gap-whenRegular": 5, - "--Stack-gap-whenNarrow": 4, - "--Stack-gap-whenWide": 5, - "--Stack-divider-color": 1, - "flex-flow": 8, - "align-content": 46, - "align-self": 42, - "min-inline-size": 1, - "flex-wrap": 26, - "border-block-end": 3, - "inline-size": 6, - "block-size": 6, - "border-inline-end": 3, - "flex-grow": 23, - "flex-shrink": 31, - "text-overflow": 24, - "min-width": 78, - "clip-path": 35, - "-webkit-font-smoothing": 1, - "letter-spacing": 12, - "word-wrap": 22, - "animation-name": 17, - "animation-duration": 19, - "animation-fill-mode": 11, - "animation-timing-function": 13, - "animation-delay": 14, - "border-top-color": 9, - "border-left-color": 14, - "border-right-color": 14, - "animation-iteration-count": 2, - "-webkit-backface-visibility": 1, - "backface-visibility": 1, - "list-style": 35, - "order": 26, - "overflow-x": 36, - "direction": 12, - "word-break": 18, - "overflow-wrap": 3, - "table-layout": 5, - "-webkit-overflow-scrolling": 7, - "-webkit-tap-highlight-color": 4, - "border-image": 1, - "inset": 5, - "--actionListContent-paddingBlock": 4, - "padding-block": 9, - "padding-inline": 9, - "touch-action": 3, - "stroke": 43, - "stroke-width": 23, - "place-self": 3, - "margin-block-end": 2, - "margin-block-start": 3, - "margin-inline": 4, - "grid-auto-flow": 10, - "margin-block": 3, - "--overlay-width": 7, - "--overlay-height": 6, - "place-content": 4, - "--Layout-sidebar-width": 8, - "--Layout-gutter": 9, - "grid-column": 15, - "grid-row": 20, - "grid-gap": 2, - "padding-inline-start": 3, - "padding-inline-end": 8, - "-webkit-mask": 2, - "mask": 2, - "-webkit-mask-repeat": 2, - "mask-repeat": 2, - "-webkit-mask-size": 4, - "mask-size": 4, - "-webkit-mask-image": 2, - "mask-image": 2, - "-webkit-mask-position": 1, - "mask-position": 1, - "background-blend-mode": 2, - "transition-timing-function": 4, - "--duration-fast": 1, - "--easing-easeInOut": 1, - "margin-inline-end": 1, - "flex-basis": 4, - "font-variant-ligatures": 1, - "resize": 8, - "filter": 4, - "transform-origin": 10, - "-webkit-backdrop-filter": 1, - "backdrop-filter": 1, - "--header-menu-shadow": 2, - "contain": 2, - "border-top-style": 1, - "border-top-width": 3, - "--icon-gradient-start-color": 1, - "--icon-gradient-end-color": 1, - "--ActionList-tree-depth": 1, - "animation-play-state": 3, - "mix-blend-mode": 3, - "--color-social-reaction-bg-hover": 6, - "--color-social-reaction-bg-reacted-hover": 6, - "--AppHeader-bg": 4, - "grid-auto-columns": 1, - "transition-delay": 11, - "-ms-overflow-style": 1, - "caret-color": 1, - "src": 5, - "unicode-range": 1, - "--color-workflow-card-connector": 6, - "--color-workflow-card-connector-bg": 6, - "--color-workflow-card-connector-inactive": 6, - "--color-workflow-card-connector-inactive-bg": 6, - "--color-workflow-card-connector-highlight": 6, - "--color-workflow-card-connector-highlight-bg": 6, - "--color-workflow-card-bg": 6, - "--color-workflow-card-inactive-bg": 6, - "--color-workflow-card-header-shadow": 6, - "--color-workflow-card-progress-complete-bg": 6, - "--color-workflow-card-progress-incomplete-bg": 6, - "--color-discussions-state-answered-icon": 6, - "--color-bg-discussions-row-emoji-box": 6, - "--color-notifications-button-text": 6, - "--color-notifications-button-hover-text": 6, - "--color-notifications-button-hover-bg": 6, - "--color-notifications-row-read-bg": 6, - "--color-notifications-row-bg": 6, - "--color-icon-directory": 6, - "--color-checks-step-error-icon": 6, - "--color-calendar-halloween-graph-day-L1-bg": 6, - "--color-calendar-halloween-graph-day-L2-bg": 6, - "--color-calendar-halloween-graph-day-L3-bg": 6, - "--color-calendar-halloween-graph-day-L4-bg": 6, - "--color-calendar-winter-graph-day-L1-bg": 6, - "--color-calendar-winter-graph-day-L2-bg": 6, - "--color-calendar-winter-graph-day-L3-bg": 6, - "--color-calendar-winter-graph-day-L4-bg": 6, - "--color-calendar-graph-day-bg": 6, - "--color-calendar-graph-day-border": 6, - "--color-calendar-graph-day-L1-bg": 6, - "--color-calendar-graph-day-L2-bg": 6, - "--color-calendar-graph-day-L3-bg": 6, - "--color-calendar-graph-day-L4-bg": 6, - "--color-calendar-graph-day-L1-border": 6, - "--color-calendar-graph-day-L2-border": 6, - "--color-calendar-graph-day-L3-border": 6, - "--color-calendar-graph-day-L4-border": 6, - "--color-user-mention-fg": 6, - "--color-user-mention-bg": 6, - "--color-dashboard-feed-bg": 6, - "--color-text-white": 6, - "background-position-x": 1, - "background-position-y": 1, - "line-break": 1, - "--perceived-lightness": 1, - "--lightness-switch": 1, - "--lightness-threshold": 6, - "--border-threshold": 3, - "--border-alpha": 6, - "--background-alpha": 3, - "--lighten-by": 3, - "overscroll-behavior": 1, - "align-left": 1, - "stddeviation": 1, - "fill-opacity": 7, - "shape-rendering": 7, - "-webkit-hyphens": 1, - "hyphens": 1, - "stroke-opacity": 4, - "-webkit-line-clamp": 4, - "-webkit-box-orient": 4, - "stroke-dasharray": 5, - "text-anchor": 1, - "page-break-inside": 1, - "page-break-after": 1, - "scroll-margin-top": 1, - "object-fit": 2, - "object-position": 1, - "stroke-linecap": 1, - "tab-size": 12, - "outline-color": 1, - "--feed-sidebar": 3, - "font-feature-settings": 5, - "stroke-dashoffset": 2, - "-webkit-background-clip": 14, - "-webkit-box-decoration-break": 12, - "background-origin": 1, - "font-stretch": 5, - "font-display": 2, - "size-adjust": 2, - "ascent-override": 2, - "font-variation-settings": 1, - "font-synthesis": 1, - "border-bottom-style": 1, - "--sub-nav-mktg-shadow": 2, - "box-decoration-break": 1, - "will-change": 1, - "--mktg-accent-primary": 4, - "--mktg-accent-secondary": 3 - }, - "uniquenessRatio": 0.04285648383078839, - "prefixed": { - "total": 127, - "totalUnique": 22, - "unique": { - "-ms-text-size-adjust": 1, - "-webkit-text-size-adjust": 1, - "-webkit-text-decoration": 1, - "-webkit-appearance": 18, - "-webkit-user-select": 26, - "-webkit-text-fill-color": 19, - "-webkit-font-smoothing": 1, - "-webkit-backface-visibility": 1, - "-webkit-overflow-scrolling": 7, - "-webkit-tap-highlight-color": 4, - "-webkit-mask": 2, - "-webkit-mask-repeat": 2, - "-webkit-mask-size": 4, - "-webkit-mask-image": 2, - "-webkit-mask-position": 1, - "-webkit-backdrop-filter": 1, - "-ms-overflow-style": 1, - "-webkit-hyphens": 1, - "-webkit-line-clamp": 4, - "-webkit-box-orient": 4, - "-webkit-background-clip": 14, - "-webkit-box-decoration-break": 12 - }, - "uniquenessRatio": 0.1732283464566929, - "ratio": 0.005858744291184204 - }, - "custom": { - "total": 4461, - "totalUnique": 698, - "unique": { - "--h00-size-mobile": 20, - "--h0-size-mobile": 20, - "--h1-size-mobile": 20, - "--h2-size-mobile": 20, - "--h3-size-mobile": 20, - "--h00-size": 20, - "--h0-size": 20, - "--h1-size": 20, - "--h2-size": 20, - "--h3-size": 20, - "--h4-size": 20, - "--h5-size": 20, - "--h6-size": 20, - "--body-font-size": 20, - "--font-size-small": 20, - "--color-canvas-default-transparent": 7, - "--color-page-header-bg": 7, - "--color-marketing-icon-primary": 67, - "--color-marketing-icon-secondary": 67, - "--color-diff-blob-addition-num-text": 7, - "--color-diff-blob-addition-fg": 7, - "--color-diff-blob-addition-num-bg": 7, - "--color-diff-blob-addition-line-bg": 7, - "--color-diff-blob-addition-word-bg": 7, - "--color-diff-blob-deletion-num-text": 7, - "--color-diff-blob-deletion-fg": 7, - "--color-diff-blob-deletion-num-bg": 7, - "--color-diff-blob-deletion-line-bg": 7, - "--color-diff-blob-deletion-word-bg": 7, - "--color-diff-blob-hunk-num-bg": 7, - "--color-diff-blob-expander-icon": 7, - "--color-diff-blob-selected-line-highlight-mix-blend-mode": 13, - "--color-diffstat-deletion-border": 7, - "--color-diffstat-addition-border": 7, - "--color-diffstat-addition-bg": 7, - "--color-search-keyword-hl": 7, - "--color-prettylights-syntax-comment": 7, - "--color-prettylights-syntax-constant": 7, - "--color-prettylights-syntax-entity": 7, - "--color-prettylights-syntax-storage-modifier-import": 7, - "--color-prettylights-syntax-entity-tag": 7, - "--color-prettylights-syntax-keyword": 7, - "--color-prettylights-syntax-string": 7, - "--color-prettylights-syntax-variable": 7, - "--color-prettylights-syntax-brackethighlighter-unmatched": 7, - "--color-prettylights-syntax-invalid-illegal-text": 7, - "--color-prettylights-syntax-invalid-illegal-bg": 7, - "--color-prettylights-syntax-carriage-return-text": 7, - "--color-prettylights-syntax-carriage-return-bg": 7, - "--color-prettylights-syntax-string-regexp": 7, - "--color-prettylights-syntax-markup-list": 7, - "--color-prettylights-syntax-markup-heading": 7, - "--color-prettylights-syntax-markup-italic": 7, - "--color-prettylights-syntax-markup-bold": 7, - "--color-prettylights-syntax-markup-deleted-text": 7, - "--color-prettylights-syntax-markup-deleted-bg": 7, - "--color-prettylights-syntax-markup-inserted-text": 7, - "--color-prettylights-syntax-markup-inserted-bg": 7, - "--color-prettylights-syntax-markup-changed-text": 7, - "--color-prettylights-syntax-markup-changed-bg": 7, - "--color-prettylights-syntax-markup-ignored-text": 7, - "--color-prettylights-syntax-markup-ignored-bg": 7, - "--color-prettylights-syntax-meta-diff-range": 7, - "--color-prettylights-syntax-brackethighlighter-angle": 7, - "--color-prettylights-syntax-sublimelinter-gutter-mark": 7, - "--color-prettylights-syntax-constant-other-reference-link": 7, - "--color-codemirror-text": 7, - "--color-codemirror-bg": 7, - "--color-codemirror-gutters-bg": 7, - "--color-codemirror-guttermarker-text": 7, - "--color-codemirror-guttermarker-subtle-text": 7, - "--color-codemirror-linenumber-text": 7, - "--color-codemirror-cursor": 7, - "--color-codemirror-selection-bg": 7, - "--color-codemirror-activeline-bg": 7, - "--color-codemirror-matchingbracket-text": 7, - "--color-codemirror-lines-bg": 7, - "--color-codemirror-syntax-comment": 7, - "--color-codemirror-syntax-constant": 7, - "--color-codemirror-syntax-entity": 7, - "--color-codemirror-syntax-keyword": 7, - "--color-codemirror-syntax-storage": 7, - "--color-codemirror-syntax-string": 7, - "--color-codemirror-syntax-support": 7, - "--color-codemirror-syntax-variable": 7, - "--color-checks-bg": 7, - "--color-checks-run-border-width": 7, - "--color-checks-container-border-width": 7, - "--color-checks-text-primary": 7, - "--color-checks-text-secondary": 7, - "--color-checks-text-link": 7, - "--color-checks-btn-icon": 7, - "--color-checks-btn-hover-icon": 7, - "--color-checks-btn-hover-bg": 7, - "--color-checks-input-text": 7, - "--color-checks-input-placeholder-text": 7, - "--color-checks-input-focus-text": 7, - "--color-checks-input-bg": 7, - "--color-checks-input-shadow": 7, - "--color-checks-donut-error": 13, - "--color-checks-donut-pending": 13, - "--color-checks-donut-success": 13, - "--color-checks-donut-neutral": 13, - "--color-checks-dropdown-text": 7, - "--color-checks-dropdown-bg": 7, - "--color-checks-dropdown-border": 7, - "--color-checks-dropdown-shadow": 7, - "--color-checks-dropdown-hover-text": 7, - "--color-checks-dropdown-hover-bg": 7, - "--color-checks-dropdown-btn-hover-text": 7, - "--color-checks-dropdown-btn-hover-bg": 7, - "--color-checks-scrollbar-thumb-bg": 7, - "--color-checks-header-label-text": 7, - "--color-checks-header-label-open-text": 7, - "--color-checks-header-border": 7, - "--color-checks-header-icon": 7, - "--color-checks-line-text": 7, - "--color-checks-line-num-text": 7, - "--color-checks-line-timestamp-text": 7, - "--color-checks-line-hover-bg": 7, - "--color-checks-line-selected-bg": 7, - "--color-checks-line-selected-num-text": 7, - "--color-checks-line-dt-fm-text": 7, - "--color-checks-line-dt-fm-bg": 7, - "--color-checks-gate-bg": 7, - "--color-checks-gate-text": 7, - "--color-checks-gate-waiting-text": 7, - "--color-checks-step-header-open-bg": 7, - "--color-checks-step-error-text": 7, - "--color-checks-step-warning-text": 7, - "--color-checks-logline-text": 7, - "--color-checks-logline-num-text": 7, - "--color-checks-logline-debug-text": 7, - "--color-checks-logline-error-text": 7, - "--color-checks-logline-error-num-text": 7, - "--color-checks-logline-error-bg": 7, - "--color-checks-logline-warning-text": 7, - "--color-checks-logline-warning-num-text": 7, - "--color-checks-logline-warning-bg": 7, - "--color-checks-logline-command-text": 7, - "--color-checks-logline-section-text": 7, - "--color-checks-ansi-black": 7, - "--color-checks-ansi-black-bright": 7, - "--color-checks-ansi-white": 7, - "--color-checks-ansi-white-bright": 7, - "--color-checks-ansi-gray": 7, - "--color-checks-ansi-red": 7, - "--color-checks-ansi-red-bright": 7, - "--color-checks-ansi-green": 7, - "--color-checks-ansi-green-bright": 7, - "--color-checks-ansi-yellow": 7, - "--color-checks-ansi-yellow-bright": 7, - "--color-checks-ansi-blue": 7, - "--color-checks-ansi-blue-bright": 7, - "--color-checks-ansi-magenta": 7, - "--color-checks-ansi-magenta-bright": 7, - "--color-checks-ansi-cyan": 7, - "--color-checks-ansi-cyan-bright": 7, - "--color-project-header-bg": 13, - "--color-project-sidebar-bg": 13, - "--color-project-gradient-in": 13, - "--color-project-gradient-out": 13, - "--color-mktg-btn-bg": 61, - "--color-mktg-btn-shadow-outline": 67, - "--color-mktg-btn-shadow-focus": 61, - "--color-mktg-btn-shadow-hover": 61, - "--color-mktg-btn-shadow-hover-muted": 61, - "--color-control-border-color-emphasis": 7, - "--color-avatar-bg": 7, - "--color-avatar-border": 7, - "--color-avatar-stack-fade": 7, - "--color-avatar-stack-fade-more": 7, - "--color-avatar-child-shadow": 7, - "--color-topic-tag-border": 7, - "--color-counter-border": 7, - "--color-select-menu-backdrop-border": 7, - "--color-select-menu-tap-highlight": 7, - "--color-select-menu-tap-focus-bg": 7, - "--color-overlay-shadow": 7, - "--color-overlay-backdrop": 7, - "--color-header-text": 7, - "--color-header-bg": 7, - "--color-header-divider": 7, - "--color-header-logo": 7, - "--color-header-search-bg": 7, - "--color-header-search-border": 7, - "--color-sidenav-selected-bg": 7, - "--color-menu-bg-active": 7, - "--color-input-disabled-bg": 7, - "--color-timeline-badge-bg": 7, - "--color-ansi-black": 7, - "--color-ansi-black-bright": 7, - "--color-ansi-white": 7, - "--color-ansi-white-bright": 7, - "--color-ansi-gray": 7, - "--color-ansi-red": 7, - "--color-ansi-red-bright": 7, - "--color-ansi-green": 7, - "--color-ansi-green-bright": 7, - "--color-ansi-yellow": 7, - "--color-ansi-yellow-bright": 7, - "--color-ansi-blue": 7, - "--color-ansi-blue-bright": 7, - "--color-ansi-magenta": 7, - "--color-ansi-magenta-bright": 7, - "--color-ansi-cyan": 7, - "--color-ansi-cyan-bright": 7, - "--color-btn-text": 7, - "--color-btn-bg": 7, - "--color-btn-border": 7, - "--color-btn-shadow": 7, - "--color-btn-inset-shadow": 7, - "--color-btn-hover-bg": 7, - "--color-btn-hover-border": 7, - "--color-btn-active-bg": 7, - "--color-btn-active-border": 7, - "--color-btn-selected-bg": 7, - "--color-btn-counter-bg": 7, - "--color-btn-primary-text": 7, - "--color-btn-primary-bg": 7, - "--color-btn-primary-border": 7, - "--color-btn-primary-shadow": 7, - "--color-btn-primary-inset-shadow": 7, - "--color-btn-primary-hover-bg": 7, - "--color-btn-primary-hover-border": 7, - "--color-btn-primary-selected-bg": 7, - "--color-btn-primary-selected-shadow": 7, - "--color-btn-primary-disabled-text": 7, - "--color-btn-primary-disabled-bg": 7, - "--color-btn-primary-disabled-border": 7, - "--color-btn-primary-icon": 7, - "--color-btn-primary-counter-bg": 7, - "--color-btn-outline-text": 7, - "--color-btn-outline-hover-text": 7, - "--color-btn-outline-hover-bg": 7, - "--color-btn-outline-hover-border": 7, - "--color-btn-outline-hover-shadow": 7, - "--color-btn-outline-hover-inset-shadow": 7, - "--color-btn-outline-hover-counter-bg": 7, - "--color-btn-outline-selected-text": 7, - "--color-btn-outline-selected-bg": 7, - "--color-btn-outline-selected-border": 7, - "--color-btn-outline-selected-shadow": 7, - "--color-btn-outline-disabled-text": 7, - "--color-btn-outline-disabled-bg": 7, - "--color-btn-outline-disabled-counter-bg": 7, - "--color-btn-outline-counter-bg": 7, - "--color-btn-outline-counter-fg": 7, - "--color-btn-outline-hover-counter-fg": 7, - "--color-btn-outline-disabled-counter-fg": 7, - "--color-btn-danger-text": 7, - "--color-btn-danger-hover-text": 7, - "--color-btn-danger-hover-bg": 7, - "--color-btn-danger-hover-border": 7, - "--color-btn-danger-hover-shadow": 7, - "--color-btn-danger-hover-inset-shadow": 7, - "--color-btn-danger-hover-counter-bg": 7, - "--color-btn-danger-selected-text": 7, - "--color-btn-danger-selected-bg": 7, - "--color-btn-danger-selected-border": 7, - "--color-btn-danger-selected-shadow": 7, - "--color-btn-danger-disabled-text": 7, - "--color-btn-danger-disabled-bg": 7, - "--color-btn-danger-disabled-counter-bg": 7, - "--color-btn-danger-counter-bg": 7, - "--color-btn-danger-icon": 7, - "--color-btn-danger-hover-icon": 7, - "--color-btn-danger-counter-fg": 7, - "--color-btn-danger-hover-counter-fg": 7, - "--color-btn-danger-disabled-counter-fg": 7, - "--color-underlinenav-icon": 7, - "--color-underlinenav-border-hover": 7, - "--color-action-list-item-inline-divider": 7, - "--color-action-list-item-default-hover-bg": 7, - "--color-action-list-item-default-hover-border": 7, - "--color-action-list-item-default-active-bg": 7, - "--color-action-list-item-default-active-border": 7, - "--color-action-list-item-default-selected-bg": 7, - "--color-action-list-item-danger-hover-bg": 7, - "--color-action-list-item-danger-active-bg": 7, - "--color-action-list-item-danger-hover-text": 7, - "--color-switch-track-bg": 7, - "--color-switch-track-hover-bg": 7, - "--color-switch-track-active-bg": 7, - "--color-switch-track-disabled-bg": 7, - "--color-switch-track-fg": 7, - "--color-switch-track-disabled-fg": 7, - "--color-switch-track-border": 7, - "--color-switch-track-checked-bg": 7, - "--color-switch-track-checked-hover-bg": 7, - "--color-switch-track-checked-active-bg": 7, - "--color-switch-track-checked-fg": 7, - "--color-switch-track-checked-disabled-fg": 7, - "--color-switch-track-checked-border": 7, - "--color-switch-knob-bg": 7, - "--color-switch-knob-disabled-bg": 7, - "--color-switch-knob-border": 7, - "--color-switch-knob-checked-bg": 7, - "--color-switch-knob-checked-disabled-bg": 7, - "--color-switch-knob-checked-border": 7, - "--color-segmented-control-bg": 7, - "--color-segmented-control-button-bg": 7, - "--color-segmented-control-button-hover-bg": 7, - "--color-segmented-control-button-active-bg": 7, - "--color-segmented-control-button-selected-border": 7, - "--color-tree-view-item-chevron-hover-bg": 7, - "--color-tree-view-item-directory-fill": 7, - "--color-fg-default": 11, - "--color-fg-muted": 7, - "--color-fg-subtle": 7, - "--color-fg-on-emphasis": 8, - "--color-canvas-default": 12, - "--color-canvas-overlay": 7, - "--color-canvas-inset": 7, - "--color-canvas-subtle": 8, - "--color-border-default": 7, - "--color-border-muted": 7, - "--color-border-subtle": 7, - "--color-shadow-small": 7, - "--color-shadow-medium": 7, - "--color-shadow-large": 7, - "--color-shadow-extra-large": 7, - "--color-neutral-emphasis-plus": 7, - "--color-neutral-emphasis": 7, - "--color-neutral-muted": 7, - "--color-neutral-subtle": 7, - "--color-accent-fg": 7, - "--color-accent-emphasis": 8, - "--color-accent-muted": 7, - "--color-accent-subtle": 7, - "--color-success-fg": 7, - "--color-success-emphasis": 7, - "--color-success-muted": 7, - "--color-success-subtle": 7, - "--color-attention-fg": 7, - "--color-attention-emphasis": 7, - "--color-attention-muted": 7, - "--color-attention-subtle": 7, - "--color-severe-fg": 7, - "--color-severe-emphasis": 7, - "--color-severe-muted": 7, - "--color-severe-subtle": 7, - "--color-danger-fg": 7, - "--color-danger-emphasis": 7, - "--color-danger-muted": 7, - "--color-danger-subtle": 7, - "--color-open-fg": 8, - "--color-open-emphasis": 8, - "--color-open-muted": 8, - "--color-open-subtle": 8, - "--color-closed-fg": 8, - "--color-closed-emphasis": 8, - "--color-closed-muted": 8, - "--color-closed-subtle": 8, - "--color-done-fg": 7, - "--color-done-emphasis": 7, - "--color-done-muted": 7, - "--color-done-subtle": 7, - "--color-sponsors-fg": 7, - "--color-sponsors-emphasis": 7, - "--color-sponsors-muted": 7, - "--color-sponsors-subtle": 7, - "--color-primer-fg-disabled": 7, - "--color-primer-canvas-backdrop": 7, - "--color-primer-canvas-sticky": 7, - "--color-primer-border-active": 7, - "--color-primer-border-contrast": 7, - "--color-primer-shadow-highlight": 7, - "--color-primer-shadow-inset": 7, - "--color-scale-black": 7, - "--color-scale-white": 7, - "--color-scale-gray-0": 7, - "--color-scale-gray-1": 7, - "--color-scale-gray-2": 7, - "--color-scale-gray-3": 7, - "--color-scale-gray-4": 7, - "--color-scale-gray-5": 7, - "--color-scale-gray-6": 7, - "--color-scale-gray-7": 7, - "--color-scale-gray-8": 7, - "--color-scale-gray-9": 7, - "--color-scale-blue-0": 7, - "--color-scale-blue-1": 7, - "--color-scale-blue-2": 7, - "--color-scale-blue-3": 7, - "--color-scale-blue-4": 7, - "--color-scale-blue-5": 7, - "--color-scale-blue-6": 7, - "--color-scale-blue-7": 7, - "--color-scale-blue-8": 7, - "--color-scale-blue-9": 7, - "--color-scale-green-0": 7, - "--color-scale-green-1": 7, - "--color-scale-green-2": 7, - "--color-scale-green-3": 7, - "--color-scale-green-4": 7, - "--color-scale-green-5": 7, - "--color-scale-green-6": 7, - "--color-scale-green-7": 7, - "--color-scale-green-8": 7, - "--color-scale-green-9": 7, - "--color-scale-yellow-0": 7, - "--color-scale-yellow-1": 7, - "--color-scale-yellow-2": 7, - "--color-scale-yellow-3": 7, - "--color-scale-yellow-4": 7, - "--color-scale-yellow-5": 7, - "--color-scale-yellow-6": 7, - "--color-scale-yellow-7": 7, - "--color-scale-yellow-8": 7, - "--color-scale-yellow-9": 7, - "--color-scale-orange-0": 7, - "--color-scale-orange-1": 7, - "--color-scale-orange-2": 7, - "--color-scale-orange-3": 7, - "--color-scale-orange-4": 7, - "--color-scale-orange-5": 7, - "--color-scale-orange-6": 7, - "--color-scale-orange-7": 7, - "--color-scale-orange-8": 7, - "--color-scale-orange-9": 7, - "--color-scale-red-0": 7, - "--color-scale-red-1": 7, - "--color-scale-red-2": 7, - "--color-scale-red-3": 7, - "--color-scale-red-4": 7, - "--color-scale-red-5": 7, - "--color-scale-red-6": 7, - "--color-scale-red-7": 7, - "--color-scale-red-8": 7, - "--color-scale-red-9": 7, - "--color-scale-purple-0": 7, - "--color-scale-purple-1": 7, - "--color-scale-purple-2": 7, - "--color-scale-purple-3": 7, - "--color-scale-purple-4": 7, - "--color-scale-purple-5": 7, - "--color-scale-purple-6": 7, - "--color-scale-purple-7": 7, - "--color-scale-purple-8": 7, - "--color-scale-purple-9": 7, - "--color-scale-pink-0": 7, - "--color-scale-pink-1": 7, - "--color-scale-pink-2": 7, - "--color-scale-pink-3": 7, - "--color-scale-pink-4": 7, - "--color-scale-pink-5": 7, - "--color-scale-pink-6": 7, - "--color-scale-pink-7": 7, - "--color-scale-pink-8": 7, - "--color-scale-pink-9": 7, - "--color-scale-coral-0": 7, - "--color-scale-coral-1": 7, - "--color-scale-coral-2": 7, - "--color-scale-coral-3": 7, - "--color-scale-coral-4": 7, - "--color-scale-coral-5": 7, - "--color-scale-coral-6": 7, - "--color-scale-coral-7": 7, - "--color-scale-coral-8": 7, - "--color-scale-coral-9": 7, - "--base-size-4": 1, - "--base-size-8": 1, - "--base-size-12": 1, - "--base-size-16": 1, - "--base-size-20": 1, - "--base-size-24": 1, - "--base-size-28": 1, - "--base-size-32": 1, - "--base-size-36": 1, - "--base-size-40": 1, - "--base-size-44": 1, - "--base-size-48": 1, - "--base-size-64": 1, - "--base-size-80": 1, - "--base-size-96": 1, - "--base-size-112": 1, - "--base-size-128": 1, - "--base-text-weight-light": 1, - "--base-text-weight-normal": 1, - "--base-text-weight-medium": 1, - "--base-text-weight-semibold": 1, - "--boxShadow-thin": 1, - "--boxShadow-thick": 1, - "--boxShadow-thicker": 1, - "--borderWidth-thin": 1, - "--borderWidth-thick": 1, - "--borderWidth-thicker": 1, - "--borderRadius-small": 1, - "--borderRadius-medium": 1, - "--borderRadius-large": 1, - "--borderRadius-full": 1, - "--outline-focus-offset": 1, - "--outline-focus-width": 1, - "--breakpoint-xsmall": 1, - "--breakpoint-small": 1, - "--breakpoint-medium": 1, - "--breakpoint-large": 1, - "--breakpoint-xlarge": 1, - "--breakpoint-xxlarge": 1, - "--control-minTarget-auto": 2, - "--controlStack-small-gap-auto": 2, - "--controlStack-medium-gap-auto": 2, - "--control-minTarget-fine": 1, - "--control-minTarget-coarse": 1, - "--control-xsmall-size": 1, - "--control-xsmall-lineBoxHeight": 1, - "--control-xsmall-paddingBlock": 1, - "--control-xsmall-paddingInline-condensed": 1, - "--control-xsmall-paddingInline-normal": 1, - "--control-xsmall-paddingInline-spacious": 1, - "--control-xsmall-gap": 1, - "--control-small-size": 1, - "--control-small-lineBoxHeight": 1, - "--control-small-paddingBlock": 1, - "--control-small-paddingInline-condensed": 1, - "--control-small-paddingInline-normal": 1, - "--control-small-gap": 1, - "--control-medium-size": 1, - "--control-medium-lineBoxHeight": 1, - "--control-medium-paddingBlock": 1, - "--control-medium-paddingInline-condensed": 1, - "--control-medium-paddingInline-normal": 1, - "--control-medium-paddingInline-spacious": 1, - "--control-medium-gap": 1, - "--control-large-size": 1, - "--control-large-lineBoxHeight": 1, - "--control-large-paddingBlock": 1, - "--control-large-paddingInline-normal": 1, - "--control-large-paddingInline-spacious": 1, - "--control-large-gap": 1, - "--control-xlarge-size": 1, - "--control-xlarge-lineBoxHeight": 1, - "--control-xlarge-paddingBlock": 1, - "--control-xlarge-paddingInline-normal": 1, - "--control-xlarge-paddingInline-spacious": 1, - "--control-xlarge-gap": 1, - "--controlStack-small-gap-condensed": 1, - "--controlStack-small-gap-spacious": 1, - "--controlStack-medium-gap-condensed": 1, - "--controlStack-medium-gap-spacious": 1, - "--controlStack-large-gap-auto": 1, - "--controlStack-large-gap-condensed": 1, - "--controlStack-large-gap-spacious": 1, - "--space-xxsmall": 1, - "--space-xsmall": 1, - "--space-small": 1, - "--space-medium": 1, - "--space-large": 1, - "--space-xlarge": 1, - "--stack-padding-condensed": 1, - "--stack-padding-normal": 1, - "--stack-padding-spacious": 1, - "--stack-gap-condensed": 1, - "--stack-gap-normal": 1, - "--stack-gap-spacious": 1, - "--overlay-width-xsmall": 1, - "--overlay-width-small": 1, - "--overlay-width-medium": 1, - "--overlay-width-large": 1, - "--overlay-width-xlarge": 1, - "--overlay-height-small": 1, - "--overlay-height-medium": 1, - "--overlay-height-large": 1, - "--overlay-height-xlarge": 1, - "--overlay-padding-normal": 1, - "--overlay-padding-condensed": 1, - "--overlay-paddingBlock-condensed": 1, - "--overlay-paddingBlock-normal": 1, - "--overlay-borderRadius": 1, - "--text-codeInline-size": 1, - "--text-codeBlock-lineHeight": 1, - "--text-codeBlock-size": 1, - "--text-caption-lineHeight": 1, - "--text-caption-size": 1, - "--text-body-lineHeight-small": 1, - "--text-body-lineHeight-medium": 1, - "--text-body-lineHeight-large": 1, - "--text-body-size-small": 1, - "--text-body-size-medium": 1, - "--text-body-size-large": 1, - "--text-subtitle-lineHeight": 1, - "--text-subtitle-size": 1, - "--text-title-lineHeight-small": 1, - "--text-title-lineHeight-medium": 1, - "--text-title-lineHeight-large": 1, - "--text-title-size-small": 1, - "--text-title-size-medium": 1, - "--text-title-size-large": 1, - "--text-display-lineHeight": 1, - "--text-display-size": 1, - "--text-display-lineBoxHeight": 1, - "--fontStack-monospace": 1, - "--fontStack-sansSerif": 1, - "--fontStack-system": 1, - "--text-codeInline-weight": 1, - "--text-codeBlock-weight": 1, - "--text-caption-weight": 1, - "--text-body-weight": 1, - "--text-subtitle-weight": 1, - "--text-title-weight-small": 1, - "--text-title-weight-medium": 1, - "--text-title-weight-large": 1, - "--text-display-weight": 1, - "--text-codeInline-shorthand": 1, - "--text-codeBlock-shorthand": 1, - "--text-caption-shorthand": 1, - "--text-body-shorthand-small": 1, - "--text-body-shorthand-medium": 1, - "--text-body-shorthand-large": 1, - "--text-subtitle-shorthand": 1, - "--text-title-shorthand-small": 1, - "--text-title-shorthand-medium": 1, - "--text-title-shorthand-large": 1, - "--text-display-shorthand": 1, - "--fgColor-onEmphasis": 1, - "--fgColor-accent": 1, - "--Layout-pane-width": 8, - "--Layout-content-width": 5, - "--Layout-template-columns": 5, - "--Layout-template-areas": 8, - "--Layout-column-gap": 5, - "--Layout-row-gap": 5, - "--Layout-outer-spacing-x": 4, - "--Layout-outer-spacing-y": 4, - "--Layout-inner-spacing-min": 3, - "--Layout-inner-spacing-max": 4, - "--Stack-gap-whenRegular": 5, - "--Stack-gap-whenNarrow": 4, - "--Stack-gap-whenWide": 5, - "--Stack-divider-color": 1, - "--actionListContent-paddingBlock": 4, - "--overlay-width": 7, - "--overlay-height": 6, - "--Layout-sidebar-width": 8, - "--Layout-gutter": 9, - "--duration-fast": 1, - "--easing-easeInOut": 1, - "--header-menu-shadow": 2, - "--icon-gradient-start-color": 1, - "--icon-gradient-end-color": 1, - "--ActionList-tree-depth": 1, - "--color-social-reaction-bg-hover": 6, - "--color-social-reaction-bg-reacted-hover": 6, - "--AppHeader-bg": 4, - "--color-workflow-card-connector": 6, - "--color-workflow-card-connector-bg": 6, - "--color-workflow-card-connector-inactive": 6, - "--color-workflow-card-connector-inactive-bg": 6, - "--color-workflow-card-connector-highlight": 6, - "--color-workflow-card-connector-highlight-bg": 6, - "--color-workflow-card-bg": 6, - "--color-workflow-card-inactive-bg": 6, - "--color-workflow-card-header-shadow": 6, - "--color-workflow-card-progress-complete-bg": 6, - "--color-workflow-card-progress-incomplete-bg": 6, - "--color-discussions-state-answered-icon": 6, - "--color-bg-discussions-row-emoji-box": 6, - "--color-notifications-button-text": 6, - "--color-notifications-button-hover-text": 6, - "--color-notifications-button-hover-bg": 6, - "--color-notifications-row-read-bg": 6, - "--color-notifications-row-bg": 6, - "--color-icon-directory": 6, - "--color-checks-step-error-icon": 6, - "--color-calendar-halloween-graph-day-L1-bg": 6, - "--color-calendar-halloween-graph-day-L2-bg": 6, - "--color-calendar-halloween-graph-day-L3-bg": 6, - "--color-calendar-halloween-graph-day-L4-bg": 6, - "--color-calendar-winter-graph-day-L1-bg": 6, - "--color-calendar-winter-graph-day-L2-bg": 6, - "--color-calendar-winter-graph-day-L3-bg": 6, - "--color-calendar-winter-graph-day-L4-bg": 6, - "--color-calendar-graph-day-bg": 6, - "--color-calendar-graph-day-border": 6, - "--color-calendar-graph-day-L1-bg": 6, - "--color-calendar-graph-day-L2-bg": 6, - "--color-calendar-graph-day-L3-bg": 6, - "--color-calendar-graph-day-L4-bg": 6, - "--color-calendar-graph-day-L1-border": 6, - "--color-calendar-graph-day-L2-border": 6, - "--color-calendar-graph-day-L3-border": 6, - "--color-calendar-graph-day-L4-border": 6, - "--color-user-mention-fg": 6, - "--color-user-mention-bg": 6, - "--color-dashboard-feed-bg": 6, - "--color-text-white": 6, - "--perceived-lightness": 1, - "--lightness-switch": 1, - "--lightness-threshold": 6, - "--border-threshold": 3, - "--border-alpha": 6, - "--background-alpha": 3, - "--lighten-by": 3, - "--feed-sidebar": 3, - "--sub-nav-mktg-shadow": 2, - "--mktg-accent-primary": 4, - "--mktg-accent-secondary": 3 - }, - "uniquenessRatio": 0.1564671598296346, - "ratio": 0.20579415970844675, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.2116529039996309, - "mode": 1, - "range": 1, - "sum": 26265 - } - }, - "values": { - "colors": { - "total": 4732, - "totalUnique": 604, - "unique": { - "rgba(255,255,255,0)": 8, - "#f6f8fa": 94, - "#218bff": 12, - "#54aeff": 28, - "#1F2328": 36, - "#ccffd8": 4, - "#e6ffec": 4, - "#abf2bc": 4, - "#ffd7d5": 4, - "#ffebe9": 24, - "rgba(255,129,130,0.4)": 12, - "rgba(84,174,255,0.4)": 12, - "#656d76": 16, - "rgba(31,35,40,0.15)": 56, - "#1f883d": 20, - "#fff8c5": 12, - "#6e7781": 32, - "#0550ae": 28, - "#6639ba": 8, - "#24292f": 57, - "#116329": 20, - "#cf222e": 40, - "#0a3069": 16, - "#953800": 16, - "#82071e": 16, - "#3b2300": 8, - "#dafbe1": 16, - "#ffd8b5": 8, - "#eaeef2": 24, - "#8250df": 24, - "#57606a": 24, - "#8c959f": 52, - "#ffffff": 144, - "rgba(234,238,242,0.5)": 8, - "#afb8c1": 20, - "rgba(255,255,255,0.125)": 4, - "#32383f": 32, - "#fa4549": 8, - "#bf8700": 8, - "#424a53": 12, - "rgba(31,35,40,0.3)": 4, - "#d0d7de": 40, - "rgba(140,149,159,0.75)": 8, - "rgba(33,139,255,0.15)": 4, - "#9a6700": 16, - "rgba(125,78,0,0.15)": 8, - "#d4a72c": 20, - "#ff8182": 16, - "#c297ff": 12, - "rgba(164,14,38,0.15)": 4, - "#4ac26b": 12, - "#ffaba8": 8, - "#6fdd8b": 8, - "#eac54f": 8, - "#80ccff": 8, - "#d8b9ff": 8, - "#76e3ea": 7, - "#b3f0ff": 7, - "#1b1f23": 31, - "rgb(0 0 0 / 15%)": 8, - "rgba(0, 0, 0, 0.07)": 31, - "rgba(0, 0, 0, 0.04)": 32, - "rgba(0, 0, 0, 0.03)": 63, - "rgba(0, 0, 0, 0.02)": 62, - "rgb(0 0 0 / 70%)": 4, - "#858F99": 8, - "rgba(255,255,255,0.8)": 12, - "rgba(0,0,0,0)": 51, - "rgba(175,184,193,0.5)": 4, - "#b6e3ff": 8, - "rgba(31,35,40,0.12)": 4, - "rgba(66,74,83,0.12)": 4, - "rgba(140,149,159,0.2)": 8, - "rgba(255,255,255,0.7)": 7, - "rgba(175,184,193,0.2)": 16, - "#a40e26": 16, - "#1a7f37": 20, - "#4d2d00": 8, - "#633c01": 8, - "#0969da": 32, - "#a475f9": 8, - "#1b7c83": 4, - "#3192aa": 4, - "rgba(31,35,40,0.04)": 8, - "rgba(255,255,255,0.25)": 8, - "#f3f4f6": 4, - "hsla(220,14%,93%,1)": 4, - "hsla(220,14%,94%,1)": 4, - "rgba(31,35,40,0.08)": 4, - "rgba(31,35,40,0.1)": 16, - "rgba(255,255,255,0.03)": 15, - "hsla(137,66%,28%,1)": 4, - "rgba(0,45,17,0.2)": 8, - "#94d3a2": 4, - "rgba(255,255,255,0.2)": 14, - "hsla(212,92%,42%,1)": 4, - "rgba(0,33,85,0.2)": 4, - "rgba(9,105,218,0.5)": 8, - "rgba(9,105,218,0.05)": 4, - "#0969da1a": 4, - "hsla(356,72%,44%,1)": 4, - "rgba(76,0,20,0.2)": 4, - "rgba(207,34,46,0.5)": 8, - "rgba(207,34,46,0.05)": 4, - "rgba(207,34,46,0.1)": 4, - "rgba(208,215,222,0.48)": 8, - "rgba(208,215,222,0.32)": 8, - "rgba(208,215,222,0.24)": 4, - "rgba(255,235,233,0.64)": 4, - "#d1242f": 12, - "hsla(210,24%,90%,1)": 4, - "hsla(210,24%,88%,1)": 4, - "#0860CA": 4, - "#0757BA": 4, - "rgba(175,184,193,0.4)": 4, - "hsla(210,18%,87%,1)": 4, - "rgba(140,149,159,0.15)": 4, - "rgba(140,149,159,0.3)": 4, - "#ddf4ff": 8, - "rgba(74,194,107,0.4)": 8, - "rgba(212,167,44,0.4)": 4, - "#bc4c00": 12, - "rgba(251,143,68,0.4)": 4, - "#fff1e5": 8, - "rgba(194,151,255,0.4)": 4, - "#fbefff": 8, - "#bf3989": 12, - "rgba(255,128,200,0.4)": 4, - "#ffeff7": 8, - "rgba(31,35,40,0.5)": 4, - "rgba(255,255,255,0.95)": 4, - "#fd8c73": 8, - "rgba(208,215,222,0.2)": 4, - "#033d8b": 4, - "#002155": 4, - "#aceebb": 4, - "#2da44e": 4, - "#044f1e": 4, - "#003d16": 4, - "#002d11": 4, - "#fae17d": 4, - "#7d4e00": 4, - "#ffb77c": 4, - "#fb8f44": 4, - "#e16f24": 4, - "#762c00": 4, - "#5c2200": 4, - "#471700": 4, - "#ffcecb": 4, - "#660018": 4, - "#4c0014": 4, - "#ecd8ff": 4, - "#512a97": 4, - "#3e1f79": 4, - "#2e1461": 4, - "#ffd3eb": 4, - "#ffadda": 4, - "#ff80c8": 4, - "#e85aad": 4, - "#99286e": 4, - "#772057": 4, - "#611347": 4, - "#4d0336": 4, - "#fff0eb": 4, - "#ffd6cc": 4, - "#ffb4a1": 4, - "#ec6547": 4, - "#c4432b": 4, - "#9e2f1c": 4, - "#801f0f": 4, - "#691105": 4, - "#510901": 4, - "rgba(13,17,23,0)": 3, - "#0d1117": 50, - "#79c0ff": 22, - "#1f6feb": 12, - "#e6edf3": 45, - "rgba(63,185,80,0.3)": 3, - "rgba(46,160,67,0.15)": 9, - "rgba(46,160,67,0.4)": 9, - "rgba(248,81,73,0.3)": 3, - "rgba(248,81,73,0.1)": 9, - "rgba(248,81,73,0.4)": 9, - "rgba(56,139,253,0.4)": 9, - "#7d8590": 45, - "rgba(240,246,252,0.1)": 30, - "#3fb950": 21, - "rgba(210,153,34,0.4)": 3, - "#8b949e": 21, - "#d2a8ff": 19, - "#c9d1d9": 18, - "#7ee787": 10, - "#ff7b72": 24, - "#a5d6ff": 12, - "#ffa657": 9, - "#f85149": 30, - "#f0f6fc": 12, - "#8e1519": 6, - "#b62324": 9, - "#f2cc60": 6, - "#ffdcd7": 6, - "#67060c": 6, - "#aff5b4": 7, - "#033a16": 6, - "#ffdfb6": 6, - "#5a1e02": 6, - "#1158c7": 6, - "#484f58": 15, - "#6e7681": 48, - "rgba(110,118,129,0.1)": 24, - "#010409": 24, - "#2f81f7": 12, - "#161b22": 42, - "#d29922": 24, - "#2ea043": 9, - "#30363d": 30, - "rgba(1,4,9,0.3)": 3, - "rgba(110,118,129,0.4)": 12, - "#21262d": 27, - "rgba(56,139,253,0.1)": 6, - "#9e6a03": 9, - "rgba(187,128,9,0.15)": 9, - "#a371f7": 9, - "#b1bac4": 12, - "#ffa198": 9, - "#56d364": 9, - "#e3b341": 9, - "#58a6ff": 18, - "#bc8cff": 10, - "rgba(22,27,34,0)": 3, - "rgb(255 255 255 / 25%)": 6, - "rgba(0, 0, 0, 0.15)": 88, - "rgba(255, 255, 255, 0.02)": 30, - "rgba(255, 255, 255, 0.024)": 30, - "rgba(255, 255, 255, 0.028)": 30, - "rgba(255, 255, 255, 0.034)": 30, - "rgba(255, 255, 255, 0.04)": 30, - "rgba(255, 255, 255, 0.07)": 30, - "rgb(255 255 255)": 3, - "#606771": 6, - "rgba(255,255,255,0.1)": 3, - "rgba(48,54,61,0.5)": 3, - "#0c2d6b": 6, - "rgba(1,4,9,0.85)": 3, - "rgba(22,27,34,0.4)": 3, - "rgba(110,118,129,0)": 3, - "#39c5cf": 3, - "#56d4dd": 3, - "transparent": 258, - "hsla(212,12%,18%,1)": 3, - "#238636": 15, - "rgba(255,255,255,0.5)": 3, - "rgba(35,134,54,0.6)": 3, - "rgba(4,38,15,0.2)": 3, - "#388bfd": 9, - "rgba(1,4,9,0.1)": 3, - "rgba(5,29,77,0.2)": 6, - "#0d419d": 6, - "rgba(88,166,255,0.5)": 3, - "rgba(31,111,235,0.05)": 3, - "rgba(47,129,247,0.5)": 3, - "#da3633": 12, - "rgba(248,81,73,0.5)": 6, - "rgba(218,54,51,0.05)": 3, - "rgba(73,2,2,0.2)": 3, - "rgba(48,54,61,0.48)": 3, - "rgba(177,186,196,0.12)": 6, - "rgba(177,186,196,0.2)": 3, - "rgba(177,186,196,0.08)": 3, - "rgba(248,81,73,0.16)": 3, - "rgba(248,81,73,0.24)": 3, - "hsla(215,8%,72%,0.1)": 3, - "rgba(31,111,235,0.35)": 6, - "rgba(31,111,235,0.5)": 3, - "rgba(31,111,235,0.65)": 3, - "rgba(187,128,9,0.4)": 3, - "#db6d28": 6, - "#bd561d": 9, - "rgba(219,109,40,0.4)": 3, - "rgba(219,109,40,0.1)": 3, - "rgba(248,81,73,0.15)": 3, - "#8957e5": 6, - "rgba(163,113,247,0.4)": 3, - "rgba(163,113,247,0.1)": 3, - "#db61a2": 6, - "#bf4b8a": 6, - "rgba(219,97,162,0.4)": 3, - "rgba(219,97,162,0.1)": 3, - "rgba(1,4,9,0.8)": 3, - "rgba(13,17,23,0.95)": 3, - "#f78166": 6, - "#cae8ff": 3, - "#051d4d": 3, - "#196c2e": 3, - "#0f5323": 3, - "#04260f": 3, - "#f8e3a1": 3, - "#bb8009": 3, - "#845306": 3, - "#693e00": 3, - "#4b2900": 3, - "#341a00": 3, - "#ffc680": 3, - "#f0883e": 3, - "#9b4215": 3, - "#762d0a": 3, - "#3d1300": 3, - "#ffc1ba": 3, - "#490202": 3, - "#eddeff": 3, - "#e2c5ff": 3, - "#6e40c9": 4, - "#553098": 3, - "#3c1e70": 3, - "#271052": 3, - "#ffdaec": 3, - "#ffbedd": 3, - "#ff9bce": 3, - "#f778ba": 3, - "#9e3670": 3, - "#7d2457": 3, - "#5e103e": 3, - "#42062a": 3, - "#ffddd2": 3, - "#ffc2b2": 4, - "#ffa28b": 4, - "#ea6045": 3, - "#cf462d": 3, - "#ac3220": 3, - "#872012": 3, - "#640d04": 3, - "#460701": 3, - "Highlight": 2, - "LinkText": 2, - "silver": 2, - "currentColor": 5, - "rgba(0,0,0,.4)": 2, - "rgba(255,255,255,.75)": 5, - "canvas": 1, - "#fff": 49, - "#000": 6, - "#0000": 46, - "currentcolor": 3, - "canvastext": 4, - "#ffffff26": 2, - "#fff0": 2, - "#34b75926": 2, - "#2ea44f00": 2, - "#2ea44f": 2, - "rgba(255,255,255,.15)": 1, - "black": 4, - "white": 30, - "#ddd": 6, - "#f7f7f7": 1, - "#999": 4, - "#7e7": 2, - "rgba(20, 255, 20, 0.5)": 1, - "#ccc": 3, - "blue": 2, - "#090": 1, - "#d44": 1, - "#292": 1, - "#708": 1, - "#219": 1, - "#164": 1, - "#05a": 1, - "#085": 1, - "#a50": 1, - "#a11": 1, - "#f50": 1, - "#555": 3, - "#30a": 1, - "#997": 1, - "#170": 1, - "#00c": 2, - "red": 2, - "#0b0": 1, - "#a22": 1, - "rgba(255, 150, 0, 0.3)": 1, - "#e8f2ff": 1, - "#d9d9d9": 1, - "#d7d4f0": 5, - "#ffa": 1, - "rgba(255, 255, 0, 0.4)": 1, - "#eee": 6, - "#f8f8f8": 1, - "#44c": 2, - "#ffffe0": 2, - "#ee8": 3, - "#eef": 3, - "#88e": 3, - "#dfd": 1, - "#4e4": 2, - "#88b": 1, - "#ddf": 1, - "rgba(0,0,0,.3)": 1, - "#829aa8": 1, - "#768995": 1, - "rgba(255,255,255,.1)": 10, - "rgba(255,255,255,.075)": 2, - "rgba(27, 31, 35, 0.1)": 1, - "rgba(27, 31, 35, 0.4)": 1, - "rgba(27, 31, 35, 0.15)": 1, - "#959da5": 1, - "#54a3ff": 4, - "#006eed": 4, - "rgba(255,255,255,.175)": 1, - "#282e34": 2, - "#388bfd26": 2, - "rgba(255,255,255,.7)": 2, - "rgba(255,255,255,.12)": 1, - "rgba(0,0,0,.1)": 10, - "#171a1e": 1, - "#060606": 1, - "#c6cbd1": 3, - "#f6fbff": 2, - "#333": 2, - "#dfe2e5": 4, - "rgba(27,31,35,.05)": 2, - "#d2dff0": 1, - "rgba(0, 0, 0, 0.1)": 2, - "rgba(0, 0, 0, 0.05)": 2, - "#ffb6c1": 1, - "#f5f9fc": 1, - "#c9ff00": 1, - "#79b8ff": 1, - "#def": 1, - "#b4d9ff": 2, - "#c8e1ff": 1, - "#ffc8ce": 1, - "rgba(27, 31, 35, 0.04)": 3, - "#631c03": 3, - "#fa7a18": 3, - "#fddf68": 3, - "#0A3069": 6, - "#0969DA": 6, - "#54AEFF": 6, - "#B6E3FF": 6, - "rgba(27, 31, 35, 0.06)": 18, - "#0e4429": 3, - "#006d32": 3, - "#26a641": 3, - "#39d353": 3, - "rgba(255, 255, 255, 0.05)": 12, - "rgba(255, 255, 255, 0.25)": 57, - "rgba(22, 27, 34, 0)": 3, - "rgba(0, 0, 0, 0)": 3, - "rgba(209, 213, 218, 0.5)": 3, - "#ffee4a": 3, - "#ffc501": 3, - "#fe9600": 3, - "#03001c": 3, - "#ebedf0": 3, - "#9be9a8": 3, - "#40c463": 3, - "#30a14e": 3, - "#216e39": 3, - "rgba(255, 255, 255, 0)": 8, - "hsl(0deg, 0%, calc(var(--lightness-switch) * 100%))": 3, - "rgb(var(--label-r), var(--label-g), var(--label-b))": 3, - "hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 25) * 1%), var(--border-alpha))": 3, - "hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%))": 3, - "rgba(var(--label-r), var(--label-g), var(--label-b), var(--background-alpha))": 3, - "hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%), var(--border-alpha))": 3, - "#f9826c": 1, - "#34acbf": 3, - "#75bbb6": 3, - "#b086b7": 3, - "#48227d": 1, - "#2f569c": 1, - "#d7def1": 5, - "#51a7e8": 1, - "rgba(81,167,232,.5)": 1, - "rgba(215,222,241,.6)": 1, - "#fff9ea": 2, - "#4078c0": 1, - "#2cbe4e": 2, - "rgba(51,51,51,.75)": 1, - "#9e7bff": 3, - "#6c84e9": 2, - "#1db34f": 5, - "#1d7fb3": 3, - "#1e7e34": 2, - "rgba(0,0,0,.5)": 3, - "rgba(255,255,255,.5)": 1, - "#0366d6": 2, - "#256aae": 1, - "#d7c7ad": 1, - "#a5967e": 2, - "#c8b28e": 1, - "#f6e5ca": 1, - "#f66a0a": 1, - "#e36209": 1, - "rgba(0,0,0,.2)": 1, - "rgba(36,41,46,.15)": 1, - "#e6ebf1": 1, - "rgba(52,208,88,.4)": 2, - "#257bf9": 1, - "#2426ca": 1, - "#eff3f6": 1, - "#dcdcdc": 1, - "#b5b5b5": 1, - "rgba(0,0,0,.15)": 1, - "#e1bf4e": 1, - "#2188ff": 4, - "rgba(106,115,125,.3)": 1, - "#caa21a": 1, - "rgba(108,198,68,.1)": 1, - "rgba(108,198,68,.5)": 1, - "rgba(198,108,68,.5)": 1, - "#aaa": 1, - "#e5e5e5": 4, - "#f5f5f5": 1, - "#4c4a42": 1, - "#dfd8c2": 1, - "rgba(0,0,0,.075)": 1, - "#faffa6": 1, - "#404040": 1, - "rgba(255, 255, 255, 0.85)": 1, - "#ec6cb9": 1, - "#ffd33d": 6, - "#ea4aaa": 5, - "#b34bff": 4, - "#01feff": 2, - "#bf398910": 1, - "#096bde10": 1, - "rgba(7,7,7,.63)": 1, - "rgba(27,31,35,.075)": 1, - "rgba(0, 0, 0, 0.7)": 27, - "rgba(255, 255, 255, 0.15)": 2, - "rgba(52, 183, 89, 0.15)": 2, - "rgba(46, 164, 79, 0)": 2, - "rgba(0,0,0,.07)": 15, - "rgba(0,0,0,.043)": 4, - "rgba(0,0,0,.03)": 19, - "rgba(0,0,0,.02)": 18, - "rgba(0,0,0,.017)": 4, - "rgba(0,0,0,.04)": 16, - "rgba(0,0,0,.05)": 10, - "rgba(0,0,0,.06)": 11, - "rgba(0,0,0,.09)": 10, - "rgba(53,72,91,.14)": 9, - "rgba(0,0,0,.18)": 1, - "rgba(0,0,0,.14)": 1, - "rgba(0,0,0,.12)": 1, - "rgba(0,0,0,.08)": 1, - "rgba(0,0,0,.0274351)": 1, - "rgba(0,0,0,.0400741)": 1, - "rgba(0,0,0,.0499982)": 1, - "rgba(0,0,0,.0596004)": 1, - "rgba(0,0,0,.0709366)": 1, - "#627597": 2, - "#040d21": 16, - "#8193b2": 1, - "#6f57ff": 1, - "#614eda": 1, - "#0dbc79": 1, - "#032f62": 1, - "#f0f0f0": 1, - "#0c162d": 6, - "#a2facf": 2, - "#64acff": 2, - "#ff7170": 1, - "#ffe57f": 1, - "#3bf0e4": 1, - "#bca1f7": 1, - "#01a49e": 1, - "#ed4e50": 6, - "#f06f00": 1, - "#9867f0": 3, - "#804eda": 1, - "#db469f": 1, - "#93f5ec": 1, - "#a77bf3": 1, - "rgba(235,245,255,.5)": 1, - "#dfdfdf": 2, - "rgb(13, 17, 23)": 1, - "rgba(46,55,74,.82)": 2, - "#1074e7": 2, - "#3d8bd3": 1, - "rgba(53, 72, 91, 0.14)": 1, - "rgba(0, 0, 0, 0.3)": 1, - "rgba(0, 0, 0, 0.2)": 1, - "rgba(1,1,1,.6)": 1, - "rgba(1, 1, 1, 0.6)": 1, - "rgba(1, 1, 1, 0.461139)": 1, - "rgba(1, 1, 1, 0)": 1, - "#424b5b": 1, - "rgba(179, 146, 240, 0.3)": 1, - "rgba(9, 105, 218, 0.3)": 1, - "rgba(4, 13, 33, 0)": 2, - "#dadfe9": 5, - "#42526d": 5, - "#b5bfd2": 1, - "#19253c": 3, - "rgba(53,72,91,.05)": 1, - "rgba(237,78,80,.4)": 3, - "#28a745": 1, - "rgba(183, 52, 179, 0.15)": 1, - "rgba(164, 46, 156, 0)": 2, - "rgba(184, 103, 185, 0.15)": 1, - "#dd7df7": 1, - "#939aff": 1, - "#abb4ff": 1 - }, - "uniquenessRatio": 0.12764158918005072, - "itemsPerContext": { - "--color-canvas-default-transparent": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0)": 4, - "rgba(13,17,23,0)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-page-header-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-marketing-icon-primary": { - "total": 7, - "totalUnique": 2, - "unique": { - "#218bff": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-marketing-icon-secondary": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#1f6feb": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-addition-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-addition-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-addition-num-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ccffd8": 4, - "rgba(63,185,80,0.3)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-addition-line-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#e6ffec": 4, - "rgba(46,160,67,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-addition-word-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#abf2bc": 4, - "rgba(46,160,67,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-deletion-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-deletion-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-deletion-num-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffd7d5": 4, - "rgba(248,81,73,0.3)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-deletion-line-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffebe9": 4, - "rgba(248,81,73,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-deletion-word-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,129,130,0.4)": 4, - "rgba(248,81,73,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-hunk-num-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(84,174,255,0.4)": 4, - "rgba(56,139,253,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diff-blob-expander-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "#656d76": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diffstat-deletion-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diffstat-addition-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-diffstat-addition-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1f883d": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-search-keyword-hl": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fff8c5": 4, - "rgba(210,153,34,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-comment": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-constant": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-entity": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6639ba": 4, - "#d2a8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-storage-modifier-import": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#c9d1d9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-entity-tag": { - "total": 7, - "totalUnique": 2, - "unique": { - "#116329": 4, - "#7ee787": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-keyword": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-string": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0a3069": 4, - "#a5d6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-variable": { - "total": 7, - "totalUnique": 2, - "unique": { - "#953800": 4, - "#ffa657": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-brackethighlighter-unmatched": { - "total": 7, - "totalUnique": 2, - "unique": { - "#82071e": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-invalid-illegal-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#f0f6fc": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-invalid-illegal-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#82071e": 4, - "#8e1519": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-carriage-return-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#f0f6fc": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-carriage-return-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#b62324": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-string-regexp": { - "total": 7, - "totalUnique": 2, - "unique": { - "#116329": 4, - "#7ee787": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-list": { - "total": 7, - "totalUnique": 2, - "unique": { - "#3b2300": 4, - "#f2cc60": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-heading": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#1f6feb": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-italic": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#c9d1d9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-bold": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#c9d1d9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-deleted-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#82071e": 4, - "#ffdcd7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-deleted-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffebe9": 4, - "#67060c": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-inserted-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#116329": 4, - "#aff5b4": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-inserted-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#dafbe1": 4, - "#033a16": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-changed-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#953800": 4, - "#ffdfb6": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-changed-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffd8b5": 4, - "#5a1e02": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-ignored-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eaeef2": 4, - "#c9d1d9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-markup-ignored-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#1158c7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-meta-diff-range": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8250df": 4, - "#d2a8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-brackethighlighter-angle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#57606a": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-sublimelinter-gutter-mark": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#484f58": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-prettylights-syntax-constant-other-reference-link": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0a3069": 4, - "#a5d6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-gutters-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-guttermarker-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-guttermarker-subtle-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-linenumber-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#656d76": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-cursor": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-selection-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(84,174,255,0.4)": 4, - "rgba(56,139,253,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-activeline-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(234,238,242,0.5)": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-matchingbracket-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-lines-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-comment": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-constant": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-entity": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8250df": 4, - "#d2a8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-keyword": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-storage": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-string": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0a3069": 4, - "#a5d6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-support": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-codemirror-syntax-variable": { - "total": 7, - "totalUnique": 2, - "unique": { - "#953800": 4, - "#ffa657": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-text-primary": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-text-secondary": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-text-link": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#2f81f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-btn-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "#afb8c1": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-btn-hover-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-btn-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.125)": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-input-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eaeef2": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-input-placeholder-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-input-focus-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-input-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-donut-error": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fa4549": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-donut-pending": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bf8700": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-donut-success": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1f883d": 4, - "#2ea043": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-donut-neutral": { - "total": 7, - "totalUnique": 2, - "unique": { - "#afb8c1": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#afb8c1": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "#424a53": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.3)": 4, - "rgba(1,4,9,0.3)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-hover-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#424a53": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-btn-hover-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-dropdown-btn-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-scrollbar-thumb-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#57606a": 4, - "rgba(110,118,129,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-header-label-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-header-label-open-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#e6edf3": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-header-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-header-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(140,149,159,0.75)": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-timestamp-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(33,139,255,0.15)": 4, - "rgba(56,139,253,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-selected-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#2f81f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-dt-fm-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#ffffff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-line-dt-fm-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#9a6700": 4, - "#9e6a03": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-gate-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(125,78,0,0.15)": 4, - "rgba(187,128,9,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-gate-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-gate-waiting-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d4a72c": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-step-header-open-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-step-error-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ff8182": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-step-warning-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d4a72c": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(140,149,159,0.75)": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-debug-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#c297ff": 4, - "#a371f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-error-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-error-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ff8182": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-error-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(164,14,38,0.15)": 4, - "rgba(248,81,73,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-warning-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-warning-num-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d4a72c": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-warning-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(125,78,0,0.15)": 4, - "rgba(187,128,9,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-command-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#2f81f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-logline-section-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4ac26b": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-black": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-black-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-white": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#b1bac4": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-white-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#b1bac4": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-gray": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-red": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ff8182": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-red-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffaba8": 4, - "#ffa198": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-green": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4ac26b": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-green-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6fdd8b": 4, - "#56d364": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-yellow": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d4a72c": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-yellow-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eac54f": 4, - "#e3b341": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-blue": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#58a6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-blue-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#80ccff": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-magenta": { - "total": 7, - "totalUnique": 2, - "unique": { - "#c297ff": 4, - "#bc8cff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-magenta-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d8b9ff": 4, - "#d2a8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-checks-ansi-cyan": { - "total": 7, - "totalUnique": 1, - "unique": { - "#76e3ea": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-checks-ansi-cyan-bright": { - "total": 7, - "totalUnique": 1, - "unique": { - "#b3f0ff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-project-header-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-project-sidebar-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-project-gradient-in": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-project-gradient-out": { - "total": 13, - "totalUnique": 4, - "unique": { - "rgba(255,255,255,0)": 4, - "rgba(22,27,34,0)": 3, - "rgba(22, 27, 34, 0)": 3, - "rgba(255, 255, 255, 0)": 3 - }, - "uniquenessRatio": 0.3076923076923077 - }, - "--color-mktg-btn-bg": { - "total": 61, - "totalUnique": 2, - "unique": { - "#1b1f23": 31, - "#f6f8fa": 30 - }, - "uniquenessRatio": 0.03278688524590164 - }, - "--color-mktg-btn-shadow-outline": { - "total": 67, - "totalUnique": 4, - "unique": { - "rgb(0 0 0 / 15%)": 4, - "rgb(255 255 255 / 25%)": 3, - "rgba(255, 255, 255, 0.25)": 30, - "rgba(0, 0, 0, 0.15)": 30 - }, - "uniquenessRatio": 0.05970149253731343 - }, - "--color-mktg-btn-shadow-focus": { - "total": 61, - "totalUnique": 4, - "unique": { - "rgb(0 0 0 / 15%)": 4, - "rgb(255 255 255 / 25%)": 3, - "rgba(255, 255, 255, 0.25)": 27, - "rgba(0, 0, 0, 0.15)": 27 - }, - "uniquenessRatio": 0.06557377049180328 - }, - "--color-mktg-btn-shadow-hover": { - "total": 396, - "totalUnique": 11, - "unique": { - "rgba(0, 0, 0, 0.07)": 31, - "rgba(0, 0, 0, 0.04)": 31, - "rgba(0, 0, 0, 0.03)": 62, - "rgba(0, 0, 0, 0.02)": 62, - "rgba(0, 0, 0, 0.15)": 30, - "rgba(255, 255, 255, 0.02)": 30, - "rgba(255, 255, 255, 0.024)": 30, - "rgba(255, 255, 255, 0.028)": 30, - "rgba(255, 255, 255, 0.034)": 30, - "rgba(255, 255, 255, 0.04)": 30, - "rgba(255, 255, 255, 0.07)": 30 - }, - "uniquenessRatio": 0.027777777777777776 - }, - "--color-mktg-btn-shadow-hover-muted": { - "total": 61, - "totalUnique": 4, - "unique": { - "rgb(0 0 0 / 70%)": 4, - "rgb(255 255 255)": 3, - "white": 27, - "rgba(0, 0, 0, 0.7)": 27 - }, - "uniquenessRatio": 0.06557377049180328 - }, - "--color-control-border-color-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#858F99": 4, - "#606771": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-avatar-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "rgba(255,255,255,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-avatar-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-avatar-stack-fade": { - "total": 7, - "totalUnique": 2, - "unique": { - "#afb8c1": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-avatar-stack-fade-more": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-avatar-child-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.8)": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-topic-tag-border": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-counter-border": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-select-menu-backdrop-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(0,0,0,0)": 4, - "#484f58": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-select-menu-tap-highlight": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(175,184,193,0.5)": 4, - "rgba(48,54,61,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-select-menu-tap-focus-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#b6e3ff": 4, - "#0c2d6b": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-overlay-shadow": { - "total": 14, - "totalUnique": 4, - "unique": { - "rgba(31,35,40,0.12)": 4, - "rgba(66,74,83,0.12)": 4, - "#30363d": 3, - "rgba(1,4,9,0.85)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-overlay-backdrop": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(140,149,159,0.2)": 4, - "rgba(22,27,34,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-header-text": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(255,255,255,0.7)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-header-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-header-divider": { - "total": 7, - "totalUnique": 2, - "unique": { - "#57606a": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-header-logo": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#f0f6fc": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-header-search-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-header-search-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "#57606a": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-sidenav-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-menu-bg-active": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(0,0,0,0)": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-input-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(175,184,193,0.2)": 4, - "rgba(110,118,129,0)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-timeline-badge-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eaeef2": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-black": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#484f58": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-black-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#57606a": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-white": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#b1bac4": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-white-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#ffffff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-gray": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-red": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-red-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#a40e26": 4, - "#ffa198": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-green": { - "total": 7, - "totalUnique": 2, - "unique": { - "#116329": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-green-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1a7f37": 4, - "#56d364": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-yellow": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4d2d00": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-yellow-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#633c01": 4, - "#e3b341": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-blue": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "#58a6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-blue-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#218bff": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-magenta": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8250df": 4, - "#bc8cff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-magenta-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#a475f9": 4, - "#d2a8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-cyan": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1b7c83": 4, - "#39c5cf": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-ansi-cyan-bright": { - "total": 7, - "totalUnique": 2, - "unique": { - "#3192aa": 4, - "#56d4dd": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#c9d1d9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.04)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-inset-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.25)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f3f4f6": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-hover-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-active-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(220,14%,93%,1)": 4, - "hsla(212,12%,18%,1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-active-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(220,14%,94%,1)": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.08)": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-text": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-primary-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1f883d": 4, - "#238636": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.1)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-inset-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.03)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1a7f37": 4, - "#2ea043": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-hover-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(137,66%,28%,1)": 4, - "#238636": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-selected-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(0,45,17,0.2)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-disabled-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.8)": 4, - "rgba(255,255,255,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#94d3a2": 4, - "rgba(35,134,54,0.6)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-disabled-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.8)": 4, - "#ffffff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-primary-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(0,45,17,0.2)": 4, - "rgba(4,38,15,0.2)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "#388bfd": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-hover-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#58a6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-hover-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-hover-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.1)": 4, - "rgba(1,4,9,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-hover-inset-shadow": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(255,255,255,0.03)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-outline-hover-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.2)": 4, - "rgba(5,29,77,0.2)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-selected-text": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-outline-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(212,92%,42%,1)": 4, - "#0d419d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-selected-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-selected-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(0,33,85,0.2)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-disabled-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(9,105,218,0.5)": 4, - "rgba(88,166,255,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-disabled-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(9,105,218,0.05)": 4, - "rgba(31,111,235,0.05)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da1a": 4, - "rgba(5,29,77,0.2)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-counter-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#388bfd": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-hover-counter-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#58a6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-outline-disabled-counter-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(9,105,218,0.5)": 4, - "rgba(47,129,247,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-text": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-danger-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#a40e26": 4, - "#da3633": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.1)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-inset-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.03)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-counter-bg": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(255,255,255,0.2)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-danger-selected-text": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-danger-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(356,72%,44%,1)": 4, - "#b62324": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-selected-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-selected-shadow": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(76,0,20,0.2)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-disabled-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(207,34,46,0.5)": 4, - "rgba(248,81,73,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-disabled-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(207,34,46,0.05)": 4, - "rgba(218,54,51,0.05)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-counter-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(207,34,46,0.1)": 4, - "rgba(73,2,2,0.2)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-icon": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-danger-counter-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#a40e26": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-btn-danger-hover-counter-fg": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-danger-disabled-counter-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(207,34,46,0.5)": 4, - "rgba(248,81,73,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-underlinenav-icon": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-underlinenav-border-hover": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(175,184,193,0.2)": 4, - "rgba(110,118,129,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-inline-divider": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(208,215,222,0.48)": 4, - "rgba(48,54,61,0.48)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-default-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(208,215,222,0.32)": 4, - "rgba(177,186,196,0.12)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-default-hover-border": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-action-list-item-default-active-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(208,215,222,0.48)": 4, - "rgba(177,186,196,0.2)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-default-active-border": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-action-list-item-default-selected-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(208,215,222,0.24)": 4, - "rgba(177,186,196,0.08)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-danger-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,235,233,0.64)": 4, - "rgba(248,81,73,0.16)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-danger-active-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffebe9": 4, - "rgba(248,81,73,0.24)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-action-list-item-danger-hover-text": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d1242f": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eaeef2": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(210,24%,90%,1)": 4, - "hsla(215,8%,72%,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-active-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(210,24%,88%,1)": 4, - "rgba(110,118,129,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#656d76": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-disabled-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-border": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-switch-track-checked-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "rgba(31,111,235,0.35)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-checked-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0860CA": 4, - "rgba(31,111,235,0.5)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-checked-active-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0757BA": 4, - "rgba(31,111,235,0.65)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-checked-fg": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-switch-track-checked-disabled-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-track-checked-border": { - "total": 7, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-switch-knob-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-knob-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-knob-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "#858F99": 4, - "#606771": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-knob-checked-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-knob-checked-disabled-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-switch-knob-checked-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "rgba(31,111,235,0.35)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-segmented-control-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eaeef2": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-segmented-control-button-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-segmented-control-button-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(175,184,193,0.2)": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-segmented-control-button-active-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(175,184,193,0.4)": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-segmented-control-button-selected-border": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-tree-view-item-chevron-hover-bg": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(208,215,222,0.32)": 4, - "rgba(177,186,196,0.12)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-tree-view-item-directory-fill": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-fg-default": { - "total": 8, - "totalUnique": 3, - "unique": { - "#1F2328": 4, - "#e6edf3": 3, - "#fff": 1 - }, - "uniquenessRatio": 0.375 - }, - "--color-fg-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "#656d76": 4, - "#7d8590": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-fg-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-fg-on-emphasis": { - "total": 8, - "totalUnique": 2, - "unique": { - "#ffffff": 7, - "LinkText": 1 - }, - "uniquenessRatio": 0.25 - }, - "--color-canvas-default": { - "total": 9, - "totalUnique": 3, - "unique": { - "#ffffff": 4, - "#0d1117": 4, - "#19253c": 1 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-canvas-overlay": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffffff": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-canvas-inset": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-canvas-subtle": { - "total": 8, - "totalUnique": 3, - "unique": { - "#f6f8fa": 4, - "#161b22": 3, - "#0c162d": 1 - }, - "uniquenessRatio": 0.375 - }, - "--color-border-default": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-border-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "hsla(210,18%,87%,1)": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-border-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.15)": 4, - "rgba(240,246,252,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-shadow-small": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.04)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-shadow-medium": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(140,149,159,0.15)": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-shadow-large": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(140,149,159,0.2)": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-shadow-extra-large": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(140,149,159,0.3)": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-neutral-emphasis-plus": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-neutral-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-neutral-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(175,184,193,0.2)": 4, - "rgba(110,118,129,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-neutral-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(234,238,242,0.5)": 4, - "rgba(110,118,129,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-accent-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "#2f81f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-accent-emphasis": { - "total": 8, - "totalUnique": 3, - "unique": { - "#0969da": 4, - "#1f6feb": 3, - "Highlight": 1 - }, - "uniquenessRatio": 0.375 - }, - "--color-accent-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(84,174,255,0.4)": 4, - "rgba(56,139,253,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-accent-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ddf4ff": 4, - "rgba(56,139,253,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-success-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1a7f37": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-success-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1f883d": 4, - "#238636": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-success-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(74,194,107,0.4)": 4, - "rgba(46,160,67,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-success-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#dafbe1": 4, - "rgba(46,160,67,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-attention-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#9a6700": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-attention-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#9a6700": 4, - "#9e6a03": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-attention-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(212,167,44,0.4)": 4, - "rgba(187,128,9,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-attention-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fff8c5": 4, - "rgba(187,128,9,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-severe-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bc4c00": 4, - "#db6d28": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-severe-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bc4c00": 4, - "#bd561d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-severe-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(251,143,68,0.4)": 4, - "rgba(219,109,40,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-severe-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fff1e5": 4, - "rgba(219,109,40,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-danger-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d1242f": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-danger-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#da3633": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-danger-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,129,130,0.4)": 4, - "rgba(248,81,73,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-danger-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffebe9": 4, - "rgba(248,81,73,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-open-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1a7f37": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-open-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1f883d": 4, - "#238636": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-open-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(74,194,107,0.4)": 4, - "rgba(46,160,67,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-open-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#dafbe1": 4, - "rgba(46,160,67,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-closed-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d1242f": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-closed-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#da3633": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-closed-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,129,130,0.4)": 4, - "rgba(248,81,73,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-closed-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffebe9": 4, - "rgba(248,81,73,0.15)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-done-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8250df": 4, - "#a371f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-done-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8250df": 4, - "#8957e5": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-done-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(194,151,255,0.4)": 4, - "rgba(163,113,247,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-done-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fbefff": 4, - "rgba(163,113,247,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-sponsors-fg": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bf3989": 4, - "#db61a2": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-sponsors-emphasis": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bf3989": 4, - "#bf4b8a": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-sponsors-muted": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,128,200,0.4)": 4, - "rgba(219,97,162,0.4)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-sponsors-subtle": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffeff7": 4, - "rgba(219,97,162,0.1)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-fg-disabled": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#484f58": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-canvas-backdrop": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.5)": 4, - "rgba(1,4,9,0.8)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-canvas-sticky": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.95)": 4, - "rgba(13,17,23,0.95)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-border-active": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fd8c73": 4, - "#f78166": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-border-contrast": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(31,35,40,0.1)": 4, - "rgba(255,255,255,0.2)": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-shadow-highlight": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(255,255,255,0.25)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-primer-shadow-inset": { - "total": 7, - "totalUnique": 2, - "unique": { - "rgba(208,215,222,0.2)": 4, - "transparent": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-black": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1F2328": 4, - "#010409": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-white": { - "total": 7, - "totalUnique": 1, - "unique": { - "#ffffff": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-scale-gray-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#f6f8fa": 4, - "#f0f6fc": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eaeef2": 4, - "#c9d1d9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d0d7de": 4, - "#b1bac4": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#afb8c1": 4, - "#8b949e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8c959f": 4, - "#6e7681": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6e7781": 4, - "#484f58": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#57606a": 4, - "#30363d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#424a53": 4, - "#21262d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#32383f": 4, - "#161b22": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-gray-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#24292f": 4, - "#0d1117": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ddf4ff": 4, - "#cae8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#b6e3ff": 4, - "#a5d6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#80ccff": 4, - "#79c0ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#54aeff": 4, - "#58a6ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#218bff": 4, - "#388bfd": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0969da": 4, - "#1f6feb": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0550ae": 4, - "#1158c7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#033d8b": 4, - "#0d419d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#0a3069": 4, - "#0c2d6b": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-blue-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#002155": 4, - "#051d4d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#dafbe1": 4, - "#aff5b4": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#aceebb": 4, - "#7ee787": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6fdd8b": 4, - "#56d364": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4ac26b": 4, - "#3fb950": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#2da44e": 4, - "#2ea043": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#1a7f37": 4, - "#238636": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#116329": 4, - "#196c2e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#044f1e": 4, - "#0f5323": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#003d16": 4, - "#033a16": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-green-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#002d11": 4, - "#04260f": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fff8c5": 4, - "#f8e3a1": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fae17d": 4, - "#f2cc60": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#eac54f": 4, - "#e3b341": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d4a72c": 4, - "#d29922": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bf8700": 4, - "#bb8009": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#9a6700": 4, - "#9e6a03": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#7d4e00": 4, - "#845306": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#633c01": 4, - "#693e00": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4d2d00": 4, - "#4b2900": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-yellow-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#3b2300": 4, - "#341a00": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fff1e5": 4, - "#ffdfb6": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffd8b5": 4, - "#ffc680": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffb77c": 4, - "#ffa657": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fb8f44": 4, - "#f0883e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#e16f24": 4, - "#db6d28": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bc4c00": 4, - "#bd561d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#953800": 4, - "#9b4215": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#762c00": 4, - "#762d0a": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#5c2200": 4, - "#5a1e02": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-orange-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#471700": 4, - "#3d1300": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffebe9": 4, - "#ffdcd7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffcecb": 4, - "#ffc1ba": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffaba8": 4, - "#ffa198": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ff8182": 4, - "#ff7b72": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fa4549": 4, - "#f85149": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#cf222e": 4, - "#da3633": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#a40e26": 4, - "#b62324": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#82071e": 4, - "#8e1519": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#660018": 4, - "#67060c": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-red-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4c0014": 4, - "#490202": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fbefff": 4, - "#eddeff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ecd8ff": 4, - "#e2c5ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#d8b9ff": 4, - "#d2a8ff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#c297ff": 4, - "#bc8cff": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#a475f9": 4, - "#a371f7": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#8250df": 4, - "#8957e5": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#6639ba": 4, - "#6e40c9": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#512a97": 4, - "#553098": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#3e1f79": 4, - "#3c1e70": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-purple-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#2e1461": 4, - "#271052": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffeff7": 4, - "#ffdaec": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffd3eb": 4, - "#ffbedd": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffadda": 4, - "#ff9bce": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ff80c8": 4, - "#f778ba": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#e85aad": 4, - "#db61a2": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#bf3989": 4, - "#bf4b8a": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#99286e": 4, - "#9e3670": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#772057": 4, - "#7d2457": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#611347": 4, - "#5e103e": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-pink-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#4d0336": 4, - "#42062a": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-0": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fff0eb": 4, - "#ffddd2": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-1": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffd6cc": 4, - "#ffc2b2": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-2": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ffb4a1": 4, - "#ffa28b": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-3": { - "total": 7, - "totalUnique": 2, - "unique": { - "#fd8c73": 4, - "#f78166": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-4": { - "total": 7, - "totalUnique": 2, - "unique": { - "#ec6547": 4, - "#ea6045": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-5": { - "total": 7, - "totalUnique": 2, - "unique": { - "#c4432b": 4, - "#cf462d": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-6": { - "total": 7, - "totalUnique": 2, - "unique": { - "#9e2f1c": 4, - "#ac3220": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-7": { - "total": 7, - "totalUnique": 2, - "unique": { - "#801f0f": 4, - "#872012": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-8": { - "total": 7, - "totalUnique": 2, - "unique": { - "#691105": 4, - "#640d04": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--color-scale-coral-9": { - "total": 7, - "totalUnique": 2, - "unique": { - "#510901": 4, - "#460701": 3 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "--fgColor-onEmphasis": { - "total": 1, - "totalUnique": 1, - "unique": { - "LinkText": 1 - }, - "uniquenessRatio": 1 - }, - "--fgColor-accent": { - "total": 1, - "totalUnique": 1, - "unique": { - "Highlight": 1 - }, - "uniquenessRatio": 1 - }, - "background-color": { - "total": 121, - "totalUnique": 44, - "unique": { - "transparent": 60, - "currentColor": 3, - "canvas": 1, - "#fff": 3, - "#0000": 1, - "canvastext": 2, - "white": 1, - "#f7f7f7": 1, - "rgba(20, 255, 20, 0.5)": 1, - "#7e7": 1, - "#ffa": 1, - "rgba(255, 255, 0, 0.4)": 1, - "#829aa8": 1, - "rgba(255,255,255,.175)": 1, - "rgba(255,255,255,.075)": 1, - "rgba(255,255,255,.12)": 1, - "#f5f9fc": 1, - "#79b8ff": 1, - "#def": 1, - "#ffc8ce": 1, - "#000": 1, - "#fff9ea": 2, - "#4078c0": 1, - "rgba(27,31,35,.05)": 1, - "#9e7bff": 2, - "#6c84e9": 2, - "#ddd": 1, - "rgba(0,0,0,.5)": 1, - "rgba(255,255,255,.75)": 1, - "#dcdcdc": 1, - "rgba(108,198,68,.1)": 1, - "#f5f5f5": 1, - "#faffa6": 1, - "#404040": 1, - "#040d21": 5, - "#032f62": 1, - "#0c162d": 5, - "rgba(46,55,74,.82)": 2, - "#24292f": 1, - "#19253c": 2, - "#627597": 1, - "#ed4e50": 1, - "#ffd33d": 1, - "#0d1117": 1 - }, - "uniquenessRatio": 0.36363636363636365 - }, - "border": { - "total": 57, - "totalUnique": 12, - "unique": { - "silver": 1, - "transparent": 32, - "#0000": 10, - "#ddd": 2, - "#ddf": 1, - "#768995": 1, - "#dfe2e5": 3, - "#d2dff0": 1, - "#fff": 3, - "#2cbe4e": 1, - "#e5e5e5": 1, - "#040d21": 1 - }, - "uniquenessRatio": 0.21052631578947367 - }, - "background": { - "total": 187, - "totalUnique": 75, - "unique": { - "transparent": 64, - "#0000": 1, - "#ffffff26": 2, - "#fff0": 2, - "#34b75926": 2, - "#2ea44f00": 2, - "#2ea44f": 2, - "#7e7": 1, - "rgba(255, 150, 0, 0.3)": 1, - "#e8f2ff": 1, - "white": 1, - "#d9d9d9": 1, - "#d7d4f0": 5, - "#f8f8f8": 1, - "#ffffe0": 1, - "#eef": 2, - "#dfd": 1, - "#388bfd26": 1, - "#f6fbff": 2, - "#333": 1, - "#ffb6c1": 1, - "rgb(var(--label-r), var(--label-g), var(--label-b))": 3, - "rgba(var(--label-r), var(--label-g), var(--label-b), var(--background-alpha))": 3, - "#eee": 3, - "#e6ebf1": 1, - "#257bf9": 1, - "#2426ca": 1, - "#ec6cb9": 1, - "#ffd33d": 4, - "#ea4aaa": 4, - "#b34bff": 4, - "#01feff": 2, - "#bf398910": 1, - "#096bde10": 1, - "rgba(7,7,7,.63)": 1, - "rgba(255, 255, 255, 0.15)": 2, - "rgba(255, 255, 255, 0)": 4, - "rgba(52, 183, 89, 0.15)": 2, - "rgba(46, 164, 79, 0)": 2, - "#fff": 3, - "#f0f0f0": 1, - "#a2facf": 2, - "#64acff": 2, - "#ff7170": 1, - "#ffe57f": 1, - "#3bf0e4": 1, - "#bca1f7": 1, - "#2188ff": 3, - "#01a49e": 1, - "#ed4e50": 3, - "#f06f00": 1, - "#9867f0": 2, - "#804eda": 1, - "#db469f": 1, - "#93f5ec": 1, - "#a77bf3": 1, - "#79c0ff": 1, - "#d2a8ff": 1, - "#dfdfdf": 2, - "#9e7bff": 1, - "#3d8bd3": 1, - "rgba(1,1,1,.6)": 1, - "rgba(1, 1, 1, 0.6)": 1, - "rgba(1, 1, 1, 0.461139)": 1, - "rgba(1, 1, 1, 0)": 1, - "rgba(179, 146, 240, 0.3)": 1, - "rgba(9, 105, 218, 0.3)": 1, - "rgba(4, 13, 33, 0)": 2, - "#040d21": 3, - "#dadfe9": 2, - "#42526d": 2, - "rgba(183, 52, 179, 0.15)": 1, - "rgba(164, 46, 156, 0)": 2, - "#6e40c9": 1, - "rgba(184, 103, 185, 0.15)": 1 - }, - "uniquenessRatio": 0.40106951871657753 - }, - "outline": { - "total": 26, - "totalUnique": 2, - "unique": { - "transparent": 18, - "#0000": 8 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "fill": { - "total": 21, - "totalUnique": 17, - "unique": { - "currentColor": 1, - "currentcolor": 2, - "#ffffe0": 1, - "#eef": 1, - "#2cbe4e": 1, - "#fff": 4, - "#1db34f": 1, - "#1d7fb3": 1, - "#0366d6": 1, - "#d7c7ad": 1, - "#c8b28e": 1, - "#f6e5ca": 1, - "#f66a0a": 1, - "#e36209": 1, - "#42526d": 1, - "#040d21": 1, - "#dadfe9": 1 - }, - "uniquenessRatio": 0.8095238095238095 - }, - "box-shadow": { - "total": 185, - "totalUnique": 48, - "unique": { - "rgba(0,0,0,.4)": 1, - "transparent": 3, - "#0000": 3, - "rgba(255,255,255,.075)": 1, - "#388bfd26": 1, - "rgba(0,0,0,.1)": 10, - "rgba(27,31,35,.05)": 1, - "#c9ff00": 1, - "#c8e1ff": 1, - "rgba(81,167,232,.5)": 1, - "#fff": 6, - "rgba(255,255,255,.5)": 1, - "rgba(0,0,0,.2)": 1, - "rgba(36,41,46,.15)": 1, - "rgba(52,208,88,.4)": 2, - "rgba(0,0,0,.15)": 1, - "rgba(106,115,125,.3)": 1, - "rgba(108,198,68,.5)": 1, - "rgba(198,108,68,.5)": 1, - "rgba(0,0,0,.075)": 1, - "rgba(27,31,35,.075)": 1, - "rgba(0,0,0,.07)": 15, - "rgba(0,0,0,.043)": 4, - "rgba(0,0,0,.03)": 19, - "rgba(0,0,0,.02)": 18, - "rgba(0,0,0,.017)": 4, - "rgba(0,0,0,.04)": 16, - "rgba(0,0,0,.05)": 10, - "rgba(0,0,0,.06)": 11, - "rgba(0,0,0,.09)": 10, - "rgba(53,72,91,.14)": 9, - "rgba(0,0,0,.5)": 2, - "rgba(0,0,0,.18)": 1, - "rgba(0,0,0,.14)": 1, - "rgba(0,0,0,.12)": 1, - "rgba(0,0,0,.08)": 1, - "rgba(255,255,255,.1)": 9, - "rgba(0,0,0,.0274351)": 1, - "rgba(0,0,0,.0400741)": 1, - "rgba(0,0,0,.0499982)": 1, - "rgba(0,0,0,.0596004)": 1, - "rgba(0,0,0,.0709366)": 1, - "#000": 1, - "#040d21": 2, - "rgba(53,72,91,.05)": 1, - "rgba(237,78,80,.4)": 3, - "#28a745": 1, - "#bc8cff": 1 - }, - "uniquenessRatio": 0.2594594594594595 - }, - "border-color": { - "total": 47, - "totalUnique": 17, - "unique": { - "transparent": 13, - "currentcolor": 1, - "#0000": 14, - "canvastext": 2, - "rgba(255,255,255,.15)": 1, - "currentColor": 1, - "hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) - 25) * 1%), var(--border-alpha))": 3, - "hsla(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%), var(--border-alpha))": 3, - "#34acbf": 1, - "#75bbb6": 1, - "#b086b7": 1, - "#51a7e8": 1, - "rgba(215,222,241,.6)": 1, - "#b5b5b5": 1, - "#dfd8c2": 1, - "#fff": 1, - "#424b5b": 1 - }, - "uniquenessRatio": 0.3617021276595745 - }, - "color": { - "total": 111, - "totalUnique": 58, - "unique": { - "rgba(255,255,255,.75)": 4, - "#000": 1, - "#fff": 21, - "black": 2, - "#999": 4, - "blue": 2, - "#090": 1, - "#d44": 1, - "#292": 1, - "#708": 1, - "#219": 1, - "#164": 1, - "#05a": 1, - "#085": 1, - "#a50": 1, - "#a11": 1, - "#f50": 1, - "#555": 3, - "#30a": 1, - "#997": 1, - "#170": 1, - "#00c": 2, - "red": 2, - "#0b0": 1, - "#a22": 1, - "#44c": 2, - "#88b": 1, - "rgba(0,0,0,.4)": 1, - "#58a6ff": 3, - "rgba(255,255,255,.7)": 2, - "#c6cbd1": 3, - "rgba(0,0,0,0)": 1, - "transparent": 4, - "hsl(0deg, 0%, calc(var(--lightness-switch) * 100%))": 3, - "hsl(var(--label-h), calc(var(--label-s) * 1%), calc((var(--label-l) + var(--lighten-by)) * 1%))": 3, - "#34acbf": 2, - "#75bbb6": 2, - "#b086b7": 2, - "#d7def1": 5, - "rgba(51,51,51,.75)": 1, - "#1db34f": 2, - "#333": 1, - "#ccc": 1, - "#e1bf4e": 1, - "#1e7e34": 1, - "#4c4a42": 1, - "#eee": 1, - "#627597": 1, - "#040d21": 1, - "#8193b2": 1, - "#6f57ff": 1, - "#614eda": 1, - "#0dbc79": 1, - "#ea4aaa": 1, - "rgba(235,245,255,.5)": 1, - "#b5bfd2": 1, - "#ed4e50": 1, - "#ffd33d": 1 - }, - "uniquenessRatio": 0.5225225225225225 - }, - "-webkit-tap-highlight-color": { - "total": 3, - "totalUnique": 1, - "unique": { - "transparent": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-bottom-color": { - "total": 11, - "totalUnique": 4, - "unique": { - "#0000": 3, - "transparent": 5, - "#e5e5e5": 1, - "#1074e7": 2 - }, - "uniquenessRatio": 0.36363636363636365 - }, - "border-left-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#0000": 1, - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "border-right-color": { - "total": 4, - "totalUnique": 3, - "unique": { - "#0000": 1, - "#282e34": 2, - "transparent": 1 - }, - "uniquenessRatio": 0.75 - }, - "border-left": { - "total": 10, - "totalUnique": 8, - "unique": { - "#0000": 2, - "black": 1, - "silver": 1, - "#ccc": 1, - "#ddd": 1, - "#dfe2e5": 1, - "#b4d9ff": 2, - "#caa21a": 1 - }, - "uniquenessRatio": 0.8 - }, - "border-right": { - "total": 8, - "totalUnique": 5, - "unique": { - "#0000": 2, - "#ddd": 2, - "transparent": 1, - "#fff": 1, - "#040d21": 2 - }, - "uniquenessRatio": 0.625 - }, - "border-bottom": { - "total": 7, - "totalUnique": 7, - "unique": { - "#eee": 1, - "#ee8": 1, - "#88e": 1, - "#4e4": 1, - "#e5e5e5": 1, - "#000": 1, - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "border-top": { - "total": 7, - "totalUnique": 7, - "unique": { - "#eee": 1, - "#ee8": 1, - "#88e": 1, - "#4e4": 1, - "#eff3f6": 1, - "#e5e5e5": 1, - "#040d21": 1 - }, - "uniquenessRatio": 1 - }, - "stroke": { - "total": 19, - "totalUnique": 10, - "unique": { - "#ee8": 1, - "#88e": 1, - "#1db34f": 2, - "#1d7fb3": 2, - "#fff": 5, - "#1e7e34": 1, - "#256aae": 1, - "#a5967e": 2, - "#42526d": 2, - "#dadfe9": 2 - }, - "uniquenessRatio": 0.5263157894736842 - }, - "text-shadow": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(0,0,0,.3)": 1, - "rgba(255,255,255,.1)": 1 - }, - "uniquenessRatio": 1 - }, - "--header-menu-shadow": { - "total": 4, - "totalUnique": 4, - "unique": { - "rgba(27, 31, 35, 0.1)": 1, - "rgba(27, 31, 35, 0.4)": 1, - "rgba(27, 31, 35, 0.15)": 1, - "#959da5": 1 - }, - "uniquenessRatio": 1 - }, - "background-image": { - "total": 24, - "totalUnique": 16, - "unique": { - "#54a3ff": 4, - "#006eed": 4, - "rgba(0, 0, 0, 0.1)": 2, - "rgba(0, 0, 0, 0.05)": 2, - "#48227d": 1, - "#2f569c": 1, - "rgba(255, 255, 255, 0)": 1, - "#fff": 1, - "#0366d6": 1, - "#2188ff": 1, - "#aaa": 1, - "#ccc": 1, - "rgba(255, 255, 255, 0.85)": 1, - "white": 1, - "#9867f0": 1, - "#ed4e50": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "--icon-gradient-start-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#171a1e": 1 - }, - "uniquenessRatio": 1 - }, - "--icon-gradient-end-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#060606": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "transparent": 1, - "#f9826c": 1 - }, - "uniquenessRatio": 1 - }, - "--color-workflow-card-header-shadow": { - "total": 6, - "totalUnique": 2, - "unique": { - "rgba(27, 31, 35, 0.04)": 3, - "rgba(0, 0, 0, 0)": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-halloween-graph-day-L1-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#631c03": 3, - "#ffee4a": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-halloween-graph-day-L2-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#bd561d": 3, - "#ffc501": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-halloween-graph-day-L3-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#fa7a18": 3, - "#fe9600": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-halloween-graph-day-L4-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#fddf68": 3, - "#03001c": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-winter-graph-day-L1-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#0A3069": 3, - "#B6E3FF": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-winter-graph-day-L2-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#0969DA": 3, - "#54AEFF": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-winter-graph-day-L3-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#54AEFF": 3, - "#0969DA": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-winter-graph-day-L4-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#B6E3FF": 3, - "#0A3069": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-border": { - "total": 6, - "totalUnique": 1, - "unique": { - "rgba(27, 31, 35, 0.06)": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "--color-calendar-graph-day-L1-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#0e4429": 3, - "#9be9a8": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L2-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#006d32": 3, - "#40c463": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L3-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#26a641": 3, - "#30a14e": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L4-bg": { - "total": 6, - "totalUnique": 2, - "unique": { - "#39d353": 3, - "#216e39": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L1-border": { - "total": 6, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.05)": 3, - "rgba(27, 31, 35, 0.06)": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L2-border": { - "total": 6, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.05)": 3, - "rgba(27, 31, 35, 0.06)": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L3-border": { - "total": 6, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.05)": 3, - "rgba(27, 31, 35, 0.06)": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-L4-border": { - "total": 6, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.05)": 3, - "rgba(27, 31, 35, 0.06)": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-bg-discussions-row-emoji-box": { - "total": 3, - "totalUnique": 1, - "unique": { - "rgba(209, 213, 218, 0.5)": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--color-calendar-graph-day-bg": { - "total": 3, - "totalUnique": 1, - "unique": { - "#ebedf0": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "-webkit-text-fill-color": { - "total": 14, - "totalUnique": 1, - "unique": { - "transparent": 14 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "--AppHeader-bg": { - "total": 3, - "totalUnique": 3, - "unique": { - "rgb(13, 17, 23)": 1, - "black": 1, - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "--sub-nav-mktg-shadow": { - "total": 6, - "totalUnique": 6, - "unique": { - "rgba(53, 72, 91, 0.14)": 1, - "rgba(0, 0, 0, 0.04)": 1, - "rgba(0, 0, 0, 0.03)": 1, - "rgba(0, 0, 0, 0.3)": 1, - "rgba(0, 0, 0, 0.2)": 1, - "rgba(0, 0, 0, 0.15)": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-mask": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "mask": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "--mktg-accent-primary": { - "total": 4, - "totalUnique": 4, - "unique": { - "#dd7df7": 1, - "#7ee787": 1, - "#ffa28b": 1, - "#939aff": 1 - }, - "uniquenessRatio": 1 - }, - "--mktg-accent-secondary": { - "total": 3, - "totalUnique": 3, - "unique": { - "#aff5b4": 1, - "#ffc2b2": 1, - "#abb4ff": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 4732, - "totalUnique": 12, - "unique": { - "rgba": 1489, - "hex6": 2673, - "rgb": 25, - "hsla": 44, - "hex8": 14, - "transparent": 258, - "system": 9, - "named": 40, - "currentcolor": 8, - "hex3": 118, - "hex4": 48, - "hsl": 6 - }, - "uniquenessRatio": 0.00253592561284869 - } - }, - "gradients": { - "total": 94, - "totalUnique": 69, - "unique": { - "linear-gradient(var(--bgColor-success-muted, var(--bgColor-success-muted, var(--color-success-subtle))), var(--color-success-subtle))": 1, - "linear-gradient(var(--bgColor-attention-muted, var(--bgColor-attention-muted, var(--color-attention-subtle))), var(--color-attention-subtle))": 1, - "linear-gradient(var(--bgColor-danger-muted, var(--bgColor-danger-muted, var(--color-danger-subtle))), var(--color-danger-subtle))": 1, - "linear-gradient(var(--bgColor-accent-muted, var(--color-accent-subtle)), var(--bgColor-accent-muted, var(--color-accent-subtle)))": 3, - "linear-gradient(var(--bgColor-attention-muted, var(--color-attention-subtle)), var(--bgColor-attention-muted, var(--color-attention-subtle)))": 2, - "linear-gradient(var(--bgColor-danger-muted, var(--color-danger-subtle)), var(--bgColor-danger-muted, var(--color-danger-subtle)))": 2, - "linear-gradient(var(--bgColor-success-muted, var(--color-success-subtle)), var(--bgColor-success-muted, var(--color-success-subtle)))": 3, - "linear-gradient(180deg, #ffffff26 0, #fff0 100%)": 1, - "linear-gradient(180deg, #ffffff26, #fff0)": 1, - "linear-gradient(180deg, #34b75926, #2ea44f00)": 2, - "linear-gradient(#54a3ff, #006eed)": 4, - "linear-gradient(var(--icon-gradient-start-color), var(--icon-gradient-end-color))": 1, - "linear-gradient(to right, var(--bgColor-success-emphasis, var(--color-success-emphasis)), var(--bgColor-accent-emphasis, var(--color-accent-emphasis)), var(--bgColor-done-emphasis, var(--color-done-emphasis)), var(--bgColor-danger-emphasis, var(--color-danger-emphasis)), var(--bgColor-severe-emphasis, var(--color-severe-emphasis)))": 1, - "linear-gradient(var(--color-canvas-default), var(--color-canvas-default))": 10, - "linear-gradient(var(--color-canvas-subtle), var(--color-canvas-subtle))": 1, - "linear-gradient(var(--color-attention-subtle), var(--color-attention-subtle))": 2, - "linear-gradient(var(--color-accent-subtle), var(--color-accent-subtle))": 1, - "linear-gradient(270deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1))": 1, - "linear-gradient(to right, var(--bgColor-accent-muted, var(--color-accent-subtle)), var(--bgColor-default, var(--color-canvas-default)))": 1, - "linear-gradient(to right, var(--bgColor-success-muted, var(--color-success-subtle)), var(--bgColor-default, var(--color-canvas-default)))": 1, - "linear-gradient(var(--bgColor-default, var(--color-canvas-default)), var(--bgColor-default, var(--color-canvas-default)))": 2, - "linear-gradient(-110deg, #48227d 0%, #2f569c 100%)": 1, - "linear-gradient(to right, rgba(255, 255, 255, 0), #fff 80%)": 1, - "linear-gradient(135deg, transparent, transparent 45%, var(--color-danger-fg), transparent 55%, transparent 100%)": 1, - "linear-gradient(45deg, transparent, transparent 45%, var(--color-danger-fg), transparent 55%, transparent 100%)": 1, - "linear-gradient(135deg, transparent, transparent 45%, var(--color-danger-emphasis), transparent 55%, transparent 100%)": 1, - "linear-gradient(45deg, transparent, transparent 45%, var(--color-danger-emphasis), transparent 55%, transparent 100%)": 1, - "linear-gradient(135deg, transparent, transparent 45%, var(--color-attention-emphasis), transparent 55%, transparent 100%)": 1, - "linear-gradient(45deg, transparent, transparent 45%, var(--color-attention-emphasis), transparent 55%, transparent 100%)": 1, - "linear-gradient(135deg, transparent, transparent 45%, var(--color-accent-emphasis), transparent 55%, transparent 100%)": 1, - "linear-gradient(45deg, transparent, transparent 45%, var(--color-accent-emphasis), transparent 55%, transparent 100%)": 1, - "linear-gradient(90deg, #257bf9, #2426ca)": 1, - "linear-gradient(180deg, #0366d6 0%, #2188ff 100%)": 1, - "linear-gradient(to top, var(--color-project-gradient-in), var(--color-project-gradient-out))": 1, - "linear-gradient(#aaa, #ccc)": 1, - "linear-gradient(180deg, rgba(255, 255, 255, 0.85), white)": 1, - "linear-gradient(90deg, #ffd33d 0%, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #ffd33d 68%, #ea4aaa 85%, #b34bff 100%)": 2, - "radial-gradient(ellipse at 40% 0%, #bf398910 0, transparent 75%)": 1, - "radial-gradient(ellipse at 60% 0%, #096bde10 0, transparent 75%)": 1, - "radial-gradient(ellipse at 40% -8%, var(--bgColor-accent-muted, var(--color-accent-muted)) 0, transparent 48%)": 1, - "radial-gradient(ellipse at 60% -8%, var(--bgColor-done-muted, var(--color-done-muted)) 0, transparent 48%)": 1, - "linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%)": 2, - "linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%)": 2, - "radial-gradient(145.3% 145.3% at 65.91% 0%, #fff 0%, #f0f0f0 100%)": 1, - "-webkit-linear-gradient(-70deg, #a2facf 0%, #64acff 100%)": 1, - "-webkit-linear-gradient(-70deg, #ff7170 0%, #ffe57f 100%)": 1, - "-webkit-linear-gradient(-70deg, #3bf0e4 0%, #bca1f7 100%)": 1, - "-webkit-linear-gradient(-70deg, #2188ff 0%, #01a49e 100%)": 1, - "-webkit-linear-gradient(-70deg, #ed4e50 0%, #f06f00 100%)": 1, - "-webkit-linear-gradient(-70deg, #9867f0 0%, #ed4e50 100%)": 1, - "-webkit-linear-gradient(-70deg, #2188ff 0%, #804eda 100%)": 1, - "linear-gradient(271.72deg, #a2facf 7.09%, #64acff 96.61%)": 1, - "-webkit-linear-gradient(-70deg, #db469f 0%, #2188ff 100%)": 1, - "-webkit-linear-gradient(-70deg, var(--mktg-accent-primary, #9867f0) 0%, var(--mktg-accent-secondary, #ed4e50) 100%)": 1, - "-webkit-linear-gradient(300deg, #93f5ec 20%, #a77bf3 70%)": 1, - "-webkit-linear-gradient(0deg, #79c0ff 0%, #d2a8ff 57.57%)": 1, - "radial-gradient(circle at top left, var(--mktg-accent-primary, #9867f0), var(--mktg-accent-secondary, #ed4e50))": 1, - "radial-gradient(227.48% 373.86% at 50% 220.45%, #9e7bff 31.77%, #3d8bd3 100%)": 1, - "linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%)": 1, - "linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%)": 1, - "linear-gradient(-70deg, var(--mktg-accent-primary, var(--color-fg-muted)) 0%, var(--mktg-accent-secondary, var(--color-fg-muted)) 100%)": 1, - "linear-gradient(90deg, rgba(1, 1, 1, 0.6) 0%, rgba(1, 1, 1, 0.461139) 59.76%, rgba(1, 1, 1, 0) 100%)": 1, - "linear-gradient(90deg, transparent 80%, rgba(179, 146, 240, 0.3) 100%)": 1, - "linear-gradient(90deg, transparent 0%, rgba(9, 105, 218, 0.3) 100%)": 1, - "linear-gradient(#000 0 0)": 2, - "linear-gradient(to bottom, rgba(4, 13, 33, 0) 0%, #040d21 60%)": 1, - "linear-gradient(to bottom, rgba(4, 13, 33, 0) 0%, #040d21 40%)": 1, - "linear-gradient(180deg, rgba(183, 52, 179, 0.15) 0%, rgba(164, 46, 156, 0) 100%)": 1, - "linear-gradient(180deg, rgba(184, 103, 185, 0.15) 0%, rgba(164, 46, 156, 0) 100%)": 1 - }, - "uniquenessRatio": 0.7340425531914894 - }, - "fontFamilies": { - "total": 59, - "totalUnique": 20, - "unique": { - "sans-serif": 1, - "monospace": 4, - "-apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 12, - "ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace": 17, - "var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace)": 1, - "ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace": 1, - "\"SFMono-Regular\",Consolas,\"Liberation Mono\",Menlo,Courier,monospace": 1, - "\"ui-monospace\",\"SFMono-Regular\",\"SF Mono\",Menlo,Consolas,Liberation Mono,monospace": 1, - "\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 1, - "2rem": 1, - "1.25rem": 5, - "\"Noto Sans\"": 1, - "SFMono-Regular,Consolas,\"Liberation Mono\",Menlo,monospace": 1, - "\"Mona Sans\",\"Mona Sans Fallback\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 3, - "\"Mona Sans\"": 1, - "\"Hubot Sans\"": 1, - "\"Mona Sans Fallback\"": 1, - "\"Mona Sans Header Fallback\"": 1, - "\"Mona Sans\",\"Mona Sans Header Fallback\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 4, - "\"Hubot Sans\",\"Mona Sans\",\"Mona Sans Fallback\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 1 - }, - "uniquenessRatio": 0.3389830508474576 - }, - "fontSizes": { - "total": 473, - "totalUnique": 64, - "unique": { - "0": 13, - "16px": 36, - "2em": 2, - "80%": 2, - "75%": 1, - "1em": 8, - "var(--body-font-size, 14px)": 1, - "14px": 69, - "11px": 3, - "var(--h1-size, 32px)": 4, - "32px": 12, - "var(--h2-size, 24px)": 4, - "24px": 18, - "var(--h3-size, 20px)": 5, - "20px": 19, - "var(--h4-size, 16px)": 4, - "var(--h5-size, 14px)": 3, - "var(--h6-size, 12px)": 4, - "12px": 113, - "90%": 5, - "var(--h1-size-mobile, 26px)": 3, - "26px": 3, - "var(--h2-size-mobile, 22px)": 3, - "22px": 3, - "var(--h3-size-mobile, 18px)": 3, - "18px": 4, - "var(--h00-size-mobile, 40px)": 1, - "40px": 6, - "var(--h00-size, 48px)": 1, - "48px": 6, - "var(--h0-size-mobile, 32px)": 1, - "var(--h0-size, 40px)": 1, - "1.5em": 1, - "1.25em": 4, - ".875em": 1, - ".85em": 2, - "85%": 6, - "100%": 1, - "var(--text-body-size-small, 0.75rem)": 13, - "0.75rem": 14, - "var(--text-body-size-medium, 0.875rem)": 14, - "0.875rem": 14, - "13px": 5, - "var(--text-title-size-medium, 1.25rem)": 6, - "1.25rem": 4, - "var(--text-caption-size, 0.75rem)": 1, - "1rem": 3, - "var(--text-body-size-large, 1rem)": 1, - "70%": 1, - "var(--text-caption-size, 12px)": 2, - "1.3em": 1, - "var(--text-title-size-large, 2rem)": 1, - "var(--text-subtitle-size, 1.25rem)": 1, - ".9em": 1, - "1.2em": 1, - "180px": 1, - "160%": 1, - "72px": 2, - "96px": 1, - "56px": 1, - "64px": 1, - "28px": 4, - "80px": 1, - ".8125rem": 2 - }, - "uniquenessRatio": 0.13530655391120508 - }, - "lineHeights": { - "total": 254, - "totalUnique": 69, - "unique": { - "0": 16, - "1": 26, - "1.5": 25, - "10px": 1, - "20px": 23, - "6px": 2, - "32px": 8, - "1.25": 13, - "18px": 7, - "22px": 6, - "1.45": 2, - "var(--text-body-lineHeight-small, 1.6666)": 4, - "1.6666": 4, - "var(--text-body-lineHeight-medium, 1.4285)": 4, - "1.4285": 4, - "23px": 2, - "var(--text-caption-lineHeight, 1.3333)": 1, - "1.3333": 1, - "30px": 3, - "var(--text-body-lineHeight-large, 1.5)": 1, - "calc(var(--base-size-20, 1.25rem) - var(--borderWidth-thin, max(1px, 0.0625rem))*2)": 1, - "1.25rem": 2, - "max(1px, 0.0625rem)": 1, - "var(--control-medium-lineBoxHeight, 1.25rem)": 1, - "var(--base-size-24, 1.5rem)": 1, - "1.5rem": 1, - "28px": 7, - "17px": 1, - "16px": 5, - "1.6": 2, - "1.5em": 2, - "1.8": 2, - "14px": 3, - "24px": 8, - "1.4": 4, - "1.3": 2, - "26px": 4, - "21px": 2, - "1.125": 1, - "29px": 1, - "var(--text-caption-lineHeight, 1.3333333333)": 2, - "1.3333333333": 2, - "var(--text-body-lineHeight-medium, 1.4285714286)": 2, - "1.4285714286": 2, - "var(--text-body-lineHeight-medium, 20px)": 1, - "34px": 1, - "1em": 3, - "1.75": 1, - "40px": 3, - "50px": 1, - "1.2": 4, - "15px": 1, - "33px": 1, - "100%": 2, - "8px": 1, - "1.6em": 1, - "normal": 1, - "1.1": 2, - "25px": 1, - "44px": 4, - "52px": 4, - "76px": 2, - "100px": 1, - "60px": 1, - "36px": 2, - "68px": 1, - "64px": 1, - "80px": 1, - "5.75rem": 1 - }, - "uniquenessRatio": 0.27165354330708663 - }, - "zindexes": { - "total": 157, - "totalUnique": 34, - "unique": { - "0": 5, - "1": 37, - "2": 18, - "3": 7, - "4": 5, - "5": 3, - "6": 1, - "10": 4, - "15": 2, - "20": 2, - "21": 1, - "29": 1, - "30": 4, - "31": 1, - "32": 3, - "34": 1, - "35": 2, - "80": 4, - "90": 1, - "99": 6, - "100": 6, - "109": 1, - "110": 2, - "111": 2, - "500": 1, - "999": 15, - "1000": 2, - "9999": 1, - "99999": 3, - "1000000": 1, - "1000001": 1, - "2147483647": 2, - "-1": 10, - "-2": 2 - }, - "uniquenessRatio": 0.21656050955414013 - }, - "textShadows": { - "total": 2, - "totalUnique": 2, - "unique": { - "0 -1px 0 rgba(0,0,0,.3)": 1, - "0 1px 0 rgba(255,255,255,.1)": 1 - }, - "uniquenessRatio": 1 - }, - "boxShadows": { - "total": 345, - "totalUnique": 153, - "unique": { - "0": 1, - "inset 0 0 0 1px var(--focus-outlineColor, var(--color-accent-fg))": 12, - "var(--color-accent-fg)": 22, - "inset 0 -1px 0 var(--borderColor-neutral-muted, var(--color-neutral-muted))": 1, - "var(--color-neutral-muted)": 1, - "0 0 18px rgba(0,0,0,.4)": 1, - "var(--button-default-shadow-resting, var(--color-btn-shadow)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow))": 3, - "var(--color-btn-shadow)": 3, - "var(--color-btn-inset-shadow)": 4, - "var(--shadow-inset, var(--color-primer-shadow-inset))": 3, - "var(--color-primer-shadow-inset)": 3, - "var(--shadow-resting-small, var(--color-btn-primary-shadow)),var(--shadow-highlight, var(--color-btn-primary-inset-shadow))": 1, - "var(--color-btn-primary-shadow)": 2, - "var(--color-btn-primary-inset-shadow)": 1, - "inset 0 0 0 3px var(--fgColor-onEmphasis, var(--color-fg-on-emphasis))": 16, - "var(--color-fg-on-emphasis)": 16, - "var(--button-primary-shadow-selected, var(--color-btn-primary-selected-shadow))": 2, - "var(--color-btn-primary-selected-shadow)": 2, - "var(--shadow-resting-small, var(--color-btn-outline-hover-shadow)),var(--shadow-highlight, var(--color-btn-outline-hover-inset-shadow))": 1, - "var(--color-btn-outline-hover-shadow)": 1, - "var(--color-btn-outline-hover-inset-shadow)": 1, - "var(--button-outline-shadow-selected, var(--color-btn-outline-selected-shadow))": 1, - "var(--color-btn-outline-selected-shadow)": 1, - "var(--shadow-resting-small, var(--color-btn-danger-hover-shadow)),var(--shadow-highlight, var(--color-btn-danger-hover-inset-shadow))": 1, - "var(--color-btn-danger-hover-shadow)": 1, - "var(--color-btn-danger-hover-inset-shadow)": 1, - "var(--button-danger-shadow-selected, var(--color-btn-danger-selected-shadow))": 2, - "var(--color-btn-danger-selected-shadow)": 2, - "var(--shadow-resting-small, var(--color-shadow-small)),var(--shadow-highlight, var(--color-primer-shadow-highlight))": 1, - "var(--color-shadow-small)": 5, - "var(--color-primer-shadow-highlight)": 1, - "inset 0 0 0 1px transparent": 2, - "inset 0 1px var(--borderColor-default, var(--color-border-default)),inset 0 -1px var(--borderColor-default, var(--color-border-default))": 2, - "var(--color-border-default)": 13, - "0 1px 0 var(--borderColor-default, var(--color-border-default))": 1, - "var(--shadow-resting-small, var(--color-shadow-small))": 4, - "var(--shadow-resting-medium, var(--color-shadow-medium))": 6, - "var(--color-shadow-medium)": 8, - "var(--shadow-floating-large, var(--color-shadow-large))": 7, - "var(--color-shadow-large)": 12, - "var(--shadow-floating-xlarge, var(--color-shadow-extra-large))": 1, - "var(--color-shadow-extra-large)": 1, - "var(--avatar-shadow, var(--color-avatar-child-shadow))": 1, - "var(--color-avatar-child-shadow)": 1, - "inset 0 -1px 0 var(--borderColor-muted, var(--color-border-muted))": 3, - "var(--color-border-muted)": 4, - "0 0 0 1px var(--borderColor-muted, var(--color-border-muted))": 1, - "inset 0 0 0 1px var(--borderColor-default, var(--color-border-default)),var(--shadow-floating-large, var(--color-shadow-large))": 5, - "var(--boxShadow-thin, inset 0 0 0 max(1px, 0.0625rem)) var(--control-transparent-borderColor-active, var(--color-action-list-item-default-active-border))": 2, - "inset 0 0 0 max(1px, 0.0625rem)": 2, - "var(--color-action-list-item-default-active-border)": 4, - "var(--shadow-floating-small, var(--color-overlay-shadow))": 3, - "var(--color-overlay-shadow)": 3, - "inset 0 calc(var(--borderWidth-thin, max(1px, 0.0625rem))*-1) var(--borderColor-default, var(--color-border-default))": 1, - "max(1px, 0.0625rem)": 2, - "inset 0 var(--borderWidth-thin, max(1px, 0.0625rem)) var(--borderColor-default, var(--color-border-default))": 1, - "inset 0 0 0 1px #0000 var(--focus-outlineColor, var(--color-accent-fg))": 3, - "var(--color-mktg-btn-shadow-hover)": 2, - "var(--color-mktg-btn-shadow-outline)": 2, - "var(--color-mktg-btn-shadow-hover-muted)": 4, - "var(--fgColor-default, var(--color-fg-default)) 0 0 0 3px inset": 2, - "var(--color-fg-default)": 3, - "var(--fgColor-default, var(--color-fg-default)) 0 0 0 1px inset": 1, - "var(--shadow-resting-medium, var(--color-shadow-medium)),var(--button-default-shadow-inset, var(--color-btn-inset-shadow))": 1, - "0 0 0 1px var(--avatar-borderColor, var(--color-avatar-border))": 1, - "var(--color-avatar-border)": 1, - "inset 2px 0 0 var(--borderColor-accent-emphasis, var(--color-accent-emphasis))": 1, - "var(--color-accent-emphasis)": 3, - "var(--shadow-resting-small, var(--color-btn-primary-shadow))": 1, - "0 0 .2em var(--borderColor-accent-muted, var(--color-accent-muted))": 1, - "var(--color-accent-muted)": 2, - "inset 0 1px 0 rgba(255,255,255,.075)": 1, - "var(--header-menu-shadow)": 2, - "0 0 0 .8px #388bfd26": 1, - "0 4px 10px rgba(0,0,0,.1)": 1, - "0 0 0 .8px var(--bgColor-muted, var(--color-canvas-subtle))": 1, - "var(--color-canvas-subtle)": 1, - "inset 0 0 0 1px var(--control-transparent-borderColor-active, var(--color-action-list-item-default-active-border))": 2, - "2px 0 0 var(--borderColor-accent-emphasis, var(--color-accent-emphasis)) inset": 2, - "inset 2px 0 0 var(--borderColor-attention-muted, var(--color-attention-muted))": 1, - "var(--color-attention-muted)": 2, - "0 0 0 1px var(--color-accent-fg)": 2, - "0 1px 3px rgba(27,31,35,.05)": 1, - "inset 4px 0 0 var(--borderColor-success-muted, var(--color-success-muted))": 2, - "var(--color-success-muted)": 2, - "inset 4px 0 0 var(--borderColor-danger-muted, var(--color-danger-muted))": 2, - "var(--color-danger-muted)": 2, - "inset 4px 0 0 var(--borderColor-attention-muted, var(--color-attention-muted))": 1, - "inset 0 calc(var(--borderWidth-thin, 1px)*-1) var(--color-border-default)": 1, - "1px": 1, - "0 0 0 calc(var(--base-size-4, 4px)/2) var(--AppHeader-bg)": 1, - "4px": 1, - "0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg))": 6, - "#c9ff00 0 0 3px": 1, - "inset 0 0 0 1px #c8e1ff": 1, - "inset 0 0 1px transparent": 1, - "inset 0 0 0 32px var(--bgColor-default, var(--color-canvas-default))": 1, - "var(--color-canvas-default)": 3, - "inset 0 0 0 32px var(--bgColor-default, var(--color-canvas-default)),0 0 0 2px var(--borderColor-accent-emphasis, var(--color-accent-fg))": 1, - "0 0 5px rgba(81,167,232,.5)": 1, - "0 4px 0 #fff,0 8px 0 #fff,0 12px 0 #fff,0 16px 0 #fff,0 20px 0 #fff": 1, - "inset 4px 0 0 var(--borderColor-danger-emphasis, var(--color-danger-emphasis))": 1, - "var(--color-danger-emphasis)": 1, - "inset 4px 0 0 var(--borderColor-attention-emphasis, var(--color-attention-emphasis))": 1, - "var(--color-attention-emphasis)": 1, - "0 0 0 2px var(--color-accent-fg)": 3, - "0 0 1px rgba(255,255,255,.5)": 1, - "0 3px 8px 0 rgba(0,0,0,.2)": 1, - "inset 0 1px 0 var(--borderColor-default, var(--color-border-default))": 1, - "inset 0 0 4px rgba(36,41,46,.15)": 1, - "0 0 0 .2em rgba(52,208,88,.4)": 2, - "inset 0 2px 4px rgba(0,0,0,.15)": 1, - "0 1px 3px rgba(106,115,125,.3)": 1, - "0 0 10px rgba(108,198,68,.5)": 1, - "0 0 10px rgba(198,108,68,.5)": 1, - "0 1px 0 #fff": 1, - "0 1px 3px rgba(0,0,0,.075)": 1, - "0 0 0": 1, - "0 0 0 2px var(--bgColor-inset, var(--color-canvas-inset))": 1, - "var(--color-canvas-inset)": 1, - "0 0 0 1px var(--borderColor-success-emphasis, var(--color-success-emphasis))": 1, - "var(--color-success-emphasis)": 4, - "inset 0 1px 2px rgba(27,31,35,.075),0 0 0 .2em var(--borderColor-accent-muted, var(--color-accent-muted))": 1, - "var(--fgColor-muted, var(--color-fg-subtle)) 0 0 0 1px inset": 1, - "var(--color-fg-subtle)": 1, - "0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017)": 1, - "0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09)": 2, - "0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02)": 1, - "0 0 0 1px rgba(53,72,91,.14),0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017)": 1, - "0 0 0 1px rgba(53,72,91,.14),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09)": 3, - "0 0 0 1px rgba(0,0,0,.5),0 70px 65px rgba(0,0,0,.18),0 30px 30px rgba(0,0,0,.14),0 15px 15px rgba(0,0,0,.12),0 10px 8px rgba(0,0,0,.1),0 4px 4px rgba(0,0,0,.08),0 2px 2px rgba(0,0,0,.06)": 1, - "0 0 0 1px rgba(255,255,255,.1),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09)": 1, - "0 0 0 1px rgba(53,72,91,.14),0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02)": 2, - "0 0 0 1px rgba(255,255,255,.1)": 1, - "0 0 0 1px rgba(0,0,0,.5),0 97px 77px rgba(0,0,0,.02),0 40px 32px rgba(0,0,0,.02),0 21.6px 17px rgba(0,0,0,.03),0 12px 9.7px rgba(0,0,0,.04),0 6.4px 5px rgba(0,0,0,.04),0 2.7px 2.1px rgba(0,0,0,.07)": 1, - "0 0 0 1px rgba(255,255,255,.1),0 3px 2px rgba(0,0,0,.04),0 7px 5px rgba(0,0,0,.02),0 13px 10px rgba(0,0,0,.02),0 22px 17px rgba(0,0,0,.02)": 1, - "0 2.74416px 2.74416px rgba(0,0,0,.0274351),0 5.48831px 5.48831px rgba(0,0,0,.0400741),0 13.7208px 10.9766px rgba(0,0,0,.0499982),0 20.5812px 20.5812px rgba(0,0,0,.0596004),0 41.1623px 41.1623px rgba(0,0,0,.0709366),0 96.0454px 89.1851px rgba(0,0,0,.09)": 1, - "0 0 0 1px #000,0 30px 30px rgba(0,0,0,.07),0 15px 15px rgba(0,0,0,.06),0 10px 8px rgba(0,0,0,.05),0 4px 4px rgba(0,0,0,.04),0 2px 2px rgba(0,0,0,.03)": 1, - "inset 0 1px 1px rgba(255,255,255,.1)": 1, - "0 1px 0 rgba(0,0,0,.1)": 1, - "0 4px 14px rgba(0,0,0,.1)": 1, - "0 1px 1px rgba(0,0,0,.1),0 2px 2px rgba(0,0,0,.1),0 4px 4px rgba(0,0,0,.1),0 8px 8px rgba(0,0,0,.1),0 16px 16px rgba(0,0,0,.1)": 1, - "var(--shadow-resting-medium, var(--color-shadow-medium)),0 1px 1px rgba(0,0,0,.1)": 1, - "var(--sub-nav-mktg-shadow)": 1, - "0 0 0 4px var(--bgColor-default, var(--color-canvas-default))": 1, - "0 0 0 1px rgba(255,255,255,.1),0 34px 65px #040d21,0 2.75px 2.21px rgba(0,0,0,.07),0 6.65px 5.32px rgba(0,0,0,.043),0 12.5px 10px rgba(0,0,0,.03),0 22px 18px rgba(0,0,0,.03),0 42px 33.4px rgba(0,0,0,.02),0 100px 80px rgba(0,0,0,.017)": 2, - "0 0 0 1px rgba(53,72,91,.05)": 1, - "0 0 0 1px rgba(53,72,91,.14)": 3, - "inset 0 0 0 0 var(--borderColor-success-emphasis, var(--color-success-emphasis))": 2, - "inset 0 0 0 170px var(--borderColor-success-emphasis, var(--color-success-emphasis))": 1, - "0 0 65px rgba(237,78,80,.4),0 0 0 1px rgba(255,255,255,.1),0 2px 2px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.04),0 10px 8px rgba(0,0,0,.05),0 15px 15px rgba(0,0,0,.06),0 30px 30px rgba(0,0,0,.07),0 70px 65px rgba(0,0,0,.09)": 3, - "0 0 0 2px #28a745": 1, - "#bc8cff 0 0 0 1px inset": 1 - }, - "uniquenessRatio": 0.4434782608695652 - }, - "borderRadiuses": { - "total": 847, - "totalUnique": 53, - "unique": { - "0": 127, - "6px": 243, - ".5em": 1, - "1px": 2, - "var(--borderRadius-full, 100vh)": 2, - "100vh": 2, - "var(--borderRadius-medium, 6px)": 54, - "var(--borderRadius-small, 4px)": 45, - "4px": 51, - "var(--borderRadius-large, 8px)": 5, - "8px": 45, - "var(--borderRadius-medium, 8px)": 40, - "var(--borderRadius-full, 50%)": 1, - "50%": 25, - "2em": 14, - "12px": 2, - "var(--borderRadius-medium, 0.375rem)": 43, - "0.375rem": 52, - "var(--borderRadius-large, 0.75rem)": 9, - "0.75rem": 9, - "var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem) 0 0": 2, - "var(--borderRadius-small, 0.1875rem)": 5, - "0.1875rem": 5, - "var(--borderRadius-full, 624.9375rem)": 1, - "624.9375rem": 1, - ".375rem": 2, - "calc(var(--borderRadius-medium, 0.375rem) - 5px)": 1, - "100px": 5, - "2px": 1, - "0 0 var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem)": 2, - "6px 6px 0 0": 9, - "0 0 6px 6px": 6, - "3px": 6, - "var(--borderRadius-large, 12px)": 1, - "5px": 1, - ".2em": 5, - "var(--borderRadius-small, 3px)": 4, - "10px": 1, - "4px 4px 0 0": 1, - "5px 5px 0 0": 1, - "50px": 1, - "45px": 1, - "20px": 2, - "40px": 1, - "7px": 2, - "1rem": 1, - "300px": 1, - "32px": 1, - "2.6875rem": 1, - ".625rem": 1, - ".375rem .375rem 0 0": 1, - "30px": 1, - "500px": 1 - }, - "uniquenessRatio": 0.06257378984651712, - "itemsPerContext": { - "border-radius": { - "total": 401, - "totalUnique": 52, - "unique": { - "0": 35, - "6px": 133, - ".5em": 1, - "1px": 2, - "var(--borderRadius-full, 100vh)": 2, - "100vh": 2, - "var(--borderRadius-medium, 6px)": 14, - "var(--borderRadius-small, 4px)": 5, - "4px": 11, - "var(--borderRadius-large, 8px)": 5, - "8px": 5, - "var(--borderRadius-full, 50%)": 1, - "50%": 25, - "2em": 14, - "12px": 2, - "var(--borderRadius-medium, 0.375rem)": 23, - "0.375rem": 32, - "var(--borderRadius-large, 0.75rem)": 9, - "0.75rem": 9, - "var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem) 0 0": 2, - "var(--borderRadius-small, 0.1875rem)": 5, - "0.1875rem": 5, - "var(--borderRadius-full, 624.9375rem)": 1, - "624.9375rem": 1, - ".375rem": 2, - "calc(var(--borderRadius-medium, 0.375rem) - 5px)": 1, - "100px": 5, - "2px": 1, - "0 0 var(--borderRadius-medium, 0.375rem) var(--borderRadius-medium, 0.375rem)": 2, - "6px 6px 0 0": 9, - "0 0 6px 6px": 6, - "3px": 6, - "var(--borderRadius-large, 12px)": 1, - "5px": 1, - ".2em": 1, - "var(--borderRadius-small, 3px)": 4, - "10px": 1, - "4px 4px 0 0": 1, - "5px 5px 0 0": 1, - "50px": 1, - "45px": 1, - "20px": 2, - "40px": 1, - "7px": 2, - "1rem": 1, - "300px": 1, - "32px": 1, - "2.6875rem": 1, - ".625rem": 1, - ".375rem .375rem 0 0": 1, - "30px": 1, - "500px": 1 - }, - "uniquenessRatio": 0.12967581047381546 - }, - "border-top-left-radius": { - "total": 116, - "totalUnique": 10, - "unique": { - "0": 26, - "6px": 29, - "var(--borderRadius-small, 4px)": 10, - "4px": 10, - "var(--borderRadius-medium, 6px)": 10, - "var(--borderRadius-medium, 8px)": 10, - "8px": 10, - "var(--borderRadius-medium, 0.375rem)": 5, - "0.375rem": 5, - ".2em": 1 - }, - "uniquenessRatio": 0.08620689655172414 - }, - "border-top-right-radius": { - "total": 111, - "totalUnique": 10, - "unique": { - "0": 23, - "6px": 27, - "var(--borderRadius-small, 4px)": 10, - "4px": 10, - "var(--borderRadius-medium, 6px)": 10, - "var(--borderRadius-medium, 8px)": 10, - "8px": 10, - "var(--borderRadius-medium, 0.375rem)": 5, - "0.375rem": 5, - ".2em": 1 - }, - "uniquenessRatio": 0.09009009009009009 - }, - "border-bottom-left-radius": { - "total": 110, - "totalUnique": 10, - "unique": { - "0": 22, - "6px": 27, - "var(--borderRadius-small, 4px)": 10, - "4px": 10, - "var(--borderRadius-medium, 6px)": 10, - "var(--borderRadius-medium, 8px)": 10, - "8px": 10, - "var(--borderRadius-medium, 0.375rem)": 5, - "0.375rem": 5, - ".2em": 1 - }, - "uniquenessRatio": 0.09090909090909091 - }, - "border-bottom-right-radius": { - "total": 109, - "totalUnique": 10, - "unique": { - "0": 21, - "6px": 27, - "var(--borderRadius-small, 4px)": 10, - "4px": 10, - "var(--borderRadius-medium, 6px)": 10, - "var(--borderRadius-medium, 8px)": 10, - "8px": 10, - "var(--borderRadius-medium, 0.375rem)": 5, - "0.375rem": 5, - ".2em": 1 - }, - "uniquenessRatio": 0.09174311926605505 - } - } - }, - "animations": { - "durations": { - "total": 277, - "totalUnique": 45, - "unique": { - "80ms": 14, - ".1s": 9, - "200ms": 5, - ".2s": 26, - "1s": 13, - "300ms": 2, - ".3s": 17, - ".15s": 11, - "2s": 4, - ".5s": 7, - "1.2s": 3, - ".12s": 11, - "0s": 12, - ".18s": 2, - "1000ms": 1, - "33.333ms": 2, - ".16s": 2, - "50ms": 6, - ".25s": 17, - "var(--duration-fast)": 1, - "1.06s": 2, - "3s": 2, - "500ms": 2, - "120ms": 4, - "160ms": 2, - ".35s": 1, - ".65s": 4, - "8s": 1, - ".4s": 30, - "100ms": 1, - "60ms": 1, - ".24s": 4, - ".75s": 2, - "2.5s": 1, - ".09s": 2, - "4s": 3, - "250ms": 1, - ".6s": 34, - ".7s": 9, - "12s": 1, - "5s": 1, - "6s": 1, - "800ms": 1, - "1750ms": 1, - "10s": 1 - }, - "uniquenessRatio": 0.1624548736462094 - }, - "timingFunctions": { - "total": 220, - "totalUnique": 26, - "unique": { - "cubic-bezier(0.33, 1, 0.68, 1)": 16, - "ease-out": 15, - "cubic-bezier(0.3, 0, 0.5, 1)": 5, - "ease-in": 10, - "ease-in-out": 28, - "ease": 31, - "cubic-bezier(0.2, 0, 0.13, 1.5)": 1, - "linear": 33, - "steps(4, jump-none)": 1, - "cubic-bezier(0, 0.1, 0.1, 1)": 4, - "cubic-bezier(0.5, 0.1, 1, 0.5)": 1, - "cubic-bezier(0, 0, 0.2, 1)": 2, - "cubic-bezier(0.22, 0.61, 0.36, 1)": 1, - "cubic-bezier(0.55, 0.06, 0.68, 0.19)": 1, - "cubic-bezier(0.25, 1, 0.5, 1)": 4, - "cubic-bezier(0.11, 0, 0.5, 0)": 4, - "cubic-bezier(0.65, 0, 0.35, 1)": 2, - "cubic-bezier(0.32, 0, 0.67, 0)": 1, - "cubic-bezier(0.5, 1, 0.89, 1)": 2, - "steps(1)": 2, - "cubic-bezier(0.16, 1, 0.3, 1)": 46, - "cubic-bezier(0.2, 0, 0.13, 2)": 2, - "cubic-bezier(0.25, 0.46, 0.45, 0.94)": 1, - "steps(5)": 1, - "cubic-bezier(0.535, 0.15, 0.425, 1)": 5, - "cubic-bezier(0.48, 0.08, 0.19, 1)": 1 - }, - "uniquenessRatio": 0.11818181818181818 - } - }, - "prefixes": { - "total": 46, - "totalUnique": 25, - "unique": { - "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'": 2, - "-apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 5, - "normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 1, - "-moz-fit-content": 7, - "400 var(--text-title-size-large, 2rem) -apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 1, - "600 var(--text-title-size-medium, 1.25rem) -apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 3, - "400 var(--text-subtitle-size, 1.25rem) -apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 1, - "400 var(--text-title-size-medium, 1.25rem) -apple-system,BlinkMacSystemFont,\"Segoe UI\",\"Noto Sans\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"": 1, - "-webkit-box": 4, - "\"Mona Sans\",\"Mona Sans Fallback\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 3, - "-webkit-linear-gradient(-70deg, #a2facf 0%, #64acff 100%)": 1, - "-webkit-linear-gradient(-70deg, #ff7170 0%, #ffe57f 100%)": 1, - "-webkit-linear-gradient(-70deg, #3bf0e4 0%, #bca1f7 100%)": 1, - "-webkit-linear-gradient(-70deg, #2188ff 0%, #01a49e 100%)": 1, - "-webkit-linear-gradient(-70deg, #ed4e50 0%, #f06f00 100%)": 1, - "-webkit-linear-gradient(-70deg, #9867f0 0%, #ed4e50 100%)": 1, - "-webkit-linear-gradient(-70deg, #2188ff 0%, #804eda 100%)": 1, - "-webkit-linear-gradient(-70deg, #db469f 0%, #2188ff 100%)": 1, - "-webkit-linear-gradient(-70deg, var(--mktg-accent-primary, #9867f0) 0%, var(--mktg-accent-secondary, #ed4e50) 100%)": 1, - "-webkit-linear-gradient(300deg, #93f5ec 20%, #a77bf3 70%)": 1, - "-webkit-linear-gradient(0deg, #79c0ff 0%, #d2a8ff 57.57%)": 1, - "\"Mona Sans\",\"Mona Sans Header Fallback\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 4, - "\"Hubot Sans\",\"Mona Sans\",\"Mona Sans Fallback\",-apple-system,BlinkMacSystemFont,\"Segoe UI\",Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\"": 1, - "-webkit-mask-size 1s ease": 1, - "mask-size 1s ease, -webkit-mask-size 1s ease": 1 - }, - "uniquenessRatio": 0.5434782608695652 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 9128, - "totalUnique": 12, - "unique": { - "rem": 1084, - "px": 7346, - "em": 176, - "ms": 48, - "s": 294, - "vh": 54, - "dvh": 2, - "fr": 14, - "deg": 79, - "ch": 4, - "vw": 25, - "turn": 2 - }, - "uniquenessRatio": 0.0013146362839614374, - "itemsPerContext": { - "--h00-size-mobile": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h0-size-mobile": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h1-size-mobile": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h2-size-mobile": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h3-size-mobile": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h00-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h0-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h1-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h2-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h3-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h4-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h5-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--h6-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--body-font-size": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--font-size-small": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "--color-checks-run-border-width": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-checks-container-border-width": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-mktg-btn-shadow-outline": { - "total": 67, - "totalUnique": 1, - "unique": { - "px": 67 - }, - "uniquenessRatio": 0.014925373134328358 - }, - "--color-mktg-btn-shadow-focus": { - "total": 61, - "totalUnique": 1, - "unique": { - "px": 61 - }, - "uniquenessRatio": 0.01639344262295082 - }, - "--color-mktg-btn-shadow-hover": { - "total": 792, - "totalUnique": 1, - "unique": { - "px": 792 - }, - "uniquenessRatio": 0.0012626262626262627 - }, - "--color-mktg-btn-shadow-hover-muted": { - "total": 61, - "totalUnique": 1, - "unique": { - "px": 61 - }, - "uniquenessRatio": 0.01639344262295082 - }, - "--color-avatar-child-shadow": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-overlay-shadow": { - "total": 25, - "totalUnique": 1, - "unique": { - "px": 25 - }, - "uniquenessRatio": 0.04 - }, - "--color-btn-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-inset-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-primary-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-primary-inset-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-primary-selected-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-outline-hover-shadow": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-outline-hover-inset-shadow": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--color-btn-outline-selected-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-danger-hover-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-danger-hover-inset-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-btn-danger-selected-shadow": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-shadow-small": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-shadow-medium": { - "total": 14, - "totalUnique": 1, - "unique": { - "px": 14 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "--color-shadow-large": { - "total": 14, - "totalUnique": 1, - "unique": { - "px": 14 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "--color-shadow-extra-large": { - "total": 14, - "totalUnique": 1, - "unique": { - "px": 14 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "--color-primer-shadow-highlight": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--color-primer-shadow-inset": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--base-size-4": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-8": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-12": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-16": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-20": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-24": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-28": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-32": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-36": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-40": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-44": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-48": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-64": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-80": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-96": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-112": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--base-size-128": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--boxShadow-thin": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--boxShadow-thick": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--boxShadow-thicker": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderWidth-thin": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderWidth-thick": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderWidth-thicker": { - "total": 2, - "totalUnique": 2, - "unique": { - "px": 1, - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderRadius-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderRadius-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderRadius-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--borderRadius-full": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--outline-focus-offset": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--outline-focus-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--breakpoint-xsmall": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--breakpoint-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--breakpoint-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--breakpoint-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--breakpoint-xlarge": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--breakpoint-xxlarge": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-minTarget-auto": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--controlStack-small-gap-auto": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--controlStack-medium-gap-auto": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "--control-minTarget-fine": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-minTarget-coarse": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-lineBoxHeight": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-paddingBlock": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-paddingInline-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-paddingInline-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-paddingInline-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xsmall-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-small-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-small-lineBoxHeight": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-small-paddingBlock": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-small-paddingInline-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-small-paddingInline-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-small-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-lineBoxHeight": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-paddingBlock": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-paddingInline-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-paddingInline-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-paddingInline-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-medium-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-large-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-large-lineBoxHeight": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-large-paddingBlock": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-large-paddingInline-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-large-paddingInline-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-large-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xlarge-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xlarge-lineBoxHeight": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xlarge-paddingBlock": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xlarge-paddingInline-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xlarge-paddingInline-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--control-xlarge-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-small-gap-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-small-gap-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-medium-gap-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-medium-gap-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-large-gap-auto": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-large-gap-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--controlStack-large-gap-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--space-xxsmall": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--space-xsmall": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--space-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--space-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--space-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--space-xlarge": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--stack-padding-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--stack-padding-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--stack-padding-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--stack-gap-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--stack-gap-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--stack-gap-spacious": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-width-xsmall": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-width-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-width-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-width-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-width-xlarge": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-height-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-height-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-height-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-height-xlarge": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-padding-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-padding-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-paddingBlock-condensed": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-paddingBlock-normal": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--overlay-borderRadius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-codeInline-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "--text-codeBlock-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-caption-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-body-size-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-body-size-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-body-size-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-subtitle-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-title-size-small": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-title-size-medium": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-title-size-large": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-display-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "--text-display-lineBoxHeight": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "font-size": { - "total": 361, - "totalUnique": 3, - "unique": { - "px": 304, - "em": 20, - "rem": 37 - }, - "uniquenessRatio": 0.008310249307479225 - }, - "margin": { - "total": 278, - "totalUnique": 4, - "unique": { - "em": 19, - "px": 232, - "rem": 23, - "vh": 4 - }, - "uniquenessRatio": 0.014388489208633094 - }, - "bottom": { - "total": 107, - "totalUnique": 3, - "unique": { - "em": 3, - "px": 103, - "vh": 1 - }, - "uniquenessRatio": 0.028037383177570093 - }, - "top": { - "total": 233, - "totalUnique": 3, - "unique": { - "em": 2, - "px": 217, - "rem": 14 - }, - "uniquenessRatio": 0.012875536480686695 - }, - "border": { - "total": 204, - "totalUnique": 2, - "unique": { - "px": 181, - "rem": 23 - }, - "uniquenessRatio": 0.00980392156862745 - }, - "padding": { - "total": 604, - "totalUnique": 3, - "unique": { - "em": 28, - "px": 486, - "rem": 90 - }, - "uniquenessRatio": 0.004966887417218543 - }, - "border-bottom": { - "total": 94, - "totalUnique": 2, - "unique": { - "px": 88, - "rem": 6 - }, - "uniquenessRatio": 0.02127659574468085 - }, - "outline": { - "total": 80, - "totalUnique": 2, - "unique": { - "px": 77, - "rem": 3 - }, - "uniquenessRatio": 0.025 - }, - "outline-offset": { - "total": 62, - "totalUnique": 2, - "unique": { - "px": 58, - "rem": 4 - }, - "uniquenessRatio": 0.03225806451612903 - }, - "box-shadow": { - "total": 412, - "totalUnique": 3, - "unique": { - "px": 404, - "rem": 4, - "em": 4 - }, - "uniquenessRatio": 0.007281553398058253 - }, - "font": { - "total": 11, - "totalUnique": 3, - "unique": { - "px": 4, - "em": 1, - "rem": 6 - }, - "uniquenessRatio": 0.2727272727272727 - }, - "line-height": { - "total": 121, - "totalUnique": 3, - "unique": { - "px": 110, - "rem": 5, - "em": 6 - }, - "uniquenessRatio": 0.024793388429752067 - }, - "border-radius": { - "total": 285, - "totalUnique": 4, - "unique": { - "px": 213, - "em": 16, - "vh": 2, - "rem": 54 - }, - "uniquenessRatio": 0.014035087719298246 - }, - "margin-bottom": { - "total": 335, - "totalUnique": 4, - "unique": { - "px": 317, - "rem": 14, - "em": 3, - "vh": 1 - }, - "uniquenessRatio": 0.011940298507462687 - }, - "width": { - "total": 401, - "totalUnique": 4, - "unique": { - "px": 329, - "rem": 50, - "vw": 14, - "em": 8 - }, - "uniquenessRatio": 0.00997506234413965 - }, - "border-bottom-width": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-top-left-radius": { - "total": 55, - "totalUnique": 3, - "unique": { - "px": 49, - "rem": 5, - "em": 1 - }, - "uniquenessRatio": 0.05454545454545454 - }, - "border-top-right-radius": { - "total": 53, - "totalUnique": 3, - "unique": { - "px": 47, - "rem": 5, - "em": 1 - }, - "uniquenessRatio": 0.05660377358490566 - }, - "max-height": { - "total": 55, - "totalUnique": 5, - "unique": { - "px": 31, - "vh": 14, - "dvh": 1, - "em": 3, - "rem": 6 - }, - "uniquenessRatio": 0.09090909090909091 - }, - "padding-top": { - "total": 196, - "totalUnique": 3, - "unique": { - "px": 189, - "rem": 6, - "vh": 1 - }, - "uniquenessRatio": 0.015306122448979591 - }, - "margin-right": { - "total": 248, - "totalUnique": 3, - "unique": { - "px": 230, - "rem": 16, - "em": 2 - }, - "uniquenessRatio": 0.012096774193548387 - }, - "margin-left": { - "total": 325, - "totalUnique": 3, - "unique": { - "px": 301, - "rem": 20, - "em": 4 - }, - "uniquenessRatio": 0.009230769230769232 - }, - "transition": { - "total": 179, - "totalUnique": 2, - "unique": { - "ms": 31, - "s": 148 - }, - "uniquenessRatio": 0.0111731843575419 - }, - "transition-duration": { - "total": 14, - "totalUnique": 2, - "unique": { - "s": 10, - "ms": 4 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "border-bottom-left-radius": { - "total": 53, - "totalUnique": 3, - "unique": { - "px": 47, - "rem": 5, - "em": 1 - }, - "uniquenessRatio": 0.05660377358490566 - }, - "border-right-width": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-bottom-right-radius": { - "total": 53, - "totalUnique": 3, - "unique": { - "px": 47, - "rem": 5, - "em": 1 - }, - "uniquenessRatio": 0.05660377358490566 - }, - "height": { - "total": 363, - "totalUnique": 5, - "unique": { - "px": 269, - "em": 11, - "rem": 59, - "vh": 21, - "vw": 3 - }, - "uniquenessRatio": 0.013774104683195593 - }, - "background-position": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "padding-bottom": { - "total": 169, - "totalUnique": 4, - "unique": { - "px": 161, - "em": 2, - "rem": 5, - "vh": 1 - }, - "uniquenessRatio": 0.023668639053254437 - }, - "min-height": { - "total": 76, - "totalUnique": 4, - "unique": { - "px": 53, - "vh": 7, - "dvh": 1, - "rem": 15 - }, - "uniquenessRatio": 0.05263157894736842 - }, - "padding-left": { - "total": 216, - "totalUnique": 3, - "unique": { - "px": 202, - "em": 7, - "rem": 7 - }, - "uniquenessRatio": 0.013888888888888888 - }, - "left": { - "total": 192, - "totalUnique": 4, - "unique": { - "px": 179, - "rem": 10, - "em": 1, - "vw": 2 - }, - "uniquenessRatio": 0.020833333333333332 - }, - "margin-top": { - "total": 381, - "totalUnique": 4, - "unique": { - "px": 360, - "em": 4, - "rem": 15, - "vh": 2 - }, - "uniquenessRatio": 0.010498687664041995 - }, - "padding-right": { - "total": 161, - "totalUnique": 3, - "unique": { - "px": 155, - "rem": 5, - "em": 1 - }, - "uniquenessRatio": 0.018633540372670808 - }, - "background-size": { - "total": 41, - "totalUnique": 2, - "unique": { - "px": 33, - "em": 8 - }, - "uniquenessRatio": 0.04878048780487805 - }, - "max-width": { - "total": 123, - "totalUnique": 4, - "unique": { - "px": 93, - "ch": 1, - "vw": 6, - "rem": 23 - }, - "uniquenessRatio": 0.032520325203252036 - }, - "border-width": { - "total": 38, - "totalUnique": 3, - "unique": { - "px": 27, - "rem": 10, - "em": 1 - }, - "uniquenessRatio": 0.07894736842105263 - }, - "padding-block-end": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "gap": { - "total": 50, - "totalUnique": 2, - "unique": { - "px": 25, - "rem": 25 - }, - "uniquenessRatio": 0.04 - }, - "clip": { - "total": 12, - "totalUnique": 1, - "unique": { - "px": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "text-indent": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "animation": { - "total": 104, - "totalUnique": 2, - "unique": { - "ms": 9, - "s": 95 - }, - "uniquenessRatio": 0.019230769230769232 - }, - "--Layout-pane-width": { - "total": 8, - "totalUnique": 1, - "unique": { - "px": 8 - }, - "uniquenessRatio": 0.125 - }, - "--Layout-template-columns": { - "total": 3, - "totalUnique": 1, - "unique": { - "fr": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--Layout-column-gap": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "--Layout-row-gap": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "--Layout-outer-spacing-x": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--Layout-outer-spacing-y": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--Layout-inner-spacing-min": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--Layout-inner-spacing-max": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "border-top": { - "total": 79, - "totalUnique": 2, - "unique": { - "px": 74, - "rem": 5 - }, - "uniquenessRatio": 0.02531645569620253 - }, - "border-right": { - "total": 28, - "totalUnique": 3, - "unique": { - "px": 26, - "rem": 1, - "em": 1 - }, - "uniquenessRatio": 0.10714285714285714 - }, - "border-left": { - "total": 42, - "totalUnique": 3, - "unique": { - "px": 36, - "em": 3, - "rem": 3 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "--Layout-content-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "grid": { - "total": 1, - "totalUnique": 1, - "unique": { - "fr": 1 - }, - "uniquenessRatio": 1 - }, - "grid-template-rows": { - "total": 1, - "totalUnique": 1, - "unique": { - "fr": 1 - }, - "uniquenessRatio": 1 - }, - "--Stack-gap-whenRegular": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "--Stack-gap-whenNarrow": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-block-end": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-inline-end": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--Stack-gap-whenWide": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "min-width": { - "total": 54, - "totalUnique": 3, - "unique": { - "px": 41, - "rem": 10, - "ch": 3 - }, - "uniquenessRatio": 0.05555555555555555 - }, - "clip-path": { - "total": 51, - "totalUnique": 2, - "unique": { - "px": 48, - "rem": 3 - }, - "uniquenessRatio": 0.0392156862745098 - }, - "animation-duration": { - "total": 19, - "totalUnique": 2, - "unique": { - "s": 17, - "ms": 2 - }, - "uniquenessRatio": 0.10526315789473684 - }, - "animation-delay": { - "total": 14, - "totalUnique": 1, - "unique": { - "s": 14 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "right": { - "total": 139, - "totalUnique": 3, - "unique": { - "px": 133, - "rem": 4, - "em": 2 - }, - "uniquenessRatio": 0.02158273381294964 - }, - "transform": { - "total": 86, - "totalUnique": 5, - "unique": { - "deg": 35, - "px": 33, - "rem": 14, - "em": 2, - "turn": 2 - }, - "uniquenessRatio": 0.05813953488372093 - }, - "--actionListContent-paddingBlock": { - "total": 4, - "totalUnique": 1, - "unique": { - "rem": 4 - }, - "uniquenessRatio": 0.25 - }, - "padding-inline": { - "total": 10, - "totalUnique": 2, - "unique": { - "rem": 4, - "px": 6 - }, - "uniquenessRatio": 0.2 - }, - "stroke-width": { - "total": 12, - "totalUnique": 1, - "unique": { - "px": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "padding-block": { - "total": 10, - "totalUnique": 2, - "unique": { - "rem": 3, - "px": 7 - }, - "uniquenessRatio": 0.2 - }, - "margin-block-end": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "margin-block-start": { - "total": 6, - "totalUnique": 2, - "unique": { - "rem": 4, - "px": 2 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "margin-inline": { - "total": 3, - "totalUnique": 2, - "unique": { - "rem": 2, - "px": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "grid-template-columns": { - "total": 10, - "totalUnique": 2, - "unique": { - "fr": 9, - "rem": 1 - }, - "uniquenessRatio": 0.2 - }, - "margin-block": { - "total": 4, - "totalUnique": 2, - "unique": { - "rem": 1, - "px": 3 - }, - "uniquenessRatio": 0.5 - }, - "--overlay-width": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "--overlay-height": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "--Layout-sidebar-width": { - "total": 8, - "totalUnique": 1, - "unique": { - "px": 8 - }, - "uniquenessRatio": 0.125 - }, - "--Layout-gutter": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "row-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "column-gap": { - "total": 4, - "totalUnique": 2, - "unique": { - "rem": 1, - "px": 3 - }, - "uniquenessRatio": 0.5 - }, - "padding-inline-start": { - "total": 10, - "totalUnique": 2, - "unique": { - "rem": 6, - "px": 4 - }, - "uniquenessRatio": 0.2 - }, - "padding-inline-end": { - "total": 29, - "totalUnique": 2, - "unique": { - "rem": 21, - "px": 8 - }, - "uniquenessRatio": 0.06896551724137931 - }, - "background": { - "total": 37, - "totalUnique": 1, - "unique": { - "deg": 37 - }, - "uniquenessRatio": 0.02702702702702703 - }, - "inset": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--duration-fast": { - "total": 1, - "totalUnique": 1, - "unique": { - "ms": 1 - }, - "uniquenessRatio": 1 - }, - "margin-inline-end": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "vertical-align": { - "total": 6, - "totalUnique": 2, - "unique": { - "em": 1, - "px": 5 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "text-shadow": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "letter-spacing": { - "total": 11, - "totalUnique": 2, - "unique": { - "px": 3, - "em": 8 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "-webkit-backdrop-filter": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "backdrop-filter": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--header-menu-shadow": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "border-top-width": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-left-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "background-image": { - "total": 4, - "totalUnique": 1, - "unique": { - "deg": 4 - }, - "uniquenessRatio": 0.25 - }, - "transition-delay": { - "total": 11, - "totalUnique": 2, - "unique": { - "s": 10, - "ms": 1 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "color": { - "total": 3, - "totalUnique": 1, - "unique": { - "deg": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "scroll-margin-top": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "--feed-sidebar": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--sub-nav-mktg-shadow": { - "total": 10, - "totalUnique": 1, - "unique": { - "px": 10 - }, - "uniquenessRatio": 0.1 - }, - "filter": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.00175118014314, - "mode": 1, - "range": 1, - "sum": 26314 - }, - "keywords": { - "total": 1518, - "totalUnique": 6, - "unique": { - "none": 961, - "inherit": 150, - "auto": 364, - "initial": 19, - "revert": 3, - "unset": 21 - }, - "uniquenessRatio": 0.003952569169960474 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/indiatimes-20231008.css b/src/__fixtures__/indiatimes-20231008.css deleted file mode 100644 index 89ed3234..00000000 --- a/src/__fixtures__/indiatimes-20231008.css +++ /dev/null @@ -1,19092 +0,0 @@ -.custom-polls .poll-summerys, -.daily-story-header, -.gallery-slide-description, -.left-container li, -.left-container p, -.overlay-card .card-summury, -.preview-list-item.text, -.section-big .left-section .top-summury, -.shop-cont p, -.shop-price b span, -.shop-price del span, -.static-pages p, -.top-stroy .card-summury, -.up-next-article, -.user-weather .date { - font-family: Georgia; -} - -.card-section, -.card-strip, -.countdown div span, -.font-10, -.goal, -.match-widget-f .fixed-part .left-m span, -.match-widget-f .fixed-part .left-r span, -.player-card-circle .icon-football .goal, -.player-card-circle .player-no, -.player-card-name, -.video-r-card .card { - font-size: .625rem; -} - -#keyboard-cont div.error-active, -#stories-tab .card-caption-title, -.alert, -.article-top .card-strip, -.audio-card-headline, -.audio-card-read, -.breadcrumb a, -.brief-video .b-text, -.brief-video .s-text, -.brief-video .v-focus, -.by-text, -.circle-trending, -.circletext, -.comment-post-links, -.comment-post-time, -.common-card .card-title, -.daily-story-header, -.episodes-detail-total, -.episodes-slider .card-title, -.episodes-tab a, -.explore-reads-slide .explore-reads-title, -.font-12, -.footer-links, -.gal-counter, -.gallery-overlay-counter, -.header .right-cont .dropdown .dropbtn span, -.img-poll-op .option-left, -.l-form-other, -.l-login-msg-small, -.menu-categories .category-title, -.menu-items .nav-menu .categories .nav-category, -.movie-review-a, -.movie-review-btn, -.movie-review-release, -.nav-ul .nav-category, -.original-popup .episodes-tab a, -.ov-card-count, -.ov-card-desc, -.overley .head, -.preview-list-item.text, -.quick-slider .slick-slide:first-of-type p, -.quiz-list-col .content, -.readcard .readcard-title, -.right-container .video-infocus .video-small .s-text, -.rightsocial .share-strip-text, -.shop-brand, -.shop-price, -.stories-now .stories-row .text, -.story-now-title, -.th-card, -.time-line span, -.tlp, -.topic-col .card-title, -.topic-slide .text, -.trending-now .trending-text, -.trending-now .trendingicon span, -.user-weather .date, -.youmay-like .card-caption-title { - font-size: .75rem; -} - -.comment-top, -.comments-summury, -.font-16, -.overlay-card .card-summury, -.retake-msg span { - font-size: 1rem; -} - -.bigcard .card-cont.default-icon-tick .popup-header, -.bigcard .card-cont.default-icon .popup-header, -.bigcard .card-cont.ov-card-watch .popup-header, -.bigcard .card-cont .top-head, -.bigcard .ml-auto.card-cont .popup-header, -.block-desc, -.block-header-all, -.blur-container .more-button, -.bottom-blur.default-icon-tick .popup-header, -.bottom-blur.default-icon .popup-header, -.bottom-blur.ov-card-watch .popup-header, -.brief-video .video-summery, -.browse-title, -.checkbox-container, -.circle-cont.influencers-cont .circle-width-desc, -.comment-desc, -.comment-form-sumbit, -.comment-post-desc, -.comment-post-name, -.custom-dropdown, -.default-icon-tick .popup-header, -.default-icon .popup-header, -.edit-text, -.error-page .explore-button, -.error-page p, -.exclusive-mxp.default-icon-tick .popup-header, -.exclusive-mxp.default-icon .popup-header, -.exclusive-mxp.ov-card-watch .popup-header, -.flag-width div, -.font-14, -.footer-headline, -.footer-section, -.gallery-overlay-icon.default-icon-tick .popup-header, -.gallery-overlay-icon.default-icon .popup-header, -.header-tab a, -.image_container.default-icon-tick .popup-header, -.image_container.default-icon .popup-header, -.image_container.ov-card-watch .popup-header, -.influencer-load-more, -.influencer-profile-desc, -.l-form-input, -.l-login-msg, -.like-msg, -.match-count, -.ml-auto.bottom-blur .popup-header, -.ml-auto.exclusive-mxp .popup-header, -.ml-auto.gallery-overlay-icon .popup-header, -.ml-auto.image_container .popup-header, -.ml-auto.pos-relative .popup-header, -.ml-auto.quiz-result-or .popup-header, -.ml-auto.responsive-wrap .popup-header, -.nav-tittle, -.newsletter-input, -.no-result .ml-auto.top .popup-header, -.no-result .ov-card-watch.top .popup-header, -.no-result .top.default-icon-tick .popup-header, -.no-result .top.default-icon .popup-header, -.option-title, -.original-popup .browse-form-input, -.ov-card-section, -.ov-card-watch .button, -.ov-card-watch.default-icon-tick .popup-header, -.ov-card-watch.default-icon .popup-header, -.ov-card-watch.gallery-overlay-icon .popup-header, -.ov-card-watch.quiz-result-or .popup-header, -.penalties, -.player-lineup-bottom, -.player-lineup-top, -.pos-relative.ov-card-watch .popup-header, -.preview-button, -.profile-img a, -.quick-poll .description, -.quick-poll .options .option, -.quiz-list-row-text, -.quiz-result-or.default-icon-tick .popup-header, -.quiz-result-or.default-icon .popup-header, -.read-per, -.readnext .common-card .card-body.default-icon-tick .popup-header, -.readnext .common-card .card-body.default-icon .popup-header, -.readnext .common-card .card-body.ov-card-watch .popup-header, -.readnext .common-card .ml-auto.card-body .popup-header, -.responsive-wrap.default-icon-tick .popup-header, -.responsive-wrap.default-icon .popup-header, -.responsive-wrap.ov-card-watch .popup-header, -.right-container .video-infocus .video-small .b-text, -.right-container .video-infocus .video-summery, -.right-container .video-infocus .video-tittle, -.scroll-header .heading, -.sectiontrending .ml-auto.top-bar .popup-header, -.sectiontrending .top-bar.default-icon-tick .popup-header, -.sectiontrending .top-bar.default-icon .popup-header, -.sectiontrending .top-bar.ov-card-watch .popup-header, -.sh-tab a, -.shop-heading, -.subst-heading, -.teamcolor .team-d, -.top-stroy .card-summury, -.topics .topic, -.total-stories, -.user-weather .name, -.video-l-card .card-summury, -.video-r-card .card-title, -.wc-table-head, -.webseries-seeall { - font-size: .875rem; -} - -.episodes-detail-title, -.font-18, -.live-score a, -.topics-cont, -.topics-summery p { - font-size: 1.125rem; -} - -.card-caption-title, -.comment-title, -.font-20, -.no-result .top, -.section-big .left-section .top-text, -.text-logo, -.top-stroy .card-title, -.video-l-card .card-title { - font-size: 1.25rem; -} - -.font-22 { - font-size: 1.3125rem; -} - -.countdown div, -.font-24, -.gold-no, -.match-count span, -.total-stories span:after { - font-size: 1.5rem; -} - -.block-header-title, -.browse-title, -.card-caption-title, -.card-strip, -.card-summury, -.card-title, -.comment-form-textarea, -.comment-top, -.footer-headline, -.h-dinline, -.l-form-input, -.newsletter-input, -.ov-card-detail, -.ov-card-watch .button, -.personalized .personalize-text, -.personalized .phone-login, -.quick-poll .description, -.read-per, -.rightsocial .share-strip-text, -.scroll-header .heading, -.section-big .left-section, -.topic-slide { - line-height: 1.5; -} - -.article-description-height.active .blur-container, -.checkbox-container:after, -.d-none, -.default-icon, -.default-icon-tick, -.p-eye .eye-c, -.p-eye .eye-o, -.right-answer-tick .default-icon, -.total-stories span:last-child:after { - display: none; -} - -.author-strip-editor, -.blur-e, -.card-section, -.card-title, -.checkbox-container, -.checkbox-container input:checked~.checkmark:after, -.d-block, -.digital-left h2, -.digital-left p, -.episodes-detail span, -.menu-categories .category a, -.menu-categories .category span, -.p-eye.close-eye .eye-c, -.p-eye.open-eye .eye-o, -.right-answer-tick .right-icon, -.video-l-card .card-detail-logo, -.videosummery .powerrow-text span:first-child, -.videosummery .powerrow-text span:last-child { - display: block; -} - -.black-theme h2 div, -.card-strip-social a, -.circle-a, -.d-inline-block, -.episodes-detail, -.episodes-thumb, -.icon-section, -.l-form-social .icon, -.movie-review-btn, -.movie-review-release span, -.quiz-result-or:after, -.quiz-result-or:before, -.rating-text, -.time-line span { - display: inline-block; -} - -.article-description-height, -.article-image, -.article-image:before, -.article-image img, -.article-image img:before, -.author-strip-img, -.author-strip-img:before, -.bigcard .card-cont, -.bigcard .card-cont .main-img, -.bigcard .card-cont .main-img:before, -.block-header-title, -.bottom-blur, -.browse-list-thumb, -.browse-list-thumb:before, -.card, -.card-detail-logo, -.card-detail-logo:before, -.card-img, -.card-img:before, -.checkbox-container, -.circle-cont.influencers-cont .img-row, -.circle-cont.influencers-cont .img-row:before, -.comment-post-box, -.comment-post-left, -.comment-post-left:before, -.comment-top, -.daily-story-header, -.default-icon, -.default-icon-tick, -.episodes-slider, -.episodes-thumb, -.episodes-thumb:before, -.exclusive-mxp, -.focus-card-img, -.focus-card-img:before, -.gallery-overlay-icon, -.game-card .game-allcard span, -.game-card .game-allcard span:before, -.game-card .game-cardinner-img, -.game-card .game-cardinner-img:before, -.h-dinline, -.highlight h2, -.home-container, -.icc-team-img, -.icc-team-img:before, -.image_container, -.img-poll-op .poll-new, -.img-poll-op .poll-new:before, -.influencer-profile-img, -.influencer-profile-img:before, -.l-form-other, -.l-form-row, -.l-form-social .icon, -.login-container, -.movie-review, -.movie-review-cover, -.movie-review-cover:before, -.movie-review-poster, -.movie-review-poster:before, -.newsletter-form, -.no-result .top, -.optical-widget-card-img, -.optical-widget-card-img:before, -.option.answer-thumb figure, -.option.answer-thumb figure:before, -.original-popup .browse-form-button, -.original-popup .icon-close, -.ov-card-thumb, -.ov-card-thumb:before, -.player-card-circle, -.player-lineup, -.player-lineup-img, -.player-lineup-img:before, -.player-lineup:before, -.popular-cont .image, -.popular-cont .image:before, -.pos-relative, -.quick-slider .black-overlay, -.quick-slider .black-overlay:before, -.quiz-card-big, -.quiz-card-big:before, -.quiz-list-col, -.quiz-list-col:before, -.quiz-result-img, -.quiz-result-img:before, -.quiz-result-or, -.readnext .common-card .card-body, -.responsive-wrap, -.right-container .common-card .card-img, -.right-container .common-card .card-img:before, -.rightsocial .share-strip, -.rightsocial .share-strip-icon, -.sectiontrending .top-bar, -.slider .slide, -.slider .slide:before, -.story-now-img, -.story-now-img:before, -.time-line, -.top-stroy, -.topic-container, -.topic-slide, -.trending-now .trendingimg .t-img, -.trending-now .trendingimg .t-img:before, -.up-next-article, -.webseries-slider, -.webseries-slider-slide, -.webseries-slider-slide:before, -.youmay-like { - position: relative; -} - -.circle-trending, -.readnext .common-card .card-strip, -.responsive-wrap div, -.responsive-wrap embed, -.responsive-wrap iframe, -.responsive-wrap object, -.responsive-wrap video { - position: absolute; -} - -.article-description-height, -.article-image, -.article-image:before, -.article-image img, -.article-image img:before, -.author-strip-img, -.author-strip-img:before, -.bigcard .card-cont .main-img, -.bigcard .card-cont .main-img:before, -.breadcrumb.trunc .card-strip-social a:last-of-type, -.breadcrumb.trunc .circle-a:last-of-type, -.breadcrumb.trunc .d-inline-block:last-of-type, -.breadcrumb.trunc .episodes-detail:last-of-type, -.breadcrumb.trunc .episodes-thumb:last-of-type, -.breadcrumb.trunc .icon-section:last-of-type, -.breadcrumb.trunc .l-form-social .icon:last-of-type, -.breadcrumb.trunc .movie-review-btn:last-of-type, -.breadcrumb.trunc .movie-review-release span:last-of-type, -.breadcrumb.trunc .quiz-result-or:last-of-type:after, -.breadcrumb.trunc .quiz-result-or:last-of-type:before, -.breadcrumb.trunc .rating-text:last-of-type, -.breadcrumb.trunc .time-line span:last-of-type, -.browse-list-thumb, -.browse-list-thumb:before, -.card, -.card-detail-logo, -.card-detail-logo:before, -.card-img, -.card-img:before, -.card-strip-social .breadcrumb.trunc a:last-of-type, -.circle-a, -.circle-cont.influencers-cont .circle-width-desc, -.circle-cont.influencers-cont .img-row, -.circle-cont.influencers-cont .img-row:before, -.comment-form, -.comment-post-left, -.comment-post-left:before, -.common-card .card-img, -.episodes-slider, -.episodes-slider .card-title, -.episodes-thumb, -.episodes-thumb:before, -.focus-card, -.focus-card-img, -.focus-card-img:before, -.game-card .game-allcard span, -.game-card .game-allcard span:before, -.game-card .game-cardinner-img, -.game-card .game-cardinner-img:before, -.home-container, -.icc-team-img, -.icc-team-img:before, -.icon-section, -.img-poll-op .poll-new, -.img-poll-op .poll-new:before, -.influencer-profile-img, -.influencer-profile-img:before, -.influencer-profile-social a.instagram, -.influencer-tag, -.l-form-social .breadcrumb.trunc .icon:last-of-type, -.menu-categories .category-thumb, -.movie-review, -.movie-review-cover, -.movie-review-cover:before, -.movie-review-poster, -.movie-review-poster:before, -.movie-review-release .breadcrumb.trunc span:last-of-type, -.newsletter-form, -.no-result .top, -.no-scroll, -.optical-widget-card, -.optical-widget-card-img, -.optical-widget-card-img:before, -.option.answer-thumb, -.option.answer-thumb figure, -.option.answer-thumb figure:before, -.ov-card-thumb, -.ov-card-thumb:before, -.player-lineup, -.player-lineup-img, -.player-lineup-img:before, -.player-lineup:before, -.popular-cont .image, -.popular-cont .image:before, -.preview-list-item, -.preview-list-item.thumb img, -.quick-slider .black-overlay, -.quick-slider .black-overlay:before, -.quiz-card-big, -.quiz-card-big:before, -.quiz-card-opt, -.quiz-list-col, -.quiz-list-col:before, -.quiz-result-img, -.quiz-result-img:before, -.right-container .common-card .card-img, -.right-container .common-card .card-img:before, -.slider .slide, -.slider .slide:before, -.small-video-card .card-img, -.stories-now .stories-row .text, -.story-now-img, -.story-now-img:before, -.story-now-title, -.text-truncate, -.time-line .breadcrumb.trunc span:last-of-type, -.top-stroy, -.topic-col, -.topic-col .card-img, -.topic-container, -.trending-now .trendingimg .t-img, -.trending-now .trendingimg .t-img:before, -.video-latest, -.video-r-card .card-img, -.wc-table-th .inner-th, -.webseries-slider, -.webseries-slider-slide, -.webseries-slider-slide:before, -.youmay-like { - overflow: hidden; -} - -.original-popup { - min-height: 100%; - height: 100vh; -} - -.ads-container, -.block-header-all, -.card-strip-bookmark, -.card-strip-social, -.comments .narration-button span:last-of-type, -.container, -.default-icon, -.default-icon-tick, -.fifa-center, -.influencer-loader, -.influencer-top, -.m-auto, -.menu-items .nav-menu .categories .nav-category svg, -.ml-auto, -.ov-card-watch, -.promoted .card .ctn-icon, -.scroll-header-right, -.tlp, -.total-stories { - margin-left: auto; -} - -.ads-container, -.container, -.fifa-center, -.influencer-loader, -.influencer-top, -.m-auto, -.mr-auto, -.readnext .common-card .card-body, -.tlp, -.total-stories, -.user-weather .uder-left { - margin-right: auto; -} - -.article-image, -.article-image img, -.author-strip-img, -.bigcard .card-cont .main-img, -.browse-list-thumb, -.card-detail-logo, -.card-img, -.circle-cont.influencers-cont .img-row, -.comment-post-left, -.episodes-thumb, -.focus-card-img, -.game-card .game-allcard span, -.game-card .game-cardinner-img, -.icc-team-img, -.img-poll-op .poll-new, -.influencer-profile-img, -.movie-review-cover, -.movie-review-poster, -.optical-widget-card-img, -.option.answer-thumb figure, -.ov-card-thumb, -.player-lineup, -.player-lineup-img, -.popular-cont .image, -.quick-slider .black-overlay, -.quiz-card-big, -.quiz-list-col, -.quiz-result-img, -.right-container .common-card .card-img, -.slider .slide, -.story-now-img, -.trending-now .trendingimg .t-img, -.webseries-slider-slide { - background-color: #ccc; -} - -.article-image:before, -.article-image img:before, -.author-strip-img:before, -.bigcard .card-cont .main-img:before, -.browse-list-thumb:before, -.card-detail-logo:before, -.card-img:before, -.circle-cont.influencers-cont .img-row:before, -.comment-post-left:before, -.episodes-thumb:before, -.focus-card-img:before, -.game-card .game-allcard span:before, -.game-card .game-cardinner-img:before, -.icc-team-img:before, -.img-poll-op .poll-new:before, -.influencer-profile-img:before, -.movie-review-cover:before, -.movie-review-poster:before, -.optical-widget-card-img:before, -.option.answer-thumb figure:before, -.ov-card-thumb:before, -.player-lineup-img:before, -.player-lineup:before, -.popular-cont .image:before, -.quick-slider .black-overlay:before, -.quiz-card-big:before, -.quiz-list-col:before, -.quiz-result-img:before, -.right-container .common-card .card-img:before, -.slider .slide:before, -.story-now-img:before, -.trending-now .trendingimg .t-img:before, -.webseries-slider-slide:before { - content: ""; - display: block; - width: 100%; - height: 0; -} - -.article-image .content, -.article-image>img, -.article-image img>img, -.author-strip-img .content, -.author-strip-img>img, -.bigcard .card-cont .main-img .content, -.bigcard .card-cont .main-img>img, -.browse-list-thumb .content, -.browse-list-thumb>img, -.card-detail-logo .content, -.card-detail-logo>img, -.card-img .content, -.card-img>img, -.circle-cont.influencers-cont .img-row .content, -.circle-cont.influencers-cont .img-row>img, -.comment-post-left .content, -.comment-post-left>img, -.episodes-thumb .content, -.episodes-thumb>img, -.focus-card-img .content, -.focus-card-img>img, -.game-card .game-allcard span .content, -.game-card .game-allcard span>img, -.game-card .game-cardinner-img .content, -.game-card .game-cardinner-img>img, -.icc-team-img .content, -.icc-team-img>img, -.img-poll-op .poll-new .content, -.img-poll-op .poll-new>img, -.influencer-profile-img .content, -.influencer-profile-img>img, -.movie-review-cover .content, -.movie-review-cover>img, -.movie-review-poster .content, -.movie-review-poster>img, -.optical-widget-card-img .content, -.optical-widget-card-img>img, -.option.answer-thumb figure .content, -.option.answer-thumb figure>img, -.ov-card-thumb .content, -.ov-card-thumb>img, -.player-lineup-img .content, -.player-lineup-img>img, -.player-lineup .content, -.player-lineup>img, -.popular-cont .image .content, -.popular-cont .image>img, -.quick-slider .black-overlay .content, -.quick-slider .black-overlay>img, -.quiz-card-big .content, -.quiz-card-big>img, -.quiz-list-col .content, -.quiz-list-col>img, -.quiz-result-img .content, -.quiz-result-img>img, -.right-container .common-card .card-img .content, -.right-container .common-card .card-img>img, -.slider .slide .content, -.slider .slide>img, -.story-now-img .content, -.story-now-img>img, -.trending-now .trendingimg .t-img .content, -.trending-now .trendingimg .t-img>img, -.webseries-slider-slide .content, -.webseries-slider-slide>img { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - margin: auto; - object-fit: cover; -} - -.default-icon-tick svg, -.gallery-overlay-icon svg, -.gallery-overlay-share svg, -.gallery-slide-zoom svg, -.l-form-social .icon svg, -.rightsocial .share-strip-icon svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 1.5rem; - height: 1.5rem; -} - -* { - margin: 0; - padding: 0; - box-sizing: border-box; - -webkit-text-size-adjust: none; - -webkit-tap-highlight-color: transparent; -} - -body, -html { - height: 100%; - -webkit-overflow-scrolling: touch; -} - -body { - background-color: #fff; - font-family: Verdana, arial, sans-serif; - font-size: 1rem; -} - -a, -body { - color: #171717; -} - -a { - text-decoration: none; -} - -a:focus { - outline: 0; -} - -img { - width: 100%; -} - -li, -ul { - list-style: none; -} - -input, -select, -textarea { - outline: 0; -} - -.wrap { - width: 100%; - min-height: 100vh; - margin: 0 auto; -} - -.container, -.fifa-center { - max-width: 70.625rem; - padding-left: .9375rem; - padding-right: .9375rem; -} - -.body-overlay, -.comments-textarea, -.comments .narration-button, -.container, -.daily-story-header:after, -.daily-story-header:before, -.episodes-thumb, -.fifa-center, -.fluid-width, -.gallery-overlay, -.home-container, -.icon-arrow svg, -.icon-bookmark, -.l-form-btn, -.l-form-input, -.left-container, -.login-content, -.login-popup-container, -.newsletter-form label, -.newsletter-input, -.optical-widget-more a, -.original-popup, -.original-popup .browse-form-input, -.right-container, -.section-big, -.slider-next-button, -.top-stroy .card-body { - width: 100%; -} - -.overlay-card .card-body, -.spacing, -.topics { - padding-left: 1.45455%; - padding-right: 1.45455%; -} - -.click-to-reveal, -.spacing-remove { - margin-left: -1.45455%; - margin-right: -1.45455%; -} - -.gap-x-16 { - margin-left: 1.45455%; - margin-right: 1.45455%; -} - -.gap-x-24 { - margin-left: 2.18182%; - margin-right: 2.18182%; -} - -.ml-none { - margin-left: 0; -} - -.footer-social .youtube, -.mr-none { - margin-right: 0; -} - -.card-detail-logo { - margin-right: 1rem; -} - -.mt-16 { - margin-top: 1rem; -} - -.bigcard .card-cont, -.breadcrumb, -.mt-20 { - margin-top: 1.25rem; -} - -.mt-24, -.org-tab a, -.original-top { - margin-top: 1.5rem; -} - -.mt-30, -.user-dropdown .logout { - margin-top: 1.875rem; -} - -.checkbox-container, -.comment-form-textarea, -.comment-post, -.episodes-slider .card-img, -.mb-16, -.quiz-list-row { - margin-bottom: 1rem; -} - -.article-newsletter .subheading, -.breadcrumb, -.brief-video .video-small, -.brief-video .video-summery, -.comment-top, -.digital-left h2, -.digital-left p, -.exclusive, -.exclusive-mxp, -.header-tab, -.mb-20, -.option.answer-thumb, -.original-top .original-left .card-detail, -.sectionwidgets, -.sh-tab, -.topics-summery p, -a[data-network=indiatimes] { - margin-bottom: 1.25rem; -} - -.h-dinline, -.mb-24, -.org-tab a, -.original-top, -.video-infocus .card-img, -.video-infocus .card-strip { - margin-bottom: 1.5rem; -} - -.article-newsletter, -.custom-polls .poll-summerys, -.deatil-nav a, -.l-form-row, -.l-login-msg, -.left-container h2, -.left-container h3, -.left-container h4, -.left-container h5, -.left-container h6, -.left-container li, -.left-container p, -.mb-30, -.movie-review, -.quickpoll, -.readnext, -.rightsocial, -.section-big, -.static-pages p, -.summery-cont, -.video-infocus .card-detail-logo { - margin-bottom: 1.875rem; -} - -.mb-36, -.video-latest { - margin-bottom: 2.25rem; -} - -.mb-60 { - margin-bottom: 3.75rem; -} - -.mt-40 { - margin-top: 2.5rem; -} - -.comments-textarea, -.common-card .card-img, -.episodes-block, -.episodes-slider .card-img, -.episodes-thumb, -.l-form-input, -.newsletter-input, -.quick-poll .options .option, -.radius-4, -.small-video-card .card-img, -.top-stroy, -.top-video .card-img, -.topic-col .card-img, -.video-infocus .card-img, -.video-r-card .card-img, -.webseries-slider-slide, -.youmay-like .card { - border-radius: .25rem; -} - -.card-detail-logo { - float: left; -} - -.pull-right { - float: right; -} - -.ads-container { - background: #fafafa; - padding: 1.25rem 0; -} - -.ads-container img { - width: auto; -} - -.ads-container:before { - content: "ADVERTISEMENT"; - font-size: .625rem; - color: #8a8a8a; - line-height: .9375rem; - display: block; - padding-bottom: .5rem; - text-align: center; -} - -.full-width, -.movie-review-overlay, -.movie-review .narration-button { - width: 100%; -} - -.img-credits { - font-size: .8rem; - margin-top: .4rem; - color: #a5a0a0; -} - -.wzrk-powered { - display: none; -} - -.popup-container { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - width: 100%; -} - -.popup-container .popup-content-container { - overflow-y: scroll; - height: 100vh; - background: rgba(0, 0, 0, .9); - box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15); -} - -.popup-container .popup-content-container .close { - right: 3rem; - position: absolute; - top: 1rem; - z-index: 9; -} - -.popup-container .popup-content-container .close svg { - width: 1rem; - cursor: pointer; -} - -.popup-container .popup-content-container .close svg path { - fill: #fff; -} - -.popup-container .popup-content-container .popup-content { - background: #fff; - max-width: 89%; - left: 0; - right: 0; - padding: 10px; - top: 30px; - border-radius: 5px; - margin: 2rem auto 0; - height: 90vh; -} - -.alert, -.text-left { - text-align: left; -} - -.ad-cls:not(.clearfix):before, -.ads-container, -.article-newsletter, -.center-error .alert, -.circle-a, -.error-page h2, -.image_container .clickreval span, -.l-form-btn, -.login-container, -.menu-categories .category, -.penalties, -.quiz-result-box, -.story-now-item, -.text-center, -.time-line, -.topics .topic, -.total-stories { - text-align: center; -} - -.text-right { - text-align: right; -} - -.l-form input[type=email] { - text-transform: lowercase; -} - -.block-header-title, -.card-section, -.comment-top, -.daily-story-header, -.episodes-detail-title, -.episodes-tab a, -.footer-section, -.h-dinline, -.image_container .clickreval span, -.no-result .top, -.promoted .card-section, -.text-uppercase, -.topic-slide, -.up-next-article { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-truncate { - text-overflow: ellipsis; - white-space: nowrap; -} - -.black-theme, -.blue-tag, -.blur-container .more-button, -.card-caption, -.comment-form-sumbit, -.episodes-tab a, -.footer-container a, -.gallery-overlay-caption, -.gallery-overlay-counter, -.l-form-btn, -.l-form-input, -.movie-review-release, -.movie-review .narration-button, -.newsletter-input, -.preview-button, -.right-answer, -.text-white, -.top-stroy .card-body, -.wrong-answer, -footer { - color: #fff; -} - -.comment-top, -.home-container .block-header-title, -.home-container .comment-top, -.home-container .h-dinline, -.home-container .topic-slide, -.l-login-greet span, -.right-container .block-header-title, -.right-container .comment-top, -.right-container .h-dinline, -.right-container .topic-slide, -.text-blue { - color: #3457a7; -} - -.comment-title, -.text-black { - color: #171717; -} - -.sectiontrending .top-bar { - display: inline-flex; -} - -.common-card .card, -.flex-row, -.topic-col .card, -.video-r-card .card { - flex-direction: row; -} - -.flex-nowrap, -.story-now, -.youmay-like { - flex-wrap: nowrap; -} - -.flex-grow-0 { - flex-grow: 0; -} - -.justify-content-start { - justify-content: flex-start; -} - -.justify-content-end { - justify-content: flex-end; -} - -.justify-content-center, -.l-login-otp, -.preview-list-item.text, -.rightsocial .share-strip, -.rightsocial .share-strip-social { - justify-content: center; -} - -.justify-content-between { - justify-content: space-between; -} - -.justify-content-around { - justify-content: space-around; -} - -.align-items-start { - align-items: flex-start; -} - -.common-card .card-img, -.small-video-card .card-img, -.topic-col .card-img, -.video-r-card .card-img { - align-self: flex-start; -} - -.bgImg .black-bg { - max-width: 1100px; - margin: 0 auto; -} - -.black-bg { - background-color: rgba(0, 0, 0, .87); - padding-top: 24px; -} - -.black-theme a { - color: inherit; -} - -.black-theme .custom-dropdown select { - background-color: #212121; - border: 1px solid #fff; -} - -.black-theme svg, -.black-theme svg>path { - fill: #fff; -} - -.black-theme .menu-width svg path { - fill: #000; -} - -.black-theme .breadcrumb a { - color: #fff; -} - -.black-theme .dropdown-menu .menu-right { - color: #171717; -} - -.black-theme .dropdown-menu .menu-right .card path { - fill: #171717; -} - -.black-theme .nav-category a { - color: #171717; -} - -.fixed-header { - position: fixed; - width: 100%; - z-index: 999; - left: 0; -} - -.menu-open #header { - z-index: 1000; -} - -.header-bg.floating-header { - background: #fff; - position: fixed; - width: 100%; - z-index: 999; - min-height: 60px; - height: 60px; - top: 0; -} - -.header-bg.floating-header .header .left-cont { - width: 50px; - position: absolute; - z-index: 99; -} - -.header-bg.floating-header .header .logo { - width: auto; - position: absolute; - z-index: 99; - left: 75px; -} - -.header-bg.floating-header .header .logo svg { - width: 40px; - height: 40px; - margin-top: -5px; -} - -.header-bg.floating-header .header .logo.logo-hindi svg { - width: 74px; -} - -.header-bg.floating-header .header .right-cont { - position: absolute; - z-index: 10; - right: 20px; - max-width: 200px; -} - -.header-bg.floating-header .sectiontrending { - position: absolute; - top: 16px; - z-index: 9; - width: 100%; - background: #fff; -} - -.header-bg.floating-header .sectiontrending li.dropdown { - margin-right: 17px; -} - -.header { - padding-top: 1.26rem; - min-height: 70px; - border-bottom: 1px solid hsla(0, 0%, 100%, .3); - background: #fff; -} - -.header .left-cont { - width: 35%; - float: left; -} - -.header .logo { - width: 29%; - float: left; - text-align: center; - margin-top: -4px; -} - -.header .logo svg { - width: 50px; - height: 48px; - margin-top: -5px; -} - -.header .logo svg path { - fill: #3457a7; -} - -.header .logo.logo-hindi svg { - width: 74px; -} - -.header .right-cont { - font-weight: 700; - width: 34%; - float: right; - font-size: 12px; - text-align: right; - display: flex; - justify-content: flex-end; -} - -.header .right-cont svg { - margin-right: 15px; - margin-top: -4px; -} - -.header .right-cont .dropdown { - font-size: 14px; - margin-top: -2px; -} - -.header .right-cont .dropdown .dropbtn svg { - vertical-align: -6px; - margin-top: 0; - margin-right: 2px; -} - -.header .right-cont .dropdown .dropbtn span { - color: #000; - margin-right: 20px; -} - -.header .right-cont .dropdown button { - font-weight: 700; -} - -.header .profile-data img { - width: 20px; - height: 20px; - border-radius: 50%; - margin-right: 5px; - border: 1px solid #f1f1f1; - vertical-align: -6px; -} - -.open-dropdon:before { - border: 10px solid transparent; - border-bottom-color: #fff; - width: 0; - height: 0; - position: absolute; - content: " "; - top: -20px; - right: 40px; - z-index: 9; -} - -.dummy-div { - min-height: 70px; -} - -.menu-width { - background: #fff; - width: 40px; - height: 40px; - margin-top: -7px; - text-align: center; - border-radius: 50%; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); -} - -.menu-width svg { - margin-top: 12px; -} - -.menu-width svg path { - fill: #3457a7; -} - -.menu-width.menu-closed { - background: #fff; -} - -.menu-width.menu-closed svg path { - fill: #3457a7; -} - -.menu-items { - background-color: #fff; - padding: 1rem; - top: 0; - width: 40rem; - height: 100%; -} - -.menu-items.fixed { - z-index: 99; - height: 100%; - overflow-y: auto; -} - -.menu-items .search { - background-color: #fafafa; - padding: 1rem; - display: flex; -} - -.menu-items .search svg { - margin-right: .6875rem; -} - -.menu-items .search svg path { - fill: #3457a7; -} - -.menu-items .search input { - width: 84%; - background: transparent; - border: none; - border-bottom: 1px solid #d6d1d1; - padding-bottom: 2px; - font-size: 14px; -} - -.menu-items .search input::placeholder { - opacity: .5; -} - -.menu-items .nav-menu { - position: relative; -} - -.menu-items .nav-menu .categories { - width: 20rem; - border-right: 1px solid #c4c4c4; -} - -.menu-items .nav-menu .categories .nav-category { - font-weight: 700; - line-height: 1; -} - -.menu-items .nav-menu .categories .nav-category a { - font-weight: 700; - font-size: 1rem; - min-width: 100%; - margin-bottom: 5px; -} - -.menu-items .nav-menu .categories .nav-category img { - width: 2.25rem; - height: 2.25rem; - margin-right: 1rem; - border-radius: 50%; -} - -.menu-items .nav-menu .categories .nav-category svg { - width: 2.625rem; - height: 2.625rem; -} - -.menu-items .nav-menu .categories .nav-category.active, -.menu-items .nav-menu .categories .nav-category:hover { - background-color: rgba(52, 87, 167, .05); -} - -.menu-items .menu-categories .category { - margin-right: 20px; -} - -.menu-items .dropdown-menu .menu-right .common-card:nth-child(2n), -.menu-items .menu-categories .category:nth-child(4n) { - margin-right: 0; -} - -.menu-items .dropdown-menu .menu-right .common-card { - max-width: 174px; - margin-right: 20px; -} - -.menu-overlay { - position: fixed; - top: 0; - left: 0; - background-color: rgba(0, 0, 0, .5); - content: ""; - width: 100%; - height: 100%; - z-index: 98; - display: none; - transition: all .2s ease-in-out; -} - -.menu-open .menu-overlay { - display: block; -} - -.blue-bg { - background-color: rgba(52, 87, 167, .05); -} - -.scroll-header { - padding: 0 0 1rem; -} - -.scroll-header .logo { - width: 1.5rem; - height: 1.5rem; - margin-right: .9375rem; - margin-top: 0; -} - -.scroll-header .heading { - font-weight: 700; -} - -.prograssbar-cont { - width: 100%; - position: absolute; - bottom: -1px; - left: 0; - background-color: transparent; -} - -.prograssbar-cont .prograssbar { - width: 0; - background-color: #3457a7; - height: .25rem; - transition: width .1s ease; -} - -.article-header .scroll-header { - padding: 0; - margin-left: 20px; - margin-top: 4px; -} - -.mr-20 { - margin-right: 20px; -} - -.article-header { - position: fixed; - top: 0; - width: 100%; - background: #fff; - box-shadow: 0 12px 13px -5px rgba(0, 0, 0, .07); - transition: all .4s ease-in-out; -} - -.read-per { - color: #3457a7; - font-weight: 700; - margin-right: 15px; - padding-right: 15px; - border-right: 1px solid #ccc; - vertical-align: 5px; -} - -.article-header, -.article-header.scroll-top { - top: -300px; - padding: 15px 0; - z-index: 999; -} - -.article-header.scroll-down { - top: 0; -} - -.dropdown-menu li { - min-height: 47px; -} - -.dropdown-menu a { - width: 100%; - font-size: 14px; - color: rgba(0, 0, 0, .8); -} - -.nav-ul li:last-child { - margin-right: 0; -} - -.article-newsletter .nav-ul .dropdown.newsletterinput, -.brief-video .nav-ul .dropdown.video-small, -.header .nav-ul .dropdown.profile-data, -.menu-items .nav-menu .categories .nav-category .nav-ul a.dropdown, -.menu-items .nav-menu .categories .nav-ul .dropdown.nav-category, -.nav-ul .article-newsletter .dropdown.newsletterinput, -.nav-ul .brief-video .dropdown.video-small, -.nav-ul .d-flex.dropdown, -.nav-ul .dropdown.art-social, -.nav-ul .dropdown.author-row, -.nav-ul .dropdown.block-header, -.nav-ul .dropdown.breadcrumb.trunc, -.nav-ul .dropdown.browse-list, -.nav-ul .dropdown.card, -.nav-ul .dropdown.card-strip, -.nav-ul .dropdown.comment, -.nav-ul .dropdown.comment-form, -.nav-ul .dropdown.comment-post, -.nav-ul .dropdown.comment-post-box, -.nav-ul .dropdown.comment-post-links, -.nav-ul .dropdown.daily-story, -.nav-ul .dropdown.digital-left, -.nav-ul .dropdown.digital-page, -.nav-ul .dropdown.focus-card-body, -.nav-ul .dropdown.liver-two, -.nav-ul .dropdown.login-container, -.nav-ul .dropdown.menu-categories, -.nav-ul .dropdown.nav-category, -.nav-ul .dropdown.open-header, -.nav-ul .dropdown.org-tab, -.nav-ul .dropdown.original-popup-header, -.nav-ul .dropdown.original-top, -.nav-ul .dropdown.ov-card, -.nav-ul .dropdown.ov-card-detail, -.nav-ul .dropdown.ov-card-watch, -.nav-ul .dropdown.pie-chart, -.nav-ul .dropdown.preview-list, -.nav-ul .dropdown.preview-list-item.text, -.nav-ul .dropdown.profile-img, -.nav-ul .dropdown.quiz-list, -.nav-ul .dropdown.quiz-list-row, -.nav-ul .dropdown.quiz-result-box, -.nav-ul .dropdown.r-card, -.nav-ul .dropdown.readcard, -.nav-ul .dropdown.retake-container, -.nav-ul .dropdown.scroll-header-right, -.nav-ul .dropdown.section-big, -.nav-ul .dropdown.sectiontrending, -.nav-ul .dropdown.series, -.nav-ul .dropdown.sh-tab, -.nav-ul .dropdown.stories-now, -.nav-ul .dropdown.story-now, -.nav-ul .dropdown.story-now-circle, -.nav-ul .dropdown.t-arrow, -.nav-ul .dropdown.team-mg, -.nav-ul .dropdown.teamcolor, -.nav-ul .dropdown.topic-cards, -.nav-ul .dropdown.topic-slide, -.nav-ul .dropdown.toplogo, -.nav-ul .dropdown.user-weather, -.nav-ul .dropdown.video-latest, -.nav-ul .dropdown.videosummery, -.nav-ul .dropdown.youmay-like, -.nav-ul .header .dropdown.profile-data, -.nav-ul .menu-items .nav-menu .categories .dropdown.nav-category, -.nav-ul .menu-items .nav-menu .categories .nav-category a.dropdown, -.nav-ul .nav-category a.dropdown, -.nav-ul .original-popup .dropdown.browse-form, -.nav-ul .popular-slider .dropdown.slick-track, -.nav-ul .quick-slider .dropdown.slick-track, -.nav-ul .right-container .video-infocus .dropdown.video-small, -.nav-ul .rightsocial .dropdown.share-strip, -.nav-ul .rightsocial .dropdown.share-strip-social, -.nav-ul .shadow-card.video-card .dropdown.video-small, -.nav-ul .tbd-cont .tbc-border .dropdown.tbd-text, -.nav-ul .teamcolor .dropdown.team-d, -.nav-ul .topic-container.d-flex .dropdown.slick-track, -.nav-ul .topics-cont a.dropdown, -.nav-ul .topics-cont div.dropdown, -.nav-ul .topics .dropdown.topic, -.nav-ul .video-l-card .dropdown.card-detail, -.nav-ul a.dropdown[data-network=indiatimes], -.original-popup .nav-ul .dropdown.browse-form, -.popular-slider .nav-ul .dropdown.slick-track, -.quick-slider .nav-ul .dropdown.slick-track, -.right-container .video-infocus .nav-ul .dropdown.video-small, -.rightsocial .nav-ul .dropdown.share-strip, -.rightsocial .nav-ul .dropdown.share-strip-social, -.shadow-card.video-card .nav-ul .dropdown.video-small, -.tbd-cont .tbc-border .nav-ul .dropdown.tbd-text, -.teamcolor .nav-ul .dropdown.team-d, -.topic-container.d-flex .nav-ul .dropdown.slick-track, -.topics-cont .nav-ul a.dropdown, -.topics-cont .nav-ul div.dropdown, -.topics .nav-ul .dropdown.topic, -.video-l-card .nav-ul .dropdown.card-detail { - flex-direction: column; - transition: all .4s ease-in-out; -} - -.nav-ul .menu-right { - display: none; - padding-left: 51px; - width: 100%; - background-color: rgba(52, 87, 167, .05); - height: 100%; - padding-right: 10px; - transition: all .4s ease-in-out; -} - -.nav-ul .menu-right a { - font-size: .8px; - text-transform: capitalize; -} - -.nav-ul .category-cont { - width: 100%; -} - -.nav-ul .category-cont a { - font-weight: 700; - text-transform: uppercase; - padding-left: 10px; -} - -.nav-ul .nav-category { - line-height: 1; - max-height: 57px; -} - -.nav-ul .nav-category a { - text-transform: none; - font-weight: 700; - font-size: 1rem; - padding-bottom: 6px; - padding-top: 10px; - color: #3457a7; - border-bottom: 1px solid rgba(0, 0, 0, .1); -} - -.nav-ul .nav-category img { - width: 2.25rem; - height: 2.25rem; - margin-right: 1rem; - border-radius: 50%; - border: 1px solid #f1f1f1; - background: #fff; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); -} - -.nav-ul .nav-category svg { - width: 30px; - height: 30px; - transform: rotate(90deg); - transition: all .4s ease-in-out; -} - -.nav-ul .nav-category svg path { - fill: #3457a7; -} - -.nav-ul .nav-category.active svg { - transform: rotate(270deg); -} - -.w-48 { - width: 48px; -} - -.menu-social { - max-height: inherit; -} - -.menu-social span { - width: 100%; - text-align: left; - font-family: Verdana; - margin-top: 5px; - align-items: center; -} - -.menu-social a { - border: 0; - flex-direction: column; -} - -.article-newsletter .menu-social .newsletterinput a, -.brief-video .menu-social .video-small a, -.header .menu-social .profile-data a, -.menu-items .nav-menu .categories .menu-social .nav-category a, -.menu-items .nav-menu .categories .nav-category .menu-social a a, -.menu-social .art-social a, -.menu-social .article-newsletter .newsletterinput a, -.menu-social .author-row a, -.menu-social .block-header a, -.menu-social .breadcrumb.trunc a, -.menu-social .brief-video .video-small a, -.menu-social .browse-list a, -.menu-social .card-strip a, -.menu-social .card a, -.menu-social .comment-form a, -.menu-social .comment-post-box a, -.menu-social .comment-post-links a, -.menu-social .comment-post a, -.menu-social .comment a, -.menu-social .d-flex a, -.menu-social .daily-story a, -.menu-social .digital-left a, -.menu-social .digital-page a, -.menu-social .focus-card-body a, -.menu-social .header .profile-data a, -.menu-social .liver-two a, -.menu-social .login-container a, -.menu-social .menu-categories a, -.menu-social .menu-items .nav-menu .categories .nav-category a, -.menu-social .nav-ul .nav-category a, -.menu-social .open-header a, -.menu-social .org-tab a, -.menu-social .original-popup-header a, -.menu-social .original-popup .browse-form a, -.menu-social .original-top a, -.menu-social .ov-card-detail a, -.menu-social .ov-card-watch a, -.menu-social .ov-card a, -.menu-social .pie-chart a, -.menu-social .popular-slider .slick-track a, -.menu-social .preview-list-item.text a, -.menu-social .preview-list a, -.menu-social .profile-img a, -.menu-social .quick-slider .slick-track a, -.menu-social .quiz-list-row a, -.menu-social .quiz-list a, -.menu-social .quiz-result-box a, -.menu-social .r-card a, -.menu-social .readcard a, -.menu-social .retake-container a, -.menu-social .right-container .video-infocus .card-strip a, -.menu-social .right-container .video-infocus .video-small a, -.menu-social .rightsocial .share-strip-social a, -.menu-social .rightsocial .share-strip a, -.menu-social .scroll-header-right a, -.menu-social .section-big a, -.menu-social .sectiontrending a, -.menu-social .series a, -.menu-social .sh-tab a, -.menu-social .shadow-card.video-card .video-small a, -.menu-social .stories-now a, -.menu-social .story-now-circle a, -.menu-social .story-now a, -.menu-social .t-arrow a, -.menu-social .tbd-cont .tbc-border .tbd-text a, -.menu-social .team-mg a, -.menu-social .teamcolor a, -.menu-social .topic-cards a, -.menu-social .topic-container.d-flex .slick-track a, -.menu-social .topic-slide a, -.menu-social .topics-cont a a, -.menu-social .topics-cont div a, -.menu-social .topics .topic a, -.menu-social .toplogo a, -.menu-social .user-weather a, -.menu-social .video-l-card .card-detail a, -.menu-social .video-latest a, -.menu-social .videosummery a, -.menu-social .youmay-like a, -.menu-social a[data-network=indiatimes] a, -.nav-ul .menu-social .nav-category a, -.nav-ul .nav-category .menu-social a a, -.original-popup .menu-social .browse-form a, -.popular-slider .menu-social .slick-track a, -.quick-slider .menu-social .slick-track a, -.right-container .video-infocus .menu-social .card-strip a, -.right-container .video-infocus .menu-social .video-small a, -.rightsocial .menu-social .share-strip-social a, -.rightsocial .menu-social .share-strip a, -.shadow-card.video-card .menu-social .video-small a, -.tbd-cont .tbc-border .menu-social .tbd-text a, -.teamcolor .menu-social .team-d a, -.topic-container.d-flex .menu-social .slick-track a, -.topics-cont .menu-social a a, -.topics-cont .menu-social div a, -.topics .menu-social .topic a, -.video-l-card .menu-social .card-detail a { - padding-left: 0; - margin-right: 20px; - margin-top: -5px; -} - -.menu-social a svg { - transform: rotate(0deg); -} - -.preact-card { - min-width: 22%; - max-width: 22%; -} - -.preact-card .card { - width: 100%; -} - -.menu-items .dropdown .block-desc, -.menu-items .dropdown .block-header-title, -.menu-items .dropdown .comment-top, -.menu-items .dropdown .h-dinline, -.menu-items .dropdown .topic-slide { - color: #fff; -} - -.menu-items .dropdown .block-header-all { - display: none; -} - -.menu-items .dropdown .webseries-slider-slide { - margin-right: 10px; -} - -.menu-items .dropdown .webseries-slider-slide:nth-child(3n) { - margin-right: 0; -} - -.user-dropdown { - position: relative; -} - -.user-dropdown .open-dropdon { - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - padding: 10px; - background-color: #fff; - position: absolute; - right: -10px; - max-width: 300px; - min-width: 300px; - top: 35px; - z-index: 999; -} - -.user-dropdown .inner-cont { - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .05); -} - -.user-dropdown .inner-cont a { - border-bottom: 1px solid rgba(0, 0, 0, .1); - padding: 15px 12px 11px; - display: block; - text-align: left; - color: #000; -} - -.user-dropdown .inner-cont a svg { - vertical-align: -8px; - margin-right: 10px; -} - -.user-dropdown .inner-cont a svg path { - fill: #3457a7; -} - -.user-dropdown .inner-cont a:last-child { - border-bottom: 0; -} - -.user-dropdown .logout { - font-weight: 700; - background: #3457a7; - border-radius: 4px; - color: #fff; - display: block; - padding: 15px; - text-align: center; - margin-bottom: 10px; -} - -.user-dropdown.active .open-dropdon, -.user-dropdown li:hover .open-dropdon { - visibility: visible; - display: block; -} - -.open-dropdon, -li.user-dropdown .open-dropdon { - visibility: hidden; - display: none; -} - -.profile-img.profile-data { - min-height: 58px; - margin-top: -20px; -} - -.profile-img.profile-data .bgwhite span { - text-overflow: ellipsis; - max-width: 70px; - overflow: hidden; - white-space: nowrap; - display: inline-block; - vertical-align: -3px; -} - -.user-weather { - align-items: center; - border-bottom: 1px solid rgba(0, 0, 0, .1); - padding: 12px; -} - -.user-weather .uder-left { - text-align: left; -} - -.user-weather .name { - font-family: Verdana; - color: #000; - margin-bottom: 5px; -} - -.user-weather .name span { - font-weight: 700; -} - -.user-weather .user-right { - text-align: center; -} - -.user-weather .user-right span { - display: block; -} - -a.mobile-login { - background: #fff; - border-radius: 12px; - text-align: center; - padding: 4px 10px; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - color: #3457a7; -} - -.article-header .logo svg { - width: 40px; - height: 40px; - margin-top: -13px; -} - -.article-header .logo svg path { - fill: #3457a7; -} - -.go-back { - font-size: .8rem; - color: #3457a7; - display: flex; - align-items: center; -} - -.go-back .back-icon { - margin-right: 5px; - transform: rotate(-180deg); -} - -.go-back .back-icon svg { - width: 1rem; - height: 1rem; -} - -.art-s-name { - font-weight: 700; - font-size: 13px; - color: #3457a7; - font-style: italic; - margin-right: 20px; - margin-left: 8px; -} - -.black-theme { - background: rgba(0, 0, 0, .87); -} - -.black-theme .header { - background: #3457a7; -} - -.black-theme .header .dropbtn span { - color: #fff; -} - -.black-theme .menu-width { - background: hsla(0, 0%, 100%, .1); -} - -.black-theme .menu-width svg path { - fill: #fff; -} - -.m-arrow { - position: absolute; - top: -2px; - right: -23px; -} - -.black-theme .m-arrow svg path { - fill: #000; -} - -.header-bg { - min-height: 110px; - background-position: 50%; - background-repeat: no-repeat; - background-size: cover; - display: block; - text-align: center; -} - -.header-bg .header, -.header-bg .sectiontrending { - background: transparent; -} - -.header-bg .header { - border-bottom: 0; -} - -.header-bg .sectiontrending { - box-shadow: 3px 10px 12px -14px rgba(0, 0, 0, .56); -} - -.header-bg .dummy-div { - display: none; -} - -.darkimg:not(.floating-header) .dropbtn svg path, -.darkimg:not(.floating-header) .logo svg path, -.darkimg:not(.floating-header) .m-arrow svg path { - fill: #fff; -} - -.darkimg:not(.floating-header) .dropbtn span, -.darkimg:not(.floating-header) .st-text, -.darkimg:not(.floating-header) .st-text:hover { - color: #fff; -} - -.darkimg:not(.floating-header) .st-text:hover { - border-bottom: 4px solid #fff; -} - -.black-theme .dropbtn svg path, -.black-theme .logo svg path, -.black-theme .m-arrow svg path { - fill: #fff; -} - -.black-theme .header-bg { - background-image: none; -} - -.black-theme .header-bg.floating-header, -.black-theme .header-bg .header, -.black-theme .header-bg .sectiontrending { - background: linear-gradient(270deg, #3948da, #0927b6); -} - -.black-theme .header-bg.floating-header .header { - min-height: 60px; -} - -.black-theme .header-bg.floating-header .sectiontrending { - background: linear-gradient(270deg, #3948da, #0927b6); - border-bottom: 0; - box-shadow: none; -} - -.black-theme .st-text, -.black-theme .st-text:hover { - color: #fff; -} - -.black-theme .st-text:hover { - border-bottom: 4px solid #fce44d; -} - -.black-theme .open-header .logo svg path, -.black-theme .open-header .menu-width svg path { - fill: #3457a7; -} - -.header-bg.floating-header .sectiontrending .navbar-nav { - margin-top: -3px; - margin-bottom: 4px; -} - -.open-header { - text-align: left; - border-bottom: 1px solid #eee; - padding-bottom: 8px; -} - -.open-header .menu-width { - display: inline-block; - background: #fce44d; - margin-right: -20px; - z-index: 2; - position: relative; - cursor: pointer; -} - -.open-header .menu-width svg { - width: 14px; -} - -.section-n { - width: 100%; -} - -.menu-right.in, -.overlay-open .fixed.menu-items { - display: block; -} - -.art-s-name, -.fixed.menu-items { - display: none; -} - -.article-header.scroll-down .art-s-name, -.floating-header .art-s-name { - display: inline-block; - vertical-align: 12px; -} - -.ad-cls.art-social:not(.clearfix):before, -.ad-cls.author-row:not(.clearfix):before, -.ad-cls.block-header:not(.clearfix):before, -.ad-cls.breadcrumb.trunc:not(.clearfix):before, -.ad-cls.browse-list:not(.clearfix):before, -.ad-cls.card-strip:not(.clearfix):before, -.ad-cls.card:not(.clearfix):before, -.ad-cls.comment-form:not(.clearfix):before, -.ad-cls.comment-post-box:not(.clearfix):before, -.ad-cls.comment-post-links:not(.clearfix):before, -.ad-cls.comment-post:not(.clearfix):before, -.ad-cls.comment:not(.clearfix):before, -.ad-cls.daily-story:not(.clearfix):before, -.ad-cls.digital-left:not(.clearfix):before, -.ad-cls.digital-page:not(.clearfix):before, -.ad-cls.focus-card-body:not(.clearfix):before, -.ad-cls.liver-two:not(.clearfix):before, -.ad-cls.login-container:not(.clearfix):before, -.ad-cls.menu-categories:not(.clearfix):before, -.ad-cls.org-tab:not(.clearfix):before, -.ad-cls.original-popup-header:not(.clearfix):before, -.ad-cls.original-top:not(.clearfix):before, -.ad-cls.ov-card-detail:not(.clearfix):before, -.ad-cls.ov-card-watch:not(.clearfix):before, -.ad-cls.ov-card:not(.clearfix):before, -.ad-cls.pie-chart:not(.clearfix):before, -.ad-cls.preview-list-item.text:not(.clearfix):before, -.ad-cls.preview-list:not(.clearfix):before, -.ad-cls.profile-img:not(.clearfix):before, -.ad-cls.quiz-list-row:not(.clearfix):before, -.ad-cls.quiz-list:not(.clearfix):before, -.ad-cls.quiz-result-box:not(.clearfix):before, -.ad-cls.r-card:not(.clearfix):before, -.ad-cls.readcard:not(.clearfix):before, -.ad-cls.retake-container:not(.clearfix):before, -.ad-cls.section-big:not(.clearfix):before, -.ad-cls.sectiontrending:not(.clearfix):before, -.ad-cls.series:not(.clearfix):before, -.ad-cls.sh-tab:not(.clearfix):before, -.ad-cls.stories-now:not(.clearfix):before, -.ad-cls.story-now-circle:not(.clearfix):before, -.ad-cls.story-now:not(.clearfix):before, -.ad-cls.t-arrow:not(.clearfix):before, -.ad-cls.team-mg:not(.clearfix):before, -.ad-cls.teamcolor:not(.clearfix):before, -.ad-cls.topic-cards:not(.clearfix):before, -.ad-cls.topic-slide:not(.clearfix):before, -.ad-cls.toplogo:not(.clearfix):before, -.ad-cls.video-latest:not(.clearfix):before, -.ad-cls.videosummery:not(.clearfix):before, -.ad-cls.youmay-like:not(.clearfix):before, -.ads-container.art-social, -.ads-container.author-row, -.ads-container.block-header, -.ads-container.breadcrumb.trunc, -.ads-container.browse-list, -.ads-container.card, -.ads-container.card-strip, -.ads-container.comment, -.ads-container.comment-form, -.ads-container.comment-post, -.ads-container.comment-post-box, -.ads-container.comment-post-links, -.ads-container.daily-story, -.ads-container.digital-left, -.ads-container.digital-page, -.ads-container.focus-card-body, -.ads-container.liver-two, -.ads-container.login-container, -.ads-container.menu-categories, -.ads-container.open-header, -.ads-container.org-tab, -.ads-container.original-popup-header, -.ads-container.original-top, -.ads-container.ov-card, -.ads-container.ov-card-detail, -.ads-container.ov-card-watch, -.ads-container.pie-chart, -.ads-container.preview-list, -.ads-container.preview-list-item.text, -.ads-container.profile-img, -.ads-container.quiz-list, -.ads-container.quiz-list-row, -.ads-container.quiz-result-box, -.ads-container.r-card, -.ads-container.readcard, -.ads-container.retake-container, -.ads-container.scroll-header-right, -.ads-container.section-big, -.ads-container.sectiontrending, -.ads-container.series, -.ads-container.sh-tab, -.ads-container.stories-now, -.ads-container.story-now, -.ads-container.story-now-circle, -.ads-container.t-arrow, -.ads-container.team-mg, -.ads-container.teamcolor, -.ads-container.topic-cards, -.ads-container.topic-slide, -.ads-container.toplogo, -.ads-container.user-weather, -.ads-container.video-latest, -.ads-container.videosummery, -.ads-container.youmay-like, -.art-social.article-newsletter, -.art-social.circle-a, -.art-social.l-form-btn, -.art-social.login-container, -.art-social.penalties, -.art-social.quiz-result-box, -.art-social.story-now-item, -.art-social.total-stories, -.article-newsletter .ad-cls.newsletterinput:not(.clearfix):before, -.article-newsletter .ads-container.newsletterinput, -.article-newsletter .article-newsletter.newsletterinput, -.article-newsletter.author-row, -.article-newsletter.block-header, -.article-newsletter.browse-list, -.article-newsletter.card, -.article-newsletter.card-strip, -.article-newsletter .center-error .newsletterinput.alert, -.article-newsletter .circle-a.newsletterinput, -.article-newsletter.comment, -.article-newsletter.comment-form, -.article-newsletter.comment-post, -.article-newsletter.comment-post-box, -.article-newsletter.comment-post-links, -.article-newsletter .error-page h2.newsletterinput, -.article-newsletter .image_container .clickreval span.newsletterinput, -.article-newsletter.liver-two, -.article-newsletter.login-container, -.article-newsletter .menu-categories .category.newsletterinput, -.article-newsletter .newsletterinput.l-form-btn, -.article-newsletter .newsletterinput.login-container, -.article-newsletter .newsletterinput.penalties, -.article-newsletter .newsletterinput.quiz-result-box, -.article-newsletter.org-tab, -.article-newsletter.original-popup-header, -.article-newsletter.original-top, -.article-newsletter.ov-card, -.article-newsletter.ov-card-detail, -.article-newsletter.ov-card-watch, -.article-newsletter.preview-list, -.article-newsletter.preview-list-item.text, -.article-newsletter.profile-img, -.article-newsletter.quiz-list, -.article-newsletter.quiz-list-row, -.article-newsletter.quiz-result-box, -.article-newsletter.r-card, -.article-newsletter.readcard, -.article-newsletter.retake-container, -.article-newsletter.series, -.article-newsletter .story-now-item.newsletterinput, -.article-newsletter.t-arrow, -.article-newsletter.team-mg, -.article-newsletter.teamcolor, -.article-newsletter .text-center.newsletterinput, -.article-newsletter .time-line.newsletterinput, -.article-newsletter .topics .newsletterinput.topic, -.article-newsletter.toplogo, -.article-newsletter .total-stories.newsletterinput, -.article-newsletter.video-latest, -.article-newsletter.videosummery, -.author-row.l-form-btn, -.author-row.login-container, -.author-row.penalties, -.author-row.quiz-result-box, -.block-header.l-form-btn, -.block-header.login-container, -.block-header.quiz-result-box, -.breadcrumb.trunc.article-newsletter, -.breadcrumb.trunc.circle-a, -.breadcrumb.trunc.l-form-btn, -.breadcrumb.trunc.login-container, -.breadcrumb.trunc.penalties, -.breadcrumb.trunc.quiz-result-box, -.breadcrumb.trunc.story-now-item, -.breadcrumb.trunc.total-stories, -.brief-video .ad-cls.video-small:not(.clearfix):before, -.brief-video .ads-container.video-small, -.brief-video .center-error .video-small.alert, -.brief-video .circle-a.video-small, -.brief-video .error-page h2.video-small, -.brief-video .image_container .clickreval span.video-small, -.brief-video .menu-categories .category.video-small, -.brief-video .text-center.video-small, -.brief-video .time-line.video-small, -.brief-video .topics .video-small.topic, -.brief-video .total-stories.video-small, -.brief-video .video-small.article-newsletter, -.brief-video .video-small.l-form-btn, -.brief-video .video-small.login-container, -.brief-video .video-small.penalties, -.brief-video .video-small.quiz-result-box, -.brief-video .video-small.story-now-item, -.browse-list.l-form-btn, -.browse-list.login-container, -.browse-list.penalties, -.browse-list.quiz-result-box, -.card-strip.l-form-btn, -.card-strip.login-container, -.card-strip.quiz-result-box, -.card.l-form-btn, -.card.login-container, -.card.quiz-result-box, -.center-error .alert.login-container, -.center-error .alert.quiz-result-box, -.center-error .art-social.alert, -.center-error .article-newsletter .newsletterinput.alert, -.center-error .author-row.alert, -.center-error .block-header.alert, -.center-error .breadcrumb.trunc.alert, -.center-error .brief-video .video-small.alert, -.center-error .browse-list.alert, -.center-error .card-strip.alert, -.center-error .card.alert, -.center-error .comment-form.alert, -.center-error .comment-post-box.alert, -.center-error .comment-post-links.alert, -.center-error .comment-post.alert, -.center-error .comment.alert, -.center-error .d-flex.alert, -.center-error .daily-story.alert, -.center-error .digital-left.alert, -.center-error .digital-page.alert, -.center-error .focus-card-body.alert, -.center-error .header .profile-data.alert, -.center-error .liver-two.alert, -.center-error .menu-categories.alert, -.center-error .menu-items .nav-menu .categories .nav-category.alert, -.center-error .menu-items .nav-menu .categories .nav-category a.alert, -.center-error .nav-ul .nav-category.alert, -.center-error .nav-ul .nav-category a.alert, -.center-error .open-header.alert, -.center-error .org-tab.alert, -.center-error .original-popup-header.alert, -.center-error .original-popup .browse-form.alert, -.center-error .original-top.alert, -.center-error .ov-card-detail.alert, -.center-error .ov-card-watch.alert, -.center-error .ov-card.alert, -.center-error .pie-chart.alert, -.center-error .popular-slider .slick-track.alert, -.center-error .preview-list-item.text.alert, -.center-error .preview-list.alert, -.center-error .profile-img.alert, -.center-error .quick-slider .slick-track.alert, -.center-error .quiz-list-row.alert, -.center-error .quiz-list.alert, -.center-error .r-card.alert, -.center-error .readcard.alert, -.center-error .retake-container.alert, -.center-error .right-container .video-infocus .card-strip.alert, -.center-error .right-container .video-infocus .video-small.alert, -.center-error .rightsocial .share-strip-social.alert, -.center-error .rightsocial .share-strip.alert, -.center-error .scroll-header-right.alert, -.center-error .section-big.alert, -.center-error .sectiontrending.alert, -.center-error .series.alert, -.center-error .sh-tab.alert, -.center-error .shadow-card.video-card .video-small.alert, -.center-error .stories-now.alert, -.center-error .story-now-circle.alert, -.center-error .story-now.alert, -.center-error .t-arrow.alert, -.center-error .tbd-cont .tbc-border .tbd-text.alert, -.center-error .team-mg.alert, -.center-error .teamcolor.alert, -.center-error .teamcolor .team-d.alert, -.center-error .topic-cards.alert, -.center-error .topic-container.d-flex .slick-track.alert, -.center-error .topic-slide.alert, -.center-error .topics-cont a.alert, -.center-error .topics-cont div.alert, -.center-error .topics .alert.topic, -.center-error .toplogo.alert, -.center-error .user-weather.alert, -.center-error .video-l-card .card-detail.alert, -.center-error .video-latest.alert, -.center-error .videosummery.alert, -.center-error .youmay-like.alert, -.center-error a.alert[data-network=indiatimes], -.circle-a.author-row, -.circle-a.block-header, -.circle-a.browse-list, -.circle-a.card, -.circle-a.card-strip, -.circle-a.comment, -.circle-a.comment-form, -.circle-a.comment-post, -.circle-a.comment-post-box, -.circle-a.comment-post-links, -.circle-a.liver-two, -.circle-a.login-container, -.circle-a.org-tab, -.circle-a.original-popup-header, -.circle-a.original-top, -.circle-a.ov-card, -.circle-a.ov-card-detail, -.circle-a.ov-card-watch, -.circle-a.pie-chart, -.circle-a.preview-list, -.circle-a.preview-list-item.text, -.circle-a.profile-img, -.circle-a.quiz-list, -.circle-a.quiz-list-row, -.circle-a.quiz-result-box, -.circle-a.r-card, -.circle-a.readcard, -.circle-a.retake-container, -.circle-a.series, -.circle-a.stories-now, -.circle-a.story-now, -.circle-a.story-now-circle, -.circle-a.t-arrow, -.circle-a.team-mg, -.circle-a.teamcolor, -.circle-a.toplogo, -.circle-a.video-latest, -.circle-a.videosummery, -.comment-form.l-form-btn, -.comment-form.login-container, -.comment-form.quiz-result-box, -.comment-post-box.l-form-btn, -.comment-post-box.login-container, -.comment-post-box.quiz-result-box, -.comment-post-links.l-form-btn, -.comment-post-links.login-container, -.comment-post-links.quiz-result-box, -.comment-post.l-form-btn, -.comment-post.login-container, -.comment-post.quiz-result-box, -.comment.l-form-btn, -.comment.login-container, -.comment.quiz-result-box, -.d-flex.ad-cls:not(.clearfix):before, -.d-flex.ads-container, -.d-flex.article-newsletter, -.d-flex.circle-a, -.d-flex.l-form-btn, -.d-flex.penalties, -.d-flex.story-now-item, -.d-flex.text-center, -.d-flex.time-line, -.d-flex.total-stories, -.daily-story.article-newsletter, -.daily-story.circle-a, -.daily-story.l-form-btn, -.daily-story.login-container, -.daily-story.penalties, -.daily-story.quiz-result-box, -.daily-story.story-now-item, -.daily-story.total-stories, -.digital-left.article-newsletter, -.digital-left.circle-a, -.digital-left.l-form-btn, -.digital-left.login-container, -.digital-left.penalties, -.digital-left.quiz-result-box, -.digital-left.story-now-item, -.digital-left.time-line, -.digital-left.total-stories, -.digital-page.article-newsletter, -.digital-page.circle-a, -.digital-page.l-form-btn, -.digital-page.login-container, -.digital-page.penalties, -.digital-page.quiz-result-box, -.digital-page.story-now-item, -.digital-page.time-line, -.digital-page.total-stories, -.error-page .article-newsletter h2.newsletterinput, -.error-page .brief-video h2.video-small, -.error-page .header h2.profile-data, -.error-page .menu-items .nav-menu .categories h2.nav-category, -.error-page .nav-ul h2.nav-category, -.error-page .original-popup h2.browse-form, -.error-page .popular-slider h2.slick-track, -.error-page .quick-slider h2.slick-track, -.error-page .right-container .video-infocus h2.card-strip, -.error-page .right-container .video-infocus h2.video-small, -.error-page .rightsocial h2.share-strip, -.error-page .rightsocial h2.share-strip-social, -.error-page .shadow-card.video-card h2.video-small, -.error-page .tbd-cont .tbc-border h2.tbd-text, -.error-page .teamcolor h2.team-d, -.error-page .topic-container.d-flex h2.slick-track, -.error-page .topics h2.topic, -.error-page .video-l-card h2.card-detail, -.error-page h2.art-social, -.error-page h2.author-row, -.error-page h2.block-header, -.error-page h2.breadcrumb.trunc, -.error-page h2.browse-list, -.error-page h2.card, -.error-page h2.card-strip, -.error-page h2.comment, -.error-page h2.comment-form, -.error-page h2.comment-post, -.error-page h2.comment-post-box, -.error-page h2.comment-post-links, -.error-page h2.d-flex, -.error-page h2.daily-story, -.error-page h2.digital-left, -.error-page h2.digital-page, -.error-page h2.focus-card-body, -.error-page h2.liver-two, -.error-page h2.login-container, -.error-page h2.menu-categories, -.error-page h2.open-header, -.error-page h2.org-tab, -.error-page h2.original-popup-header, -.error-page h2.original-top, -.error-page h2.ov-card, -.error-page h2.ov-card-detail, -.error-page h2.ov-card-watch, -.error-page h2.pie-chart, -.error-page h2.preview-list, -.error-page h2.preview-list-item.text, -.error-page h2.profile-img, -.error-page h2.quiz-list, -.error-page h2.quiz-list-row, -.error-page h2.quiz-result-box, -.error-page h2.r-card, -.error-page h2.readcard, -.error-page h2.retake-container, -.error-page h2.scroll-header-right, -.error-page h2.section-big, -.error-page h2.sectiontrending, -.error-page h2.series, -.error-page h2.sh-tab, -.error-page h2.stories-now, -.error-page h2.story-now, -.error-page h2.story-now-circle, -.error-page h2.t-arrow, -.error-page h2.team-mg, -.error-page h2.teamcolor, -.error-page h2.topic-cards, -.error-page h2.topic-slide, -.error-page h2.toplogo, -.error-page h2.user-weather, -.error-page h2.video-latest, -.error-page h2.videosummery, -.error-page h2.youmay-like, -.focus-card-body.article-newsletter, -.focus-card-body.circle-a, -.focus-card-body.l-form-btn, -.focus-card-body.login-container, -.focus-card-body.penalties, -.focus-card-body.quiz-result-box, -.focus-card-body.story-now-item, -.focus-card-body.total-stories, -.header .ads-container.profile-data, -.header .center-error .profile-data.alert, -.header .error-page h2.profile-data, -.header .image_container .clickreval span.profile-data, -.header .menu-categories .profile-data.category, -.header .profile-data.ad-cls:not(.clearfix):before, -.header .profile-data.article-newsletter, -.header .profile-data.circle-a, -.header .profile-data.l-form-btn, -.header .profile-data.login-container, -.header .profile-data.penalties, -.header .profile-data.quiz-result-box, -.header .profile-data.story-now-item, -.header .profile-data.time-line, -.header .profile-data.total-stories, -.header .text-center.profile-data, -.header .topics .profile-data.topic, -.image_container .clickreval .article-newsletter span.newsletterinput, -.image_container .clickreval .brief-video span.video-small, -.image_container .clickreval .header span.profile-data, -.image_container .clickreval .menu-items .nav-menu .categories span.nav-category, -.image_container .clickreval .nav-ul span.nav-category, -.image_container .clickreval .original-popup span.browse-form, -.image_container .clickreval .popular-slider span.slick-track, -.image_container .clickreval .quick-slider span.slick-track, -.image_container .clickreval .right-container .video-infocus span.card-strip, -.image_container .clickreval .right-container .video-infocus span.video-small, -.image_container .clickreval .rightsocial span.share-strip, -.image_container .clickreval .rightsocial span.share-strip-social, -.image_container .clickreval .shadow-card.video-card span.video-small, -.image_container .clickreval .tbd-cont .tbc-border span.tbd-text, -.image_container .clickreval .teamcolor span.team-d, -.image_container .clickreval .topic-container.d-flex span.slick-track, -.image_container .clickreval .topics span.topic, -.image_container .clickreval .video-l-card span.card-detail, -.image_container .clickreval span.art-social, -.image_container .clickreval span.author-row, -.image_container .clickreval span.block-header, -.image_container .clickreval span.breadcrumb.trunc, -.image_container .clickreval span.browse-list, -.image_container .clickreval span.card, -.image_container .clickreval span.card-strip, -.image_container .clickreval span.comment, -.image_container .clickreval span.comment-form, -.image_container .clickreval span.comment-post, -.image_container .clickreval span.comment-post-box, -.image_container .clickreval span.comment-post-links, -.image_container .clickreval span.d-flex, -.image_container .clickreval span.daily-story, -.image_container .clickreval span.digital-left, -.image_container .clickreval span.digital-page, -.image_container .clickreval span.focus-card-body, -.image_container .clickreval span.liver-two, -.image_container .clickreval span.login-container, -.image_container .clickreval span.menu-categories, -.image_container .clickreval span.open-header, -.image_container .clickreval span.org-tab, -.image_container .clickreval span.original-popup-header, -.image_container .clickreval span.original-top, -.image_container .clickreval span.ov-card, -.image_container .clickreval span.ov-card-detail, -.image_container .clickreval span.ov-card-watch, -.image_container .clickreval span.pie-chart, -.image_container .clickreval span.preview-list, -.image_container .clickreval span.preview-list-item.text, -.image_container .clickreval span.profile-img, -.image_container .clickreval span.quiz-list, -.image_container .clickreval span.quiz-list-row, -.image_container .clickreval span.quiz-result-box, -.image_container .clickreval span.r-card, -.image_container .clickreval span.readcard, -.image_container .clickreval span.retake-container, -.image_container .clickreval span.scroll-header-right, -.image_container .clickreval span.section-big, -.image_container .clickreval span.sectiontrending, -.image_container .clickreval span.series, -.image_container .clickreval span.sh-tab, -.image_container .clickreval span.stories-now, -.image_container .clickreval span.story-now, -.image_container .clickreval span.story-now-circle, -.image_container .clickreval span.t-arrow, -.image_container .clickreval span.team-mg, -.image_container .clickreval span.teamcolor, -.image_container .clickreval span.topic-cards, -.image_container .clickreval span.topic-slide, -.image_container .clickreval span.toplogo, -.image_container .clickreval span.user-weather, -.image_container .clickreval span.video-latest, -.image_container .clickreval span.videosummery, -.image_container .clickreval span.youmay-like, -.l-form-btn.login-container, -.l-form-btn.quiz-result-box, -.liver-two.l-form-btn, -.liver-two.login-container, -.liver-two.penalties, -.liver-two.quiz-result-box, -.login-container, -.menu-categories.article-newsletter, -.menu-categories .article-newsletter .category.newsletterinput, -.menu-categories .brief-video .category.video-small, -.menu-categories .category.art-social, -.menu-categories .category.author-row, -.menu-categories .category.block-header, -.menu-categories .category.breadcrumb.trunc, -.menu-categories .category.browse-list, -.menu-categories .category.card, -.menu-categories .category.card-strip, -.menu-categories .category.comment, -.menu-categories .category.comment-form, -.menu-categories .category.comment-post, -.menu-categories .category.comment-post-box, -.menu-categories .category.comment-post-links, -.menu-categories .category.daily-story, -.menu-categories .category.focus-card-body, -.menu-categories .category.liver-two, -.menu-categories .category.login-container, -.menu-categories .category.org-tab, -.menu-categories .category.original-popup-header, -.menu-categories .category.original-top, -.menu-categories .category.ov-card, -.menu-categories .category.ov-card-detail, -.menu-categories .category.ov-card-watch, -.menu-categories .category.pie-chart, -.menu-categories .category.preview-list, -.menu-categories .category.preview-list-item.text, -.menu-categories .category.profile-img, -.menu-categories .category.quiz-list, -.menu-categories .category.quiz-list-row, -.menu-categories .category.quiz-result-box, -.menu-categories .category.r-card, -.menu-categories .category.readcard, -.menu-categories .category.retake-container, -.menu-categories .category.section-big, -.menu-categories .category.sectiontrending, -.menu-categories .category.series, -.menu-categories .category.sh-tab, -.menu-categories .category.stories-now, -.menu-categories .category.story-now, -.menu-categories .category.story-now-circle, -.menu-categories .category.t-arrow, -.menu-categories .category.team-mg, -.menu-categories .category.teamcolor, -.menu-categories .category.topic-cards, -.menu-categories .category.topic-slide, -.menu-categories .category.toplogo, -.menu-categories .category.video-latest, -.menu-categories .category.videosummery, -.menu-categories .category.youmay-like, -.menu-categories.circle-a, -.menu-categories .d-flex.category, -.menu-categories .digital-left.category, -.menu-categories .digital-page.category, -.menu-categories .header .profile-data.category, -.menu-categories.l-form-btn, -.menu-categories.login-container, -.menu-categories .menu-categories.category, -.menu-categories .menu-items .nav-menu .categories .nav-category.category, -.menu-categories .menu-items .nav-menu .categories .nav-category a.category, -.menu-categories .nav-ul .nav-category.category, -.menu-categories .nav-ul .nav-category a.category, -.menu-categories .open-header.category, -.menu-categories .original-popup .category.browse-form, -.menu-categories.penalties, -.menu-categories .popular-slider .category.slick-track, -.menu-categories .quick-slider .category.slick-track, -.menu-categories.quiz-result-box, -.menu-categories .right-container .video-infocus .card-strip.category, -.menu-categories .right-container .video-infocus .category.video-small, -.menu-categories .rightsocial .category.share-strip, -.menu-categories .rightsocial .category.share-strip-social, -.menu-categories .scroll-header-right.category, -.menu-categories .shadow-card.video-card .category.video-small, -.menu-categories.story-now-item, -.menu-categories .tbd-cont .tbc-border .category.tbd-text, -.menu-categories .teamcolor .category.team-d, -.menu-categories.time-line, -.menu-categories .topic-container.d-flex .category.slick-track, -.menu-categories .topics-cont a.category, -.menu-categories .topics-cont div.category, -.menu-categories .topics .category.topic, -.menu-categories.total-stories, -.menu-categories .user-weather.category, -.menu-categories .video-l-card .category.card-detail, -.menu-categories a.category[data-network=indiatimes], -.menu-items .nav-menu .categories .ads-container.nav-category, -.menu-items .nav-menu .categories .center-error .nav-category.alert, -.menu-items .nav-menu .categories .error-page h2.nav-category, -.menu-items .nav-menu .categories .image_container .clickreval span.nav-category, -.menu-items .nav-menu .categories .menu-categories .nav-category.category, -.menu-items .nav-menu .categories .nav-category.ad-cls:not(.clearfix):before, -.menu-items .nav-menu .categories .nav-category.article-newsletter, -.menu-items .nav-menu .categories .nav-category .center-error a.alert, -.menu-items .nav-menu .categories .nav-category.circle-a, -.menu-items .nav-menu .categories .nav-category.l-form-btn, -.menu-items .nav-menu .categories .nav-category.login-container, -.menu-items .nav-menu .categories .nav-category .menu-categories a.category, -.menu-items .nav-menu .categories .nav-category.penalties, -.menu-items .nav-menu .categories .nav-category.quiz-result-box, -.menu-items .nav-menu .categories .nav-category.story-now-item, -.menu-items .nav-menu .categories .nav-category.time-line, -.menu-items .nav-menu .categories .nav-category .topics a.topic, -.menu-items .nav-menu .categories .nav-category.total-stories, -.menu-items .nav-menu .categories .nav-category a.ad-cls:not(.clearfix):before, -.menu-items .nav-menu .categories .nav-category a.ads-container, -.menu-items .nav-menu .categories .nav-category a.article-newsletter, -.menu-items .nav-menu .categories .nav-category a.circle-a, -.menu-items .nav-menu .categories .nav-category a.l-form-btn, -.menu-items .nav-menu .categories .nav-category a.login-container, -.menu-items .nav-menu .categories .nav-category a.penalties, -.menu-items .nav-menu .categories .nav-category a.quiz-result-box, -.menu-items .nav-menu .categories .nav-category a.story-now-item, -.menu-items .nav-menu .categories .nav-category a.text-center, -.menu-items .nav-menu .categories .nav-category a.time-line, -.menu-items .nav-menu .categories .nav-category a.total-stories, -.menu-items .nav-menu .categories .text-center.nav-category, -.menu-items .nav-menu .categories .topics .nav-category.topic, -.nav-ul .ads-container.nav-category, -.nav-ul .center-error .nav-category.alert, -.nav-ul .error-page h2.nav-category, -.nav-ul .image_container .clickreval span.nav-category, -.nav-ul .menu-categories .nav-category.category, -.nav-ul .nav-category.ad-cls:not(.clearfix):before, -.nav-ul .nav-category.article-newsletter, -.nav-ul .nav-category .center-error a.alert, -.nav-ul .nav-category.circle-a, -.nav-ul .nav-category.l-form-btn, -.nav-ul .nav-category.login-container, -.nav-ul .nav-category .menu-categories a.category, -.nav-ul .nav-category.penalties, -.nav-ul .nav-category.quiz-result-box, -.nav-ul .nav-category.story-now-item, -.nav-ul .nav-category.time-line, -.nav-ul .nav-category .topics a.topic, -.nav-ul .nav-category.total-stories, -.nav-ul .nav-category a.ad-cls:not(.clearfix):before, -.nav-ul .nav-category a.ads-container, -.nav-ul .nav-category a.article-newsletter, -.nav-ul .nav-category a.circle-a, -.nav-ul .nav-category a.l-form-btn, -.nav-ul .nav-category a.login-container, -.nav-ul .nav-category a.penalties, -.nav-ul .nav-category a.quiz-result-box, -.nav-ul .nav-category a.story-now-item, -.nav-ul .nav-category a.text-center, -.nav-ul .nav-category a.time-line, -.nav-ul .nav-category a.total-stories, -.nav-ul .text-center.nav-category, -.nav-ul .topics .nav-category.topic, -.open-header.ad-cls:not(.clearfix):before, -.open-header.article-newsletter, -.open-header.circle-a, -.open-header.l-form-btn, -.open-header.login-container, -.open-header.penalties, -.open-header.quiz-result-box, -.open-header.story-now-item, -.open-header.time-line, -.open-header.total-stories, -.org-tab.l-form-btn, -.org-tab.login-container, -.org-tab.penalties, -.org-tab.quiz-result-box, -.original-popup-header.l-form-btn, -.original-popup-header.login-container, -.original-popup-header.penalties, -.original-popup-header.quiz-result-box, -.original-popup .ad-cls.browse-form:not(.clearfix):before, -.original-popup .ads-container.browse-form, -.original-popup .article-newsletter.browse-form, -.original-popup .browse-form.l-form-btn, -.original-popup .browse-form.login-container, -.original-popup .browse-form.penalties, -.original-popup .browse-form.quiz-result-box, -.original-popup .center-error .browse-form.alert, -.original-popup .circle-a.browse-form, -.original-popup .error-page h2.browse-form, -.original-popup .image_container .clickreval span.browse-form, -.original-popup .menu-categories .category.browse-form, -.original-popup .story-now-item.browse-form, -.original-popup .text-center.browse-form, -.original-popup .time-line.browse-form, -.original-popup .topics .browse-form.topic, -.original-popup .total-stories.browse-form, -.original-top.l-form-btn, -.original-top.login-container, -.original-top.penalties, -.original-top.quiz-result-box, -.ov-card-detail.l-form-btn, -.ov-card-detail.login-container, -.ov-card-detail.penalties, -.ov-card-detail.quiz-result-box, -.ov-card-watch.l-form-btn, -.ov-card-watch.login-container, -.ov-card-watch.penalties, -.ov-card-watch.quiz-result-box, -.ov-card.l-form-btn, -.ov-card.login-container, -.ov-card.penalties, -.ov-card.quiz-result-box, -.penalties.block-header, -.penalties.card, -.penalties.card-strip, -.penalties.comment, -.penalties.comment-form, -.penalties.comment-post, -.penalties.comment-post-box, -.penalties.comment-post-links, -.penalties.login-container, -.penalties.quiz-result-box, -.penalties.r-card, -.pie-chart.article-newsletter, -.pie-chart.l-form-btn, -.pie-chart.login-container, -.pie-chart.penalties, -.pie-chart.quiz-result-box, -.popular-slider .ad-cls.slick-track:not(.clearfix):before, -.popular-slider .ads-container.slick-track, -.popular-slider .center-error .slick-track.alert, -.popular-slider .circle-a.slick-track, -.popular-slider .error-page h2.slick-track, -.popular-slider .image_container .clickreval span.slick-track, -.popular-slider .menu-categories .category.slick-track, -.popular-slider .slick-track.article-newsletter, -.popular-slider .slick-track.l-form-btn, -.popular-slider .slick-track.login-container, -.popular-slider .slick-track.penalties, -.popular-slider .slick-track.quiz-result-box, -.popular-slider .story-now-item.slick-track, -.popular-slider .text-center.slick-track, -.popular-slider .time-line.slick-track, -.popular-slider .topics .slick-track.topic, -.popular-slider .total-stories.slick-track, -.preview-list-item.text.l-form-btn, -.preview-list-item.text.login-container, -.preview-list-item.text.penalties, -.preview-list-item.text.quiz-result-box, -.preview-list.l-form-btn, -.preview-list.login-container, -.preview-list.penalties, -.preview-list.quiz-result-box, -.profile-img.l-form-btn, -.profile-img.login-container, -.profile-img.penalties, -.profile-img.quiz-result-box, -.quick-slider .ad-cls.slick-track:not(.clearfix):before, -.quick-slider .ads-container.slick-track, -.quick-slider .center-error .slick-track.alert, -.quick-slider .circle-a.slick-track, -.quick-slider .error-page h2.slick-track, -.quick-slider .image_container .clickreval span.slick-track, -.quick-slider .menu-categories .category.slick-track, -.quick-slider .slick-track.article-newsletter, -.quick-slider .slick-track.l-form-btn, -.quick-slider .slick-track.login-container, -.quick-slider .slick-track.penalties, -.quick-slider .slick-track.quiz-result-box, -.quick-slider .slick-track.story-now-item, -.quick-slider .text-center.slick-track, -.quick-slider .time-line.slick-track, -.quick-slider .topics .slick-track.topic, -.quick-slider .total-stories.slick-track, -.quiz-list-row.l-form-btn, -.quiz-list-row.login-container, -.quiz-list-row.penalties, -.quiz-list-row.quiz-result-box, -.quiz-list.l-form-btn, -.quiz-list.login-container, -.quiz-list.penalties, -.quiz-list.quiz-result-box, -.quiz-result-box, -.r-card.l-form-btn, -.r-card.login-container, -.r-card.quiz-result-box, -.readcard.l-form-btn, -.readcard.login-container, -.readcard.penalties, -.readcard.quiz-result-box, -.retake-container.l-form-btn, -.retake-container.login-container, -.retake-container.penalties, -.retake-container.quiz-result-box, -.right-container .video-infocus .ad-cls.video-small:not(.clearfix):before, -.right-container .video-infocus .ads-container.card-strip, -.right-container .video-infocus .ads-container.video-small, -.right-container .video-infocus .card-strip.ad-cls:not(.clearfix):before, -.right-container .video-infocus .card-strip.article-newsletter, -.right-container .video-infocus .card-strip.circle-a, -.right-container .video-infocus .card-strip.l-form-btn, -.right-container .video-infocus .card-strip.login-container, -.right-container .video-infocus .card-strip.penalties, -.right-container .video-infocus .card-strip.quiz-result-box, -.right-container .video-infocus .card-strip.story-now-item, -.right-container .video-infocus .center-error .card-strip.alert, -.right-container .video-infocus .center-error .video-small.alert, -.right-container .video-infocus .error-page h2.card-strip, -.right-container .video-infocus .error-page h2.video-small, -.right-container .video-infocus .image_container .clickreval span.card-strip, -.right-container .video-infocus .image_container .clickreval span.video-small, -.right-container .video-infocus .menu-categories .card-strip.category, -.right-container .video-infocus .menu-categories .category.video-small, -.right-container .video-infocus .text-center.card-strip, -.right-container .video-infocus .text-center.video-small, -.right-container .video-infocus .time-line.card-strip, -.right-container .video-infocus .time-line.video-small, -.right-container .video-infocus .topics .card-strip.topic, -.right-container .video-infocus .topics .video-small.topic, -.right-container .video-infocus .total-stories.card-strip, -.right-container .video-infocus .total-stories.video-small, -.right-container .video-infocus .video-small.article-newsletter, -.right-container .video-infocus .video-small.circle-a, -.right-container .video-infocus .video-small.l-form-btn, -.right-container .video-infocus .video-small.login-container, -.right-container .video-infocus .video-small.penalties, -.right-container .video-infocus .video-small.quiz-result-box, -.right-container .video-infocus .video-small.story-now-item, -.rightsocial .ad-cls.share-strip-social:not(.clearfix):before, -.rightsocial .ad-cls.share-strip:not(.clearfix):before, -.rightsocial .ads-container.share-strip, -.rightsocial .ads-container.share-strip-social, -.rightsocial .article-newsletter.share-strip, -.rightsocial .article-newsletter.share-strip-social, -.rightsocial .center-error .share-strip-social.alert, -.rightsocial .center-error .share-strip.alert, -.rightsocial .circle-a.share-strip, -.rightsocial .circle-a.share-strip-social, -.rightsocial .error-page h2.share-strip, -.rightsocial .error-page h2.share-strip-social, -.rightsocial .image_container .clickreval span.share-strip, -.rightsocial .image_container .clickreval span.share-strip-social, -.rightsocial .menu-categories .category.share-strip, -.rightsocial .menu-categories .category.share-strip-social, -.rightsocial .share-strip-social.l-form-btn, -.rightsocial .share-strip-social.login-container, -.rightsocial .share-strip-social.penalties, -.rightsocial .share-strip-social.quiz-result-box, -.rightsocial .share-strip.l-form-btn, -.rightsocial .share-strip.login-container, -.rightsocial .share-strip.penalties, -.rightsocial .share-strip.quiz-result-box, -.rightsocial .story-now-item.share-strip, -.rightsocial .story-now-item.share-strip-social, -.rightsocial .text-center.share-strip, -.rightsocial .text-center.share-strip-social, -.rightsocial .time-line.share-strip, -.rightsocial .time-line.share-strip-social, -.rightsocial .topics .share-strip-social.topic, -.rightsocial .topics .share-strip.topic, -.rightsocial .total-stories.share-strip, -.rightsocial .total-stories.share-strip-social, -.scroll-header-right.ad-cls:not(.clearfix):before, -.scroll-header-right.article-newsletter, -.scroll-header-right.circle-a, -.scroll-header-right.l-form-btn, -.scroll-header-right.login-container, -.scroll-header-right.penalties, -.scroll-header-right.quiz-result-box, -.scroll-header-right.story-now-item, -.scroll-header-right.time-line, -.scroll-header-right.total-stories, -.section-big.article-newsletter, -.section-big.circle-a, -.section-big.l-form-btn, -.section-big.login-container, -.section-big.penalties, -.section-big.quiz-result-box, -.section-big.story-now-item, -.section-big.total-stories, -.sectiontrending.article-newsletter, -.sectiontrending.circle-a, -.sectiontrending.l-form-btn, -.sectiontrending.login-container, -.sectiontrending.penalties, -.sectiontrending.quiz-result-box, -.sectiontrending.story-now-item, -.sectiontrending.total-stories, -.series.l-form-btn, -.series.login-container, -.series.penalties, -.series.quiz-result-box, -.sh-tab.article-newsletter, -.sh-tab.circle-a, -.sh-tab.l-form-btn, -.sh-tab.login-container, -.sh-tab.penalties, -.sh-tab.quiz-result-box, -.sh-tab.story-now-item, -.sh-tab.total-stories, -.shadow-card.video-card .ad-cls.video-small:not(.clearfix):before, -.shadow-card.video-card .ads-container.video-small, -.shadow-card.video-card .center-error .video-small.alert, -.shadow-card.video-card .circle-a.video-small, -.shadow-card.video-card .error-page h2.video-small, -.shadow-card.video-card .image_container .clickreval span.video-small, -.shadow-card.video-card .menu-categories .category.video-small, -.shadow-card.video-card .text-center.video-small, -.shadow-card.video-card .time-line.video-small, -.shadow-card.video-card .topics .video-small.topic, -.shadow-card.video-card .total-stories.video-small, -.shadow-card.video-card .video-small.article-newsletter, -.shadow-card.video-card .video-small.l-form-btn, -.shadow-card.video-card .video-small.login-container, -.shadow-card.video-card .video-small.penalties, -.shadow-card.video-card .video-small.quiz-result-box, -.shadow-card.video-card .video-small.story-now-item, -.stories-now.article-newsletter, -.stories-now.l-form-btn, -.stories-now.login-container, -.stories-now.penalties, -.stories-now.quiz-result-box, -.story-now-circle.article-newsletter, -.story-now-circle.l-form-btn, -.story-now-circle.login-container, -.story-now-circle.penalties, -.story-now-circle.quiz-result-box, -.story-now-item.author-row, -.story-now-item.block-header, -.story-now-item.browse-list, -.story-now-item.card, -.story-now-item.card-strip, -.story-now-item.comment, -.story-now-item.comment-form, -.story-now-item.comment-post, -.story-now-item.comment-post-box, -.story-now-item.comment-post-links, -.story-now-item.liver-two, -.story-now-item.login-container, -.story-now-item.org-tab, -.story-now-item.original-popup-header, -.story-now-item.original-top, -.story-now-item.ov-card, -.story-now-item.ov-card-detail, -.story-now-item.ov-card-watch, -.story-now-item.pie-chart, -.story-now-item.preview-list, -.story-now-item.preview-list-item.text, -.story-now-item.profile-img, -.story-now-item.quiz-list, -.story-now-item.quiz-list-row, -.story-now-item.quiz-result-box, -.story-now-item.r-card, -.story-now-item.readcard, -.story-now-item.retake-container, -.story-now-item.series, -.story-now-item.stories-now, -.story-now-item.story-now-circle, -.story-now-item.t-arrow, -.story-now-item.team-mg, -.story-now-item.teamcolor, -.story-now-item.toplogo, -.story-now-item.video-latest, -.story-now-item.videosummery, -.story-now.article-newsletter, -.story-now.l-form-btn, -.story-now.login-container, -.story-now.penalties, -.story-now.quiz-result-box, -.story-now.story-now-item, -.t-arrow.l-form-btn, -.t-arrow.login-container, -.t-arrow.penalties, -.t-arrow.quiz-result-box, -.tbd-cont .tbc-border .ad-cls.tbd-text:not(.clearfix):before, -.tbd-cont .tbc-border .ads-container.tbd-text, -.tbd-cont .tbc-border .article-newsletter.tbd-text, -.tbd-cont .tbc-border .center-error .tbd-text.alert, -.tbd-cont .tbc-border .circle-a.tbd-text, -.tbd-cont .tbc-border .error-page h2.tbd-text, -.tbd-cont .tbc-border .image_container .clickreval span.tbd-text, -.tbd-cont .tbc-border .menu-categories .category.tbd-text, -.tbd-cont .tbc-border .story-now-item.tbd-text, -.tbd-cont .tbc-border .tbd-text.l-form-btn, -.tbd-cont .tbc-border .tbd-text.login-container, -.tbd-cont .tbc-border .tbd-text.penalties, -.tbd-cont .tbc-border .tbd-text.quiz-result-box, -.tbd-cont .tbc-border .text-center.tbd-text, -.tbd-cont .tbc-border .time-line.tbd-text, -.tbd-cont .tbc-border .topics .tbd-text.topic, -.tbd-cont .tbc-border .total-stories.tbd-text, -.team-mg.l-form-btn, -.team-mg.login-container, -.team-mg.penalties, -.team-mg.quiz-result-box, -.teamcolor .ad-cls.team-d:not(.clearfix):before, -.teamcolor .ads-container.team-d, -.teamcolor .article-newsletter.team-d, -.teamcolor .center-error .team-d.alert, -.teamcolor .circle-a.team-d, -.teamcolor .error-page h2.team-d, -.teamcolor .image_container .clickreval span.team-d, -.teamcolor.l-form-btn, -.teamcolor.login-container, -.teamcolor .menu-categories .category.team-d, -.teamcolor.penalties, -.teamcolor.quiz-result-box, -.teamcolor .story-now-item.team-d, -.teamcolor .team-d.l-form-btn, -.teamcolor .team-d.login-container, -.teamcolor .team-d.penalties, -.teamcolor .team-d.quiz-result-box, -.teamcolor .text-center.team-d, -.teamcolor .time-line.team-d, -.teamcolor .topics .team-d.topic, -.teamcolor .total-stories.team-d, -.text-center.art-social, -.text-center.author-row, -.text-center.block-header, -.text-center.breadcrumb.trunc, -.text-center.browse-list, -.text-center.card, -.text-center.card-strip, -.text-center.comment, -.text-center.comment-form, -.text-center.comment-post, -.text-center.comment-post-box, -.text-center.comment-post-links, -.text-center.daily-story, -.text-center.digital-left, -.text-center.digital-page, -.text-center.focus-card-body, -.text-center.liver-two, -.text-center.menu-categories, -.text-center.open-header, -.text-center.org-tab, -.text-center.original-popup-header, -.text-center.original-top, -.text-center.ov-card, -.text-center.ov-card-detail, -.text-center.ov-card-watch, -.text-center.pie-chart, -.text-center.preview-list, -.text-center.preview-list-item.text, -.text-center.profile-img, -.text-center.quiz-list, -.text-center.quiz-list-row, -.text-center.r-card, -.text-center.readcard, -.text-center.retake-container, -.text-center.scroll-header-right, -.text-center.section-big, -.text-center.sectiontrending, -.text-center.series, -.text-center.sh-tab, -.text-center.stories-now, -.text-center.story-now, -.text-center.story-now-circle, -.text-center.t-arrow, -.text-center.team-mg, -.text-center.teamcolor, -.text-center.topic-cards, -.text-center.topic-slide, -.text-center.toplogo, -.text-center.user-weather, -.text-center.video-latest, -.text-center.videosummery, -.text-center.youmay-like, -.time-line.art-social, -.time-line.author-row, -.time-line.block-header, -.time-line.breadcrumb.trunc, -.time-line.browse-list, -.time-line.card, -.time-line.card-strip, -.time-line.comment, -.time-line.comment-form, -.time-line.comment-post, -.time-line.comment-post-box, -.time-line.comment-post-links, -.time-line.daily-story, -.time-line.focus-card-body, -.time-line.liver-two, -.time-line.login-container, -.time-line.org-tab, -.time-line.original-popup-header, -.time-line.original-top, -.time-line.ov-card, -.time-line.ov-card-detail, -.time-line.ov-card-watch, -.time-line.pie-chart, -.time-line.preview-list, -.time-line.preview-list-item.text, -.time-line.profile-img, -.time-line.quiz-list, -.time-line.quiz-list-row, -.time-line.quiz-result-box, -.time-line.r-card, -.time-line.readcard, -.time-line.retake-container, -.time-line.section-big, -.time-line.sectiontrending, -.time-line.series, -.time-line.sh-tab, -.time-line.stories-now, -.time-line.story-now, -.time-line.story-now-circle, -.time-line.t-arrow, -.time-line.team-mg, -.time-line.teamcolor, -.time-line.topic-cards, -.time-line.topic-slide, -.time-line.toplogo, -.time-line.video-latest, -.time-line.videosummery, -.time-line.youmay-like, -.topic-cards.article-newsletter, -.topic-cards.circle-a, -.topic-cards.l-form-btn, -.topic-cards.login-container, -.topic-cards.penalties, -.topic-cards.quiz-result-box, -.topic-cards.story-now-item, -.topic-container.d-flex .ad-cls.slick-track:not(.clearfix):before, -.topic-container.d-flex .ads-container.slick-track, -.topic-container.d-flex .center-error .slick-track.alert, -.topic-container.d-flex .error-page h2.slick-track, -.topic-container.d-flex .image_container .clickreval span.slick-track, -.topic-container.d-flex .menu-categories .category.slick-track, -.topic-container.d-flex .slick-track.article-newsletter, -.topic-container.d-flex .slick-track.circle-a, -.topic-container.d-flex .slick-track.l-form-btn, -.topic-container.d-flex .slick-track.login-container, -.topic-container.d-flex .slick-track.penalties, -.topic-container.d-flex .slick-track.quiz-result-box, -.topic-container.d-flex .slick-track.story-now-item, -.topic-container.d-flex .slick-track.total-stories, -.topic-container.d-flex .text-center.slick-track, -.topic-container.d-flex .time-line.slick-track, -.topic-container.d-flex .topics .slick-track.topic, -.topic-slide.article-newsletter, -.topic-slide.circle-a, -.topic-slide.l-form-btn, -.topic-slide.login-container, -.topic-slide.penalties, -.topic-slide.quiz-result-box, -.topic-slide.story-now-item, -.topic-slide.total-stories, -.topics-cont .center-error a.alert, -.topics-cont .center-error div.alert, -.topics-cont .menu-categories a.category, -.topics-cont .menu-categories div.category, -.topics-cont .topics a.topic, -.topics-cont .topics div.topic, -.topics-cont a.ad-cls:not(.clearfix):before, -.topics-cont a.ads-container, -.topics-cont a.article-newsletter, -.topics-cont a.circle-a, -.topics-cont a.l-form-btn, -.topics-cont a.login-container, -.topics-cont a.penalties, -.topics-cont a.quiz-result-box, -.topics-cont a.story-now-item, -.topics-cont a.text-center, -.topics-cont a.time-line, -.topics-cont a.total-stories, -.topics-cont div.ad-cls:not(.clearfix):before, -.topics-cont div.ads-container, -.topics-cont div.article-newsletter, -.topics-cont div.circle-a, -.topics-cont div.l-form-btn, -.topics-cont div.login-container, -.topics-cont div.penalties, -.topics-cont div.quiz-result-box, -.topics-cont div.story-now-item, -.topics-cont div.text-center, -.topics-cont div.time-line, -.topics-cont div.total-stories, -.topics .ad-cls.topic:not(.clearfix):before, -.topics .ads-container.topic, -.topics .art-social.topic, -.topics .article-newsletter .newsletterinput.topic, -.topics .article-newsletter.topic, -.topics .author-row.topic, -.topics .block-header.topic, -.topics .breadcrumb.trunc.topic, -.topics .brief-video .video-small.topic, -.topics .browse-list.topic, -.topics .card-strip.topic, -.topics .card.topic, -.topics .center-error .alert.topic, -.topics .circle-a.topic, -.topics .comment-form.topic, -.topics .comment-post-box.topic, -.topics .comment-post-links.topic, -.topics .comment-post.topic, -.topics .comment.topic, -.topics .daily-story.topic, -.topics .digital-left.topic, -.topics .digital-page.topic, -.topics .error-page h2.topic, -.topics .focus-card-body.topic, -.topics .header .profile-data.topic, -.topics .image_container .clickreval span.topic, -.topics .l-form-btn.topic, -.topics .liver-two.topic, -.topics .menu-categories .category.topic, -.topics .menu-categories.topic, -.topics .menu-items .nav-menu .categories .nav-category.topic, -.topics .menu-items .nav-menu .categories .nav-category a.topic, -.topics .nav-ul .nav-category.topic, -.topics .nav-ul .nav-category a.topic, -.topics .open-header.topic, -.topics .org-tab.topic, -.topics .original-popup-header.topic, -.topics .original-popup .browse-form.topic, -.topics .original-top.topic, -.topics .ov-card-detail.topic, -.topics .ov-card-watch.topic, -.topics .ov-card.topic, -.topics .penalties.topic, -.topics .pie-chart.topic, -.topics .popular-slider .slick-track.topic, -.topics .preview-list-item.text.topic, -.topics .preview-list.topic, -.topics .profile-img.topic, -.topics .quick-slider .slick-track.topic, -.topics .quiz-list-row.topic, -.topics .quiz-list.topic, -.topics .r-card.topic, -.topics .readcard.topic, -.topics .retake-container.topic, -.topics .right-container .video-infocus .card-strip.topic, -.topics .right-container .video-infocus .video-small.topic, -.topics .rightsocial .share-strip-social.topic, -.topics .rightsocial .share-strip.topic, -.topics .scroll-header-right.topic, -.topics .section-big.topic, -.topics .sectiontrending.topic, -.topics .series.topic, -.topics .sh-tab.topic, -.topics .shadow-card.video-card .video-small.topic, -.topics .stories-now.topic, -.topics .story-now-circle.topic, -.topics .story-now-item.topic, -.topics .story-now.topic, -.topics .t-arrow.topic, -.topics .tbd-cont .tbc-border .tbd-text.topic, -.topics .team-mg.topic, -.topics .teamcolor .team-d.topic, -.topics .teamcolor.topic, -.topics .time-line.topic, -.topics .topic, -.topics .topic-cards.topic, -.topics .topic-container.d-flex .slick-track.topic, -.topics .topic-slide.topic, -.topics .topics-cont a.topic, -.topics .topics-cont div.topic, -.topics .toplogo.topic, -.topics .total-stories.topic, -.topics .user-weather.topic, -.topics .video-l-card .card-detail.topic, -.topics .video-latest.topic, -.topics .videosummery.topic, -.topics .youmay-like.topic, -.topics a.topic[data-network=indiatimes], -.toplogo.l-form-btn, -.toplogo.login-container, -.toplogo.penalties, -.toplogo.quiz-result-box, -.total-stories.author-row, -.total-stories.block-header, -.total-stories.browse-list, -.total-stories.card, -.total-stories.card-strip, -.total-stories.comment, -.total-stories.comment-form, -.total-stories.comment-post, -.total-stories.comment-post-box, -.total-stories.comment-post-links, -.total-stories.liver-two, -.total-stories.login-container, -.total-stories.org-tab, -.total-stories.original-popup-header, -.total-stories.original-top, -.total-stories.ov-card, -.total-stories.ov-card-detail, -.total-stories.ov-card-watch, -.total-stories.pie-chart, -.total-stories.preview-list, -.total-stories.preview-list-item.text, -.total-stories.profile-img, -.total-stories.quiz-list, -.total-stories.quiz-list-row, -.total-stories.quiz-result-box, -.total-stories.r-card, -.total-stories.readcard, -.total-stories.retake-container, -.total-stories.series, -.total-stories.stories-now, -.total-stories.story-now, -.total-stories.story-now-circle, -.total-stories.t-arrow, -.total-stories.team-mg, -.total-stories.teamcolor, -.total-stories.topic-cards, -.total-stories.toplogo, -.total-stories.video-latest, -.total-stories.videosummery, -.user-weather.ad-cls:not(.clearfix):before, -.user-weather.article-newsletter, -.user-weather.circle-a, -.user-weather.l-form-btn, -.user-weather.login-container, -.user-weather.penalties, -.user-weather.quiz-result-box, -.user-weather.story-now-item, -.user-weather.time-line, -.user-weather.total-stories, -.video-l-card .ad-cls.card-detail:not(.clearfix):before, -.video-l-card .ads-container.card-detail, -.video-l-card .card-detail.article-newsletter, -.video-l-card .card-detail.circle-a, -.video-l-card .card-detail.l-form-btn, -.video-l-card .card-detail.login-container, -.video-l-card .card-detail.penalties, -.video-l-card .card-detail.quiz-result-box, -.video-l-card .card-detail.story-now-item, -.video-l-card .card-detail.total-stories, -.video-l-card .center-error .card-detail.alert, -.video-l-card .error-page h2.card-detail, -.video-l-card .image_container .clickreval span.card-detail, -.video-l-card .menu-categories .category.card-detail, -.video-l-card .text-center.card-detail, -.video-l-card .time-line.card-detail, -.video-l-card .topics .card-detail.topic, -.video-latest.l-form-btn, -.video-latest.login-container, -.video-latest.penalties, -.video-latest.quiz-result-box, -.videosummery.l-form-btn, -.videosummery.login-container, -.videosummery.penalties, -.videosummery.quiz-result-box, -.youmay-like.article-newsletter, -.youmay-like.circle-a, -.youmay-like.l-form-btn, -.youmay-like.login-container, -.youmay-like.penalties, -.youmay-like.quiz-result-box, -.youmay-like.story-now-item, -.youmay-like.total-stories, -a.ad-cls[data-network=indiatimes]:not(.clearfix):before, -a.ads-container[data-network=indiatimes], -a.article-newsletter[data-network=indiatimes], -a.circle-a[data-network=indiatimes], -a.l-form-btn[data-network=indiatimes], -a.login-container[data-network=indiatimes], -a.penalties[data-network=indiatimes], -a.quiz-result-box[data-network=indiatimes], -a.story-now-item[data-network=indiatimes], -a.text-center[data-network=indiatimes], -a.time-line[data-network=indiatimes], -a.total-stories[data-network=indiatimes] { - margin-left: 10px; -} - -.fixed.menu-items .logo svg path { - fill: #3457a7; -} - -.hindi-header.floating-header .sectiontrending li:last-child, -.hindi-header.floating-header .sectiontrending li:nth-last-child(2), -.hindi-header.floating-header .sectiontrending li:nth-last-child(3), -.hindi-header.floating-header .sectiontrending li:nth-last-child(4) { - padding-right: 5px; -} - -.floating-header .profile-img.profile-data .bgwhite span { - max-width: 58px; -} - -.header.black-theme .search-page svg path { - fill: #444; -} - -.header.black-theme .search-page .card-strip-read, -.header.black-theme .search-page .daily-story a { - color: #000; -} - -.header.black-theme .search-page .common-card .card-body { - flex: 0 0 calc(100% - 95px); -} - -.section-n .cred-left img { - box-shadow: none; - border-radius: 0; - border: 0; - width: 70px; - height: inherit; - margin-left: 10px; - vertical-align: -3px; -} - -.section-n .cred-left span { - color: #222; - font-family: Verdana; - vertical-align: 4px; - margin-left: 10px; - margin-right: -8px; - font-size: 14px; -} - -.cred-all { - height: 50px; -} - -.cred-all svg { - transform: rotate(0deg); - margin-right: 10px; - width: 25px; - margin-top: -6px; -} - -.trendslogo { - margin-right: 5px; - position: relative; -} - -.trendslogo svg { - width: 80px; - position: absolute; - right: 0; - top: 3px; - z-index: 1; -} - -.header-bg .trendslogo .logo-1 { - display: block; -} - -.header-bg.floating-header .trendslogo .logo-1, -.header-bg .trendslogo .logo-2 { - display: none; -} - -.header-bg.floating-header .trendslogo .logo-2 { - width: 22px; - display: none; -} - -.nav-ul .menu-right .nav-category a { - font-weight: 400; -} - -a { - cursor: pointer; -} - -.bgImg { - background-position: center 133px; -} - -.bgImg.skinner-ad { - background-position: center 30px; -} - -.facebook-live::-webkit-scrollbar-track { - background-color: #f5f5f5; - border-radius: 5px; -} - -.facebook-live::-webkit-scrollbar { - width: 6px; - background-color: #f5f5f5; -} - -.facebook-live::-webkit-scrollbar-thumb { - background-color: #3457a7; - border-radius: 5px; -} - -.facebook-live { - width: 22rem; - position: fixed; - right: 2rem; - bottom: 0; - z-index: 99999; - max-height: 575px; - overflow-y: auto; - background: #fff; -} - -.facebook-live h2 { - font-weight: 700; - background-color: #3457a7; - font-size: 1rem; - line-height: .75; - border-radius: 4px 4px 0 0; - color: #fff; - padding: 1rem 1.4rem; - line-height: 1.5rem; - cursor: pointer; - font-weight: 400; -} - -.facebook-live h2 .lines { - margin-top: -5px; - float: right; -} - -.facebook-live h2 .lines svg path { - fill: #fff; -} - -.facebook-live h2 .close { - margin-top: 0; -} - -.facebook-live h2 .close svg { - width: 13px; -} - -.grayscale img { - filter: grayscale(100%); -} - -.loading svg { - width: 5rem; -} - -.width-100 { - max-width: 100%; -} - -.no-padding { - padding: 0; -} - -.slick-list, -.slick-slider, -.slick-track { - position: relative; - display: block; -} - -.slick-loading .slick-slide, -.slick-loading .slick-track { - visibility: hidden; -} - -.slick-slider { - box-sizing: border-box; - user-select: none; - touch-action: pan-y; - border-radius: 8px 8px 8px 8px; -} - -.slick-list { - overflow: hidden; - margin: 0; - padding: 0; -} - -.slick-list:focus { - outline: 0; -} - -.slick-list.dragging { - cursor: pointer; - cursor: hand; -} - -.slick-slider .slick-list, -.slick-slider .slick-track { - transform: translateZ(0); -} - -.slick-track { - top: 0; - left: 0; -} - -.slick-track:after, -.slick-track:before { - display: table; - content: ""; -} - -.slick-track:after { - clear: both; -} - -.slick-slide { - display: none; - height: 100%; - min-height: 1px; -} - -.slick-slide img { - display: block; -} - -.slick-slide.dragging img { - pointer-events: none; -} - -.slick-initialized .slick-slide { - display: block; -} - -.slick-vertical .slick-slide { - display: block; - height: auto; - border: 1px solid transparent; -} - -.slick-arrow.slick-hidden { - display: none; -} - -.slick-slider:hover .slick-next, -.slick-slider:hover .slick-prev { - opacity: 1; -} - -.slick-next:after, -.slick-prev:after { - display: block; - margin: 68% auto 0; - content: ""; - width: 15px; - height: 15px; - background: url(/images/desktop/right-arrow-white.svg) no-repeat 50%; - background-size: contain; -} - -.slick-prev:after { - transform: rotate(180deg); -} - -.slick-next:after { - transform: rotate(0deg); -} - -.slick-next, -.slick-prev { - position: absolute; - top: 24%; - width: 40px; - height: 70px; - background-color: rgba(0, 0, 0, .7); - z-index: 2; - border: 0; - outline: 0; - overflow: hidden; - opacity: 1; - transition: all .4s ease; - cursor: pointer; -} - -.slick-prev { - left: 0; - border-radius: 0 20px 20px 0; -} - -.slick-next { - right: -2px; - border-radius: 20px 0 0 20px; -} - -.slick-dots { - display: none; -} - -.youmay-like .home_card_ad { - margin-right: .5rem; -} - -.youmay-like .home_card_ad .slick-next:after, -.youmay-like .home_card_ad .slick-prev:after { - display: none; -} - -.youmay-like .home_card_ad .slick-next, -.youmay-like .home_card_ad .slick-prev { - background-color: transparent; - width: 50px; -} - -.youmay-like .home_card_ad .slider-next-button { - right: 2px; -} - -.youmay-like .home_card_ad .card-img:before { - padding-top: 64%; -} - -.eighteen-plus { - background-color: hsla(0, 0%, 9%, .5); - border-radius: 4px; - padding: 5px 10px; - color: #fff; - font-size: 12px; - line-height: 18px; - margin-left: 10px; - cursor: pointer; -} - -.black-theme .popup-header svg, -.black-theme .popup-header svg>path { - fill: #000; -} - -.maturity-container #maturity-rating { - max-height: 90vh; - overflow: auto; -} - -.maturity-container #maturity-rating .static-pages { - margin-top: 0; - padding-top: 0; - padding-bottom: 0; -} - -.maturity-container #maturity-rating table th:last-child { - text-align: left; -} - -.maturity-container #maturity-rating table, -.maturity-container #maturity-rating td, -.maturity-container #maturity-rating th { - font-size: 14px; - line-height: 22px; - color: rgba(0, 0, 0, .7); -} - -.maturity-container #maturity-rating .popup-header { - cursor: pointer; -} - -.maturity-container .menu-overlay { - display: block; -} - -.author-strip-editor { - border-bottom: 0; -} - -.ad-cls { - width: 1100px; - height: 400px; - background-color: #f1f1f1; - display: flex; - align-items: center; - justify-content: center; - text-align: center; - margin: 20px auto 0; - margin-bottom: 15px; - position: relative; -} - -.ad-cls .ads.container, -.ad-cls .ads.fifa-center { - padding: 0; -} - -.ad-cls:not(.clearfix):before { - content: "ADVERTISEMENT"; - font-size: .7em; - color: #8a8a8a; - line-height: 20px; - display: block; - padding-bottom: 5px; - position: absolute; - top: 20px; - width: 100%; - left: 0; - right: 0; - margin: 0 auto; -} - -.world-cup { - background: #fff; - padding: 10px; -} - -.world-cup .icctext { - font-size: 20px; - font-weight: 700; - color: #000; - padding-bottom: 20px; - padding-left: 0; - padding-top: 40px; -} - -.world-cup .pt-10 { - padding-top: 10px; -} - -.world-cup .top-heading { - font-size: 12px; - color: #222; - padding-bottom: 10px; - margin-bottom: 10px; -} - -.world-cup .bt-bottom { - border-bottom: 1px solid #eee; -} - -.world-cup .icc-no, -.world-cup .icc-team, -.world-cup .match-date { - font-size: 14px; - color: #555; -} - -.world-cup .icc-img { - margin: 0 10px; -} - -.world-cup .icc-img img { - max-width: 24px; -} - -.world-cup .icc-center { - align-items: center; -} - -.world-cup .icc-team { - text-transform: uppercase; -} - -.world-cup .tab-first { - border-bottom: 1px solid #eee; - text-align: center; -} - -.world-cup .tab-first .fist-list { - flex: 1; - font-size: 14px; - color: #555; - cursor: pointer; -} - -.world-cup .tab-first .fist-list.active { - border-bottom: 2px solid #000; - color: #000; - height: 35px; - font-weight: 700; -} - -.font-s { - font-size: 14px; -} - -.match-cont { - margin: 0 auto; - max-width: 750px; - border: 1px solid #dadce0; - padding-top: 20px; -} - -.match-cont table { - padding-left: 20px; - padding-right: 20px; -} - -.icc-matches .match-date { - padding-bottom: 10px; - border-bottom: 1px solid #eee; - padding-left: 10px; - padding-right: 10px; -} - -.icc-matches .icc-matches-cont { - border-bottom: 1px solid #eee; - flex-wrap: wrap; - background-color: #f8f9fa; -} - -.icc-matches .icc-matches-cont .matches-left { - border-right: 1px solid #eee; -} - -.icc-matches .icc-matches-cont .matches-left, -.icc-matches .icc-matches-cont .matches-right { - flex: 0 0 50%; - padding: 15px; - background-color: #fff; - position: relative; -} - -.icc-matches .icc-matches-cont .matches-right:nth-child(3) { - border-top: 1px solid #eee; - border-right: 1px solid #eee; -} - -.icc-matches .icc-matches-cont .matches-left:hover, -.icc-matches .icc-matches-cont .matches-right:hover { - background-color: #f8f9fa; -} - -.icc-matches .icc-matches-cont .match-top { - display: flex; -} - -.icc-matches .icc-matches-cont .world-inner { - display: flex; - align-items: center; - font-size: 14px; - color: #000; -} - -.icc-matches .icc-matches-cont .world-inner span { - margin-right: 10px; -} - -.icc-matches .icc-matches-cont .world-inner span img { - max-width: 24px; - display: block; -} - -.loadmore-matches { - max-width: 750px; - display: block; - margin: 0 auto; -} - -.loadmore-matches a { - display: block; - background-color: #fff; - border: 1px solid #3357a7; - padding: 1rem 0; - text-align: center; - border-radius: 5px; - color: #3357a7; - width: 100%; -} - -.loadmore-matches a:hover { - background-color: #3357a7; - color: #fff; -} - -.sports-webstories .amp-stories { - flex-wrap: wrap; - justify-content: center; - display: flex; -} - -.sports-webstories .amp-stories .stories-card { - margin-right: 25px; - margin-bottom: 25px; -} - -.sports-webstories .amp-stories .stories-card:nth-child(4n) { - margin-right: 0; -} - -.sports-webstories .amp-stories .stories-card:nth-child(5n) { - margin-right: 25px; -} - -.upcomin-match { - background-color: #0e0a45; - padding: 20px 10px 0; - text-align: center; -} - -.countdown div span, -.live-score a, -.uppercase { - text-transform: uppercase; -} - -.match-tittle { - color: #eaeaea; - font-size: 13px; - line-height: 18px; - position: relative; -} - -.match-tittle span { - font-weight: 700; - color: #fff; -} - -.match-tittle .red-text { - color: red; - font-family: Verdana; -} - -.match-heading { - font-weight: 700; - color: #fff; -} - -.country-flags { - padding: 0 20px; - align-items: center; -} - -.match-count { - color: #fff; - text-align: center; - flex: 0 0 44%; -} - -.match-count span { - font-weight: 700; - display: block; - padding-bottom: 10px; -} - -.flag-width { - flex: 0 0 28%; -} - -.flag-width img { - max-width: 80px; - width: auto; - border-radius: 4px; -} - -.flag-width div { - color: #aaa; - text-align: center; -} - -.flag-width div span { - font-weight: 700; - font-size: 16px; - display: block; - padding-bottom: 5px; - color: #fff; -} - -.countdown { - justify-content: center; -} - -.countdown div { - font-weight: 700; - color: #fff; - margin-top: 10px; - min-width: 60px; -} - -.countdown div span { - display: block; - color: #ed2967; - padding-top: 5px; -} - -.countdown div:last-child { - font-family: Verdana; -} - -.countdown div:last-child span { - font-weight: 700; - padding-top: 6px; -} - -.live-score { - text-align: center; - position: relative; -} - -.live-score a { - text-transform: uppercase; - background-color: #ed2967; - padding: 10px 20px; - border-radius: 20px; - color: #fff; - display: inline-block; - position: relative; -} - -.live-score .red-circle { - animation: blink 1s ease infinite; - background-color: red; - width: 8px; - height: 8px; - border-radius: 50%; - position: absolute; - left: -20px; - top: 15px; - content: ""; -} - -.match-widget-f { - position: fixed; - left: 6.6em; - bottom: 0; - z-index: 9; - border-radius: 5px 5px 0 0; - background-color: #e6e6e7; - overflow: hidden; - max-width: 160px; - width: 160px; -} - -.match-widget-f .fixed-part { - align-items: center; - position: relative; -} - -.match-widget-f .fixed-part img { - width: auto; -} - -.match-widget-f .fixed-part .vs-fixed { - position: absolute; - left: 0; - right: 0; - z-index: 1; - text-align: center; - top: 23px; - margin: 0 auto 0 1px; - font-weight: 700; - font-size: 12px; - text-transform: uppercase; - font-style: italic; - color: #000; -} - -.match-widget-f .fixed-part .vs-fixed img { - max-width: 30px; -} - -.match-widget-f .fixed-part .left-m, -.match-widget-f .fixed-part .left-r { - padding: 10px; - text-align: center; - flex: 0 0 80px; -} - -.match-widget-f .fixed-part .left-m img, -.match-widget-f .fixed-part .left-r img { - max-width: 35px; - max-height: 35px; -} - -.match-widget-f .fixed-part .left-m span, -.match-widget-f .fixed-part .left-r span { - display: block; - color: #000; -} - -.match-widget-f .fixed-part .left-r { - padding-left: 20px; -} - -.match-widget-f .live-score { - background-color: #06182c; - margin-top: 0; -} - -.match-widget-f .live-score a { - border-radius: 1.25rem; - padding: .375rem 1.25rem; - font-size: .6875rem; - line-height: 1rem; - font-weight: 700; - margin: 10px 0; -} - -.bgImg .match-widget-f { - left: inherit; - transition: left .2s linear; -} - -.final-result { - color: #3457a7; -} - -.all-teams { - border: 0; - margin-top: 40px; - margin-bottom: 40px; -} - -.all-teams a { - color: #000; - border: 1px solid #eee; - border-radius: 5px; - padding: 2px 10px; - display: inline-block; - margin-right: 10px; - margin-bottom: 10px; - background-color: #fff; - transition: all .4s ease-in-out; -} - -.all-teams a.active, -.all-teams a:hover { - background-color: #000; - color: #fff; -} - -.icc-wd .daily-story-header { - max-width: 680px; -} - -.instagram-video .fb_iframe_widget iframe { - min-width: 346px; - position: relative; - max-width: 100%; -} - -.instagram-video iframe { - width: 100%; - height: 100vh; -} - -footer { - background-color: #212121; -} - -footer .copyright { - text-align: center; - padding: 1% 0; - background: #000; - font-size: .75em; - text-transform: uppercase; -} - -.footer-links { - line-height: 2; - opacity: .7; -} - -.footer-links span { - margin: 0 .25rem; -} - -.footer-divider { - background-color: #fff; - height: 1px; - opacity: .1; - margin: 1.5rem 0; -} - -.footer-container { - display: grid; - grid-template-columns: repeat(3, 1fr); - grid-column-gap: 24px; - max-width: 70.625rem; - padding: 1.5rem .9375rem; - margin: 0 auto; -} - -.footer-headline { - padding-bottom: 1.5rem; - font-weight: 700; -} - -.footer-headline[data-tagline=indiatimes] { - opacity: .7; - padding-bottom: 0; -} - -.footer-section { - font-weight: 700; - display: grid; - grid-template-columns: 55% 40%; - grid-column-gap: 5%; - line-height: 1.71; - opacity: .7; -} - -.footer-social a { - flex: 0 0 1.5rem; - height: 1.5rem; - margin-right: 8.82353%; -} - -.footer-social svg { - fill: #fff; -} - -.footer-social .youtube { - flex: 0 0 2.1875rem; -} - -a[data-network=iDiva] { - fill: #fff; - flex: 0 0 3.5625rem; - height: 1.25rem; -} - -a[data-network=mensxp] { - flex: 0 0 5.54375rem; - height: 12px; -} - -a[data-network=whatshot] { - flex: 0 0 6.5rem; - height: 1.1875rem; -} - -a[data-network=indiatimes] .it-logo { - flex: 0 0 1.5rem; - max-width: 1.5rem; - margin-right: .5rem; -} - -.text-logo { - font-weight: 700; -} - -.commonads .advertisement_text>div:before { - content: ""; -} - -.advertisement_text>div:not(.clearfix):before { - content: "ADVERTISEMENT"; - font-size: .8em; - color: #8a8a8a; - line-height: 20px; - display: block; - padding-bottom: 5px; - text-align: center; - position: absolute; - margin-top: -19px; - width: 100%; -} - -.n-messaging-banner__outer { - padding: 24px 19px 40px; - position: fixed; - bottom: 20px; - background: #fff; - box-shadow: 0 1px 4px rgba(77, 72, 69, .15), 0 8px 14px rgba(77, 72, 69, .2); - max-width: 480px; - z-index: 1000; - left: 10%; -} - -.n-messaging-banner__outer h2.cookie-banner__head { - font-weight: 700; - position: relative; - font-size: 1.1875rem; -} - -.n-messaging-banner__outer h2.cookie-banner__head:after { - content: ""; - display: block; - position: absolute; - height: .25rem; - width: 5.625rem; - bottom: -.25rem; - left: 0; - background-color: #3357a7; -} - -.n-messaging-banner__outer .cookie-banner__inner { - padding-top: 10px; - font-size: 14px; -} - -.n-messaging-banner__outer .cookie-banner__inner a { - border-bottom: 1px solid; -} - -.n-messaging-banner__outer .cookie-banner__inner .cookie-banner__actions { - margin-top: 20px; - display: flex; - justify-content: space-between; -} - -.n-messaging-banner__outer .cookie-banner__inner .personalisedadsBlk.checkbox { - padding: 10px 0; -} - -.cookie-box.overlay { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: hsla(0, 0%, 100%, .2); - z-index: 999; -} - -.n-messaging-banner__button { - background: #3357a7; - color: #fff; - padding: 15px 20px; - font-weight: 700; - border: none; -} - -.optout-container { - text-align: center; - padding: 20px; - font-size: 16px; - background: #fafafa; - margin: 60px 20px; - border: 1px solid #ecebeb; - border-radius: 2px; -} - -.optout-container .optoutMessage { - font-size: 16px; -} - -.gdpr-container { - padding: 20px; - font-size: 15px; - background: #fafafa; - margin: 20px auto; - border: 1px solid #ecebeb; - border-radius: 2px; -} - -.gdpr-container h3 { - margin: 0 0 10px; - font-size: 18px; - line-height: 24px; -} - -.gdpr-container .form-controls { - margin: 20px 0; -} - -.gdpr-container .gdpr-sent-msg { - font-size: 15px; - margin: 50px 0 20px; -} - -.gdpr-container .message, -.gdpr-container a.regenerate-gdpr-otp { - padding: 0 20px; - color: #3357a7; -} - -.gdpr-container .form-label { - display: inline-block; - width: 15%; - line-height: 30px; - vertical-align: top; -} - -.gdpr-container .form-element { - display: inline-block; - vertical-align: middle; -} - -.gdpr-container .form-element input, -.gdpr-container .form-element select { - width: 300px; - border: 1px solid #999; - border-radius: 2px; - font-size: 14px; - padding: 0 10px; - line-height: 30px; - background: 0; - height: 30px; -} - -.container.longform .left-container, -.longform.fifa-center .left-container { - margin: 0 auto; - max-width: inherit; - text-align: center; -} - -.container.longform .left-container p, -.longform.fifa-center .left-container p { - text-align: left; -} - -.container.longform .left-container h2, -.container.longform .left-container h3, -.container.longform .left-container h4, -.container.longform .left-container h5, -.container.longform .left-container iframe, -.container.longform .left-container p, -.longform.fifa-center .left-container h2, -.longform.fifa-center .left-container h3, -.longform.fifa-center .left-container h4, -.longform.fifa-center .left-container h5, -.longform.fifa-center .left-container iframe, -.longform.fifa-center .left-container p { - max-width: 740px; - margin: 0 auto; -} - -.container.longform .left-container p, -.longform.fifa-center .left-container p { - margin-bottom: 30px; -} - -.container.longform .img-copyright, -.container.longform .img-credits, -.container.longform .picCaption, -.longform.fifa-center .img-copyright, -.longform.fifa-center .img-credits, -.longform.fifa-center .picCaption { - display: block; - color: #b1b1b1; - padding-top: 8px; - line-height: 0; - font-weight: 400; - font-size: .75rem; -} - -.credit-cont p { - text-align: center; -} - -.bigcard .card-cont, -.bottom-blur, -.default-icon, -.default-icon-tick, -.exclusive-mxp, -.gallery-overlay-icon, -.image_container, -.no-result .top, -.pos-relative, -.quiz-result-or, -.readnext .common-card .card-body, -.responsive-wrap, -.sectiontrending .top-bar { - position: relative; -} - -.article-newsletter .subheading, -.breadcrumb, -.brief-video .video-small, -.brief-video .video-summery, -.comment-top, -.digital-left h2, -.digital-left p, -.exclusive, -.exclusive-mxp, -.header-tab, -.mb-20, -.option.answer-thumb, -.original-top .original-left .card-detail, -.sectionwidgets, -.sh-tab, -.topics-summery p, -a[data-network=indiatimes] { - margin-bottom: 20px; -} - -.author-strip-editor, -.blur-e, -.card-section, -.card-title, -.checkbox-container, -.checkbox-container input:checked~.checkmark:after, -.d-block, -.digital-left h2, -.digital-left p, -.episodes-detail span, -.menu-categories .category a, -.menu-categories .category span, -.p-eye.close-eye .eye-c, -.p-eye.open-eye .eye-o, -.right-answer-tick .right-icon, -.video-l-card .card-detail-logo, -.videosummery .powerrow-text span:first-child, -.videosummery .powerrow-text span:last-child { - display: block; -} - -.cover-listing { - background-color: #f9f9f9; -} - -.clearfix { - clear: both; -} - -.card, -.comment, -.flex-column, -.focus-card-body, -.ov-card-detail, -.preview-list-item.text, -.quiz-result-box { - flex-direction: column; -} - -.browse-list, -.comment-form, -.comment-post, -.comment-post-box, -.common-card .card, -.daily-story, -.flex-wrap, -.menu-categories, -.retake-container, -.right-container .youmay-like, -.rightsocial .share-strip, -.rightsocial .share-strip-social, -.sectiontrending, -.topic-col .card, -.video-latest, -.video-r-card .card { - flex-wrap: wrap; -} - -.art-social, -.article-newsletter .newsletterinput, -.author-row, -.block-header, -.breadcrumb.trunc, -.brief-video .video-small, -.browse-list, -.card, -.card-strip, -.comment, -.comment-form, -.comment-post, -.comment-post-box, -.comment-post-links, -.d-flex, -.daily-story, -.digital-left, -.digital-page, -.focus-card-body, -.header .profile-data, -.liver-two, -.login-container, -.menu-categories, -.menu-items .nav-menu .categories .nav-category, -.menu-items .nav-menu .categories .nav-category a, -.nav-ul .nav-category, -.nav-ul .nav-category a, -.open-header, -.org-tab, -.original-popup-header, -.original-popup .browse-form, -.original-top, -.ov-card, -.ov-card-detail, -.ov-card-watch, -.pie-chart, -.popular-slider .slick-track, -.preview-list, -.preview-list-item.text, -.profile-img, -.quick-slider .slick-track, -.quiz-list, -.quiz-list-row, -.quiz-result-box, -.r-card, -.readcard, -.retake-container, -.right-container .video-infocus .card-strip, -.right-container .video-infocus .video-small, -.rightsocial .share-strip, -.rightsocial .share-strip-social, -.scroll-header-right, -.section-big, -.sectiontrending, -.series, -.sh-tab, -.shadow-card.video-card .video-small, -.stories-now, -.story-now, -.story-now-circle, -.t-arrow, -.tbd-cont .tbc-border .tbd-text, -.team-mg, -.teamcolor, -.teamcolor .team-d, -.topic-cards, -.topic-container.d-flex .slick-track, -.topic-slide, -.topics-cont a, -.topics-cont div, -.topics .topic, -.toplogo, -.user-weather, -.video-l-card .card-detail, -.video-latest, -.videosummery, -.youmay-like, -a[data-network=indiatimes] { - display: flex; -} - -.fade-bg { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - opacity: .8; - margin: auto; - background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .22) 50%, rgba(0, 0, 0, .62) 71%, rgba(0, 0, 0, .69) 81%, rgba(0, 0, 0, .76)); -} - -.digital-left { - padding: 30px 50px; - flex: 0 0 45%; - flex-direction: column; - text-align: left; - align-items: flex-start; -} - -.digital-left h2 { - font-size: 36px; - color: #212121; - letter-spacing: -.4px; - line-height: 50px; -} - -.digital-left p { - font-size: 18px; - color: #000; -} - -.digital-right { - flex: 0 0 55%; - width: 100%; - overflow: hidden; - padding: 40% 20px 10%; - position: relative; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - cursor: pointer; - max-width: 65%; -} - -.digital-right .video-inner { - position: absolute; - width: 100%; - overflow: hidden; - top: 0; - left: 0; - height: 100%; - background-color: #000; -} - -.digital-right .video-inner video { - height: 100%; - object-fit: cover; - width: 100%; - display: inline-block; -} - -.digital-right .video-inner img { - display: block; - height: auto; -} - -.exclusive { - color: rgba(0, 0, 0, .7); - letter-spacing: .5px; -} - -.exclusive-mxp { - font-size: 13px; - background: #212121; - letter-spacing: .5px; - padding: 7px 15px 5px; - color: #fff; - z-index: 2; - text-transform: uppercase; -} - -.exclusive-mxp:after { - content: " "; - position: absolute; - display: block; - width: 100%; - height: 100%; - top: 0; - left: 0; - z-index: -1; - background: #212121; - transform-origin: bottom left; - transform: skew(-30deg, 0deg); -} - -.digital-page { - background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #f9f9f9); -} - -.read-story { - font-weight: 700; - letter-spacing: .2px; - margin-top: 20px; - color: rgba(0, 0, 0, .87); - text-transform: uppercase; -} - -.video-blue { - border-radius: 20px; - background: #264860; - padding: 70px; - text-align: center; - margin: 0 auto 40px; -} - -.video-heading { - display: block; - font-weight: 700; - color: #fff; - letter-spacing: .3px; - font-size: 32px; -} - -.credit-cont { - content: ""; - display: block; - border: 6px solid #000; - max-width: 740px; - text-align: center; - padding: 7px; - margin: 70px auto; - border-radius: 30px; -} - -.credit-cont div { - font-size: 24px; - color: #000; - margin-bottom: 10px; -} - -.credit-cont div b { - font-weight: 700; -} - -.credit-cont .head { - margin-top: -60px; - margin-bottom: 30px; - background: #fff; - display: inline-block; -} - -.credit-cont .head .inner-txt { - font-weight: 700; - color: #000; - font-size: 2em; - padding: 0 40px; - top: -20px; - position: relative; - text-transform: uppercase; -} - -.inner-arrows { - margin-right: 10px; - display: inline-flex; - width: 55px; - height: 80px; -} - -.left-a { - transform: rotateY(170deg); - margin-left: 20px; - margin-right: -30px; -} - -.align-items-center, -.author-strip, -.block-header, -.card-strip, -.comment-post-links, -.comments .narration-button, -.gallery-overlay-nav, -.header .profile-data, -.l-login-otp, -.liver-two, -.menu-items .nav-menu .categories .nav-category a, -.nav-ul .nav-category a, -.optical-widget-more a, -.original-popup-header, -.original-popup .browse-form, -.ov-card-watch, -.preview-list-item.text, -.scroll-header, -.scroll-header-right, -.topics-cont, -.toplogo, -a[data-network=indiatimes] { - align-items: center; -} - -.author-strip-img { - overflow: hidden; - width: 32px; -} - -.author-strip-editor { - display: block; - font-style: italic; - opacity: .7; - border-bottom: 2px solid #ccc; -} - -.pop-btn { - position: absolute; - right: 0; - bottom: 100px; - left: 0; - z-index: 2; - margin-left: auto; - margin-right: auto; - text-transform: uppercase; -} - -.pop-btn a { - font-weight: 700; - padding: 12px 40px 10px; - color: #000; - background: #fff; - border-radius: 30px; - box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .15); -} - -.blur-e { - position: absolute; - bottom: 0; - content: ""; - width: 100%; - height: 80px; - background: linear-gradient(hsla(0, 0%, 100%, 0) 5%, #fff); - min-height: 250px; -} - -.exclusive { - font-size: 14px; - margin-bottom: 20px; - color: #000; -} - -.digital-content iframe { - height: 482px; - width: 68%; - margin-bottom: 20px; -} - -.bgImg .article-image { - max-width: 1120px; - padding-left: .9375rem; - padding-right: .9375rem; - margin: 0 auto; - margin-bottom: 1.875rem; -} - -.container.longform .left-container, -.longform.fifa-center .left-container { - text-align: left; -} - -.container.longform .left-container h2, -.longform.fifa-center .left-container h2 { - margin-bottom: 1.875rem; -} - -.container.longform .click-to-reveal, -.container.longform .jumplink, -.container.longform .spacing-remove, -.longform.fifa-center .click-to-reveal, -.longform.fifa-center .jumplink, -.longform.fifa-center .spacing-remove { - max-width: 740px; - margin: 0 auto; - min-width: 740px; -} - -.container.longform .jumplink .jumptitle-container, -.longform.fifa-center .jumplink .jumptitle-container { - align-items: flex-start; -} - -.fixed { - position: fixed; - top: 70px; - z-index: 1; - max-width: inherit; -} - -.menu-categories .category { - flex: 0; - margin-right: 1.875rem; -} - -.menu-categories .category:last-child { - margin-right: 0; -} - -.menu-categories .category-thumb { - margin: 0 auto .75rem; - max-width: 4.5rem; - min-width: 4.5rem; - border-radius: 100%; -} - -.menu-categories .category-title { - font-weight: 700; -} - -.topics { - background-color: rgba(52, 87, 167, .05); -} - -.topics .topic { - border-bottom: 1px solid #e5e4de; - padding: 4px; -} - -.topics .topic a { - font-weight: 700; - padding-top: 12px; -} - -.topics .topic img { - width: 30px; - height: 30px; - margin-right: 15px; - border-radius: 50%; - margin-top: -5px; -} - -.personalized { - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - padding-bottom: 1rem; -} - -.personalized .personalize-image { - position: relative; -} - -.personalized .personalize-image .personalize-title { - font-weight: 700; - position: absolute; - top: 13%; - left: 0; - right: 0; - text-align: center; - color: #0037ff; - font-size: 1rem; - letter-spacing: 1.1px; -} - -.personalized .personalize-image .personalize-title span { - font-family: Verdana; - font-style: italic; -} - -.personalized .personalize-text { - opacity: .87; - font-size: 14px; - text-align: center; - margin-top: 1rem; - margin-bottom: 15px; -} - -.personalized .personalize-text .time-line span { - font-family: Verdana; -} - -.personalized .personalize-text .time-line:after { - background: rgba(0, 0, 0, .1); -} - -.personalized .login-button { - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - border-radius: 4px; - padding: .5rem 0; - text-align: center; -} - -.personalized .facebook-login, -.personalized .gmail-login { - width: 21%; - margin-right: 6%; -} - -.personalized .phone-login { - font-weight: 700; - width: 46%; - display: flex; - align-content: center; - justify-content: center; - color: #3457a7; -} - -.personalized .phone-login svg { - margin-right: .6rem; -} - -.personalized .phone-login svg path { - fill: #3457a7; -} - -.time-line { - padding-top: 16px; - padding-bottom: 5px; -} - -.time-line span { - font-weight: 700; - background: #fff; - padding: 0 10px; - z-index: 1; -} - -.time-line:after { - background: #000; - height: 1px; - content: ""; - display: block; - margin-top: -10px; -} - -.top-stroy .blue-tag { - left: 27.5rem; -} - -.top-stroy .card-img { - flex-basis: 100%; - display: block; -} - -.top-stroy .card-img:before { - padding-top: 51.59744%; -} - -.top-stroy .card-body { - position: absolute; - top: 0; - left: 0; - background-color: rgba(0, 0, 0, .8); - max-width: 23.25rem; - padding: 1rem 1.5rem; - height: 100%; - z-index: 1; -} - -.top-stroy .card-title { - font-weight: 700; -} - -.top-stroy .card-strip { - margin: 1rem 0; -} - -.top-stroy .card a { - color: inherit; -} - -.top-stroy .card svg { - fill: #fff; -} - -.daily-story-right .common-card:first-child { - padding-top: 0; -} - -.common-card { - border-bottom: 1px solid hsla(0, 0%, 9%, .1); - padding-top: .7rem; - padding-bottom: .5rem; -} - -.common-card .card-img { - order: 1; - flex: 0 0 calc(100% - 258px); -} - -.common-card .card-img:before { - padding-top: 133%; -} - -.common-card .card-body { - margin-left: 1rem; - order: 2; - flex: 0 0 calc(100% - 106px); -} - -.common-card .card-strip { - margin: .5rem 0; -} - -.topic-col { - background-color: rgba(52, 87, 167, .05); - flex: 0 0 21.75rem; - max-width: 21.75rem; - margin-right: 1.5rem; - padding: 1rem 1rem .25rem; -} - -.topic-col .card { - border-bottom: 1px solid hsla(0, 0%, 9%, .1); - padding-top: .6875rem; -} - -.topic-col .card:first-child { - border-top: 1px solid hsla(0, 0%, 9%, .1); -} - -.topic-col .card:last-child { - border-bottom: 0; -} - -.topic-col .card-img { - order: 2; - flex: 0 0 calc(100% - 228px); - height: 6.625rem; -} - -.topic-col .card-img:before { - padding-top: 150%; -} - -.topic-col .card-body { - order: 1; - flex: 0 0 calc(100% - 80px); - margin-right: .5rem; -} - -.topic-col .card-title { - font-weight: 700; -} - -.topic-col .card-strip { - margin: .625rem 0 1rem; -} - -.body-overlay { - position: absolute; - bottom: 16px; - left: 0; - max-width: 23.25rem; - z-index: 1; - padding-right: 1.5rem; -} - -.body-overlay svg { - fill: #fff; -} - -.daily-story-header { - font-weight: 700; - letter-spacing: 2.5px; - flex: 1 0 100%; - line-height: 1; -} - -.daily-story-header:after, -.daily-story-header:before { - position: absolute; - top: 50%; - transform: translateY(-50%); - background-color: #171717; - content: ""; - max-width: 37%; - height: .125rem; -} - -.daily-story-header:after { - left: 0; -} - -.daily-story-header:before { - right: 0; -} - -.daily-story-left { - flex: 0 0 calc(100% - 404px); - margin-right: 1.5rem; -} - -.daily-story-left .card-section { - margin-top: 15px; -} - -.daily-story-left .icon-video-big { - width: 60px; - height: 60px; -} - -.daily-story-right { - flex: 0 0 calc(100% - 720px); -} - -.overlay-card .card-img:before { - padding-top: 50.71839%; -} - -.overlay-card .card-strip { - margin: .5rem 0 1rem; -} - -.youmay-like .card { - background-color: #fff; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - min-width: 15.9375rem; - max-width: 15.9375rem; - margin-right: 1.5rem; - margin-bottom: .625rem; -} - -.youmay-like .card-img { - flex: 1 0 auto; -} - -.youmay-like .card-img:before { - padding-top: 56.47059%; -} - -.youmay-like .card-body { - padding: 1rem 1rem .5rem; -} - -.youmay-like .card-title { - font-size: 13px; - max-height: 54px; - min-height: 54px; - overflow: hidden; - line-height: 1.4; -} - -.youmay-like .card-strip { - padding: 0 1rem 1rem 0; -} - -.promoted .card-section, -.promoted .card-strip { - color: hsla(0, 0%, 9%, .7); -} - -.promoted .card .icon-ad { - width: .9375rem; - height: .9375rem; - margin-right: .5rem; - vertical-align: bottom; -} - -.promoted .card .ctn-icon { - background-color: #000; - width: 1.3125rem; - height: 1.5rem; -} - -.overlay-open .menu-overlay { - display: block; -} - -.section-container .section-last { - margin-right: 0; -} - -.youmay-like.section-youlike { - flex-wrap: wrap; - display: inline-block; - margin-right: 26px; - overflow: visible; -} - -.youmay-like.section-youlike .small-card { - margin-right: 1.65rem; - margin-bottom: 50px; -} - -.youmay-like.section-youlike .small-card:last-child, -.youmay-like.section-youlike .small-card:nth-child(5n) { - margin-right: 0; -} - -.youmay-like.section-youlike .section-big .card-strip { - margin: 40px 0; - padding: 0; -} - -.youmay-like.section-youlike .card-title { - min-height: 54px; -} - -.youmay-like.section-youlike .card-img img { - display: block; - line-height: 0; -} - -.youmay-like.section-youlike .card-body { - min-height: 133px; -} - -.youmay-like.section-youlike .card-caption-title { - font-size: 12px; - font-weight: 700; -} - -.section-big { - background-color: rgba(0, 0, 0, .8); - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - border-radius: .25rem; -} - -.section-big .left-section { - padding: 24px; - position: relative; - flex: 0 0 40%; -} - -.section-big .left-section .top-text { - color: #fff; - font-weight: 700; -} - -.section-big .left-section .top-summury { - color: #fff; - margin-bottom: 20px; - max-height: 68px; - overflow: hidden; -} - -.section-big .left-section .card-strip { - margin: 15px 0; -} - -.section-big .left-section .card-strip, -.section-big .left-section a { - color: #fff; -} - -.section-big .left-section svg path { - fill: #fff; -} - -.section-big .left-section .body-overlay { - max-width: inherit; -} - -.section-big .right-section.top-stroy { - flex: 0 0 60%; -} - -.section-widget .click-to-reveal, -.section-widget .spacing-remove { - margin-left: 0; - margin-right: 0; -} - -.section-container .menu-categories .category-title { - max-width: 6.2rem; - min-width: 6.2rem; -} - -.section-container .top-trending .small-card:last-child { - margin-right: 0; -} - -.circle-trending { - left: -18px; - top: -19px; - z-index: 1; - width: 50px; - height: 50px; - padding: 23px 0 0 23px; - border-radius: 50%; -} - -.circle-trending, -.custom-dropdown { - font-weight: 700; - color: #171717; - background: #fff; -} - -.custom-dropdown { - width: 250px; - border: 1px solid #171717; - border-radius: 4px; - padding: 6px 15px; - position: relative; -} - -.custom-dropdown span { - position: absolute; - right: 10px; - top: 3px; -} - -.custom-dropdown span svg path { - fill: #000; -} - -.bigcard .card-cont.default-icon-tick .theme-popup, -.bigcard .card-cont.default-icon .theme-popup, -.bigcard .card-cont.ov-card-watch .theme-popup, -.bigcard .ml-auto.card-cont .theme-popup, -.bottom-blur.default-icon-tick .theme-popup, -.bottom-blur.default-icon .theme-popup, -.bottom-blur.ov-card-watch .theme-popup, -.default-icon-tick .theme-popup, -.default-icon .theme-popup, -.exclusive-mxp.default-icon-tick .theme-popup, -.exclusive-mxp.default-icon .theme-popup, -.exclusive-mxp.ov-card-watch .theme-popup, -.gallery-overlay-icon.default-icon-tick .theme-popup, -.gallery-overlay-icon.default-icon .theme-popup, -.image_container.default-icon-tick .theme-popup, -.image_container.default-icon .theme-popup, -.image_container.ov-card-watch .theme-popup, -.ml-auto.bottom-blur .theme-popup, -.ml-auto.exclusive-mxp .theme-popup, -.ml-auto.gallery-overlay-icon .theme-popup, -.ml-auto.image_container .theme-popup, -.ml-auto.pos-relative .theme-popup, -.ml-auto.quiz-result-or .theme-popup, -.ml-auto.responsive-wrap .theme-popup, -.no-result .ml-auto.top .theme-popup, -.no-result .ov-card-watch.top .theme-popup, -.no-result .top.default-icon-tick .theme-popup, -.no-result .top.default-icon .theme-popup, -.ov-card-watch.default-icon-tick .theme-popup, -.ov-card-watch.default-icon .theme-popup, -.ov-card-watch.gallery-overlay-icon .theme-popup, -.ov-card-watch.quiz-result-or .theme-popup, -.pos-relative.ov-card-watch .theme-popup, -.quiz-result-or.default-icon-tick .theme-popup, -.quiz-result-or.default-icon .theme-popup, -.readnext .common-card .card-body.default-icon-tick .theme-popup, -.readnext .common-card .card-body.default-icon .theme-popup, -.readnext .common-card .card-body.ov-card-watch .theme-popup, -.readnext .common-card .ml-auto.card-body .theme-popup, -.responsive-wrap.default-icon-tick .theme-popup, -.responsive-wrap.default-icon .theme-popup, -.responsive-wrap.ov-card-watch .theme-popup, -.sectiontrending .ml-auto.top-bar .theme-popup, -.sectiontrending .top-bar.default-icon-tick .theme-popup, -.sectiontrending .top-bar.default-icon .theme-popup, -.sectiontrending .top-bar.ov-card-watch .theme-popup { - position: absolute; - left: 0; - top: 0; - width: 255px; - border-radius: 4px; - box-shadow: 0 5px 10px 0 hsla(0, 0%, 9%, .1); - z-index: 2; -} - -.bigcard .card-cont.default-icon-tick .popup-header, -.bigcard .card-cont.default-icon .popup-header, -.bigcard .card-cont.ov-card-watch .popup-header, -.bigcard .ml-auto.card-cont .popup-header, -.bottom-blur.default-icon-tick .popup-header, -.bottom-blur.default-icon .popup-header, -.bottom-blur.ov-card-watch .popup-header, -.default-icon-tick .popup-header, -.default-icon .popup-header, -.exclusive-mxp.default-icon-tick .popup-header, -.exclusive-mxp.default-icon .popup-header, -.exclusive-mxp.ov-card-watch .popup-header, -.gallery-overlay-icon.default-icon-tick .popup-header, -.gallery-overlay-icon.default-icon .popup-header, -.image_container.default-icon-tick .popup-header, -.image_container.default-icon .popup-header, -.image_container.ov-card-watch .popup-header, -.ml-auto.bottom-blur .popup-header, -.ml-auto.exclusive-mxp .popup-header, -.ml-auto.gallery-overlay-icon .popup-header, -.ml-auto.image_container .popup-header, -.ml-auto.pos-relative .popup-header, -.ml-auto.quiz-result-or .popup-header, -.ml-auto.responsive-wrap .popup-header, -.no-result .ml-auto.top .popup-header, -.no-result .ov-card-watch.top .popup-header, -.no-result .top.default-icon-tick .popup-header, -.no-result .top.default-icon .popup-header, -.ov-card-watch.default-icon-tick .popup-header, -.ov-card-watch.default-icon .popup-header, -.ov-card-watch.gallery-overlay-icon .popup-header, -.ov-card-watch.quiz-result-or .popup-header, -.pos-relative.ov-card-watch .popup-header, -.quiz-result-or.default-icon-tick .popup-header, -.quiz-result-or.default-icon .popup-header, -.readnext .common-card .card-body.default-icon-tick .popup-header, -.readnext .common-card .card-body.default-icon .popup-header, -.readnext .common-card .card-body.ov-card-watch .popup-header, -.readnext .common-card .ml-auto.card-body .popup-header, -.responsive-wrap.default-icon-tick .popup-header, -.responsive-wrap.default-icon .popup-header, -.responsive-wrap.ov-card-watch .popup-header, -.sectiontrending .ml-auto.top-bar .popup-header, -.sectiontrending .top-bar.default-icon-tick .popup-header, -.sectiontrending .top-bar.default-icon .popup-header, -.sectiontrending .top-bar.ov-card-watch .popup-header { - font-weight: 700; - padding: 1rem 1rem .75rem; -} - -.bigcard .card-cont.default-icon-tick .close, -.bigcard .card-cont.default-icon .close, -.bigcard .card-cont.ov-card-watch .close, -.bigcard .ml-auto.card-cont .close, -.bottom-blur.default-icon-tick .close, -.bottom-blur.default-icon .close, -.bottom-blur.ov-card-watch .close, -.default-icon-tick .close, -.default-icon .close, -.exclusive-mxp.default-icon-tick .close, -.exclusive-mxp.default-icon .close, -.exclusive-mxp.ov-card-watch .close, -.gallery-overlay-icon.default-icon-tick .close, -.gallery-overlay-icon.default-icon .close, -.image_container.default-icon-tick .close, -.image_container.default-icon .close, -.image_container.ov-card-watch .close, -.ml-auto.bottom-blur .close, -.ml-auto.exclusive-mxp .close, -.ml-auto.gallery-overlay-icon .close, -.ml-auto.image_container .close, -.ml-auto.pos-relative .close, -.ml-auto.quiz-result-or .close, -.ml-auto.responsive-wrap .close, -.no-result .ml-auto.top .close, -.no-result .ov-card-watch.top .close, -.no-result .top.default-icon-tick .close, -.no-result .top.default-icon .close, -.ov-card-watch.default-icon-tick .close, -.ov-card-watch.default-icon .close, -.ov-card-watch.gallery-overlay-icon .close, -.ov-card-watch.quiz-result-or .close, -.pos-relative.ov-card-watch .close, -.quiz-result-or.default-icon-tick .close, -.quiz-result-or.default-icon .close, -.readnext .common-card .card-body.default-icon-tick .close, -.readnext .common-card .card-body.default-icon .close, -.readnext .common-card .card-body.ov-card-watch .close, -.readnext .common-card .ml-auto.card-body .close, -.responsive-wrap.default-icon-tick .close, -.responsive-wrap.default-icon .close, -.responsive-wrap.ov-card-watch .close, -.sectiontrending .ml-auto.top-bar .close, -.sectiontrending .top-bar.default-icon-tick .close, -.sectiontrending .top-bar.default-icon .close, -.sectiontrending .top-bar.ov-card-watch .close { - padding: 17px 20px 0 0; -} - -.bigcard .card-cont.default-icon-tick .custom-open, -.bigcard .card-cont.default-icon .custom-open, -.bigcard .card-cont.ov-card-watch .custom-open, -.bigcard .ml-auto.card-cont .custom-open, -.bottom-blur.default-icon-tick .custom-open, -.bottom-blur.default-icon .custom-open, -.bottom-blur.ov-card-watch .custom-open, -.default-icon-tick .custom-open, -.default-icon .custom-open, -.exclusive-mxp.default-icon-tick .custom-open, -.exclusive-mxp.default-icon .custom-open, -.exclusive-mxp.ov-card-watch .custom-open, -.gallery-overlay-icon.default-icon-tick .custom-open, -.gallery-overlay-icon.default-icon .custom-open, -.image_container.default-icon-tick .custom-open, -.image_container.default-icon .custom-open, -.image_container.ov-card-watch .custom-open, -.ml-auto.bottom-blur .custom-open, -.ml-auto.exclusive-mxp .custom-open, -.ml-auto.gallery-overlay-icon .custom-open, -.ml-auto.image_container .custom-open, -.ml-auto.pos-relative .custom-open, -.ml-auto.quiz-result-or .custom-open, -.ml-auto.responsive-wrap .custom-open, -.no-result .ml-auto.top .custom-open, -.no-result .ov-card-watch.top .custom-open, -.no-result .top.default-icon-tick .custom-open, -.no-result .top.default-icon .custom-open, -.ov-card-watch.default-icon-tick .custom-open, -.ov-card-watch.default-icon .custom-open, -.ov-card-watch.gallery-overlay-icon .custom-open, -.ov-card-watch.quiz-result-or .custom-open, -.pos-relative.ov-card-watch .custom-open, -.quiz-result-or.default-icon-tick .custom-open, -.quiz-result-or.default-icon .custom-open, -.readnext .common-card .card-body.default-icon-tick .custom-open, -.readnext .common-card .card-body.default-icon .custom-open, -.readnext .common-card .card-body.ov-card-watch .custom-open, -.readnext .common-card .ml-auto.card-body .custom-open, -.responsive-wrap.default-icon-tick .custom-open, -.responsive-wrap.default-icon .custom-open, -.responsive-wrap.ov-card-watch .custom-open, -.sectiontrending .ml-auto.top-bar .custom-open, -.sectiontrending .top-bar.default-icon-tick .custom-open, -.sectiontrending .top-bar.default-icon .custom-open, -.sectiontrending .top-bar.ov-card-watch .custom-open { - border-radius: 4px; - overflow: hidden; -} - -.bigcard .card-cont.default-icon-tick .black-theme, -.bigcard .card-cont.default-icon .black-theme, -.bigcard .card-cont.ov-card-watch .black-theme, -.bigcard .ml-auto.card-cont .black-theme, -.bottom-blur.default-icon-tick .black-theme, -.bottom-blur.default-icon .black-theme, -.bottom-blur.ov-card-watch .black-theme, -.default-icon-tick .black-theme, -.default-icon .black-theme, -.exclusive-mxp.default-icon-tick .black-theme, -.exclusive-mxp.default-icon .black-theme, -.exclusive-mxp.ov-card-watch .black-theme, -.gallery-overlay-icon.default-icon-tick .black-theme, -.gallery-overlay-icon.default-icon .black-theme, -.image_container.default-icon-tick .black-theme, -.image_container.default-icon .black-theme, -.image_container.ov-card-watch .black-theme, -.ml-auto.bottom-blur .black-theme, -.ml-auto.exclusive-mxp .black-theme, -.ml-auto.gallery-overlay-icon .black-theme, -.ml-auto.image_container .black-theme, -.ml-auto.pos-relative .black-theme, -.ml-auto.quiz-result-or .black-theme, -.ml-auto.responsive-wrap .black-theme, -.no-result .ml-auto.top .black-theme, -.no-result .ov-card-watch.top .black-theme, -.no-result .top.default-icon-tick .black-theme, -.no-result .top.default-icon .black-theme, -.ov-card-watch.default-icon-tick .black-theme, -.ov-card-watch.default-icon .black-theme, -.ov-card-watch.gallery-overlay-icon .black-theme, -.ov-card-watch.quiz-result-or .black-theme, -.pos-relative.ov-card-watch .black-theme, -.quiz-result-or.default-icon-tick .black-theme, -.quiz-result-or.default-icon .black-theme, -.readnext .common-card .card-body.default-icon-tick .black-theme, -.readnext .common-card .card-body.default-icon .black-theme, -.readnext .common-card .card-body.ov-card-watch .black-theme, -.readnext .common-card .ml-auto.card-body .black-theme, -.responsive-wrap.default-icon-tick .black-theme, -.responsive-wrap.default-icon .black-theme, -.responsive-wrap.ov-card-watch .black-theme, -.sectiontrending .ml-auto.top-bar .black-theme, -.sectiontrending .top-bar.default-icon-tick .black-theme, -.sectiontrending .top-bar.default-icon .black-theme, -.sectiontrending .top-bar.ov-card-watch .black-theme { - background-color: #000; - height: 50px; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown, -.bigcard .card-cont.default-icon .open-dropdown, -.bigcard .card-cont.ov-card-watch .open-dropdown, -.bigcard .ml-auto.card-cont .open-dropdown, -.bottom-blur.default-icon-tick .open-dropdown, -.bottom-blur.default-icon .open-dropdown, -.bottom-blur.ov-card-watch .open-dropdown, -.default-icon-tick .open-dropdown, -.default-icon .open-dropdown, -.exclusive-mxp.default-icon-tick .open-dropdown, -.exclusive-mxp.default-icon .open-dropdown, -.exclusive-mxp.ov-card-watch .open-dropdown, -.gallery-overlay-icon.default-icon-tick .open-dropdown, -.gallery-overlay-icon.default-icon .open-dropdown, -.image_container.default-icon-tick .open-dropdown, -.image_container.default-icon .open-dropdown, -.image_container.ov-card-watch .open-dropdown, -.ml-auto.bottom-blur .open-dropdown, -.ml-auto.exclusive-mxp .open-dropdown, -.ml-auto.gallery-overlay-icon .open-dropdown, -.ml-auto.image_container .open-dropdown, -.ml-auto.pos-relative .open-dropdown, -.ml-auto.quiz-result-or .open-dropdown, -.ml-auto.responsive-wrap .open-dropdown, -.no-result .ml-auto.top .open-dropdown, -.no-result .ov-card-watch.top .open-dropdown, -.no-result .top.default-icon-tick .open-dropdown, -.no-result .top.default-icon .open-dropdown, -.ov-card-watch.default-icon-tick .open-dropdown, -.ov-card-watch.default-icon .open-dropdown, -.ov-card-watch.gallery-overlay-icon .open-dropdown, -.ov-card-watch.quiz-result-or .open-dropdown, -.pos-relative.ov-card-watch .open-dropdown, -.quiz-result-or.default-icon-tick .open-dropdown, -.quiz-result-or.default-icon .open-dropdown, -.readnext .common-card .card-body.default-icon-tick .open-dropdown, -.readnext .common-card .card-body.default-icon .open-dropdown, -.readnext .common-card .card-body.ov-card-watch .open-dropdown, -.readnext .common-card .ml-auto.card-body .open-dropdown, -.responsive-wrap.default-icon-tick .open-dropdown, -.responsive-wrap.default-icon .open-dropdown, -.responsive-wrap.ov-card-watch .open-dropdown, -.sectiontrending .ml-auto.top-bar .open-dropdown, -.sectiontrending .top-bar.default-icon-tick .open-dropdown, -.sectiontrending .top-bar.default-icon .open-dropdown, -.sectiontrending .top-bar.ov-card-watch .open-dropdown { - background: #fff; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown .menu-icon:last-child, -.bigcard .card-cont.default-icon .open-dropdown .menu-icon:last-child, -.bigcard .card-cont.ov-card-watch .open-dropdown .menu-icon:last-child, -.bigcard .ml-auto.card-cont .open-dropdown .menu-icon:last-child, -.bottom-blur.default-icon-tick .open-dropdown .menu-icon:last-child, -.bottom-blur.default-icon .open-dropdown .menu-icon:last-child, -.bottom-blur.ov-card-watch .open-dropdown .menu-icon:last-child, -.default-icon-tick .open-dropdown .menu-icon:last-child, -.default-icon .open-dropdown .menu-icon:last-child, -.exclusive-mxp.default-icon-tick .open-dropdown .menu-icon:last-child, -.exclusive-mxp.default-icon .open-dropdown .menu-icon:last-child, -.exclusive-mxp.ov-card-watch .open-dropdown .menu-icon:last-child, -.gallery-overlay-icon.default-icon-tick .open-dropdown .menu-icon:last-child, -.gallery-overlay-icon.default-icon .open-dropdown .menu-icon:last-child, -.image_container.default-icon-tick .open-dropdown .menu-icon:last-child, -.image_container.default-icon .open-dropdown .menu-icon:last-child, -.image_container.ov-card-watch .open-dropdown .menu-icon:last-child, -.ml-auto.bottom-blur .open-dropdown .menu-icon:last-child, -.ml-auto.exclusive-mxp .open-dropdown .menu-icon:last-child, -.ml-auto.gallery-overlay-icon .open-dropdown .menu-icon:last-child, -.ml-auto.image_container .open-dropdown .menu-icon:last-child, -.ml-auto.pos-relative .open-dropdown .menu-icon:last-child, -.ml-auto.quiz-result-or .open-dropdown .menu-icon:last-child, -.ml-auto.responsive-wrap .open-dropdown .menu-icon:last-child, -.no-result .ml-auto.top .open-dropdown .menu-icon:last-child, -.no-result .ov-card-watch.top .open-dropdown .menu-icon:last-child, -.no-result .top.default-icon-tick .open-dropdown .menu-icon:last-child, -.no-result .top.default-icon .open-dropdown .menu-icon:last-child, -.ov-card-watch.default-icon-tick .open-dropdown .menu-icon:last-child, -.ov-card-watch.default-icon .open-dropdown .menu-icon:last-child, -.ov-card-watch.gallery-overlay-icon .open-dropdown .menu-icon:last-child, -.ov-card-watch.quiz-result-or .open-dropdown .menu-icon:last-child, -.pos-relative.ov-card-watch .open-dropdown .menu-icon:last-child, -.quiz-result-or.default-icon-tick .open-dropdown .menu-icon:last-child, -.quiz-result-or.default-icon .open-dropdown .menu-icon:last-child, -.readnext .common-card .card-body.default-icon-tick .open-dropdown .menu-icon:last-child, -.readnext .common-card .card-body.default-icon .open-dropdown .menu-icon:last-child, -.readnext .common-card .card-body.ov-card-watch .open-dropdown .menu-icon:last-child, -.readnext .common-card .ml-auto.card-body .open-dropdown .menu-icon:last-child, -.responsive-wrap.default-icon-tick .open-dropdown .menu-icon:last-child, -.responsive-wrap.default-icon .open-dropdown .menu-icon:last-child, -.responsive-wrap.ov-card-watch .open-dropdown .menu-icon:last-child, -.sectiontrending .ml-auto.top-bar .open-dropdown .menu-icon:last-child, -.sectiontrending .top-bar.default-icon-tick .open-dropdown .menu-icon:last-child, -.sectiontrending .top-bar.default-icon .open-dropdown .menu-icon:last-child, -.sectiontrending .top-bar.ov-card-watch .open-dropdown .menu-icon:last-child { - border-bottom: 0; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.bigcard .card-cont.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.bigcard .card-cont.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.bigcard .ml-auto.card-cont .open-dropdown .menu-icon:last-child .menu-text, -.bottom-blur.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.bottom-blur.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.bottom-blur.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.exclusive-mxp.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.exclusive-mxp.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.exclusive-mxp.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.gallery-overlay-icon.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.gallery-overlay-icon.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.image_container.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.image_container.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.image_container.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.bottom-blur .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.exclusive-mxp .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.gallery-overlay-icon .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.image_container .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.pos-relative .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.quiz-result-or .open-dropdown .menu-icon:last-child .menu-text, -.ml-auto.responsive-wrap .open-dropdown .menu-icon:last-child .menu-text, -.no-result .ml-auto.top .open-dropdown .menu-icon:last-child .menu-text, -.no-result .ov-card-watch.top .open-dropdown .menu-icon:last-child .menu-text, -.no-result .top.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.no-result .top.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.ov-card-watch.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.ov-card-watch.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.ov-card-watch.gallery-overlay-icon .open-dropdown .menu-icon:last-child .menu-text, -.ov-card-watch.quiz-result-or .open-dropdown .menu-icon:last-child .menu-text, -.pos-relative.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.quiz-result-or.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.quiz-result-or.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.readnext .common-card .card-body.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.readnext .common-card .card-body.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.readnext .common-card .card-body.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.readnext .common-card .ml-auto.card-body .open-dropdown .menu-icon:last-child .menu-text, -.responsive-wrap.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.responsive-wrap.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.responsive-wrap.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text, -.sectiontrending .ml-auto.top-bar .open-dropdown .menu-icon:last-child .menu-text, -.sectiontrending .top-bar.default-icon-tick .open-dropdown .menu-icon:last-child .menu-text, -.sectiontrending .top-bar.default-icon .open-dropdown .menu-icon:last-child .menu-text, -.sectiontrending .top-bar.ov-card-watch .open-dropdown .menu-icon:last-child .menu-text { - margin-left: 41px; - opacity: .5; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown .menu-icon, -.bigcard .card-cont.default-icon .open-dropdown .menu-icon, -.bigcard .card-cont.ov-card-watch .open-dropdown .menu-icon, -.bigcard .ml-auto.card-cont .open-dropdown .menu-icon, -.bottom-blur.default-icon-tick .open-dropdown .menu-icon, -.bottom-blur.default-icon .open-dropdown .menu-icon, -.bottom-blur.ov-card-watch .open-dropdown .menu-icon, -.default-icon-tick .open-dropdown .menu-icon, -.default-icon .open-dropdown .menu-icon, -.exclusive-mxp.default-icon-tick .open-dropdown .menu-icon, -.exclusive-mxp.default-icon .open-dropdown .menu-icon, -.exclusive-mxp.ov-card-watch .open-dropdown .menu-icon, -.gallery-overlay-icon.default-icon-tick .open-dropdown .menu-icon, -.gallery-overlay-icon.default-icon .open-dropdown .menu-icon, -.image_container.default-icon-tick .open-dropdown .menu-icon, -.image_container.default-icon .open-dropdown .menu-icon, -.image_container.ov-card-watch .open-dropdown .menu-icon, -.ml-auto.bottom-blur .open-dropdown .menu-icon, -.ml-auto.exclusive-mxp .open-dropdown .menu-icon, -.ml-auto.gallery-overlay-icon .open-dropdown .menu-icon, -.ml-auto.image_container .open-dropdown .menu-icon, -.ml-auto.pos-relative .open-dropdown .menu-icon, -.ml-auto.quiz-result-or .open-dropdown .menu-icon, -.ml-auto.responsive-wrap .open-dropdown .menu-icon, -.no-result .ml-auto.top .open-dropdown .menu-icon, -.no-result .ov-card-watch.top .open-dropdown .menu-icon, -.no-result .top.default-icon-tick .open-dropdown .menu-icon, -.no-result .top.default-icon .open-dropdown .menu-icon, -.ov-card-watch.default-icon-tick .open-dropdown .menu-icon, -.ov-card-watch.default-icon .open-dropdown .menu-icon, -.ov-card-watch.gallery-overlay-icon .open-dropdown .menu-icon, -.ov-card-watch.quiz-result-or .open-dropdown .menu-icon, -.pos-relative.ov-card-watch .open-dropdown .menu-icon, -.quiz-result-or.default-icon-tick .open-dropdown .menu-icon, -.quiz-result-or.default-icon .open-dropdown .menu-icon, -.readnext .common-card .card-body.default-icon-tick .open-dropdown .menu-icon, -.readnext .common-card .card-body.default-icon .open-dropdown .menu-icon, -.readnext .common-card .card-body.ov-card-watch .open-dropdown .menu-icon, -.readnext .common-card .ml-auto.card-body .open-dropdown .menu-icon, -.responsive-wrap.default-icon-tick .open-dropdown .menu-icon, -.responsive-wrap.default-icon .open-dropdown .menu-icon, -.responsive-wrap.ov-card-watch .open-dropdown .menu-icon, -.sectiontrending .ml-auto.top-bar .open-dropdown .menu-icon, -.sectiontrending .top-bar.default-icon-tick .open-dropdown .menu-icon, -.sectiontrending .top-bar.default-icon .open-dropdown .menu-icon, -.sectiontrending .top-bar.ov-card-watch .open-dropdown .menu-icon { - padding: 10px 15px; - display: flex; - align-items: center; - border-bottom: 1px solid #ddd; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown .menu-icon .menu-img, -.bigcard .card-cont.default-icon .open-dropdown .menu-icon .menu-img, -.bigcard .card-cont.ov-card-watch .open-dropdown .menu-icon .menu-img, -.bigcard .ml-auto.card-cont .open-dropdown .menu-icon .menu-img, -.bottom-blur.default-icon-tick .open-dropdown .menu-icon .menu-img, -.bottom-blur.default-icon .open-dropdown .menu-icon .menu-img, -.bottom-blur.ov-card-watch .open-dropdown .menu-icon .menu-img, -.default-icon-tick .open-dropdown .menu-icon .menu-img, -.default-icon .open-dropdown .menu-icon .menu-img, -.exclusive-mxp.default-icon-tick .open-dropdown .menu-icon .menu-img, -.exclusive-mxp.default-icon .open-dropdown .menu-icon .menu-img, -.exclusive-mxp.ov-card-watch .open-dropdown .menu-icon .menu-img, -.gallery-overlay-icon.default-icon-tick .open-dropdown .menu-icon .menu-img, -.gallery-overlay-icon.default-icon .open-dropdown .menu-icon .menu-img, -.image_container.default-icon-tick .open-dropdown .menu-icon .menu-img, -.image_container.default-icon .open-dropdown .menu-icon .menu-img, -.image_container.ov-card-watch .open-dropdown .menu-icon .menu-img, -.ml-auto.bottom-blur .open-dropdown .menu-icon .menu-img, -.ml-auto.exclusive-mxp .open-dropdown .menu-icon .menu-img, -.ml-auto.gallery-overlay-icon .open-dropdown .menu-icon .menu-img, -.ml-auto.image_container .open-dropdown .menu-icon .menu-img, -.ml-auto.pos-relative .open-dropdown .menu-icon .menu-img, -.ml-auto.quiz-result-or .open-dropdown .menu-icon .menu-img, -.ml-auto.responsive-wrap .open-dropdown .menu-icon .menu-img, -.no-result .ml-auto.top .open-dropdown .menu-icon .menu-img, -.no-result .ov-card-watch.top .open-dropdown .menu-icon .menu-img, -.no-result .top.default-icon-tick .open-dropdown .menu-icon .menu-img, -.no-result .top.default-icon .open-dropdown .menu-icon .menu-img, -.ov-card-watch.default-icon-tick .open-dropdown .menu-icon .menu-img, -.ov-card-watch.default-icon .open-dropdown .menu-icon .menu-img, -.ov-card-watch.gallery-overlay-icon .open-dropdown .menu-icon .menu-img, -.ov-card-watch.quiz-result-or .open-dropdown .menu-icon .menu-img, -.pos-relative.ov-card-watch .open-dropdown .menu-icon .menu-img, -.quiz-result-or.default-icon-tick .open-dropdown .menu-icon .menu-img, -.quiz-result-or.default-icon .open-dropdown .menu-icon .menu-img, -.readnext .common-card .card-body.default-icon-tick .open-dropdown .menu-icon .menu-img, -.readnext .common-card .card-body.default-icon .open-dropdown .menu-icon .menu-img, -.readnext .common-card .card-body.ov-card-watch .open-dropdown .menu-icon .menu-img, -.readnext .common-card .ml-auto.card-body .open-dropdown .menu-icon .menu-img, -.responsive-wrap.default-icon-tick .open-dropdown .menu-icon .menu-img, -.responsive-wrap.default-icon .open-dropdown .menu-icon .menu-img, -.responsive-wrap.ov-card-watch .open-dropdown .menu-icon .menu-img, -.sectiontrending .ml-auto.top-bar .open-dropdown .menu-icon .menu-img, -.sectiontrending .top-bar.default-icon-tick .open-dropdown .menu-icon .menu-img, -.sectiontrending .top-bar.default-icon .open-dropdown .menu-icon .menu-img, -.sectiontrending .top-bar.ov-card-watch .open-dropdown .menu-icon .menu-img { - line-height: 0; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.bigcard .card-cont.default-icon .open-dropdown .menu-icon .menu-img img, -.bigcard .card-cont.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.bigcard .ml-auto.card-cont .open-dropdown .menu-icon .menu-img img, -.bottom-blur.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.bottom-blur.default-icon .open-dropdown .menu-icon .menu-img img, -.bottom-blur.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.default-icon .open-dropdown .menu-icon .menu-img img, -.exclusive-mxp.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.exclusive-mxp.default-icon .open-dropdown .menu-icon .menu-img img, -.exclusive-mxp.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.gallery-overlay-icon.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.gallery-overlay-icon.default-icon .open-dropdown .menu-icon .menu-img img, -.image_container.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.image_container.default-icon .open-dropdown .menu-icon .menu-img img, -.image_container.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.ml-auto.bottom-blur .open-dropdown .menu-icon .menu-img img, -.ml-auto.exclusive-mxp .open-dropdown .menu-icon .menu-img img, -.ml-auto.gallery-overlay-icon .open-dropdown .menu-icon .menu-img img, -.ml-auto.image_container .open-dropdown .menu-icon .menu-img img, -.ml-auto.pos-relative .open-dropdown .menu-icon .menu-img img, -.ml-auto.quiz-result-or .open-dropdown .menu-icon .menu-img img, -.ml-auto.responsive-wrap .open-dropdown .menu-icon .menu-img img, -.no-result .ml-auto.top .open-dropdown .menu-icon .menu-img img, -.no-result .ov-card-watch.top .open-dropdown .menu-icon .menu-img img, -.no-result .top.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.no-result .top.default-icon .open-dropdown .menu-icon .menu-img img, -.ov-card-watch.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.ov-card-watch.default-icon .open-dropdown .menu-icon .menu-img img, -.ov-card-watch.gallery-overlay-icon .open-dropdown .menu-icon .menu-img img, -.ov-card-watch.quiz-result-or .open-dropdown .menu-icon .menu-img img, -.pos-relative.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.quiz-result-or.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.quiz-result-or.default-icon .open-dropdown .menu-icon .menu-img img, -.readnext .common-card .card-body.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.readnext .common-card .card-body.default-icon .open-dropdown .menu-icon .menu-img img, -.readnext .common-card .card-body.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.readnext .common-card .ml-auto.card-body .open-dropdown .menu-icon .menu-img img, -.responsive-wrap.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.responsive-wrap.default-icon .open-dropdown .menu-icon .menu-img img, -.responsive-wrap.ov-card-watch .open-dropdown .menu-icon .menu-img img, -.sectiontrending .ml-auto.top-bar .open-dropdown .menu-icon .menu-img img, -.sectiontrending .top-bar.default-icon-tick .open-dropdown .menu-icon .menu-img img, -.sectiontrending .top-bar.default-icon .open-dropdown .menu-icon .menu-img img, -.sectiontrending .top-bar.ov-card-watch .open-dropdown .menu-icon .menu-img img { - width: 25px; - height: 25px; - border-radius: 50%; - margin-right: 12px; -} - -.bigcard .card-cont.default-icon-tick .open-dropdown .menu-icon .menu-text, -.bigcard .card-cont.default-icon .open-dropdown .menu-icon .menu-text, -.bigcard .card-cont.ov-card-watch .open-dropdown .menu-icon .menu-text, -.bigcard .ml-auto.card-cont .open-dropdown .menu-icon .menu-text, -.bottom-blur.default-icon-tick .open-dropdown .menu-icon .menu-text, -.bottom-blur.default-icon .open-dropdown .menu-icon .menu-text, -.bottom-blur.ov-card-watch .open-dropdown .menu-icon .menu-text, -.default-icon-tick .open-dropdown .menu-icon .menu-text, -.default-icon .open-dropdown .menu-icon .menu-text, -.exclusive-mxp.default-icon-tick .open-dropdown .menu-icon .menu-text, -.exclusive-mxp.default-icon .open-dropdown .menu-icon .menu-text, -.exclusive-mxp.ov-card-watch .open-dropdown .menu-icon .menu-text, -.gallery-overlay-icon.default-icon-tick .open-dropdown .menu-icon .menu-text, -.gallery-overlay-icon.default-icon .open-dropdown .menu-icon .menu-text, -.image_container.default-icon-tick .open-dropdown .menu-icon .menu-text, -.image_container.default-icon .open-dropdown .menu-icon .menu-text, -.image_container.ov-card-watch .open-dropdown .menu-icon .menu-text, -.ml-auto.bottom-blur .open-dropdown .menu-icon .menu-text, -.ml-auto.exclusive-mxp .open-dropdown .menu-icon .menu-text, -.ml-auto.gallery-overlay-icon .open-dropdown .menu-icon .menu-text, -.ml-auto.image_container .open-dropdown .menu-icon .menu-text, -.ml-auto.pos-relative .open-dropdown .menu-icon .menu-text, -.ml-auto.quiz-result-or .open-dropdown .menu-icon .menu-text, -.ml-auto.responsive-wrap .open-dropdown .menu-icon .menu-text, -.no-result .ml-auto.top .open-dropdown .menu-icon .menu-text, -.no-result .ov-card-watch.top .open-dropdown .menu-icon .menu-text, -.no-result .top.default-icon-tick .open-dropdown .menu-icon .menu-text, -.no-result .top.default-icon .open-dropdown .menu-icon .menu-text, -.ov-card-watch.default-icon-tick .open-dropdown .menu-icon .menu-text, -.ov-card-watch.default-icon .open-dropdown .menu-icon .menu-text, -.ov-card-watch.gallery-overlay-icon .open-dropdown .menu-icon .menu-text, -.ov-card-watch.quiz-result-or .open-dropdown .menu-icon .menu-text, -.pos-relative.ov-card-watch .open-dropdown .menu-icon .menu-text, -.quiz-result-or.default-icon-tick .open-dropdown .menu-icon .menu-text, -.quiz-result-or.default-icon .open-dropdown .menu-icon .menu-text, -.readnext .common-card .card-body.default-icon-tick .open-dropdown .menu-icon .menu-text, -.readnext .common-card .card-body.default-icon .open-dropdown .menu-icon .menu-text, -.readnext .common-card .card-body.ov-card-watch .open-dropdown .menu-icon .menu-text, -.readnext .common-card .ml-auto.card-body .open-dropdown .menu-icon .menu-text, -.responsive-wrap.default-icon-tick .open-dropdown .menu-icon .menu-text, -.responsive-wrap.default-icon .open-dropdown .menu-icon .menu-text, -.responsive-wrap.ov-card-watch .open-dropdown .menu-icon .menu-text, -.sectiontrending .ml-auto.top-bar .open-dropdown .menu-icon .menu-text, -.sectiontrending .top-bar.default-icon-tick .open-dropdown .menu-icon .menu-text, -.sectiontrending .top-bar.default-icon .open-dropdown .menu-icon .menu-text, -.sectiontrending .top-bar.ov-card-watch .open-dropdown .menu-icon .menu-text { - font-weight: 700; - display: block; - color: #3457a7; -} - -.article-header .logo svg { - width: 26px; -} - -.section-last+.section-youlike { - display: none; -} - -.hover-link { - z-index: 1; -} - -.card-img { - cursor: pointer; -} - -.home-container .section-big { - margin-bottom: 0; -} - -.random-blocks .card-strip-social svg path { - fill: #000; -} - -.random-blocks .menu-categories .category { - min-width: 100px; - max-width: 100px; -} - -.black-theme .comment-top, -.black-theme .home-container .block-header-title, -.black-theme .home-container .h-dinline, -.black-theme .home-container .topic-slide, -.black-theme .l-login-greet span, -.black-theme .right-container .block-header-title, -.black-theme .right-container .h-dinline, -.black-theme .right-container .topic-slide, -.black-theme .text-blue, -.home-container .black-theme .block-header-title, -.home-container .black-theme .h-dinline, -.home-container .black-theme .topic-slide, -.l-login-greet .black-theme span, -.right-container .black-theme .block-header-title, -.right-container .black-theme .h-dinline, -.right-container .black-theme .topic-slide, -.top-video .card-section, -.top-video .card-section a, -.top-video .card-strip, -.top-video .card-strip-views, -.top-video .card-summury, -.top-video .card-title { - color: #fff; -} - -.top-video .card-strip-social svg path { - fill: #fff; -} - -.random-blocks .webseries-logo path { - fill: #000; -} - -.random-blocks .block-header-all { - color: #4364ff; -} - -.video-latest { - background: rgba(0, 0, 0, .87); -} - -.video-latest .video-r-card .card-strip { - display: flex; -} - -#stories-tab .card-img img { - display: block; - line-height: 0; -} - -#stories-tab .card-caption-title { - font-weight: 700; - max-height: 54px; - min-height: 54px; - overflow: hidden; -} - -.icon-bookmark svg { - width: 1.5rem; - height: 1.5rem; -} - -.menu-right .block-header-title, -.menu-right .comment-top, -.menu-right .h-dinline, -.menu-right .topic-slide { - text-align: left; -} - -.menu-right .l-row.mb-36, -.menu-right .l-row.video-latest { - overflow: hidden; -} - -.menu-right .l-row.mb-36 .common-card:last-child, -.menu-right .l-row.video-latest .common-card:last-child { - margin-right: 0; -} - -.menu-right .block-header-title:after, -.menu-right .comment-top:after, -.menu-right .h-dinline:after, -.menu-right .topic-slide:after { - top: 10px; -} - -.right-container .block-header-title, -.right-container .comment-top, -.right-container .h-dinline, -.right-container .topic-slide { - margin-right: 15px; - overflow: hidden; -} - -.right-container .block-header-title:after, -.right-container .comment-top:after, -.right-container .h-dinline:after, -.right-container .topic-slide:after { - top: 10px; -} - -.readnext .block-header-title:after, -.readnext .comment-top:after, -.readnext .h-dinline:after, -.readnext .topic-slide:after { - top: 13px; - width: 74%; -} - -.readnext .pull-right { - position: absolute; - right: 0; - top: 0; - z-index: 2; -} - -.nav-menu .block-header-title, -.nav-menu .comment-top, -.nav-menu .h-dinline, -.nav-menu .topic-slide { - padding-top: 0; -} - -.common-card .video-latest.card-img, -.daily-story-left .card-img, -.episodes-slider .video-latest.card-img, -.quick-poll .options .video-latest.option, -.section-container .section-big, -.small-video-card .video-latest.card-img, -.top-stroy .section-big, -.top-video .video-latest.card-img, -.topic-col .video-latest.card-img, -.video-infocus .video-latest.card-img, -.video-latest.comments-textarea, -.video-latest.episodes-block, -.video-latest.episodes-thumb, -.video-latest.l-form-input, -.video-latest.newsletter-input, -.video-latest.radius-4, -.video-latest.top-stroy, -.video-latest.webseries-slider-slide, -.video-r-card .video-latest.card-img, -.youmay-like .video-latest.card { - border-radius: 20px; -} - -.section-container.right-section, -.top-stroy .right-section { - border-radius: 0 20px 20px 0; -} - -.youmay-like .card-img { - border-radius: 8px; -} - -.block-header-title .font-bold span, -.comment-top .font-bold span, -.h-dinline .font-bold span, -.topic-slide .font-bold span { - font-weight: 700; -} - -.block-header .block-header-title, -.block-header .comment-top, -.block-header .h-dinline, -.block-header .topic-slide { - text-transform: none; -} - -.daily-story-header { - font-size: 24px; - font-style: italic; - max-width: 500px; - margin: 0 auto; - color: #3457a7; -} - -.daily-story-header:after, -.daily-story-header:before { - background-color: #fce44d; - height: 4px; - max-width: 30%; -} - -.bigcard .card-cont { - border-radius: 20px; - text-align: center; - overflow: hidden; -} - -.bigcard .card-cont .main-img:before { - padding-top: 45%; -} - -.bigcard .card-cont .card-caption { - min-height: 160px; - background-image: linear-gradient(180deg, hsla(0, 0%, 9%, 0), #171717); - z-index: 3; -} - -.bigcard .card-cont .top-head { - color: hsla(0, 0%, 100%, .7); - font-weight: 700; - text-transform: uppercase; - display: block; -} - -.bigcard .card-cont .top-head span { - max-width: 300px; - min-width: 300px; - margin: 0 auto 20px; - display: inline-block; - border-bottom: 1px solid hsla(0, 0%, 100%, .7); - padding-bottom: 15px; -} - -.bigcard .card-cont .top-summery { - font-weight: 700; - font-size: 27px; - color: #fff; - line-height: 38px; - display: block; -} - -.bigcard .card-cont .top-summery span { - max-width: 800px; - margin: 0 auto; - display: inline-block; -} - -.bigcard .card-cont .hover-link { - z-index: 2; -} - -.daily-story-right .block-header-all { - padding-top: 1px; -} - -.daily-story-right .block-header-all .icon-arrow { - vertical-align: -5px; -} - -.daily-story-left .card-img:before { - padding-top: 60.86207%; -} - -.news-cont .news-tab { - padding-bottom: 18px; - border-bottom: 1px solid rgba(0, 0, 0, .1); -} - -.news-cont .news-tab a { - font-weight: 700; - color: #171717; - font-size: 16px; - opacity: .5; - padding-bottom: 15px; - margin-right: 40px; -} - -.news-cont .news-tab a.select { - font-weight: 700; - color: #3457a7; - opacity: 1; - border-bottom: 4px solid #3457a7; -} - -.video-latest-right .block-header-title, -.video-latest-right .comment-top, -.video-latest-right .h-dinline, -.video-latest-right .topic-slide { - padding-left: 0; -} - -.news-tab-content, -.news-tab-content.hide { - display: none; -} - -.news-tab-content.show { - display: block; -} - -.parent-category { - background-color: rgba(52, 87, 167, .05); - padding: 1rem; - margin-bottom: 1.5rem; -} - -.parent-category .category-title { - font-weight: 700; - margin-bottom: .7rem; -} - -.random-blocks .top-video .card-strip { - display: none; -} - -.random-blocks .top-video { - margin-bottom: 40px; -} - -.home-container .black-theme.home-original { - background: #fff; -} - -.home-container .black-theme.home-original .block-header-all { - background: #fff; -} - -.home-container .black-theme.home-original .block-header-title, -.home-container .black-theme.home-original .comment-top, -.home-container .black-theme.home-original .h-dinline, -.home-container .black-theme.home-original .topic-slide { - color: #3457a7; -} - -.home-container .black-theme.home-original .block-desc { - display: none; -} - -.home-container .episodes-block .block-desc, -.home-container .episodes-block .block-header-all, -.home-container .episodes-block .card-caption-title, -.home-container .episodes-block .card-section, -.home-container .episodes-block .card-title, -.home-container .episodes-block .episodes-detail-title, -.home-container .episodes-block .episodes-detail-total { - color: #fff; -} - -.home-container .episodes-block .icon-story, -.home-container .episodes-block .str-bookmark svg path { - fill: #fff; -} - -.home-container .episodes-block .card-caption-title { - font-weight: 700; - font-size: 14px; -} - -.home-container .episodes-block .card-img { - border-radius: 20px; -} - -.home-container .episodes-block .card-img a { - line-height: 0; - display: block; -} - -.home-container .episodes-tab { - display: none; -} - -.home-container .episodes-block { - border-radius: 20px; -} - -.h-card .card-img a { - display: block; - line-height: 0; -} - -.daily-story-left .card .card-img.not-inline img { - height: 426px; -} - -.section-head-heading { - font-weight: 700; - font-size: 24px; - text-align: center; - color: #3457a7; -} - -.focus { - position: relative; -} - -.focus-slider { - padding: 0 1rem 1.875rem; -} - -.focus-card { - background-color: #fff; - border-radius: 1.25rem; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); -} - -.focus-card-img { - border-radius: 1.25rem 1.25rem 0 0; - display: block; -} - -.focus-card-img:before { - padding-top: 40.14599%; -} - -.focus-card-body { - padding: 1.0625rem 0 1.75rem; - text-align: center; - max-width: 750px; - margin: 0 auto; -} - -.focus-card-title { - font-weight: 700; - font-size: 1rem; - line-height: 1.5; - opacity: .7; - color: #000; - margin-bottom: 1.5rem; -} - -.focus .block-header-all { - position: relative; - padding: 0; -} - -.block-header .block-header-title, -.block-header .comment-top, -.block-header .h-dinline, -.block-header .topic-slide { - color: #3457a7; -} - -.darkimg .profile-img .comment-top, -.darkimg .profile-img .home-container .block-header-title, -.darkimg .profile-img .home-container .h-dinline, -.darkimg .profile-img .home-container .topic-slide, -.darkimg .profile-img .l-login-greet span, -.darkimg .profile-img .right-container .block-header-title, -.darkimg .profile-img .right-container .h-dinline, -.darkimg .profile-img .right-container .topic-slide, -.darkimg .profile-img .text-blue, -.home-container .darkimg .profile-img .block-header-title, -.home-container .darkimg .profile-img .h-dinline, -.home-container .darkimg .profile-img .topic-slide, -.l-login-greet .darkimg .profile-img span, -.right-container .darkimg .profile-img .block-header-title, -.right-container .darkimg .profile-img .h-dinline, -.right-container .darkimg .profile-img .topic-slide { - color: #fff; -} - -.video-latest-right .block-header-title:before, -.video-latest-right .comment-top:before, -.video-latest-right .h-dinline:before, -.video-latest-right .topic-slide:before { - top: 10px; - height: 4px; - left: 79px; - width: 100%; -} - -.video-latest-right .video-r-card .card-img { - flex: 0 0 calc(100% - 250px); -} - -.video-latest-right .video-r-card .card-body { - flex: 0 0 calc(100% - 100px); - max-width: calc(100% - 100px); -} - -.video-latest-right .video-r-card .card-strip { - margin-top: 0; -} - -.darkimg.floating-header .profile-img .comment-top, -.darkimg.floating-header .profile-img .home-container .block-header-title, -.darkimg.floating-header .profile-img .home-container .h-dinline, -.darkimg.floating-header .profile-img .home-container .topic-slide, -.darkimg.floating-header .profile-img .l-login-greet span, -.darkimg.floating-header .profile-img .right-container .block-header-title, -.darkimg.floating-header .profile-img .right-container .h-dinline, -.darkimg.floating-header .profile-img .right-container .topic-slide, -.darkimg.floating-header .profile-img .text-blue, -.home-container .darkimg.floating-header .profile-img .block-header-title, -.home-container .darkimg.floating-header .profile-img .h-dinline, -.home-container .darkimg.floating-header .profile-img .topic-slide, -.l-login-greet .darkimg.floating-header .profile-img span, -.right-container .darkimg.floating-header .profile-img .block-header-title, -.right-container .darkimg.floating-header .profile-img .h-dinline, -.right-container .darkimg.floating-header .profile-img .topic-slide { - color: #0037ff; -} - -.daily-story-right .common-card:last-child { - border-bottom: 0; - padding-bottom: 0; -} - -.bgwhite { - background: #fff; - border-radius: 20px; - padding: 5px 10px; -} - -.card.partner-carousel .slider-next-button.white { - background-image: none; -} - -.card.partner-carousel .slider-next-button .icon-button { - opacity: 0; - transition: all .2s ease-in-out; - left: 10px; -} - -.card.partner-carousel .icon-button { - background-color: #3457a7; -} - -.card.partner-carousel .icon-button svg path { - fill: #fff; -} - -.card.partner-carousel .slick-prev .icon-button { - top: 53%; -} - -.card.partner-carousel .slick-next .icon-button { - top: 47%; -} - -.card.partner-carousel:hover .slider-next-button .icon-button { - opacity: 1; -} - -.youmay-like .card-img img { - display: block; - line-height: 0; -} - -.youmay-like .card-caption-title { - font-weight: 700; - max-height: 54px; - min-height: 54px; - overflow: hidden; -} - -.home-original .webseries .browse-button, -.section-container .webseries .browse-button { - border-color: #ccc; -} - -.home-original .webseries .browse-button svg path, -.section-container .webseries .browse-button svg path { - fill: rgba(0, 0, 0, .7); -} - -.amp-popup .popup-content-container .popup-content { - top: 0; - height: 100vh; - margin-top: 0; - padding: 0; - max-width: 100%; - background: inherit; -} - -.amp-popup .popup-content-container .close { - right: 11rem; - top: 1.5rem; -} - -.story-now-item.last-cards .story-now-circle, -.story-now-item.last-cards .story-now-img { - background-color: #3457a7; -} - -.story-now-item.last-cards .story-now-circle:before { - background: #3457a7; -} - -.story-now-item.last-cards svg { - position: absolute; - z-index: 2; - left: 0; - right: 0; - top: 0; - margin: 0 auto; -} - -.story-now-item.last-cards svg path { - fill: #fff; -} - -.top-trending .partner-carousel.home_card_ad .slick-next, -.top-trending .partner-carousel.home_card_ad .slick-prev { - background-color: transparent; -} - -.top-trending .partner-carousel.home_card_ad .slider-next-button .icon-button { - left: 19px; -} - -.home-container #home_card_ad .ads>div, -.home-container #home_card_ad .advertisement_text>div { - margin-bottom: 0; -} - -.poll-home .poll-tittle { - text-overflow: ellipsis; - width: 100%; - white-space: nowrap; - overflow: hidden; - margin-bottom: 5px; - margin-top: -5px; -} - -.poll-home .card-title { - max-height: 36px; - min-height: 36px; - margin-bottom: 10px; -} - -.poll-home .option { - display: flex; - align-items: center; -} - -.poll-home .option-left { - margin-right: auto; - max-width: 90%; - width: 90%; - max-height: 30px; - overflow: hidden; -} - -.poll-home.card-body { - padding-bottom: 0; - padding-top: 0; -} - -.poll-home.poll-cont a { - font-size: 12px; - font-weight: 700; - padding: .6rem 1rem; - min-height: 49px; -} - -.quickpoll.card { - border: 1px solid #f1f1f1; - min-height: 280.38px; - max-height: 180.38px; - overflow: hidden; -} - -.quickpoll.card.small-card.more-option .poll-cont a { - font-size: .75rem; - padding: 6px 1rem; - min-height: 34px; -} - -.home-container .wattpad-story .focus-card-body .block-header-all.block-header-title, -.home-container .wattpad-story .focus-card-body .block-header-all.h-dinline, -.home-container .wattpad-story .focus-card-body .block-header-all.topic-slide, -.l-login-greet .wattpad-story .focus-card-body span.block-header-all, -.right-container .wattpad-story .focus-card-body .block-header-all.block-header-title, -.right-container .wattpad-story .focus-card-body .block-header-all.h-dinline, -.right-container .wattpad-story .focus-card-body .block-header-all.topic-slide, -.wattpad-story .focus-card-body .block-header-all.comment-top, -.wattpad-story .focus-card-body .block-header-all.text-blue, -.wattpad-story .focus-card-body .home-container .block-header-all.block-header-title, -.wattpad-story .focus-card-body .home-container .block-header-all.h-dinline, -.wattpad-story .focus-card-body .home-container .block-header-all.topic-slide, -.wattpad-story .focus-card-body .l-login-greet span.block-header-all, -.wattpad-story .focus-card-body .right-container .block-header-all.block-header-title, -.wattpad-story .focus-card-body .right-container .block-header-all.h-dinline, -.wattpad-story .focus-card-body .right-container .block-header-all.topic-slide { - color: #fc5122; -} - -.wattpad-story .focus-card-body .icon-arrow path:first-child { - fill: #fc5122; -} - -.wattpad-gray { - background: #e9eeff; - padding: 30px 0 40px; - margin-bottom: 60px; -} - -.wattpad-gray .watt-header span { - vertical-align: -12px; -} - -.wattpad-gray .watt-header span img { - max-width: 170px; -} - -.wattpad-gray .wattpadd-trending .popular-cont { - flex: 0 0 10.62rem; -} - -.wattpad-gray .popular-cont .image:before { - padding-top: 150%; -} - -.wattpad-logo img { - box-shadow: none; - border-radius: 0; - border: 0; - width: inherit; - height: inherit; - margin-left: 10px; -} - -.wattpad-iframe { - position: relative; - width: 100%; - display: block; -} - -.wattpad-iframe iframe { - border: 0; - height: 100%; - left: 0; - position: absolute; - top: 0; - width: 100%; -} - -.wattpad-iframe:before { - content: ""; - display: block; - height: 0; - position: relative; - padding-top: 190%; - overflow: hidden; -} - -.bgImg .wattpad-gray { - max-width: 1120px; - margin: 0 auto; - padding-left: 5px; - padding-right: 5px; -} - -.powered-cred { - display: none; -} - -.cred-heading .powered-cred { - display: flex; - align-items: center; - padding-left: 10px; - width: 270px; -} - -.cred-heading .powered-cred span { - margin-left: 10px; -} - -.cred-heading .powered-cred img { - max-width: 80px; - vertical-align: -15px; -} - -.cred-heading .block-header-title svg, -.cred-heading .comment-top svg, -.cred-heading .h-dinline svg, -.cred-heading .topic-slide svg { - vertical-align: -3px; - margin-right: 4px; -} - -.cred-heading .block-header-title svg path, -.cred-heading .comment-top svg path, -.cred-heading .h-dinline svg path, -.cred-heading .topic-slide svg path { - fill: #3357a7; -} - -.cred-heading .block-header-title span, -.cred-heading .comment-top span, -.cred-heading .h-dinline span, -.cred-heading .topic-slide span { - margin-left: 5px; -} - -.cred-heading .block-header-title span img, -.cred-heading .comment-top span img, -.cred-heading .h-dinline span img, -.cred-heading .topic-slide span img { - max-width: 80px; - vertical-align: -5px; -} - -.youmay-like .home_card_ad { - min-height: 296px; -} - -.youmay-like .home_card_ad .not-inline .card-img:before { - padding-top: 64%; -} - -.gtm-block-top .cred-heading .block-header-title svg, -.gtm-block-top .cred-heading .comment-top svg, -.gtm-block-top .cred-heading .h-dinline svg, -.gtm-block-top .cred-heading .topic-slide svg { - vertical-align: -13px; -} - -.gtm-block-top .cred-heading .block-header-all { - padding-top: 13px; -} - -.container.optical-widget-more, -.optical-widget-more.fifa-center { - margin: 2.5rem auto 4.4rem; -} - -a { - transition: all .2s ease-in-out; -} - -.floating-header .sectiontrending { - border-bottom: 2px solid #fce44d; -} - -.sectiontrending { - position: relative; - z-index: 9; - padding: .7rem .5rem 0; - justify-content: center; - box-shadow: 0 8px 10px 0 rgba(0, 0, 0, .1); -} - -.sectiontrending .top-bar { - padding-bottom: 10px; -} - -.sectiontrending .st-text { - font-family: Verdana; - color: rgba(0, 0, 0, .8); -} - -.sectiontrending .st-img { - position: absolute; - top: -4px; - left: -4px; - z-index: 1; - overflow: hidden; - max-width: 36px; - max-height: 36px; -} - -.sectiontrending .st-img img { - width: 100%; - height: 100%; -} - -.header-tab { - padding: .8rem 2.75rem; - box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1); - background: linear-gradient(270deg, #3948da, #0927b6); - border-bottom: 2px solid #fce44d; - position: relative; - max-height: 50px; - min-height: 49px; - overflow: hidden; -} - -.header-tab a { - font-weight: 700; - margin-right: 22px; - color: hsla(0, 0%, 100%, .7); - padding-bottom: 2px; - text-align: center; -} - -.header-tab a.active { - font-family: Verdana; - font-style: italic; -} - -.header-tab a.active, -.header-tab a.yellow-active { - padding: 5px 12px; - border-radius: 4px; - margin-top: -3px; -} - -.header-tab a.yellow-active { - font-weight: 700; - color: #000; - background: #fce44d; -} - -.header-tag-slider .icon-button, -.header-tag-slider .slick-next, -.header-tag-slider .slick-prev, -.header-tag-slider .slider-next-button { - width: 30px; - height: 30px; -} - -.header-tag-slider .slick-next, -.header-tag-slider .slick-prev { - background-color: transparent; - top: -4px; -} - -.header-tag-slider .slick-slider .slick-list { - margin: 0 auto; - max-width: 1020px; -} - -.sh-tab { - padding: .8rem 2.75rem; - justify-content: center; - align-items: center; - box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1); - background: linear-gradient(270deg, #3948da, #0927b6); - border-bottom: 2px solid #fce44d; -} - -.sh-tab a { - font-weight: 700; - margin-right: 22px; - color: hsla(0, 0%, 100%, .7); - padding-bottom: 2px; -} - -.sh-tab a.active { - font-family: Verdana; - font-style: italic; -} - -.sh-tab a.active, -.sh-tab a.yellow-active { - padding: 5px 12px; - border-radius: 4px; - margin-top: -3px; -} - -.sh-tab a.yellow-active { - font-weight: 700; - color: #000; - background: #fce44d; -} - -.sh-tab a:last-child { - margin-right: 0; -} - -.sh-tab .nav-topic-head { - font-family: Verdana; - font-style: italic; -} - -.breadcrumb a:first-child svg { - width: 16px; - vertical-align: -7px; -} - -.breadcrumb a { - color: #000; -} - -.breadcrumb .card-strip-social a, -.breadcrumb .circle-a, -.breadcrumb .d-inline-block, -.breadcrumb .episodes-detail, -.breadcrumb .episodes-thumb, -.breadcrumb .icon-section, -.breadcrumb .l-form-social .icon, -.breadcrumb .movie-review-btn, -.breadcrumb .movie-review-release span, -.breadcrumb .quiz-result-or:after, -.breadcrumb .quiz-result-or:before, -.breadcrumb .rating-text, -.breadcrumb .time-line span, -.card-strip-social .breadcrumb a, -.l-form-social .breadcrumb .icon, -.movie-review-release .breadcrumb span, -.time-line .breadcrumb span { - font-weight: 700; -} - -.breadcrumb .nav-g { - margin: 0 4px; -} - -.breadcrumb .nav-g svg { - vertical-align: -7px; -} - -.breadcrumb .card-strip-social a:last-child a, -.breadcrumb .circle-a:last-child a, -.breadcrumb .d-inline-block:last-child a, -.breadcrumb .episodes-detail:last-child a, -.breadcrumb .episodes-thumb:last-child a, -.breadcrumb .icon-section:last-child a, -.breadcrumb .l-form-social .icon:last-child a, -.breadcrumb .movie-review-btn:last-child a, -.breadcrumb .movie-review-release span:last-child a, -.breadcrumb .quiz-result-or:last-child:after a, -.breadcrumb .quiz-result-or:last-child:before a, -.breadcrumb .rating-text:last-child a, -.breadcrumb .time-line span:last-child a, -.card-strip-social .breadcrumb a:last-child a, -.l-form-social .breadcrumb .icon:last-child a, -.movie-review-release .breadcrumb span:last-child a, -.time-line .breadcrumb span:last-child a { - margin-right: 0; - opacity: .7; -} - -.breadcrumb.trunc .card-strip-social a:last-of-type, -.breadcrumb.trunc .circle-a:last-of-type, -.breadcrumb.trunc .d-inline-block:last-of-type, -.breadcrumb.trunc .episodes-detail:last-of-type, -.breadcrumb.trunc .episodes-thumb:last-of-type, -.breadcrumb.trunc .icon-section:last-of-type, -.breadcrumb.trunc .l-form-social .icon:last-of-type, -.breadcrumb.trunc .movie-review-btn:last-of-type, -.breadcrumb.trunc .movie-review-release span:last-of-type, -.breadcrumb.trunc .quiz-result-or:last-of-type:after, -.breadcrumb.trunc .quiz-result-or:last-of-type:before, -.breadcrumb.trunc .rating-text:last-of-type, -.breadcrumb.trunc .time-line span:last-of-type, -.card-strip-social .breadcrumb.trunc a:last-of-type, -.l-form-social .breadcrumb.trunc .icon:last-of-type, -.movie-review-release .breadcrumb.trunc span:last-of-type, -.time-line .breadcrumb.trunc span:last-of-type { - text-overflow: ellipsis; - white-space: nowrap; - font-family: Verdana; - margin-right: 0; - opacity: .7; - width: calc(100% - 100px); - max-width: 400px; - font-weight: 400; -} - -.article-top h1 { - font-weight: 700; - font-size: 2.1rem; - margin: 1rem 0 1.5rem; - line-height: 3.5rem; -} - -.article-top .card-strip { - opacity: .7; - order: 0; -} - -.article-top .card-strip .icon-clock { - vertical-align: -3px; -} - -.art-social { - align-items: center; -} - -.art-social a { - margin-right: 25px; - line-height: 0; -} - -.art-social a:last-child { - margin-right: 0; -} - -.art-social .card-strip-bookmark { - width: 24px; -} - -.art-social svg { - width: 25px; -} - -.art-social .copy-icon svg { - width: 20px; -} - -.author-strip-img { - border-radius: 100%; - flex: 0 0 3rem; - margin-right: 1rem; - background: #fff; - border: 1px solid #f1f1f1; -} - -.author-strip-img:before { - padding-top: 100%; -} - -.author-strip-editor { - font-weight: 700; - margin-bottom: .3125rem; - color: #555; -} - -.author-strip-date { - white-space: nowrap; - display: flex; - align-items: center; -} - -.author-strip-divider { - margin: 0 .3125rem; - color: #b2b1b1; -} - -.article-image.container, -.article-image.fifa-center { - max-width: 1100px; - margin: 0 auto 30px; -} - -.article-image { - margin-bottom: 30px; -} - -.article-image img:before { - padding-top: 100%; -} - -.left-container { - max-width: 730px; - margin-right: 6%; -} - -.left-container h2, -.left-container h3, -.left-container h4, -.left-container h5, -.left-container h6 { - font-weight: 700; -} - -.left-container h2 { - font-size: 1.8rem; - line-height: 2.4rem; -} - -.left-container h3 { - font-size: 1.6rem; - line-height: 2.2rem; -} - -.left-container h4, -.left-container h5, -.left-container h6 { - font-size: 1rem; - line-height: 2.2rem; -} - -.left-container li, -.left-container p { - color: rgba(0, 0, 0, .7); - font-size: 1.1rem; - line-height: 1.7rem; - font-weight: 400; -} - -.left-container a { - color: #3457a7; -} - -.left-container .img-copyright, -.left-container .picCaption { - display: block; - font-size: .7rem; - color: #575757; - padding-top: 8px; - line-height: 0; - font-weight: 400; -} - -.left-container h2.block-header-title, -.left-container h2.comment-top, -.left-container h2.h-dinline, -.left-container h2.topic-slide { - font-size: 16px; -} - -.left-container iframe { - max-width: 720px; - overflow: hidden; -} - -.left-container .advertisement_text iframe { - max-width: none; -} - -.left-container .ads, -.left-container .advertisement_text { - margin-bottom: 15px; -} - -.left-container .click-to-reveal, -.left-container .spacing-remove { - margin-left: 0; - margin-right: 0; -} - -.left-container .black-bg { - padding-top: 0; -} - -.left-container .overley .read-text, -.left-container .webseries-seeall { - color: #fff; -} - -.left-container .quick-slider-slide { - border-radius: 10px; - overflow: hidden; -} - -.left-container .overley .default-icon-tick svg, -.left-container .overley .default-icon svg, -.left-container .overley .ml-auto svg, -.left-container .overley .ov-card-watch svg { - width: 20px; -} - -.left-container .overley .default-icon-tick svg path, -.left-container .overley .default-icon svg path, -.left-container .overley .ml-auto svg path, -.left-container .overley .ov-card-watch svg path { - fill: #fff; -} - -.left-container .explore-reads .block-header-title, -.left-container .explore-reads .comment-top, -.left-container .explore-reads .h-dinline, -.left-container .explore-reads .topic-slide { - color: #3457a7; -} - -.left-container .explore-reads .block-header-title:after, -.left-container .explore-reads .comment-top:after, -.left-container .explore-reads .h-dinline:after, -.left-container .explore-reads .topic-slide:after { - top: 10px; -} - -.left-container .slick-next, -.left-container .slick-prev { - background-color: transparent; - width: 60px; -} - -.left-container ol { - margin-left: 20px; -} - -.left-container ol li { - list-style: decimal; -} - -:focus { - outline: 0; -} - -.right-container { - max-width: 300px; -} - -.right-container .author-strip { - padding: 1rem 0; - margin: 0 10px; - border-bottom: 1px solid #e5e4de; -} - -.right-container .author-strip:last-child { - border-bottom: 0; -} - -.right-container .author-strip-img { - flex: 0 0 2rem; -} - -.right-container .author-strip-editor { - margin-bottom: 0; -} - -#keyboard-cont .right-container div.error-active, -#stories-tab .right-container .card-caption-title, -.article-top .right-container .card-strip, -.breadcrumb .right-container a, -.brief-video .right-container .b-text, -.brief-video .right-container .s-text, -.brief-video .right-container .v-focus, -.explore-reads-slide .right-container .explore-reads-title, -.header .right-cont .dropdown .dropbtn .right-container span, -.original-popup .episodes-tab .right-container a, -.overley .right-container .head, -.quick-slider .slick-slide:first-of-type .right-container p, -.readcard .right-container .readcard-title, -.right-container #keyboard-cont div.error-active, -.right-container #stories-tab .card-caption-title, -.right-container .alert, -.right-container .article-top .card-strip, -.right-container .breadcrumb a, -.right-container .brief-video .b-text, -.right-container .brief-video .s-text, -.right-container .brief-video .v-focus, -.right-container .by-text, -.right-container .circle-trending, -.right-container .circletext, -.right-container .explore-reads-slide .explore-reads-title, -.right-container .font-12, -.right-container .gal-counter, -.right-container .header .right-cont .dropdown .dropbtn span, -.right-container .l-form-other, -.right-container .l-login-msg-small, -.right-container .original-popup .episodes-tab a, -.right-container .ov-card-count, -.right-container .ov-card-desc, -.right-container .overley .head, -.right-container .preview-list-item.text, -.right-container .quick-slider .slick-slide:first-of-type p, -.right-container .readcard .readcard-title, -.right-container .shop-brand, -.right-container .shop-price, -.right-container .stories-now .stories-row .text, -.right-container .th-card, -.right-container .topic-slide .text, -.right-container .user-weather .date, -.right-container .video-infocus .video-small .s-text, -.right-container .youmay-like .card-caption-title, -.stories-now .stories-row .right-container .text, -.topic-slide .right-container .text, -.user-weather .right-container .date, -.youmay-like .right-container .card-caption-title { - opacity: .7; -} - -.right-container .common-card .block-header-title, -.right-container .common-card .comment-top, -.right-container .common-card .h-dinline, -.right-container .common-card .topic-slide { - margin-bottom: 10px; -} - -.right-container .common-card .card { - border-bottom: 1px solid hsla(0, 0%, 9%, .1); - padding: 10px 10px 0; -} - -.right-container .common-card .card:last-child { - border-bottom: 0; -} - -.right-container .common-card .card-img { - flex: 0 0 calc(100% - 215px); -} - -.right-container .common-card .card-img:before { - padding-top: 100%; - padding-top: 150%; -} - -.right-container .common-card .card-body { - flex: 0 0 calc(100% - 80px); - margin-left: 15px; -} - -.right-container .common-card .card-title { - opacity: 1; - max-height: 52px; - overflow: hidden; - font-weight: 400; -} - -.right-container .gray-bg { - background-color: #fafafa; -} - -.right-container .gray-bg .common-card { - margin: 0 15px; -} - -.right-container .common-card:last-child { - border-bottom: 0; -} - -.right-container h2.block-header-title, -.right-container h2.comment-top, -.right-container h2.h-dinline, -.right-container h2.topic-slide { - font-size: 16px; -} - -.right-container .menu-categories { - margin-right: 0; - margin-left: 0; -} - -.right-container .menu-categories .category-thumb { - min-width: 50px; - max-width: 50px; - max-height: 50px; - border-width: 1px; -} - -.right-container .menu-categories .category { - max-width: 98px; - min-width: 98px; - margin-bottom: 20px; - margin-right: 1px; -} - -.right-container .menu-categories .category-title { - font-size: 10px; -} - -.right-container .menu-categories .category:nth-child(3n) { - margin-right: 0; -} - -.right-container .quick-poll { - box-shadow: none; -} - -.right-container .quick-poll .options button { - width: 100%; - margin-bottom: 20px; -} - -.right-container .trending-topics { - margin-top: 15px; -} - -.right-container .rhs-video .block-header-all { - padding-top: 0; -} - -.right-container .webseries { - background: #000; - padding: 15px; -} - -.right-container .webseries .browse-button { - color: #fff; -} - -.org-tab .right-container a.art-dropdown, -.right-container .art-dropdown.h-dinline, -.right-container .art-dropdown.original-top, -.right-container .mb-24.art-dropdown, -.right-container .org-tab a.art-dropdown, -.right-container .video-infocus .art-dropdown.card-img, -.right-container .video-infocus .art-dropdown.card-strip, -.video-infocus .right-container .art-dropdown.card-img, -.video-infocus .right-container .art-dropdown.card-strip { - margin-bottom: 0; -} - -.org-tab .right-container a.art-dropdown .block-header-title.font-22, -.org-tab .right-container a.art-dropdown .font-22.comment-top, -.org-tab .right-container a.art-dropdown .font-22.h-dinline, -.org-tab .right-container a.art-dropdown .font-22.topic-slide, -.right-container .art-dropdown.h-dinline .block-header-title.font-22, -.right-container .art-dropdown.h-dinline .font-22.comment-top, -.right-container .art-dropdown.h-dinline .font-22.h-dinline, -.right-container .art-dropdown.h-dinline .font-22.topic-slide, -.right-container .art-dropdown.original-top .block-header-title.font-22, -.right-container .art-dropdown.original-top .font-22.comment-top, -.right-container .art-dropdown.original-top .font-22.h-dinline, -.right-container .art-dropdown.original-top .font-22.topic-slide, -.right-container .block-header-title.font-22, -.right-container .font-22.comment-top, -.right-container .font-22.h-dinline, -.right-container .font-22.topic-slide, -.right-container .mb-24.art-dropdown .block-header-title.font-22, -.right-container .mb-24.art-dropdown .font-22.comment-top, -.right-container .mb-24.art-dropdown .font-22.h-dinline, -.right-container .mb-24.art-dropdown .font-22.topic-slide, -.right-container .org-tab a.art-dropdown .block-header-title.font-22, -.right-container .org-tab a.art-dropdown .font-22.comment-top, -.right-container .org-tab a.art-dropdown .font-22.h-dinline, -.right-container .org-tab a.art-dropdown .font-22.topic-slide, -.right-container .video-infocus .art-dropdown.card-img .block-header-title.font-22, -.right-container .video-infocus .art-dropdown.card-img .font-22.comment-top, -.right-container .video-infocus .art-dropdown.card-img .font-22.h-dinline, -.right-container .video-infocus .art-dropdown.card-img .font-22.topic-slide, -.right-container .video-infocus .art-dropdown.card-strip .block-header-title.font-22, -.right-container .video-infocus .art-dropdown.card-strip .font-22.comment-top, -.right-container .video-infocus .art-dropdown.card-strip .font-22.h-dinline, -.right-container .video-infocus .art-dropdown.card-strip .font-22.topic-slide, -.video-infocus .right-container .art-dropdown.card-img .block-header-title.font-22, -.video-infocus .right-container .art-dropdown.card-img .font-22.comment-top, -.video-infocus .right-container .art-dropdown.card-img .font-22.h-dinline, -.video-infocus .right-container .art-dropdown.card-img .font-22.topic-slide, -.video-infocus .right-container .art-dropdown.card-strip .block-header-title.font-22, -.video-infocus .right-container .art-dropdown.card-strip .font-22.comment-top, -.video-infocus .right-container .art-dropdown.card-strip .font-22.h-dinline, -.video-infocus .right-container .art-dropdown.card-strip .font-22.topic-slide { - font-size: 1rem; -} - -.up-next-article { - max-width: 1100px; - padding-top: 2.25rem; - padding-bottom: 52px; - font-size: 24px; - height: 4px; - font-style: italic; - margin: auto; - color: #3457a7; -} - -.up-next-article:after, -.up-next-article:before { - position: absolute; - top: 12px; - bottom: 0; - background-color: #fce44d; - content: ""; - height: 4px; - margin: auto; - width: 43%; - z-index: 1; -} - -.up-next-article:after { - right: 4px; -} - -.up-next-article:before { - left: 3px; - width: 43.5%; -} - -.readnext { - border-radius: 4px; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - background-color: #fff; - padding: .8rem 0; - margin: 2rem .2rem; -} - -.readnext h2 { - margin: 0; - width: 100%; - padding-top: .2rem; - height: 1.8rem; - color: #3457a7; -} - -.readnext h2 svg { - background: #3457a7; - padding: 2px; - margin-right: 1rem; - border-radius: 50%; - cursor: pointer; -} - -.readnext h2 svg path { - fill: #fff; -} - -.readnext .common-card { - padding: 0 1.2rem; - border-bottom: 0; - margin-top: 1.2rem; -} - -.readnext .common-card .card-body { - max-width: 78%; -} - -.readnext .common-card .card-img { - flex: 0 0 8rem; - max-width: 8rem; - border-radius: 10px; -} - -.readnext .common-card .card-title { - font-size: 1rem; -} - -.readnext .common-card .card-strip { - bottom: 0; - left: 0; - right: 0; - margin: 0; -} - -.readnext .block-header { - padding-left: 15px; - padding-right: 15px; -} - -.quickpoll { - background-color: #fafafa; - padding: 1.2rem 0; -} - -.is-loading { - position: relative; - pointer-events: none; -} - -.is-loading .loading { - position: absolute; - z-index: 1; - top: 40%; - left: 50%; -} - -.is-loading:after { - content: "\A"; - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - background: rgba(0, 0, 0, .5); - transition: all .5s; - -webkit-transition: all .5s; - opacity: 1; -} - -.quickpoll.voted .option { - pointer-events: none; - background: hsla(0, 0%, 9%, .1); - border: none; - color: #c4c4c4; -} - -.quickpoll.voted .option.active { - background: linear-gradient(0deg, #4364ff, #0037ff); - color: #fff; - border: none; -} - -.poll-cont { - padding: 0 1.2rem; -} - -.poll-cont a { - font-weight: 700; - background-color: #fff; - border-radius: .25rem; - border: 1px solid #171717; - padding: .875rem 1rem; - display: block; - margin-bottom: 15px; -} - -.poll-cont a:hover { - color: #fff; - background: #171717; -} - -.poll-cont a:last-child { - margin-bottom: 0; -} - -.sectiontrending .dropdown { - margin-right: 25px; - padding-right: 15px; - height: 35px; -} - -.sectiontrending .dropdown .st-text { - font-family: Georgia; -} - -.sectiontrending .dropdown:hover .st-text, -.sectiontrending .top-bar.active .st-text { - font-family: Georgia; - border-bottom: 4px solid #fce44d; - color: #3457a7; - padding-bottom: 10px; -} - -.sectiontrending .dropdown-menu a.card-section { - font-size: 10px; -} - -.sectiontrending .dropdown-menu a.card-section span { - vertical-align: -2px; -} - -.sectiontrending li:last-child { - margin-right: 0; -} - -.sectiontrending:not(.hidehover) .dropdown:hover .dropdown-menu, -.sectiontrending:not(.hidehover) .menu-center:hover .dropdown-menu { - visibility: visible; - display: block; -} - -.sectiontrending li.dropdown ul.dropdown-menu { - visibility: hidden; - display: none; -} - -.menu-center { - position: absolute; - top: 44px; - left: 0; - right: 0; - text-align: center; - margin: 0 auto; - z-index: 2; - border-radius: 4px; - box-shadow: inset 0 18px 19px -13px rgba(0, 0, 0, .05); - background: #fff; - width: 100%; -} - -.menu-center:after { - box-shadow: 0 2px 30px 0 rgba(0, 0, 0, .07); -} - -.menu-center .dropdown-menu { - position: relative; - max-width: 1190px; - margin: 0 auto; - float: none; - border: 0; - box-shadow: none; - background: transparent; -} - -.menu-center .dropdown-menu li { - padding-left: 10px; - list-style: none; - display: flex; -} - -.menu-center .dropdown-menu li:last-child { - margin-right: 0; -} - -.dropdown-menu .menu-left { - width: 22%; - margin-right: 3%; - display: flex; - flex-direction: column; - align-items: flex-start; -} - -.dropdown-menu .menu-left .menu-icon { - margin-bottom: 20px; - display: flex; - align-items: center; -} - -.dropdown-menu .menu-left .menu-icon .menu-img { - max-width: 36px; - max-height: 36px; - border-radius: 50%; - border: 1px solid #f1f1f1; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - margin-right: 12px; -} - -.dropdown-menu .menu-left .menu-icon .menu-img img { - width: 100%; - height: 100%; -} - -.dropdown-menu .menu-left .menu-icon .menu-text { - text-align: center; - display: block; - color: rgba(0, 0, 0, .7); -} - -.dropdown-menu .menu-left .menu-icon:first-child { - margin-top: 20px; -} - -.dropdown-menu .menu-left .menu-icon:last-child { - margin-bottom: 0; -} - -.dropdown-menu .menu-right { - width: 75%; - background: #f3f6f9; - padding: 20px 20px 30px; -} - -.dropdown-menu .menu-right .block-header-title, -.dropdown-menu .menu-right .comment-top, -.dropdown-menu .menu-right .h-dinline, -.dropdown-menu .menu-right .topic-slide { - font-size: 1em; -} - -.dropdown-menu .menu-right .common-card { - display: inline-flex; - max-width: 190px; - margin-right: 24px; - border-bottom: 0; -} - -.dropdown-menu .menu-right .common-card .card-img { - order: 1; - max-width: inherit; - flex: 0 0 11.875rem; -} - -.dropdown-menu .menu-right .common-card .card-img:before { - padding-top: 57%; -} - -.dropdown-menu .menu-right .common-card .card-body { - display: flex; - flex-direction: column; - align-items: start; - margin-right: 0; - flex: 0 0 100%; - margin-top: 10px; - margin-left: 0; -} - -.dropdown-menu .menu-right .common-card .card-detail { - text-align: left; -} - -.dropdown-menu .menu-right .icon-story { - vertical-align: middle; - width: .9375rem; -} - -.dropdown-menu .menu-right .card-strip { - width: 100%; -} - -.image_container img { - width: inherit; -} - -.image_container .clickreval { - z-index: 2; - width: 100px; - height: 100px; - background-color: rgba(0, 0, 0, .5); -} - -.image_container .clickreval span { - font-size: .75em; - padding-top: 31px; -} - -.explore-categ { - display: none; -} - -.article-description-height { - max-height: 500px; -} - -.article-description-height.active { - max-height: 100%; - overflow: visible; -} - -.blur-container { - width: 100%; - padding-bottom: 50px; -} - -.blur-container, -.blur-container:before { - position: absolute; - right: 0; - bottom: 0; - left: 0; -} - -.blur-container:before { - content: ""; - background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .79) 51%, #fff); - height: 12.5rem; -} - -.blur-container .more-button { - font-weight: 700; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - background-color: #3457a7; - border-radius: .25rem; - box-shadow: 0 .25rem 1.25rem 0 rgba(0, 0, 0, .15); - padding: .3125rem 0; - width: 100%; - max-width: 350px; - font-style: italic; -} - -.blur-container .more-button svg { - transform: rotate(90deg); - vertical-align: -14px; - margin-right: 20px; - width: 40px; - height: 40px; - margin-left: -5px; -} - -.blur-container .more-button svg path { - fill: #fff; -} - -.blur-container .more-button span { - font-family: Verdana; - font-style: normal; -} - -.video-l-card .card-detail { - align-items: flex-start; -} - -.article-container .youmay-like.gap-x-16 { - margin: 0; - overflow: visible; -} - -.article-container .youmay-like.gap-x-16 .slider-next-button { - display: none; -} - -.article-container blockquote { - margin-left: 1px; -} - -.card-strip-read span { - margin-left: 1px; - vertical-align: -1px; -} - -.common-card .right-container .black-theme.card-img, -.episodes-slider .right-container .black-theme.card-img, -.quick-poll .options .right-container .black-theme.option, -.right-container .black-theme.comments-textarea, -.right-container .black-theme.episodes-block, -.right-container .black-theme.episodes-thumb, -.right-container .black-theme.l-form-input, -.right-container .black-theme.newsletter-input, -.right-container .black-theme.radius-4, -.right-container .black-theme.top-stroy, -.right-container .black-theme.webseries-slider-slide, -.right-container .common-card .black-theme.card-img, -.right-container .episodes-slider .black-theme.card-img, -.right-container .quick-poll .options .black-theme.option, -.right-container .small-video-card .black-theme.card-img, -.right-container .top-video .black-theme.card-img, -.right-container .topic-col .black-theme.card-img, -.right-container .video-infocus .black-theme.card-img, -.right-container .video-r-card .black-theme.card-img, -.right-container .youmay-like .black-theme.card, -.small-video-card .right-container .black-theme.card-img, -.top-video .right-container .black-theme.card-img, -.topic-col .right-container .black-theme.card-img, -.video-infocus .right-container .black-theme.card-img, -.video-r-card .right-container .black-theme.card-img, -.youmay-like .right-container .black-theme.card { - padding: 20px 0; -} - -.webseries { - padding: 0 15px; -} - -.webseries-logo { - width: 1.5rem; - height: 1.5rem; - margin-right: .5rem; -} - -.webseries-slider { - flex-wrap: wrap; -} - -.webseries-slider-slide { - flex: 0 0 4.25rem; - margin-right: 10px; - max-width: inherit; - margin-bottom: 10px; -} - -.webseries-seeall { - font-weight: 700; -} - -.webseries-seeall svg { - width: 1.5rem; - margin-left: .5rem; - vertical-align: middle; -} - -.webseries .browse-button { - font-weight: 700; - border: 1px solid #fff; - padding: 14px 16px; - font-size: 16px; - border-radius: 6px; - position: relative; - margin-bottom: 20px; -} - -.webseries .browse-button span { - position: absolute; - right: 10px; - top: 11px; -} - -.longform .left-container { - margin: 0 auto; -} - -.slide-to-reveal .img-container { - box-sizing: content-box; - overflow: hidden; - position: relative; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; -} - -.slide-to-reveal .img-container img { - position: absolute; - top: 0; - display: block; - width: 100%; -} - -.slide-to-reveal .img-container .before { - z-index: 20; -} - -.slide-to-reveal .img-container .after { - z-index: 10; -} - -.slide-to-reveal .img-container .slide-handle { - height: 38px; - width: 38px; - position: absolute; - left: 50%; - top: 50%; - margin-left: -22px; - margin-top: -22px; - border: 3px solid #fff; - border-radius: 1000px; - box-shadow: 0 0 12px rgba(51, 51, 51, .5); - z-index: 40; -} - -.slide-to-reveal .img-container .slide-handle:after, -.slide-to-reveal .img-container .slide-handle:before { - content: " "; - display: block; - width: 3px; - background: #fff; - height: 9999px; - position: absolute; - left: 50%; - margin-left: -1.5px; - z-index: 30; - box-shadow: 0 0 12px rgba(51, 51, 51, .5); -} - -.slide-to-reveal .img-container .slide-handle:before { - margin-bottom: 22px; - bottom: 50%; - box-shadow: 0 3px 0 #fff, 0 0 12px rgba(51, 51, 51, .5); -} - -.slide-to-reveal .img-container .slide-handle:after { - margin-top: 22px; - top: 50%; - box-shadow: 0 -3px 0 #fff, 0 0 12px rgba(51, 51, 51, .5); -} - -.slide-to-reveal .img-container .slide-handle .slide-left-arrow, -.slide-to-reveal .img-container .slide-handle .slide-right-arrow { - width: 0; - height: 0; - border: 6px inset transparent; - position: absolute; - top: 50%; - margin-top: -6px; -} - -.slide-to-reveal .img-container .slide-handle .slide-left-arrow { - border-right: 6px solid #fff; - left: 50%; - margin-left: -17px; -} - -.slide-to-reveal .img-container .slide-handle .slide-right-arrow { - border-left: 6px solid #fff; - right: 50%; - margin-right: -17px; -} - -.highlight { - padding: 1.5rem 1rem 0; - border-top: 1px solid hsla(0, 0%, 9%, .1); - border-bottom: 1px solid hsla(0, 0%, 9%, .1); -} - -.highlight h2 { - font-weight: 700; - font-size: 1rem; - line-height: 1.5; - font-style: italic; -} - -.highlight h2:after { - position: absolute; - top: 10px; - right: -17px; - background-image: linear-gradient(0deg, #ffed59, #f6d93a); - content: ""; - width: 88%; - height: .5rem; -} - -.highlight-story { - padding-bottom: 1.5rem; -} - -.highlight-star { - flex: 0 0 1rem; - margin-right: 1rem; -} - -.highlight-link { - font-weight: 700; - line-height: 1.5; -} - -.article-newsletter .topic-container.newsletterinput .topic-col, -.brief-video .topic-container.video-small .topic-col, -.header .topic-container.profile-data .topic-col, -.menu-items .nav-menu .categories .nav-category a.topic-container .topic-col, -.menu-items .nav-menu .categories .topic-container.nav-category .topic-col, -.nav-ul .nav-category a.topic-container .topic-col, -.nav-ul .topic-container.nav-category .topic-col, -.original-popup .topic-container.browse-form .topic-col, -.popular-slider .topic-container.slick-track .topic-col, -.quick-slider .topic-container.slick-track .topic-col, -.right-container .video-infocus .topic-container.video-small .topic-col, -.rightsocial .topic-container.share-strip-social .topic-col, -.rightsocial .topic-container.share-strip .topic-col, -.shadow-card.video-card .topic-container.video-small .topic-col, -.tbd-cont .tbc-border .topic-container.tbd-text .topic-col, -.teamcolor .topic-container.team-d .topic-col, -.topic-container.art-social .topic-col, -.topic-container.author-row .topic-col, -.topic-container.block-header .topic-col, -.topic-container.breadcrumb.trunc .topic-col, -.topic-container.browse-list .topic-col, -.topic-container.card-strip .topic-col, -.topic-container.card .topic-col, -.topic-container.comment-form .topic-col, -.topic-container.comment-post-box .topic-col, -.topic-container.comment-post-links .topic-col, -.topic-container.comment-post .topic-col, -.topic-container.comment .topic-col, -.topic-container.d-flex .topic-col, -.topic-container.daily-story .topic-col, -.topic-container.digital-left .topic-col, -.topic-container.digital-page .topic-col, -.topic-container.focus-card-body .topic-col, -.topic-container.liver-two .topic-col, -.topic-container.login-container .topic-col, -.topic-container.menu-categories .topic-col, -.topic-container.open-header .topic-col, -.topic-container.org-tab .topic-col, -.topic-container.original-popup-header .topic-col, -.topic-container.original-top .topic-col, -.topic-container.ov-card-detail .topic-col, -.topic-container.ov-card-watch .topic-col, -.topic-container.ov-card .topic-col, -.topic-container.pie-chart .topic-col, -.topic-container.preview-list-item.text .topic-col, -.topic-container.preview-list .topic-col, -.topic-container.profile-img .topic-col, -.topic-container.quiz-list-row .topic-col, -.topic-container.quiz-list .topic-col, -.topic-container.quiz-result-box .topic-col, -.topic-container.r-card .topic-col, -.topic-container.readcard .topic-col, -.topic-container.retake-container .topic-col, -.topic-container.scroll-header-right .topic-col, -.topic-container.section-big .topic-col, -.topic-container.sectiontrending .topic-col, -.topic-container.series .topic-col, -.topic-container.sh-tab .topic-col, -.topic-container.stories-now .topic-col, -.topic-container.story-now-circle .topic-col, -.topic-container.story-now .topic-col, -.topic-container.t-arrow .topic-col, -.topic-container.team-mg .topic-col, -.topic-container.teamcolor .topic-col, -.topic-container.topic-cards .topic-col, -.topic-container.topic-slide .topic-col, -.topic-container.toplogo .topic-col, -.topic-container.user-weather .topic-col, -.topic-container.video-latest .topic-col, -.topic-container.videosummery .topic-col, -.topic-container.youmay-like .topic-col, -.topics-cont a.topic-container .topic-col, -.topics-cont div.topic-container .topic-col, -.topics .topic-container.topic .topic-col, -.video-l-card .topic-container.card-detail .topic-col, -a.topic-container[data-network=indiatimes] .topic-col { - background: transparent; - border: 1px solid #f1f1f1; - height: 63px; - margin-right: 0; -} - -.article-newsletter .topic-container.newsletterinput .slick-slide, -.brief-video .topic-container.video-small .slick-slide, -.header .topic-container.profile-data .slick-slide, -.menu-items .nav-menu .categories .nav-category a.topic-container .slick-slide, -.menu-items .nav-menu .categories .topic-container.nav-category .slick-slide, -.nav-ul .nav-category a.topic-container .slick-slide, -.nav-ul .topic-container.nav-category .slick-slide, -.original-popup .topic-container.browse-form .slick-slide, -.popular-slider .topic-container.slick-track .slick-slide, -.quick-slider .topic-container.slick-track .slick-slide, -.right-container .video-infocus .topic-container.video-small .slick-slide, -.rightsocial .topic-container.share-strip-social .slick-slide, -.rightsocial .topic-container.share-strip .slick-slide, -.shadow-card.video-card .topic-container.video-small .slick-slide, -.tbd-cont .tbc-border .topic-container.tbd-text .slick-slide, -.teamcolor .topic-container.team-d .slick-slide, -.topic-container.art-social .slick-slide, -.topic-container.author-row .slick-slide, -.topic-container.block-header .slick-slide, -.topic-container.breadcrumb.trunc .slick-slide, -.topic-container.browse-list .slick-slide, -.topic-container.card-strip .slick-slide, -.topic-container.card .slick-slide, -.topic-container.comment-form .slick-slide, -.topic-container.comment-post-box .slick-slide, -.topic-container.comment-post-links .slick-slide, -.topic-container.comment-post .slick-slide, -.topic-container.comment .slick-slide, -.topic-container.d-flex .slick-slide, -.topic-container.daily-story .slick-slide, -.topic-container.digital-left .slick-slide, -.topic-container.digital-page .slick-slide, -.topic-container.focus-card-body .slick-slide, -.topic-container.liver-two .slick-slide, -.topic-container.login-container .slick-slide, -.topic-container.menu-categories .slick-slide, -.topic-container.open-header .slick-slide, -.topic-container.org-tab .slick-slide, -.topic-container.original-popup-header .slick-slide, -.topic-container.original-top .slick-slide, -.topic-container.ov-card-detail .slick-slide, -.topic-container.ov-card-watch .slick-slide, -.topic-container.ov-card .slick-slide, -.topic-container.pie-chart .slick-slide, -.topic-container.preview-list-item.text .slick-slide, -.topic-container.preview-list .slick-slide, -.topic-container.profile-img .slick-slide, -.topic-container.quiz-list-row .slick-slide, -.topic-container.quiz-list .slick-slide, -.topic-container.quiz-result-box .slick-slide, -.topic-container.r-card .slick-slide, -.topic-container.readcard .slick-slide, -.topic-container.retake-container .slick-slide, -.topic-container.scroll-header-right .slick-slide, -.topic-container.section-big .slick-slide, -.topic-container.sectiontrending .slick-slide, -.topic-container.series .slick-slide, -.topic-container.sh-tab .slick-slide, -.topic-container.stories-now .slick-slide, -.topic-container.story-now-circle .slick-slide, -.topic-container.story-now .slick-slide, -.topic-container.t-arrow .slick-slide, -.topic-container.team-mg .slick-slide, -.topic-container.teamcolor .slick-slide, -.topic-container.topic-cards .slick-slide, -.topic-container.topic-slide .slick-slide, -.topic-container.toplogo .slick-slide, -.topic-container.user-weather .slick-slide, -.topic-container.video-latest .slick-slide, -.topic-container.videosummery .slick-slide, -.topic-container.youmay-like .slick-slide, -.topics-cont a.topic-container .slick-slide, -.topics-cont div.topic-container .slick-slide, -.topics .topic-container.topic .slick-slide, -.video-l-card .topic-container.card-detail .slick-slide, -a.topic-container[data-network=indiatimes] .slick-slide { - margin-right: 20px; -} - -.article-newsletter .topic-container.newsletterinput h2.block-header-title, -.article-newsletter .topic-container.newsletterinput h2.comment-top, -.article-newsletter .topic-container.newsletterinput h2.h-dinline, -.article-newsletter .topic-container.newsletterinput h2.topic-slide, -.brief-video .topic-container.video-small h2.block-header-title, -.brief-video .topic-container.video-small h2.comment-top, -.brief-video .topic-container.video-small h2.h-dinline, -.brief-video .topic-container.video-small h2.topic-slide, -.header .topic-container.profile-data h2.block-header-title, -.header .topic-container.profile-data h2.comment-top, -.header .topic-container.profile-data h2.h-dinline, -.header .topic-container.profile-data h2.topic-slide, -.menu-items .nav-menu .categories .nav-category a.topic-container h2.block-header-title, -.menu-items .nav-menu .categories .nav-category a.topic-container h2.comment-top, -.menu-items .nav-menu .categories .nav-category a.topic-container h2.h-dinline, -.menu-items .nav-menu .categories .nav-category a.topic-container h2.topic-slide, -.menu-items .nav-menu .categories .topic-container.nav-category h2.block-header-title, -.menu-items .nav-menu .categories .topic-container.nav-category h2.comment-top, -.menu-items .nav-menu .categories .topic-container.nav-category h2.h-dinline, -.menu-items .nav-menu .categories .topic-container.nav-category h2.topic-slide, -.nav-ul .nav-category a.topic-container h2.block-header-title, -.nav-ul .nav-category a.topic-container h2.comment-top, -.nav-ul .nav-category a.topic-container h2.h-dinline, -.nav-ul .nav-category a.topic-container h2.topic-slide, -.nav-ul .topic-container.nav-category h2.block-header-title, -.nav-ul .topic-container.nav-category h2.comment-top, -.nav-ul .topic-container.nav-category h2.h-dinline, -.nav-ul .topic-container.nav-category h2.topic-slide, -.original-popup .topic-container.browse-form h2.block-header-title, -.original-popup .topic-container.browse-form h2.comment-top, -.original-popup .topic-container.browse-form h2.h-dinline, -.original-popup .topic-container.browse-form h2.topic-slide, -.popular-slider .topic-container.slick-track h2.block-header-title, -.popular-slider .topic-container.slick-track h2.comment-top, -.popular-slider .topic-container.slick-track h2.h-dinline, -.popular-slider .topic-container.slick-track h2.topic-slide, -.quick-slider .topic-container.slick-track h2.block-header-title, -.quick-slider .topic-container.slick-track h2.comment-top, -.quick-slider .topic-container.slick-track h2.h-dinline, -.quick-slider .topic-container.slick-track h2.topic-slide, -.right-container .video-infocus .topic-container.card-strip h2.block-header-title, -.right-container .video-infocus .topic-container.card-strip h2.comment-top, -.right-container .video-infocus .topic-container.card-strip h2.h-dinline, -.right-container .video-infocus .topic-container.card-strip h2.topic-slide, -.right-container .video-infocus .topic-container.video-small h2.block-header-title, -.right-container .video-infocus .topic-container.video-small h2.comment-top, -.right-container .video-infocus .topic-container.video-small h2.h-dinline, -.right-container .video-infocus .topic-container.video-small h2.topic-slide, -.rightsocial .topic-container.share-strip-social h2.block-header-title, -.rightsocial .topic-container.share-strip-social h2.comment-top, -.rightsocial .topic-container.share-strip-social h2.h-dinline, -.rightsocial .topic-container.share-strip-social h2.topic-slide, -.rightsocial .topic-container.share-strip h2.block-header-title, -.rightsocial .topic-container.share-strip h2.comment-top, -.rightsocial .topic-container.share-strip h2.h-dinline, -.rightsocial .topic-container.share-strip h2.topic-slide, -.shadow-card.video-card .topic-container.video-small h2.block-header-title, -.shadow-card.video-card .topic-container.video-small h2.comment-top, -.shadow-card.video-card .topic-container.video-small h2.h-dinline, -.shadow-card.video-card .topic-container.video-small h2.topic-slide, -.tbd-cont .tbc-border .topic-container.tbd-text h2.block-header-title, -.tbd-cont .tbc-border .topic-container.tbd-text h2.comment-top, -.tbd-cont .tbc-border .topic-container.tbd-text h2.h-dinline, -.tbd-cont .tbc-border .topic-container.tbd-text h2.topic-slide, -.teamcolor .topic-container.team-d h2.block-header-title, -.teamcolor .topic-container.team-d h2.comment-top, -.teamcolor .topic-container.team-d h2.h-dinline, -.teamcolor .topic-container.team-d h2.topic-slide, -.topic-container.art-social h2.block-header-title, -.topic-container.art-social h2.comment-top, -.topic-container.art-social h2.h-dinline, -.topic-container.art-social h2.topic-slide, -.topic-container.author-row h2.block-header-title, -.topic-container.author-row h2.comment-top, -.topic-container.author-row h2.h-dinline, -.topic-container.author-row h2.topic-slide, -.topic-container.block-header h2.block-header-title, -.topic-container.block-header h2.comment-top, -.topic-container.block-header h2.h-dinline, -.topic-container.block-header h2.topic-slide, -.topic-container.breadcrumb.trunc h2.block-header-title, -.topic-container.breadcrumb.trunc h2.comment-top, -.topic-container.breadcrumb.trunc h2.h-dinline, -.topic-container.breadcrumb.trunc h2.topic-slide, -.topic-container.browse-list h2.block-header-title, -.topic-container.browse-list h2.comment-top, -.topic-container.browse-list h2.h-dinline, -.topic-container.browse-list h2.topic-slide, -.topic-container.card-strip h2.block-header-title, -.topic-container.card-strip h2.comment-top, -.topic-container.card-strip h2.h-dinline, -.topic-container.card-strip h2.topic-slide, -.topic-container.card h2.block-header-title, -.topic-container.card h2.comment-top, -.topic-container.card h2.h-dinline, -.topic-container.card h2.topic-slide, -.topic-container.comment-form h2.block-header-title, -.topic-container.comment-form h2.comment-top, -.topic-container.comment-form h2.h-dinline, -.topic-container.comment-form h2.topic-slide, -.topic-container.comment-post-box h2.block-header-title, -.topic-container.comment-post-box h2.comment-top, -.topic-container.comment-post-box h2.h-dinline, -.topic-container.comment-post-box h2.topic-slide, -.topic-container.comment-post-links h2.block-header-title, -.topic-container.comment-post-links h2.comment-top, -.topic-container.comment-post-links h2.h-dinline, -.topic-container.comment-post-links h2.topic-slide, -.topic-container.comment-post h2.block-header-title, -.topic-container.comment-post h2.comment-top, -.topic-container.comment-post h2.h-dinline, -.topic-container.comment-post h2.topic-slide, -.topic-container.comment h2.block-header-title, -.topic-container.comment h2.comment-top, -.topic-container.comment h2.h-dinline, -.topic-container.comment h2.topic-slide, -.topic-container.d-flex .topic-container.slick-track h2.block-header-title, -.topic-container.d-flex .topic-container.slick-track h2.comment-top, -.topic-container.d-flex .topic-container.slick-track h2.h-dinline, -.topic-container.d-flex .topic-container.slick-track h2.topic-slide, -.topic-container.d-flex h2.block-header-title, -.topic-container.d-flex h2.comment-top, -.topic-container.d-flex h2.h-dinline, -.topic-container.d-flex h2.topic-slide, -.topic-container.daily-story h2.block-header-title, -.topic-container.daily-story h2.comment-top, -.topic-container.daily-story h2.h-dinline, -.topic-container.daily-story h2.topic-slide, -.topic-container.digital-left h2.block-header-title, -.topic-container.digital-left h2.comment-top, -.topic-container.digital-left h2.h-dinline, -.topic-container.digital-left h2.topic-slide, -.topic-container.digital-page h2.block-header-title, -.topic-container.digital-page h2.comment-top, -.topic-container.digital-page h2.h-dinline, -.topic-container.digital-page h2.topic-slide, -.topic-container.focus-card-body h2.block-header-title, -.topic-container.focus-card-body h2.comment-top, -.topic-container.focus-card-body h2.h-dinline, -.topic-container.focus-card-body h2.topic-slide, -.topic-container.liver-two h2.block-header-title, -.topic-container.liver-two h2.comment-top, -.topic-container.liver-two h2.h-dinline, -.topic-container.liver-two h2.topic-slide, -.topic-container.login-container h2.block-header-title, -.topic-container.login-container h2.comment-top, -.topic-container.login-container h2.h-dinline, -.topic-container.login-container h2.topic-slide, -.topic-container.menu-categories h2.block-header-title, -.topic-container.menu-categories h2.comment-top, -.topic-container.menu-categories h2.h-dinline, -.topic-container.menu-categories h2.topic-slide, -.topic-container.open-header h2.block-header-title, -.topic-container.open-header h2.comment-top, -.topic-container.open-header h2.h-dinline, -.topic-container.open-header h2.topic-slide, -.topic-container.org-tab h2.block-header-title, -.topic-container.org-tab h2.comment-top, -.topic-container.org-tab h2.h-dinline, -.topic-container.org-tab h2.topic-slide, -.topic-container.original-popup-header h2.block-header-title, -.topic-container.original-popup-header h2.comment-top, -.topic-container.original-popup-header h2.h-dinline, -.topic-container.original-popup-header h2.topic-slide, -.topic-container.original-top h2.block-header-title, -.topic-container.original-top h2.comment-top, -.topic-container.original-top h2.h-dinline, -.topic-container.original-top h2.topic-slide, -.topic-container.ov-card-detail h2.block-header-title, -.topic-container.ov-card-detail h2.comment-top, -.topic-container.ov-card-detail h2.h-dinline, -.topic-container.ov-card-detail h2.topic-slide, -.topic-container.ov-card-watch h2.block-header-title, -.topic-container.ov-card-watch h2.comment-top, -.topic-container.ov-card-watch h2.h-dinline, -.topic-container.ov-card-watch h2.topic-slide, -.topic-container.ov-card h2.block-header-title, -.topic-container.ov-card h2.comment-top, -.topic-container.ov-card h2.h-dinline, -.topic-container.ov-card h2.topic-slide, -.topic-container.pie-chart h2.block-header-title, -.topic-container.pie-chart h2.comment-top, -.topic-container.pie-chart h2.h-dinline, -.topic-container.pie-chart h2.topic-slide, -.topic-container.preview-list-item.text h2.block-header-title, -.topic-container.preview-list-item.text h2.comment-top, -.topic-container.preview-list-item.text h2.h-dinline, -.topic-container.preview-list-item.text h2.topic-slide, -.topic-container.preview-list h2.block-header-title, -.topic-container.preview-list h2.comment-top, -.topic-container.preview-list h2.h-dinline, -.topic-container.preview-list h2.topic-slide, -.topic-container.profile-img h2.block-header-title, -.topic-container.profile-img h2.comment-top, -.topic-container.profile-img h2.h-dinline, -.topic-container.profile-img h2.topic-slide, -.topic-container.quiz-list-row h2.block-header-title, -.topic-container.quiz-list-row h2.comment-top, -.topic-container.quiz-list-row h2.h-dinline, -.topic-container.quiz-list-row h2.topic-slide, -.topic-container.quiz-list h2.block-header-title, -.topic-container.quiz-list h2.comment-top, -.topic-container.quiz-list h2.h-dinline, -.topic-container.quiz-list h2.topic-slide, -.topic-container.quiz-result-box h2.block-header-title, -.topic-container.quiz-result-box h2.comment-top, -.topic-container.quiz-result-box h2.h-dinline, -.topic-container.quiz-result-box h2.topic-slide, -.topic-container.r-card h2.block-header-title, -.topic-container.r-card h2.comment-top, -.topic-container.r-card h2.h-dinline, -.topic-container.r-card h2.topic-slide, -.topic-container.readcard h2.block-header-title, -.topic-container.readcard h2.comment-top, -.topic-container.readcard h2.h-dinline, -.topic-container.readcard h2.topic-slide, -.topic-container.retake-container h2.block-header-title, -.topic-container.retake-container h2.comment-top, -.topic-container.retake-container h2.h-dinline, -.topic-container.retake-container h2.topic-slide, -.topic-container.scroll-header-right h2.block-header-title, -.topic-container.scroll-header-right h2.comment-top, -.topic-container.scroll-header-right h2.h-dinline, -.topic-container.scroll-header-right h2.topic-slide, -.topic-container.section-big h2.block-header-title, -.topic-container.section-big h2.comment-top, -.topic-container.section-big h2.h-dinline, -.topic-container.section-big h2.topic-slide, -.topic-container.sectiontrending h2.block-header-title, -.topic-container.sectiontrending h2.comment-top, -.topic-container.sectiontrending h2.h-dinline, -.topic-container.sectiontrending h2.topic-slide, -.topic-container.series h2.block-header-title, -.topic-container.series h2.comment-top, -.topic-container.series h2.h-dinline, -.topic-container.series h2.topic-slide, -.topic-container.sh-tab h2.block-header-title, -.topic-container.sh-tab h2.comment-top, -.topic-container.sh-tab h2.h-dinline, -.topic-container.sh-tab h2.topic-slide, -.topic-container.stories-now h2.block-header-title, -.topic-container.stories-now h2.comment-top, -.topic-container.stories-now h2.h-dinline, -.topic-container.stories-now h2.topic-slide, -.topic-container.story-now-circle h2.block-header-title, -.topic-container.story-now-circle h2.comment-top, -.topic-container.story-now-circle h2.h-dinline, -.topic-container.story-now-circle h2.topic-slide, -.topic-container.story-now h2.block-header-title, -.topic-container.story-now h2.comment-top, -.topic-container.story-now h2.h-dinline, -.topic-container.story-now h2.topic-slide, -.topic-container.t-arrow h2.block-header-title, -.topic-container.t-arrow h2.comment-top, -.topic-container.t-arrow h2.h-dinline, -.topic-container.t-arrow h2.topic-slide, -.topic-container.team-mg h2.block-header-title, -.topic-container.team-mg h2.comment-top, -.topic-container.team-mg h2.h-dinline, -.topic-container.team-mg h2.topic-slide, -.topic-container.teamcolor h2.block-header-title, -.topic-container.teamcolor h2.comment-top, -.topic-container.teamcolor h2.h-dinline, -.topic-container.teamcolor h2.topic-slide, -.topic-container.topic-cards h2.block-header-title, -.topic-container.topic-cards h2.comment-top, -.topic-container.topic-cards h2.h-dinline, -.topic-container.topic-cards h2.topic-slide, -.topic-container.topic-slide h2.block-header-title, -.topic-container.topic-slide h2.comment-top, -.topic-container.topic-slide h2.h-dinline, -.topic-container.topic-slide h2.topic-slide, -.topic-container.toplogo h2.block-header-title, -.topic-container.toplogo h2.comment-top, -.topic-container.toplogo h2.h-dinline, -.topic-container.toplogo h2.topic-slide, -.topic-container.user-weather h2.block-header-title, -.topic-container.user-weather h2.comment-top, -.topic-container.user-weather h2.h-dinline, -.topic-container.user-weather h2.topic-slide, -.topic-container.video-latest h2.block-header-title, -.topic-container.video-latest h2.comment-top, -.topic-container.video-latest h2.h-dinline, -.topic-container.video-latest h2.topic-slide, -.topic-container.videosummery h2.block-header-title, -.topic-container.videosummery h2.comment-top, -.topic-container.videosummery h2.h-dinline, -.topic-container.videosummery h2.topic-slide, -.topic-container.youmay-like h2.block-header-title, -.topic-container.youmay-like h2.comment-top, -.topic-container.youmay-like h2.h-dinline, -.topic-container.youmay-like h2.topic-slide, -.topics-cont a.topic-container h2.block-header-title, -.topics-cont a.topic-container h2.comment-top, -.topics-cont a.topic-container h2.h-dinline, -.topics-cont a.topic-container h2.topic-slide, -.topics-cont div.topic-container h2.block-header-title, -.topics-cont div.topic-container h2.comment-top, -.topics-cont div.topic-container h2.h-dinline, -.topics-cont div.topic-container h2.topic-slide, -.topics .topic-container.topic h2.block-header-title, -.topics .topic-container.topic h2.comment-top, -.topics .topic-container.topic h2.h-dinline, -.topics .topic-container.topic h2.topic-slide, -.video-l-card .topic-container.card-detail h2.block-header-title, -.video-l-card .topic-container.card-detail h2.comment-top, -.video-l-card .topic-container.card-detail h2.h-dinline, -.video-l-card .topic-container.card-detail h2.topic-slide, -a.topic-container[data-network=indiatimes] h2.block-header-title, -a.topic-container[data-network=indiatimes] h2.comment-top, -a.topic-container[data-network=indiatimes] h2.h-dinline, -a.topic-container[data-network=indiatimes] h2.topic-slide { - font-size: 14px; -} - -.slick-arrow.slick-disabled { - display: none; -} - -.topic-container .topic-col { - background: #eaeef9; -} - -.menu-categories .category-thumb { - width: 72px; - height: 72px; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - background: #fff; -} - -.youmay-like .card-body { - padding-bottom: 2.5rem; -} - -.youmay-like .card-strip { - padding: 0; - position: absolute; - bottom: 5px; - left: 15px; - right: 15px; - text-align: center; -} - -.card-section a, -.card-section span { - margin-right: 8px; -} - -.video-latest-right .block-header-title, -.video-latest-right .comment-top, -.video-latest-right .h-dinline, -.video-latest-right .topic-slide { - font-size: 1rem; - text-transform: none; -} - -.video-r-card { - transition: all .4s ease-in-out; -} - -.video-r-card .card-section { - font-family: Verdana; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; -} - -.video-r-card .card-section span { - vertical-align: 0; - margin-right: 0; -} - -.video-r-card:hover { - background-color: #3457a7; -} - -.video-l-card .icon-video-big { - width: 60px; - height: 60px; - max-width: inherit; -} - -.mb-80 { - margin-bottom: 80px; -} - -.card-strip .time-icon { - margin-right: .2rem; -} - -.ads, -.advertisement_text { - margin: 0 auto; - max-width: 1100px; - position: relative; -} - -.advertisement_text.click-to-reveal, -.advertisement_text.spacing-remove { - margin-left: 0; - margin-right: 0; -} - -.megamenu-content .menu-right { - text-align: left; -} - -.latest-stories .card-title { - max-height: 53px; - overflow: hidden; - min-height: 53px; -} - -.topic-article .slick-slide { - max-width: 150px; -} - -.topic-article .topic-col { - width: 150px; - height: 60px; - max-width: 150px; - padding-top: .65em; - margin-right: 20px; -} - -.topic-article .topic-col:last-child { - margin-right: 0; -} - -.topic-article .text { - font-weight: 700; -} - -.topic-slide { - margin-bottom: 0; - align-items: center; -} - -.topic-slide .icon-section { - width: 34px; - height: 30px; - margin: 0; - flex: 0 0 21.75rem; -} - -.topic-slide .icon-section img { - width: 30px; - height: 30px; -} - -.topic-slide .text { - font-weight: 700; - color: #000; - margin-left: 10px; -} - -.responsive-wrap { - overflow: hidden; - margin: 0 auto 35px; - padding-top: 56.25%; - height: 0; -} - -.responsive-wrap div, -.responsive-wrap embed, -.responsive-wrap iframe, -.responsive-wrap object, -.responsive-wrap video { - top: 0; - left: 0; - margin: auto; - width: 100%; - height: 100%; -} - -.article-image:before { - padding-top: 100%; - padding-top: 50%; -} - -.image_container .clickreval { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 6; - width: 80px; - height: 80px; - border: 5px solid hsla(0, 0%, 100%, .3); - border-radius: 50%; - background: rgba(0, 0, 0, .5); - margin: auto; -} - -.image_container .clickreval span { - font-weight: 700; - font-size: .5em; - display: block; - padding-top: 27px; - color: hsla(0, 0%, 100%, .8); - text-shadow: 1px 1px 2px rgba(0, 0, 0, .4); -} - -.blur img { - filter: blur(7px); - transition: all .2s ease-out; -} - -.click-to-reveal { - margin-bottom: 40px; -} - -.source_link.picCaption { - margin-top: 0; -} - -.source_link { - display: block; - font-size: .7rem; - color: #575757; - padding-top: 8px; - line-height: 0; - font-weight: 400; - margin-top: -35px; -} - -.error-page { - line-height: 1.5; - margin-top: 1rem; -} - -.error-page h2 { - font-family: Verdana; - font-size: 20px; - line-height: 1.5; - margin: 2rem 0 1rem; -} - -.error-page h2 span { - font-weight: 700; -} - -.error-page p { - margin-top: 10px; - text-align: center; -} - -.error-page .explore-button { - font-weight: 700; - border: 1px solid #3457a7; - color: #3457a7; - border-radius: 4px; - background: none; - padding: 13px; - margin: 1rem 0 2rem; - display: inline-block; -} - -.topics-cont { - font-weight: 700; - max-width: 300px; -} - -.topics-cont a, -.topics-cont div { - align-items: center; -} - -.topics-cont .img { - width: 40px; - max-width: 20%; - margin-right: 10px; -} - -.img { - overflow: hidden; - width: 50px; -} - -.img img { - border-radius: 50%; - border: 1px solid #f1f1f1; -} - -.img-responsive { - width: 100%; - height: auto; -} - -.total-stories { - font-weight: 700; - color: #000; - opacity: .87; - background-color: #fff; - padding: 5px 0; -} - -.total-stories span:after { - content: "•"; - color: #000; - padding: 0 10px; - vertical-align: -2px; -} - -.topics-summery p { - color: #171717; - line-height: 1.9rem; - font-style: italic; -} - -.topics-summery p span { - background: #ffed59; -} - -.topic-cont { - position: relative; -} - -.topic-cont .block-header-all { - margin-top: 10px; -} - -.article-newsletter .readnext .common-card .topic-cont .card-body.newsletterinput, -.article-newsletter .topic-cont .mr-auto.newsletterinput, -.article-newsletter .user-weather .topic-cont .uder-left.newsletterinput, -.brief-video .readnext .common-card .topic-cont .card-body.video-small, -.brief-video .topic-cont .mr-auto.video-small, -.brief-video .user-weather .topic-cont .uder-left.video-small, -.header .readnext .common-card .topic-cont .profile-data.card-body, -.header .topic-cont .mr-auto.profile-data, -.header .user-weather .topic-cont .profile-data.uder-left, -.menu-items .nav-menu .categories .nav-category .readnext .common-card .topic-cont a.card-body, -.menu-items .nav-menu .categories .nav-category .topic-cont a.mr-auto, -.menu-items .nav-menu .categories .nav-category .user-weather .topic-cont a.uder-left, -.menu-items .nav-menu .categories .readnext .common-card .topic-cont .nav-category.card-body, -.menu-items .nav-menu .categories .topic-cont .mr-auto.nav-category, -.menu-items .nav-menu .categories .user-weather .topic-cont .nav-category.uder-left, -.nav-ul .nav-category .readnext .common-card .topic-cont a.card-body, -.nav-ul .nav-category .topic-cont a.mr-auto, -.nav-ul .nav-category .user-weather .topic-cont a.uder-left, -.nav-ul .readnext .common-card .topic-cont .nav-category.card-body, -.nav-ul .topic-cont .mr-auto.nav-category, -.nav-ul .user-weather .topic-cont .nav-category.uder-left, -.original-popup .readnext .common-card .topic-cont .card-body.browse-form, -.original-popup .topic-cont .mr-auto.browse-form, -.original-popup .user-weather .topic-cont .uder-left.browse-form, -.popular-slider .readnext .common-card .topic-cont .card-body.slick-track, -.popular-slider .topic-cont .mr-auto.slick-track, -.popular-slider .user-weather .topic-cont .uder-left.slick-track, -.quick-slider .readnext .common-card .topic-cont .card-body.slick-track, -.quick-slider .topic-cont .mr-auto.slick-track, -.quick-slider .user-weather .topic-cont .uder-left.slick-track, -.readnext .common-card .article-newsletter .topic-cont .card-body.newsletterinput, -.readnext .common-card .brief-video .topic-cont .card-body.video-small, -.readnext .common-card .header .topic-cont .profile-data.card-body, -.readnext .common-card .menu-items .nav-menu .categories .nav-category .topic-cont a.card-body, -.readnext .common-card .menu-items .nav-menu .categories .topic-cont .nav-category.card-body, -.readnext .common-card .nav-ul .nav-category .topic-cont a.card-body, -.readnext .common-card .nav-ul .topic-cont .nav-category.card-body, -.readnext .common-card .original-popup .topic-cont .card-body.browse-form, -.readnext .common-card .popular-slider .topic-cont .card-body.slick-track, -.readnext .common-card .quick-slider .topic-cont .card-body.slick-track, -.readnext .common-card .right-container .video-infocus .topic-cont .card-body.video-small, -.readnext .common-card .right-container .video-infocus .topic-cont .card-strip.card-body, -.readnext .common-card .rightsocial .topic-cont .card-body.share-strip, -.readnext .common-card .rightsocial .topic-cont .card-body.share-strip-social, -.readnext .common-card .shadow-card.video-card .topic-cont .card-body.video-small, -.readnext .common-card .tbd-cont .tbc-border .topic-cont .card-body.tbd-text, -.readnext .common-card .teamcolor .topic-cont .card-body.team-d, -.readnext .common-card .topic-cont .art-social.card-body, -.readnext .common-card .topic-cont .breadcrumb.trunc.card-body, -.readnext .common-card .topic-cont .card-body.author-row, -.readnext .common-card .topic-cont .card-body.block-header, -.readnext .common-card .topic-cont .card-body.browse-list, -.readnext .common-card .topic-cont .card-body.card, -.readnext .common-card .topic-cont .card-body.card-strip, -.readnext .common-card .topic-cont .card-body.comment, -.readnext .common-card .topic-cont .card-body.comment-form, -.readnext .common-card .topic-cont .card-body.comment-post, -.readnext .common-card .topic-cont .card-body.comment-post-box, -.readnext .common-card .topic-cont .card-body.comment-post-links, -.readnext .common-card .topic-cont .card-body.liver-two, -.readnext .common-card .topic-cont .card-body.login-container, -.readnext .common-card .topic-cont .card-body.org-tab, -.readnext .common-card .topic-cont .card-body.original-popup-header, -.readnext .common-card .topic-cont .card-body.original-top, -.readnext .common-card .topic-cont .card-body.ov-card, -.readnext .common-card .topic-cont .card-body.ov-card-detail, -.readnext .common-card .topic-cont .card-body.ov-card-watch, -.readnext .common-card .topic-cont .card-body.pie-chart, -.readnext .common-card .topic-cont .card-body.preview-list, -.readnext .common-card .topic-cont .card-body.preview-list-item.text, -.readnext .common-card .topic-cont .card-body.profile-img, -.readnext .common-card .topic-cont .card-body.quiz-list, -.readnext .common-card .topic-cont .card-body.quiz-list-row, -.readnext .common-card .topic-cont .card-body.quiz-result-box, -.readnext .common-card .topic-cont .card-body.r-card, -.readnext .common-card .topic-cont .card-body.readcard, -.readnext .common-card .topic-cont .card-body.retake-container, -.readnext .common-card .topic-cont .card-body.series, -.readnext .common-card .topic-cont .card-body.stories-now, -.readnext .common-card .topic-cont .card-body.story-now, -.readnext .common-card .topic-cont .card-body.story-now-circle, -.readnext .common-card .topic-cont .card-body.t-arrow, -.readnext .common-card .topic-cont .card-body.team-mg, -.readnext .common-card .topic-cont .card-body.teamcolor, -.readnext .common-card .topic-cont .card-body.topic-cards, -.readnext .common-card .topic-cont .card-body.topic-slide, -.readnext .common-card .topic-cont .card-body.toplogo, -.readnext .common-card .topic-cont .card-body.video-latest, -.readnext .common-card .topic-cont .card-body.videosummery, -.readnext .common-card .topic-cont .d-flex.card-body, -.readnext .common-card .topic-cont .daily-story.card-body, -.readnext .common-card .topic-cont .digital-left.card-body, -.readnext .common-card .topic-cont .digital-page.card-body, -.readnext .common-card .topic-cont .focus-card-body.card-body, -.readnext .common-card .topic-cont .menu-categories.card-body, -.readnext .common-card .topic-cont .open-header.card-body, -.readnext .common-card .topic-cont .scroll-header-right.card-body, -.readnext .common-card .topic-cont .section-big.card-body, -.readnext .common-card .topic-cont .sectiontrending.card-body, -.readnext .common-card .topic-cont .sh-tab.card-body, -.readnext .common-card .topic-cont .user-weather.card-body, -.readnext .common-card .topic-cont .youmay-like.card-body, -.readnext .common-card .topic-cont a.card-body[data-network=indiatimes], -.readnext .common-card .topic-container.d-flex .topic-cont .card-body.slick-track, -.readnext .common-card .topics-cont .topic-cont a.card-body, -.readnext .common-card .topics-cont .topic-cont div.card-body, -.readnext .common-card .topics .topic-cont .topic.card-body, -.readnext .common-card .video-l-card .topic-cont .card-body.card-detail, -.right-container .video-infocus .readnext .common-card .topic-cont .card-body.video-small, -.right-container .video-infocus .readnext .common-card .topic-cont .card-strip.card-body, -.right-container .video-infocus .topic-cont .mr-auto.card-strip, -.right-container .video-infocus .topic-cont .mr-auto.video-small, -.right-container .video-infocus .user-weather .topic-cont .card-strip.uder-left, -.right-container .video-infocus .user-weather .topic-cont .uder-left.video-small, -.rightsocial .readnext .common-card .topic-cont .card-body.share-strip, -.rightsocial .readnext .common-card .topic-cont .card-body.share-strip-social, -.rightsocial .topic-cont .mr-auto.share-strip, -.rightsocial .topic-cont .mr-auto.share-strip-social, -.rightsocial .user-weather .topic-cont .uder-left.share-strip, -.rightsocial .user-weather .topic-cont .uder-left.share-strip-social, -.shadow-card.video-card .readnext .common-card .topic-cont .card-body.video-small, -.shadow-card.video-card .topic-cont .mr-auto.video-small, -.shadow-card.video-card .user-weather .topic-cont .uder-left.video-small, -.tbd-cont .tbc-border .readnext .common-card .topic-cont .card-body.tbd-text, -.tbd-cont .tbc-border .topic-cont .mr-auto.tbd-text, -.tbd-cont .tbc-border .user-weather .topic-cont .uder-left.tbd-text, -.teamcolor .readnext .common-card .topic-cont .card-body.team-d, -.teamcolor .topic-cont .mr-auto.team-d, -.teamcolor .user-weather .topic-cont .uder-left.team-d, -.topic-cont .article-newsletter .mr-auto.newsletterinput, -.topic-cont .article-newsletter .readnext .common-card .card-body.newsletterinput, -.topic-cont .article-newsletter .user-weather .uder-left.newsletterinput, -.topic-cont .brief-video .mr-auto.video-small, -.topic-cont .brief-video .readnext .common-card .card-body.video-small, -.topic-cont .brief-video .user-weather .uder-left.video-small, -.topic-cont .d-flex.mr-auto, -.topic-cont .header .mr-auto.profile-data, -.topic-cont .header .readnext .common-card .profile-data.card-body, -.topic-cont .header .user-weather .profile-data.uder-left, -.topic-cont .menu-items .nav-menu .categories .mr-auto.nav-category, -.topic-cont .menu-items .nav-menu .categories .nav-category .readnext .common-card a.card-body, -.topic-cont .menu-items .nav-menu .categories .nav-category .user-weather a.uder-left, -.topic-cont .menu-items .nav-menu .categories .nav-category a.mr-auto, -.topic-cont .menu-items .nav-menu .categories .readnext .common-card .nav-category.card-body, -.topic-cont .menu-items .nav-menu .categories .user-weather .nav-category.uder-left, -.topic-cont .mr-auto.art-social, -.topic-cont .mr-auto.author-row, -.topic-cont .mr-auto.block-header, -.topic-cont .mr-auto.breadcrumb.trunc, -.topic-cont .mr-auto.browse-list, -.topic-cont .mr-auto.card, -.topic-cont .mr-auto.card-strip, -.topic-cont .mr-auto.comment, -.topic-cont .mr-auto.comment-form, -.topic-cont .mr-auto.comment-post, -.topic-cont .mr-auto.comment-post-box, -.topic-cont .mr-auto.comment-post-links, -.topic-cont .mr-auto.daily-story, -.topic-cont .mr-auto.digital-left, -.topic-cont .mr-auto.digital-page, -.topic-cont .mr-auto.focus-card-body, -.topic-cont .mr-auto.liver-two, -.topic-cont .mr-auto.login-container, -.topic-cont .mr-auto.menu-categories, -.topic-cont .mr-auto.open-header, -.topic-cont .mr-auto.org-tab, -.topic-cont .mr-auto.original-popup-header, -.topic-cont .mr-auto.original-top, -.topic-cont .mr-auto.ov-card, -.topic-cont .mr-auto.ov-card-detail, -.topic-cont .mr-auto.ov-card-watch, -.topic-cont .mr-auto.pie-chart, -.topic-cont .mr-auto.preview-list, -.topic-cont .mr-auto.preview-list-item.text, -.topic-cont .mr-auto.profile-img, -.topic-cont .mr-auto.quiz-list, -.topic-cont .mr-auto.quiz-list-row, -.topic-cont .mr-auto.quiz-result-box, -.topic-cont .mr-auto.r-card, -.topic-cont .mr-auto.readcard, -.topic-cont .mr-auto.retake-container, -.topic-cont .mr-auto.scroll-header-right, -.topic-cont .mr-auto.section-big, -.topic-cont .mr-auto.sectiontrending, -.topic-cont .mr-auto.series, -.topic-cont .mr-auto.sh-tab, -.topic-cont .mr-auto.stories-now, -.topic-cont .mr-auto.story-now, -.topic-cont .mr-auto.story-now-circle, -.topic-cont .mr-auto.t-arrow, -.topic-cont .mr-auto.team-mg, -.topic-cont .mr-auto.teamcolor, -.topic-cont .mr-auto.topic-cards, -.topic-cont .mr-auto.topic-slide, -.topic-cont .mr-auto.toplogo, -.topic-cont .mr-auto.user-weather, -.topic-cont .mr-auto.video-latest, -.topic-cont .mr-auto.videosummery, -.topic-cont .mr-auto.youmay-like, -.topic-cont .nav-ul .mr-auto.nav-category, -.topic-cont .nav-ul .nav-category .readnext .common-card a.card-body, -.topic-cont .nav-ul .nav-category .user-weather a.uder-left, -.topic-cont .nav-ul .nav-category a.mr-auto, -.topic-cont .nav-ul .readnext .common-card .nav-category.card-body, -.topic-cont .nav-ul .user-weather .nav-category.uder-left, -.topic-cont .original-popup .mr-auto.browse-form, -.topic-cont .original-popup .readnext .common-card .card-body.browse-form, -.topic-cont .original-popup .user-weather .uder-left.browse-form, -.topic-cont .popular-slider .mr-auto.slick-track, -.topic-cont .popular-slider .readnext .common-card .card-body.slick-track, -.topic-cont .popular-slider .user-weather .uder-left.slick-track, -.topic-cont .quick-slider .mr-auto.slick-track, -.topic-cont .quick-slider .readnext .common-card .card-body.slick-track, -.topic-cont .quick-slider .user-weather .uder-left.slick-track, -.topic-cont .readnext .common-card .art-social.card-body, -.topic-cont .readnext .common-card .article-newsletter .card-body.newsletterinput, -.topic-cont .readnext .common-card .breadcrumb.trunc.card-body, -.topic-cont .readnext .common-card .brief-video .card-body.video-small, -.topic-cont .readnext .common-card .card-body.author-row, -.topic-cont .readnext .common-card .card-body.block-header, -.topic-cont .readnext .common-card .card-body.browse-list, -.topic-cont .readnext .common-card .card-body.card, -.topic-cont .readnext .common-card .card-body.card-strip, -.topic-cont .readnext .common-card .card-body.comment, -.topic-cont .readnext .common-card .card-body.comment-form, -.topic-cont .readnext .common-card .card-body.comment-post, -.topic-cont .readnext .common-card .card-body.comment-post-box, -.topic-cont .readnext .common-card .card-body.comment-post-links, -.topic-cont .readnext .common-card .card-body.liver-two, -.topic-cont .readnext .common-card .card-body.login-container, -.topic-cont .readnext .common-card .card-body.org-tab, -.topic-cont .readnext .common-card .card-body.original-popup-header, -.topic-cont .readnext .common-card .card-body.original-top, -.topic-cont .readnext .common-card .card-body.ov-card, -.topic-cont .readnext .common-card .card-body.ov-card-detail, -.topic-cont .readnext .common-card .card-body.ov-card-watch, -.topic-cont .readnext .common-card .card-body.pie-chart, -.topic-cont .readnext .common-card .card-body.preview-list, -.topic-cont .readnext .common-card .card-body.preview-list-item.text, -.topic-cont .readnext .common-card .card-body.profile-img, -.topic-cont .readnext .common-card .card-body.quiz-list, -.topic-cont .readnext .common-card .card-body.quiz-list-row, -.topic-cont .readnext .common-card .card-body.quiz-result-box, -.topic-cont .readnext .common-card .card-body.r-card, -.topic-cont .readnext .common-card .card-body.readcard, -.topic-cont .readnext .common-card .card-body.retake-container, -.topic-cont .readnext .common-card .card-body.series, -.topic-cont .readnext .common-card .card-body.stories-now, -.topic-cont .readnext .common-card .card-body.story-now, -.topic-cont .readnext .common-card .card-body.story-now-circle, -.topic-cont .readnext .common-card .card-body.t-arrow, -.topic-cont .readnext .common-card .card-body.team-mg, -.topic-cont .readnext .common-card .card-body.teamcolor, -.topic-cont .readnext .common-card .card-body.topic-cards, -.topic-cont .readnext .common-card .card-body.topic-slide, -.topic-cont .readnext .common-card .card-body.toplogo, -.topic-cont .readnext .common-card .card-body.video-latest, -.topic-cont .readnext .common-card .card-body.videosummery, -.topic-cont .readnext .common-card .d-flex.card-body, -.topic-cont .readnext .common-card .daily-story.card-body, -.topic-cont .readnext .common-card .digital-left.card-body, -.topic-cont .readnext .common-card .digital-page.card-body, -.topic-cont .readnext .common-card .focus-card-body.card-body, -.topic-cont .readnext .common-card .header .profile-data.card-body, -.topic-cont .readnext .common-card .menu-categories.card-body, -.topic-cont .readnext .common-card .menu-items .nav-menu .categories .nav-category.card-body, -.topic-cont .readnext .common-card .menu-items .nav-menu .categories .nav-category a.card-body, -.topic-cont .readnext .common-card .nav-ul .nav-category.card-body, -.topic-cont .readnext .common-card .nav-ul .nav-category a.card-body, -.topic-cont .readnext .common-card .open-header.card-body, -.topic-cont .readnext .common-card .original-popup .card-body.browse-form, -.topic-cont .readnext .common-card .popular-slider .card-body.slick-track, -.topic-cont .readnext .common-card .quick-slider .card-body.slick-track, -.topic-cont .readnext .common-card .right-container .video-infocus .card-body.video-small, -.topic-cont .readnext .common-card .right-container .video-infocus .card-strip.card-body, -.topic-cont .readnext .common-card .rightsocial .card-body.share-strip, -.topic-cont .readnext .common-card .rightsocial .card-body.share-strip-social, -.topic-cont .readnext .common-card .scroll-header-right.card-body, -.topic-cont .readnext .common-card .section-big.card-body, -.topic-cont .readnext .common-card .sectiontrending.card-body, -.topic-cont .readnext .common-card .sh-tab.card-body, -.topic-cont .readnext .common-card .shadow-card.video-card .card-body.video-small, -.topic-cont .readnext .common-card .tbd-cont .tbc-border .card-body.tbd-text, -.topic-cont .readnext .common-card .teamcolor .card-body.team-d, -.topic-cont .readnext .common-card .topic-container.d-flex .card-body.slick-track, -.topic-cont .readnext .common-card .topics-cont a.card-body, -.topic-cont .readnext .common-card .topics-cont div.card-body, -.topic-cont .readnext .common-card .topics .topic.card-body, -.topic-cont .readnext .common-card .user-weather.card-body, -.topic-cont .readnext .common-card .video-l-card .card-body.card-detail, -.topic-cont .readnext .common-card .youmay-like.card-body, -.topic-cont .readnext .common-card a.card-body[data-network=indiatimes], -.topic-cont .right-container .video-infocus .mr-auto.card-strip, -.topic-cont .right-container .video-infocus .mr-auto.video-small, -.topic-cont .right-container .video-infocus .readnext .common-card .card-body.video-small, -.topic-cont .right-container .video-infocus .readnext .common-card .card-strip.card-body, -.topic-cont .right-container .video-infocus .user-weather .card-strip.uder-left, -.topic-cont .right-container .video-infocus .user-weather .uder-left.video-small, -.topic-cont .rightsocial .mr-auto.share-strip, -.topic-cont .rightsocial .mr-auto.share-strip-social, -.topic-cont .rightsocial .readnext .common-card .card-body.share-strip, -.topic-cont .rightsocial .readnext .common-card .card-body.share-strip-social, -.topic-cont .rightsocial .user-weather .uder-left.share-strip, -.topic-cont .rightsocial .user-weather .uder-left.share-strip-social, -.topic-cont .shadow-card.video-card .mr-auto.video-small, -.topic-cont .shadow-card.video-card .readnext .common-card .card-body.video-small, -.topic-cont .shadow-card.video-card .user-weather .uder-left.video-small, -.topic-cont .tbd-cont .tbc-border .mr-auto.tbd-text, -.topic-cont .tbd-cont .tbc-border .readnext .common-card .card-body.tbd-text, -.topic-cont .tbd-cont .tbc-border .user-weather .uder-left.tbd-text, -.topic-cont .teamcolor .mr-auto.team-d, -.topic-cont .teamcolor .readnext .common-card .card-body.team-d, -.topic-cont .teamcolor .user-weather .uder-left.team-d, -.topic-cont .topic-container.d-flex .mr-auto.slick-track, -.topic-cont .topic-container.d-flex .readnext .common-card .card-body.slick-track, -.topic-cont .topic-container.d-flex .user-weather .uder-left.slick-track, -.topic-cont .topics-cont .readnext .common-card a.card-body, -.topic-cont .topics-cont .readnext .common-card div.card-body, -.topic-cont .topics-cont .user-weather a.uder-left, -.topic-cont .topics-cont .user-weather div.uder-left, -.topic-cont .topics-cont a.mr-auto, -.topic-cont .topics-cont div.mr-auto, -.topic-cont .topics .mr-auto.topic, -.topic-cont .topics .readnext .common-card .topic.card-body, -.topic-cont .topics .user-weather .uder-left.topic, -.topic-cont .user-weather .article-newsletter .uder-left.newsletterinput, -.topic-cont .user-weather .brief-video .uder-left.video-small, -.topic-cont .user-weather .d-flex.uder-left, -.topic-cont .user-weather .header .profile-data.uder-left, -.topic-cont .user-weather .menu-items .nav-menu .categories .nav-category.uder-left, -.topic-cont .user-weather .menu-items .nav-menu .categories .nav-category a.uder-left, -.topic-cont .user-weather .nav-ul .nav-category.uder-left, -.topic-cont .user-weather .nav-ul .nav-category a.uder-left, -.topic-cont .user-weather .original-popup .uder-left.browse-form, -.topic-cont .user-weather .popular-slider .uder-left.slick-track, -.topic-cont .user-weather .quick-slider .uder-left.slick-track, -.topic-cont .user-weather .right-container .video-infocus .card-strip.uder-left, -.topic-cont .user-weather .right-container .video-infocus .uder-left.video-small, -.topic-cont .user-weather .rightsocial .uder-left.share-strip, -.topic-cont .user-weather .rightsocial .uder-left.share-strip-social, -.topic-cont .user-weather .scroll-header-right.uder-left, -.topic-cont .user-weather .shadow-card.video-card .uder-left.video-small, -.topic-cont .user-weather .tbd-cont .tbc-border .uder-left.tbd-text, -.topic-cont .user-weather .teamcolor .uder-left.team-d, -.topic-cont .user-weather .topic-container.d-flex .uder-left.slick-track, -.topic-cont .user-weather .topics-cont a.uder-left, -.topic-cont .user-weather .topics-cont div.uder-left, -.topic-cont .user-weather .topics .uder-left.topic, -.topic-cont .user-weather .uder-left.art-social, -.topic-cont .user-weather .uder-left.author-row, -.topic-cont .user-weather .uder-left.block-header, -.topic-cont .user-weather .uder-left.breadcrumb.trunc, -.topic-cont .user-weather .uder-left.browse-list, -.topic-cont .user-weather .uder-left.card, -.topic-cont .user-weather .uder-left.card-strip, -.topic-cont .user-weather .uder-left.comment, -.topic-cont .user-weather .uder-left.comment-form, -.topic-cont .user-weather .uder-left.comment-post, -.topic-cont .user-weather .uder-left.comment-post-box, -.topic-cont .user-weather .uder-left.comment-post-links, -.topic-cont .user-weather .uder-left.daily-story, -.topic-cont .user-weather .uder-left.digital-left, -.topic-cont .user-weather .uder-left.digital-page, -.topic-cont .user-weather .uder-left.focus-card-body, -.topic-cont .user-weather .uder-left.liver-two, -.topic-cont .user-weather .uder-left.login-container, -.topic-cont .user-weather .uder-left.menu-categories, -.topic-cont .user-weather .uder-left.open-header, -.topic-cont .user-weather .uder-left.org-tab, -.topic-cont .user-weather .uder-left.original-popup-header, -.topic-cont .user-weather .uder-left.original-top, -.topic-cont .user-weather .uder-left.ov-card, -.topic-cont .user-weather .uder-left.ov-card-detail, -.topic-cont .user-weather .uder-left.ov-card-watch, -.topic-cont .user-weather .uder-left.pie-chart, -.topic-cont .user-weather .uder-left.preview-list, -.topic-cont .user-weather .uder-left.preview-list-item.text, -.topic-cont .user-weather .uder-left.profile-img, -.topic-cont .user-weather .uder-left.quiz-list, -.topic-cont .user-weather .uder-left.quiz-list-row, -.topic-cont .user-weather .uder-left.quiz-result-box, -.topic-cont .user-weather .uder-left.r-card, -.topic-cont .user-weather .uder-left.readcard, -.topic-cont .user-weather .uder-left.retake-container, -.topic-cont .user-weather .uder-left.section-big, -.topic-cont .user-weather .uder-left.sectiontrending, -.topic-cont .user-weather .uder-left.series, -.topic-cont .user-weather .uder-left.sh-tab, -.topic-cont .user-weather .uder-left.stories-now, -.topic-cont .user-weather .uder-left.story-now, -.topic-cont .user-weather .uder-left.story-now-circle, -.topic-cont .user-weather .uder-left.t-arrow, -.topic-cont .user-weather .uder-left.team-mg, -.topic-cont .user-weather .uder-left.teamcolor, -.topic-cont .user-weather .uder-left.topic-cards, -.topic-cont .user-weather .uder-left.topic-slide, -.topic-cont .user-weather .uder-left.toplogo, -.topic-cont .user-weather .uder-left.video-latest, -.topic-cont .user-weather .uder-left.videosummery, -.topic-cont .user-weather .uder-left.youmay-like, -.topic-cont .user-weather .user-weather.uder-left, -.topic-cont .user-weather .video-l-card .uder-left.card-detail, -.topic-cont .user-weather a.uder-left[data-network=indiatimes], -.topic-cont .video-l-card .mr-auto.card-detail, -.topic-cont .video-l-card .readnext .common-card .card-body.card-detail, -.topic-cont .video-l-card .user-weather .uder-left.card-detail, -.topic-cont a.mr-auto[data-network=indiatimes], -.topic-container.d-flex .readnext .common-card .topic-cont .card-body.slick-track, -.topic-container.d-flex .topic-cont .mr-auto.slick-track, -.topic-container.d-flex .user-weather .topic-cont .uder-left.slick-track, -.topics-cont .readnext .common-card .topic-cont a.card-body, -.topics-cont .readnext .common-card .topic-cont div.card-body, -.topics-cont .topic-cont a.mr-auto, -.topics-cont .topic-cont div.mr-auto, -.topics-cont .user-weather .topic-cont a.uder-left, -.topics-cont .user-weather .topic-cont div.uder-left, -.topics .readnext .common-card .topic-cont .topic.card-body, -.topics .topic-cont .mr-auto.topic, -.topics .user-weather .topic-cont .uder-left.topic, -.user-weather .article-newsletter .topic-cont .uder-left.newsletterinput, -.user-weather .brief-video .topic-cont .uder-left.video-small, -.user-weather .header .topic-cont .profile-data.uder-left, -.user-weather .menu-items .nav-menu .categories .nav-category .topic-cont a.uder-left, -.user-weather .menu-items .nav-menu .categories .topic-cont .nav-category.uder-left, -.user-weather .nav-ul .nav-category .topic-cont a.uder-left, -.user-weather .nav-ul .topic-cont .nav-category.uder-left, -.user-weather .original-popup .topic-cont .uder-left.browse-form, -.user-weather .popular-slider .topic-cont .uder-left.slick-track, -.user-weather .quick-slider .topic-cont .uder-left.slick-track, -.user-weather .right-container .video-infocus .topic-cont .card-strip.uder-left, -.user-weather .right-container .video-infocus .topic-cont .uder-left.video-small, -.user-weather .rightsocial .topic-cont .uder-left.share-strip, -.user-weather .rightsocial .topic-cont .uder-left.share-strip-social, -.user-weather .shadow-card.video-card .topic-cont .uder-left.video-small, -.user-weather .tbd-cont .tbc-border .topic-cont .uder-left.tbd-text, -.user-weather .teamcolor .topic-cont .uder-left.team-d, -.user-weather .topic-cont .d-flex.uder-left, -.user-weather .topic-cont .scroll-header-right.uder-left, -.user-weather .topic-cont .uder-left.art-social, -.user-weather .topic-cont .uder-left.author-row, -.user-weather .topic-cont .uder-left.block-header, -.user-weather .topic-cont .uder-left.breadcrumb.trunc, -.user-weather .topic-cont .uder-left.browse-list, -.user-weather .topic-cont .uder-left.card, -.user-weather .topic-cont .uder-left.card-strip, -.user-weather .topic-cont .uder-left.comment, -.user-weather .topic-cont .uder-left.comment-form, -.user-weather .topic-cont .uder-left.comment-post, -.user-weather .topic-cont .uder-left.comment-post-box, -.user-weather .topic-cont .uder-left.comment-post-links, -.user-weather .topic-cont .uder-left.daily-story, -.user-weather .topic-cont .uder-left.digital-left, -.user-weather .topic-cont .uder-left.digital-page, -.user-weather .topic-cont .uder-left.focus-card-body, -.user-weather .topic-cont .uder-left.liver-two, -.user-weather .topic-cont .uder-left.login-container, -.user-weather .topic-cont .uder-left.menu-categories, -.user-weather .topic-cont .uder-left.open-header, -.user-weather .topic-cont .uder-left.org-tab, -.user-weather .topic-cont .uder-left.original-popup-header, -.user-weather .topic-cont .uder-left.original-top, -.user-weather .topic-cont .uder-left.ov-card, -.user-weather .topic-cont .uder-left.ov-card-detail, -.user-weather .topic-cont .uder-left.ov-card-watch, -.user-weather .topic-cont .uder-left.pie-chart, -.user-weather .topic-cont .uder-left.preview-list, -.user-weather .topic-cont .uder-left.preview-list-item.text, -.user-weather .topic-cont .uder-left.profile-img, -.user-weather .topic-cont .uder-left.quiz-list, -.user-weather .topic-cont .uder-left.quiz-list-row, -.user-weather .topic-cont .uder-left.quiz-result-box, -.user-weather .topic-cont .uder-left.r-card, -.user-weather .topic-cont .uder-left.readcard, -.user-weather .topic-cont .uder-left.retake-container, -.user-weather .topic-cont .uder-left.section-big, -.user-weather .topic-cont .uder-left.sectiontrending, -.user-weather .topic-cont .uder-left.series, -.user-weather .topic-cont .uder-left.sh-tab, -.user-weather .topic-cont .uder-left.stories-now, -.user-weather .topic-cont .uder-left.story-now, -.user-weather .topic-cont .uder-left.story-now-circle, -.user-weather .topic-cont .uder-left.t-arrow, -.user-weather .topic-cont .uder-left.team-mg, -.user-weather .topic-cont .uder-left.teamcolor, -.user-weather .topic-cont .uder-left.topic-cards, -.user-weather .topic-cont .uder-left.topic-slide, -.user-weather .topic-cont .uder-left.toplogo, -.user-weather .topic-cont .uder-left.video-latest, -.user-weather .topic-cont .uder-left.videosummery, -.user-weather .topic-cont .uder-left.youmay-like, -.user-weather .topic-cont .user-weather.uder-left, -.user-weather .topic-cont a.uder-left[data-network=indiatimes], -.user-weather .topic-container.d-flex .topic-cont .uder-left.slick-track, -.user-weather .topics-cont .topic-cont a.uder-left, -.user-weather .topics-cont .topic-cont div.uder-left, -.user-weather .topics .topic-cont .uder-left.topic, -.user-weather .video-l-card .topic-cont .uder-left.card-detail, -.video-l-card .readnext .common-card .topic-cont .card-body.card-detail, -.video-l-card .topic-cont .mr-auto.card-detail, -.video-l-card .user-weather .topic-cont .uder-left.card-detail { - align-items: center; -} - -.details-summery { - text-align: right; -} - -.details-summery p { - text-align: left; -} - -.details-summery .block-header-all { - margin-top: -10px; - display: block; - margin-bottom: 30px; -} - -.deatil-nav a { - font-weight: 700; - color: #000; - text-transform: uppercase; - margin-right: 20px; - border-bottom: 3px solid transparent; -} - -.deatil-nav a:last-child { - margin-right: 0; -} - -.deatil-nav a.tab-active { - color: #3457a7; - border-bottom: 3px solid #3457a7; -} - -.topic-cards .youmay-like .card { - min-width: 30%; -} - -.topic-cards .section-youlike:last-child { - margin-right: 0; -} - -.right-container .black-theme { - border-radius: 4px; -} - -.right-container .video-infocus { - margin: 0 15px; - padding-bottom: 0; - border-bottom: 0; -} - -.right-container .video-infocus .card-img, -.right-container .video-infocus .video-summery, -.right-container .video-infocus .video-tittle { - margin-bottom: 10px; -} - -.right-container .video-infocus .video-summery, -.right-container .video-infocus .video-tittle { - color: hsla(0, 0%, 100%, .7); - display: block; -} - -.right-container .video-infocus .video-tittle { - font-weight: 700; -} - -.right-container .video-infocus .video-summery { - max-height: 56px; - overflow: hidden; -} - -.right-container .video-infocus .card-strip { - margin-bottom: 15px; -} - -.right-container .video-infocus .video-small { - align-items: center; - border-top: 1px solid hsla(0, 0%, 100%, .3); - border-bottom: 1px solid hsla(0, 0%, 100%, .3); - padding: 10px 0; -} - -.right-container .video-infocus .video-small .card-detail-logo { - width: 4rem; - height: 4rem; - margin-bottom: 0; -} - -.right-container .video-infocus .video-small .b-text, -.right-container .video-infocus .video-small .s-text { - display: block; - color: #fff; - font-weight: 400; -} - -.right-container .video-infocus .video-small .s-text { - font-weight: 700; - margin-bottom: 10px; -} - -.right-container .webseries-slider-slide { - flex: 0 0 5rem; - margin-right: 15px; - max-width: inherit; - margin-bottom: 15px; -} - -.right-container .webseries-slider-slide:nth-child(3n) { - margin-right: 0; -} - -.dropdown-menu a.icon-bookmark, -.icon-bookmark { - width: 1.5rem; - height: 1.5rem; - display: block; -} - -.profile-mt .art-social svg path { - fill: #fff; -} - -.profile-mt .profile-img .big-text { - margin-bottom: 25px; - font-size: 2rem; -} - -.article-newsletter .profile-mt .newsletterinput, -.brief-video .profile-mt .video-small, -.header .profile-mt .profile-data, -.menu-items .nav-menu .categories .nav-category .profile-mt a, -.menu-items .nav-menu .categories .profile-mt .nav-category, -.nav-ul .nav-category .profile-mt a, -.nav-ul .profile-mt .nav-category, -.original-popup .profile-mt .browse-form, -.popular-slider .profile-mt .slick-track, -.profile-mt .art-social, -.profile-mt .article-newsletter .newsletterinput, -.profile-mt .author-row, -.profile-mt .block-header, -.profile-mt .breadcrumb.trunc, -.profile-mt .brief-video .video-small, -.profile-mt .browse-list, -.profile-mt .card, -.profile-mt .card-strip, -.profile-mt .comment, -.profile-mt .comment-form, -.profile-mt .comment-post, -.profile-mt .comment-post-box, -.profile-mt .comment-post-links, -.profile-mt .d-flex, -.profile-mt .daily-story, -.profile-mt .digital-left, -.profile-mt .digital-page, -.profile-mt .focus-card-body, -.profile-mt .header .profile-data, -.profile-mt .liver-two, -.profile-mt .login-container, -.profile-mt .menu-categories, -.profile-mt .menu-items .nav-menu .categories .nav-category, -.profile-mt .menu-items .nav-menu .categories .nav-category a, -.profile-mt .nav-ul .nav-category, -.profile-mt .nav-ul .nav-category a, -.profile-mt .open-header, -.profile-mt .org-tab, -.profile-mt .original-popup-header, -.profile-mt .original-popup .browse-form, -.profile-mt .original-top, -.profile-mt .ov-card, -.profile-mt .ov-card-detail, -.profile-mt .ov-card-watch, -.profile-mt .pie-chart, -.profile-mt .popular-slider .slick-track, -.profile-mt .preview-list, -.profile-mt .preview-list-item.text, -.profile-mt .profile-img, -.profile-mt .quick-slider .slick-track, -.profile-mt .quiz-list, -.profile-mt .quiz-list-row, -.profile-mt .quiz-result-box, -.profile-mt .r-card, -.profile-mt .readcard, -.profile-mt .retake-container, -.profile-mt .right-container .video-infocus .card-strip, -.profile-mt .right-container .video-infocus .video-small, -.profile-mt .rightsocial .share-strip, -.profile-mt .rightsocial .share-strip-social, -.profile-mt .scroll-header-right, -.profile-mt .section-big, -.profile-mt .sectiontrending, -.profile-mt .series, -.profile-mt .sh-tab, -.profile-mt .shadow-card.video-card .video-small, -.profile-mt .stories-now, -.profile-mt .story-now, -.profile-mt .story-now-circle, -.profile-mt .t-arrow, -.profile-mt .tbd-cont .tbc-border .tbd-text, -.profile-mt .team-mg, -.profile-mt .teamcolor, -.profile-mt .teamcolor .team-d, -.profile-mt .topic-cards, -.profile-mt .topic-container.d-flex .slick-track, -.profile-mt .topic-slide, -.profile-mt .topics-cont a, -.profile-mt .topics-cont div, -.profile-mt .topics .topic, -.profile-mt .toplogo, -.profile-mt .user-weather, -.profile-mt .video-l-card .card-detail, -.profile-mt .video-latest, -.profile-mt .videosummery, -.profile-mt .youmay-like, -.profile-mt a[data-network=indiatimes], -.quick-slider .profile-mt .slick-track, -.right-container .video-infocus .profile-mt .card-strip, -.right-container .video-infocus .profile-mt .video-small, -.rightsocial .profile-mt .share-strip, -.rightsocial .profile-mt .share-strip-social, -.shadow-card.video-card .profile-mt .video-small, -.tbd-cont .tbc-border .profile-mt .tbd-text, -.teamcolor .profile-mt .team-d, -.topic-container.d-flex .profile-mt .slick-track, -.topics-cont .profile-mt a, -.topics-cont .profile-mt div, -.topics .profile-mt .topic, -.video-l-card .profile-mt .card-detail { - align-items: center; -} - -.fifa-center, -.mb-40 { - margin-bottom: 40px; -} - -.default-cont.deatil-nav a.tab-active { - color: #3457a7; - border-bottom: 3px solid #3457a7; -} - -.default-cont.deatil-nav a { - color: #000; -} - -.authorconts { - padding-bottom: 30px; - display: none; -} - -.authorconts .container, -.authorconts .fifa-center { - padding-left: 0; - padding-right: 0; -} - -.authorconts .section-last+.section-youlike { - display: inline-block; -} - -.author-page .author-strip { - min-width: 400px; -} - -.author-page .art-social { - align-items: baseline; -} - -.movie-review-cover:before { - padding-top: 94%; -} - -.movie-review-cover.resize:before { - padding-top: 33%; -} - -.movie-review { - border-radius: 5px; -} - -.movie-review-cover:before { - padding-top: 100%; -} - -.movie-review-overlay { - position: absolute; - top: 0; - left: 0; - background-color: rgba(0, 0, 0, .7); - padding: 1.5rem 1rem; - height: 100%; - z-index: 1; -} - -.movie-review-poster { - flex: 0 0 8rem; - margin-right: 1rem; - border-radius: .25rem; -} - -.movie-review-poster:before { - padding-top: 150%; -} - -.movie-review-detail { - flex: 0 0 33rem; -} - -.movie-review-detail h2 { - margin-bottom: 2rem; -} - -.movie-review-rating { - margin-bottom: 1rem; -} - -.movie-review .narration-button { - background-color: transparent; - display: none; - border: 1px solid #fff; -} - -.home-container .movie-review .narration-button .block-header-title, -.home-container .movie-review .narration-button .h-dinline, -.home-container .movie-review .narration-button .topic-slide, -.l-login-greet .movie-review .narration-button span, -.movie-review .narration-button .comment-top, -.movie-review .narration-button .home-container .block-header-title, -.movie-review .narration-button .home-container .h-dinline, -.movie-review .narration-button .home-container .topic-slide, -.movie-review .narration-button .l-login-greet span, -.movie-review .narration-button .right-container .block-header-title, -.movie-review .narration-button .right-container .h-dinline, -.movie-review .narration-button .right-container .topic-slide, -.movie-review .narration-button .text-blue, -.right-container .movie-review .narration-button .block-header-title, -.right-container .movie-review .narration-button .h-dinline, -.right-container .movie-review .narration-button .topic-slide { - color: #fff; -} - -.movie-review .narration-button path { - fill: #fff; -} - -.movie-review-btn { - border: 1px solid #fff; - border-radius: .25rem; - opacity: .87; - background-color: hsla(0, 0%, 98%, 0); - padding: .375rem .625rem; - margin-right: 3rem; -} - -.movie-review-a { - font-weight: 700; -} - -.movie-review-release { - font-weight: 700; - margin-bottom: 1rem; -} - -.movie-review-release span { - margin-right: 1.5rem; -} - -.movie-review-release span:last-of-type { - margin-right: 0; -} - -.circle-a { - width: 1.5rem; - height: 1.5rem; - border-radius: 100%; - margin-right: .5rem; - font-size: .625rem; - vertical-align: middle; - border: 1px solid #fff; - padding-top: .3125rem; -} - -.icon-star.active path { - fill: #fce44d; - stroke: #fce44d; -} - -.icon-star path { - stroke: #fff; - fill: #fff; -} - -.icon-like, -.icon-star { - max-width: 1.5rem; - height: 1.5rem; -} - -.icon-like { - margin-right: .5rem; - vertical-align: -.3rem; -} - -.rating-text { - font-weight: 700; - font-size: 1rem; - color: #ffed59; - line-height: 1.5; - margin-right: 1.5rem; - vertical-align: super; -} - -.like-msg { - font-weight: 700; - opacity: .87; - flex-basis: 100%; - padding: 1.5rem 0; -} - -.icon-release { - width: 1rem; - height: 1rem; - margin-right: .4375rem; - vertical-align: bottom; -} - -.icon-release path { - fill: #fff; -} - -.authorconts.tab-active { - display: block; -} - -.right-container .ads>div, -.right-container .advertisement_text>div { - margin-bottom: 20px; -} - -.right-container .ads, -.right-container .ads.advertisement_text, -.right-container .rhs_ads { - max-width: 300px; - min-height: 250px; -} - -.right-container .rhs_ads { - display: block; -} - -.movie-review-overlay .responsive-wrap { - background: #000; -} - -.nav-tittle { - color: #171717; - max-width: 600px; - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; -} - -.brief-video .s-text, -.brief-video .video-tittle, -.mb-10, -.open-header, -.video-heading, -.videosummery .powerrow-text span:first-child { - margin-bottom: 10px; -} - -.black-theme .comment-top, -.black-theme .home-container .block-header-title, -.black-theme .home-container .h-dinline, -.black-theme .home-container .topic-slide, -.black-theme .l-login-greet span, -.black-theme .right-container .block-header-title, -.black-theme .right-container .h-dinline, -.black-theme .right-container .topic-slide, -.black-theme .text-blue, -.home-container .black-theme .block-header-title, -.home-container .black-theme .h-dinline, -.home-container .black-theme .topic-slide, -.l-login-greet .black-theme span, -.right-container .black-theme .block-header-title, -.right-container .black-theme .h-dinline, -.right-container .black-theme .topic-slide { - color: #fff; -} - -.last-hours { - padding: 15px 0; - color: #fff; -} - -.last-hours svg { - margin-right: 10px; - vertical-align: -5px; -} - -.last-hours svg path { - fill: #fff; -} - -.last-hours span { - font-weight: 700; - margin-right: 5px; -} - -.shadow-card { - max-width: 348px; - min-width: 348px; - border-radius: 4px; - overflow: hidden; - position: relative; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - margin-right: 27px; - padding: 0 15px; - margin-bottom: 27px; -} - -.shadow-card:last-child { - margin-right: 0; -} - -.shadow-card .icon-video-big, -.shadow-card .video-small { - display: none; -} - -.shadow-card.video-card .icon-video-big { - display: block; -} - -.shadow-card.video-card .video-summery { - max-height: 64px; -} - -.brief-video .card-img { - border-radius: .25rem .25rem 0 0; - margin: 0 -15px 15px; -} - -.brief-video .b-text, -.brief-video .s-text, -.brief-video .v-focus, -.brief-video .video-summery, -.brief-video .video-tittle { - color: #000; - display: block; -} - -.brief-video .v-focus { - font-weight: 700; -} - -.brief-video .video-tittle { - font-weight: 700; - line-height: 24px; -} - -.brief-video .video-summery { - opacity: .8; - line-height: 21px; - max-height: 65px; - overflow: hidden; -} - -.brief-video .video-infocus .card-detail-logo { - width: 5rem; - height: 5rem; - margin-bottom: 0; -} - -.brief-video .video-small { - align-items: center; -} - -.brief-video .s-text { - font-weight: 700; -} - -.brief-video .b-text { - font-family: Verdana; -} - -.brief-video .text-right { - position: absolute; - right: 15px; - bottom: 38px; - width: 100%; -} - -.str-bookmark.bookmarked { - opacity: 1; -} - -.str-bookmark.bookmarked svg path { - fill: #4364ff; -} - -.brief-wrap { - flex-wrap: wrap; -} - -.brief-wrap .shadow-card:last-child, -.brief-wrap .shadow-card:nth-child(3n) { - margin-right: 0; -} - -.quick-slider { - padding-left: 4.44444%; - padding-top: 20px; - position: relative; -} - -.quick-slider:after { - content: ""; - padding-right: 1px; -} - -.quick-slider-slide { - flex: 0 0 10.75rem; - margin-right: 1rem; - position: relative; -} - -.quick-slider-slide a { - position: absolute; - width: 100%; - height: 100%; - z-index: 3; - left: 0; - top: 0; -} - -.quick-slider .black-overlay:before { - padding-top: 150%; -} - -.quick-slider .slick-slide:first-of-type a { - position: relative; -} - -.quick-slider .slick-slide:first-of-type img { - max-width: 110px; -} - -.quick-slider .slick-slide:first-of-type p { - font-family: Verdana; - color: #fff; - padding: 10px 0; - margin-bottom: 0; -} - -.quick-slider .slick-slide:first-of-type .quick-slider-slide { - margin-top: 100px; -} - -.quick-slider .webseries-seeall { - font-style: italic; -} - -.quick-slider .webseries-seeall svg path { - fill: #fff; -} - -.quick-slider .slick-slide { - margin-right: 20px; -} - -.quick-slider .icon-button { - background-color: #3457a7; -} - -.quick-slider .icon-button svg path { - fill: #fff; -} - -.overley { - position: absolute; - bottom: 20px; - left: 10px; - right: 10px; - text-align: center; - z-index: 2; -} - -.overley .head { - font-weight: 700; - color: #fff; - text-align: left; - max-height: 60px; - overflow: hidden; - margin-bottom: 10px; - line-height: 20px; -} - -.overley .read-text { - font-weight: 700; - font-size: 10px; -} - -.black-overlay span { - background-image: linear-gradient(0deg, transparent, #171717); - display: block; - height: 80%; -} - -.big-story .big-cont-img span, -.black-overlay span { - position: absolute; - left: 0; - right: 0; - bottom: 0; - z-index: 2; - min-height: 100px; - min-height: 50px; - transform: rotate(180deg); -} - -.section-big .top-stroy { - border-radius: 0 .25rem .25rem 0; -} - -.read-strip .youmay-like.section-youlike:nth-child(3n) { - margin-right: 0; -} - -.read-strip .section-container .section-last { - margin-right: 26px; -} - -.read-strip .section-last+.section-youlike { - display: inline-block; -} - -.str-bookmark.bookmarked svg path { - fill: #4364ff; -} - -.bigcard .card-cont.default-icon, -.bigcard .card-cont.default-icon-tick, -.bigcard .card-cont.ov-card-watch, -.bigcard .ml-auto.card-cont, -.bottom-blur.default-icon, -.bottom-blur.default-icon-tick, -.bottom-blur.ov-card-watch, -.default-icon, -.default-icon-tick, -.exclusive-mxp.default-icon, -.exclusive-mxp.default-icon-tick, -.exclusive-mxp.ov-card-watch, -.gallery-overlay-icon.default-icon, -.gallery-overlay-icon.default-icon-tick, -.image_container.default-icon, -.image_container.default-icon-tick, -.image_container.ov-card-watch, -.ml-auto.bottom-blur, -.ml-auto.exclusive-mxp, -.ml-auto.gallery-overlay-icon, -.ml-auto.image_container, -.ml-auto.pos-relative, -.ml-auto.quiz-result-or, -.ml-auto.responsive-wrap, -.no-result .ml-auto.top, -.no-result .ov-card-watch.top, -.no-result .top.default-icon, -.no-result .top.default-icon-tick, -.ov-card-watch.default-icon, -.ov-card-watch.default-icon-tick, -.ov-card-watch.gallery-overlay-icon, -.ov-card-watch.quiz-result-or, -.pos-relative.ov-card-watch, -.quiz-result-or.default-icon, -.quiz-result-or.default-icon-tick, -.readnext .common-card .card-body.default-icon, -.readnext .common-card .card-body.default-icon-tick, -.readnext .common-card .card-body.ov-card-watch, -.readnext .common-card .ml-auto.card-body, -.responsive-wrap.default-icon, -.responsive-wrap.default-icon-tick, -.responsive-wrap.ov-card-watch, -.sectiontrending .ml-auto.top-bar, -.sectiontrending .top-bar.default-icon, -.sectiontrending .top-bar.default-icon-tick, -.sectiontrending .top-bar.ov-card-watch { - background: #fff; - padding-left: 20px; -} - -.art-dropdown { - overflow: visible; -} - -.menu-right .card-title { - min-height: 53px; - overflow: hidden; - max-height: 53px; - line-height: 1.4; -} - -.timeline .card-summury { - max-height: 92px; - overflow: hidden; - min-height: 92px; -} - -.grayscale .card-caption-title, -.grayscale .card-section, -.grayscale .card-title, -.grayscale .top-text { - opacity: .4; -} - -.card-caption-title { - display: block; -} - -.home-container .ads>div, -.home-container .advertisement_text>div { - margin-bottom: 40px; -} - -.card-strip-bookmark { - margin-top: -5px; -} - -.card-strip-bookmark .str-bookmark svg path { - fill: rgba(0, 0, 0, .7); -} - -.comment-top .comments-summury { - font-family: Verdana; -} - -.comment-top:after { - top: 9px; -} - -.focus-video { - border-bottom: none; -} - -.focus-video .card-body { - position: absolute; - bottom: 1.1rem; - background-image: linear-gradient(180deg, hsla(0, 0%, 9%, 0), #171717); -} - -.focus-video .card-body .card-title { - font-size: 1.5rem; -} - -.focus-video .card-body .card-detail { - padding: 0 4rem; -} - -.focus-video .card-body .card-detail .card-summury { - font-size: .875rem; -} - -.card-img.not-inline:before, -.video-r-card .card-img.not-inline:before { - padding-top: 0; -} - -.video-r-card .card-img.not-inline img { - height: 100%; -} - -.readnext .common-card .icon-bookmark { - display: none; -} - -.video-latest-right .card-detail .card-caption-title { - font-size: 14px; -} - -.bgImg .black-bg .latest-videos { - margin-left: -15px; - margin-right: -15px; -} - -.bgImg .black-bg .latest-videos .block-header { - padding-right: 15px; - padding-left: 15px; -} - -.bgImg .black-bg .latest-videos .block-header-all { - margin-right: 15px; -} - -.latest-videos .video-latest-right .card-img a { - display: block; - line-height: 0; -} - -.top-video .card-body .card-summury { - max-height: 40px; - overflow: hidden; - margin-top: 10px; -} - -.explore-reads-slide { - margin-right: 20px; - text-align: center; -} - -.explore-reads-slide .explore-reads-title { - font-weight: 700; - color: #000; -} - -.explore-reads-slide .explore-reads-thumb { - width: 90px; - align-items: center; - line-height: 0; - display: flex; - flex-direction: column; -} - -.explore-reads-slide .explore-reads-thumb img { - border-radius: 50%; -} - -.explore-reads-slide:last-child { - margin-right: 0; -} - -.black-bg.mt-none, -.mt-none { - margin-top: 0; - padding-top: 0; -} - -.gradient-bg { - background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .04) 19%, rgba(0, 0, 0, .22) 69%, rgba(0, 0, 0, .7) 98%, rgba(0, 0, 0, .8) 99%, transparent); - max-width: 100%; - width: 100%; - display: block; - z-index: 0; - bottom: -10px; - position: absolute; - top: 0; - right: 0; - left: 0; - margin: auto; -} - -.scroll-header-right .art-social a, -.scroll-header-right .card-strip-bookmark { - margin-right: 15px; -} - -.static-pages p { - color: rgba(0, 0, 0, .7); - font-size: 1.15rem; - line-height: 1.8rem; - font-weight: 400; -} - -.bgImg .comments footer.narration-button, -.bgImg .original-popup footer.browse-form-input, -.bgImg .top-stroy footer.card-body, -.bgImg footer.body-overlay, -.bgImg footer.comments-textarea, -.bgImg footer.container, -.bgImg footer.daily-story-header:after, -.bgImg footer.daily-story-header:before, -.bgImg footer.episodes-thumb, -.bgImg footer.fifa-center, -.bgImg footer.fluid-width, -.bgImg footer.gallery-overlay, -.bgImg footer.home-container, -.bgImg footer.icon-bookmark, -.bgImg footer.l-form-btn, -.bgImg footer.l-form-input, -.bgImg footer.left-container, -.bgImg footer.login-content, -.bgImg footer.login-popup-container, -.bgImg footer.newsletter-input, -.bgImg footer.original-popup, -.bgImg footer.right-container, -.bgImg footer.section-big, -.bgImg footer.slider-next-button, -.comments .bgImg footer.narration-button, -.original-popup .bgImg footer.browse-form-input, -.top-stroy .bgImg footer.card-body { - max-width: 1100px; - margin: 0 auto; -} - -.home-container .profile-img span.block-header-title, -.home-container .profile-img span.h-dinline, -.home-container .profile-img span.topic-slide, -.l-login-greet .profile-img span, -.profile-img .home-container span.block-header-title, -.profile-img .home-container span.h-dinline, -.profile-img .home-container span.topic-slide, -.profile-img .l-login-greet span, -.profile-img .right-container span.block-header-title, -.profile-img .right-container span.h-dinline, -.profile-img .right-container span.topic-slide, -.profile-img span.comment-top, -.profile-img span.text-blue, -.right-container .profile-img span.block-header-title, -.right-container .profile-img span.h-dinline, -.right-container .profile-img span.topic-slide { - text-overflow: ellipsis; - max-width: 50px; - overflow: hidden; - white-space: nowrap; -} - -.topic-cont .block-header-title:after, -.topic-cont .comment-top:after, -.topic-cont .h-dinline:after, -.topic-cont .topic-slide:after { - top: 11px; -} - -.quick-slider-slide .black-overlay span { - bottom: -2px; -} - -.story-now { - overflow-x: auto; - padding: .8125rem 0 1.3125rem 1rem; -} - -.story-now:after { - content: ""; - padding-right: 1px; -} - -.story-now-home { - flex: 0 0 2.9375rem; - margin-right: 1.5rem; -} - -.story-now-item { - flex: 0 0 auto; - margin-right: 1.5rem; - align-self: center; -} - -.story-now-item.active .story-now-circle:before { - background: rgba(0, 0, 0, .2); -} - -.story-now-item:last-child { - margin-right: 0; -} - -.story-now-circle { - background: #fff; - border: 2px solid transparent; - border-radius: 50%; - width: 4rem; - height: 4rem; - margin: 0 auto .5rem; - position: relative; - background-clip: padding-box; - align-items: center; -} - -.story-now-circle:before { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - content: ""; - background: linear-gradient(180deg, #ff5354, #9764ff); - z-index: -1; - border-radius: inherit; - margin: -2px; -} - -.story-now-img { - flex: 0 0 3.125rem; - border-radius: inherit; - margin: auto; -} - -.story-now-img:before { - padding-top: 100%; -} - -.story-now-title { - text-overflow: ellipsis; - white-space: nowrap; - max-width: 88px; - color: #000; - display: block; - margin: auto; -} - -.story-now-item { - max-width: 80px; -} - -.stories-now { - justify-content: center; -} - -.stories-now .stories-row { - max-width: 100px; - align-self: center; - text-align: center; - margin-right: 20px; -} - -.stories-now .stories-row a { - display: block; -} - -.stories-now .stories-row .text { - text-overflow: ellipsis; - white-space: nowrap; - color: rgba(0, 0, 0, .7); -} - -.stories-now .stories-row:last-child { - margin-right: 0; -} - -.amp-stories .storiesnow span { - font-weight: 700; - color: #dc0000; -} - -.stories-tab { - display: flex; - margin-bottom: 40px; - flex-wrap: wrap; -} - -.stories-tab a { - font-size: .875rem; - color: #3557a7; - background: #fff; - border-radius: 20px; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - margin-right: 10px; - padding: 5px 13px; - transition: all .4s ease; - margin-bottom: 40px; -} - -.stories-tab a:last-child { - margin-right: 0; -} - -.stories-tab a h2 { - font-size: .875rem; - font-weight: 400; -} - -.stories-tab a.active, -.stories-tab a:hover { - color: #fff; - background: #3557a7; -} - -.stories-card { - border-radius: 20px; - overflow: hidden; - box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1); - background-color: #fff; - margin-right: 15px; - margin-bottom: 15px; - max-width: 18.8%; - min-width: 18.8%; - height: 370px; - position: relative; - display: inline-block; -} - -.stories-card:last-child, -.stories-card:nth-child(5n) { - margin-right: 0; -} - -.text-cont { - padding: 5px 20px 10px; -} - -.text-cont a { - font-size: .875rem; - color: #000; - display: block; - text-align: center; - min-height: 54px; - max-height: 54px; - overflow: hidden; - line-height: 18px; - margin-bottom: 10px; -} - -.text-cont span { - font-size: .7rem; - color: rgba(0, 0, 0, .7); -} - -.text-cont span:first-child { - margin-right: auto; -} - -.img-fit { - position: relative; - padding: 0 0 150%; - height: 0; - display: block; -} - -.img-fit img { - display: block; - line-height: 0; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - margin: auto; - object-fit: cover; -} - -.dummy-line { - display: flex; - position: absolute; - top: -14px; - left: 10px; - right: 10px; - z-index: 1; -} - -.dummy-line span { - width: 16px; - height: 4px; - background: hsla(0, 0%, 100%, .7); - border-radius: 4px; - margin-right: 5px; -} - -.dummy-line span:last-child { - margin-right: 0; -} - -.bottom-stick, -.dummy-line span.active { - background: #fff; -} - -.bottom-stick { - position: absolute; - bottom: -22px; - left: 0; - right: 0; - margin: 0 auto; - transition: all .2s ease; -} - -.stories-card:hover .bottom-stick { - bottom: -2px; -} - -.overlay-logo { - position: absolute; - left: 10px; - right: 10px; - top: 10px; - z-index: 3; - align-items: center; -} - -.layer-left { - align-items: center; - flex: 0 0 80%; - display: flex; -} - -.layer-left .feature-txt { - font-weight: 700; - font-size: .7rem; - margin-left: 10px; - font-style: italic; - color: #fff; -} - -.layer-left svg { - width: 24px; -} - -.layer-left svg path { - fill: #fff; -} - -.layer-right { - flex: 0 0 20%; - text-align: right; -} - -.layer-right svg { - width: 20px; - opacity: .7; -} - -.layer-right svg path { - fill: #fff; -} - -.hover-link { - z-index: 3; - left: 0; - top: 0; -} - -.hover-link, -.img-cont .img-fit:before { - position: absolute; - width: 100%; - height: 100%; -} - -.img-cont .img-fit:before { - content: ""; - background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .4) 71%, rgba(0, 0, 0, .4) 81%, rgba(0, 0, 0, .5)); - z-index: 2; - transform: rotate(180deg); - top: -20%; -} - -.video-section .card-img { - background-color: transparent; -} - -.video-l-card .card-img { - background-color: #000; -} - -#stories-tab .section-last+.section-youlike { - display: inline-block; -} - -.popular-slider { - position: relative; -} - -.popular-slider .slick-slide { - margin-right: 20px; -} - -.popular-cont { - flex: 0 0 12.5rem; - margin-right: 1rem; - position: relative; - overflow: hidden; -} - -.popular-cont a { - display: block; -} - -.popular-cont .image { - border-radius: 20px; - margin-bottom: 10px; - border: 1px solid #f1f1f1; -} - -.popular-cont .image:before { - padding-top: 130%; -} - -.popular-cont .image img { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; -} - -.left-container .shop-brand, -.left-container .shop-heading, -.left-container .shop-price { - color: #171717; -} - -.shop-heading { - font-weight: 700; -} - -.shop-brand { - margin: 10px 0; -} - -.shop-price b { - font-weight: 700; -} - -.shop-price del { - opacity: .7; - margin-left: 8px; -} - -.shop-cont p { - color: rgba(0, 0, 0, .7); - font-size: 1.15rem; - line-height: 1.8rem; - font-weight: 400; -} - -.article-table { - width: 100%; - border-collapse: collapse; - margin: 30px auto; - border: 1px solid #e6e5e5; -} - -table.article-table td, -table.article-table th { - padding: 10px; - font-size: 14px; - text-align: center; - direction: ltr; - border: 1px solid #eee; - font-family: Verdana; - font-size: 17px; -} - -table.article-table td p, -table.article-table th p { - margin-bottom: 0; - font-family: Verdana; - font-size: 17px; -} - -table.article-table tbody, -table.article-table thead { - border: 0; -} - -.custom-polls .option { - display: flex; - align-items: center; -} - -.custom-polls .option-left { - margin-right: auto; - max-width: 91%; -} - -.custom-polls .poll-summerys { - color: rgba(0, 0, 0, .7); - font-size: 1.15rem; - line-height: 1.8rem; - font-weight: 400; - max-height: 59px; - overflow: hidden; -} - -.shop-new .block-header-title span, -.shop-new .comment-top span, -.shop-new .h-dinline span, -.shop-new .topic-slide span { - color: #ef4044; - font-size: 16px; - margin-left: 5px; - font-weight: 700; - vertical-align: 1px; -} - -.shop-new .popular-slider .popular-cont .image { - border-radius: 0; -} - -.shop-new .shop-heading { - color: #939393; - max-height: 38px; - overflow: hidden; - min-height: 38px; - font-family: Verdana; -} - -.shop-new .shop-brand { - color: #000; -} - -.shop-new .shop-price b { - color: #ef4044; - font-size: 15px; -} - -.shop-new .shop-price b svg path { - fill: #ef4044; -} - -.shop-new .icon-button { - background-color: rgba(0, 0, 0, .7); -} - -.shop-new .icon-button svg { - width: 30px; - height: 30px; -} - -.shop-new .icon-button svg path { - fill: #fff; -} - -.shop-betweencard { - background: #f9f9f9; - padding: 10px 0; - text-align: center; - color: #939393; - font-weight: 700; - font-size: 14px; -} - -.shop-betweencard span { - margin-right: 5px; - vertical-align: -1px; -} - -.menu-cred { - display: flex; - align-items: center; - text-align: left; - color: #3357a7; - font-weight: 700; -} - -.menu-cred svg { - margin-right: 7px; - margin-top: -6px; -} - -.menu-cred svg path { - fill: #3357a7; -} - -.menu-cred img { - max-width: 66px; - margin-left: 8px; - vertical-align: -4px; -} - -.sectionwidgets svg path { - fill: #3457a7; -} - -.sectionwidgets .cred-top { - max-width: 70px; - display: inline-block; - vertical-align: -3px; - margin-left: 5px; -} - -.jumplink { - background: #fff; - display: table; - margin-bottom: 1em; - position: relative; - width: auto; - transition: all .4s ease-in-out; -} - -.jumplink .jumptitle-container { - display: flex; - align-items: center; -} - -.jumplink .jump-toggle { - padding-left: 20px; - cursor: pointer; -} - -.jumplink .jump-toggle img { - border-radius: 0; - max-width: 30px; - width: inherit; -} - -.jumplink nav { - display: none; -} - -.jumplink ul { - background: 0 0; - line-height: 1.6; - margin: 0; - overflow: hidden; - z-index: 1; -} - -.jumplink ul li { - margin-bottom: 10px; - padding-bottom: 0; - list-style: disc; - margin-left: 22px; - color: #3457a7; - font-family: Verdana; -} - -.jumplink ul li a { - color: #3457a7; - font-size: 14px; - line-height: 1.5rem; - border-bottom: 0; -} - -.jumplink.active { - width: 100%; -} - -.jumplink.active nav { - display: block; -} - -.left-container .description .inline-photo { - opacity: 0; - transition: opacity .3s ease-out .25s; - will-change: opacity; -} - -.description .mediawire .picCaption { - font-weight: 700; - font-size: 1rem; - color: #000; - opacity: 1; - text-align: center; -} - -.description .mediawire figure.image { - margin-bottom: 1.875rem; -} - -.description .mediawire figure.image figcaption { - font-weight: 700; - color: #000; - font-size: 1rem; - text-align: center; - display: block; - padding-top: .625rem; -} - -.jumplink-h3 { - margin-left: 2.5em; -} - -.jumplink-h4 { - margin-left: 3.5em; -} - -.jumptitle-container .block-header { - min-width: 680px; - padding: 0; - border: 0; -} - -.jumptitle-container .block-header-title, -.jumptitle-container .comment-top, -.jumptitle-container .h-dinline, -.jumptitle-container .topic-slide { - color: #3457a7; - font-style: normal; - margin-bottom: 0; -} - -.sliderno .slick-track { - display: flex; -} - -.trending-now { - background-color: #f9f9f9; - padding: 10px 0 0 5px; - align-items: center; - min-height: 132px; - max-width: 1100px; - margin-top: 40px; -} - -.trending-now .trendingicon { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - text-align: center; - margin-right: 15px; - width: 10%; -} - -.trending-now .trendingicon img { - max-width: 26px; -} - -.trending-now .trendingicon span { - font-weight: 700; - color: #ff6d00; - display: block; - text-transform: uppercase; - padding-top: 4px; -} - -.trending-now .trendingcards { - background-color: #fff; - padding: 8px; - display: flex; - align-items: self-start; - flex: 0 0 67%; - margin-right: 10px; - box-shadow: 0 0 .5rem rgba(51, 51, 51, .2); -} - -.trending-now .trendingimg { - margin-right: 8px; - position: relative; - flex: 0 0 48px; -} - -.trending-now .trendingimg .t-img:before { - padding-top: 150%; -} - -.trending-now .trendingimg .t-img img { - height: auto; - bottom: unset; -} - -.trending-now .trendingimg .t-number { - position: absolute; - left: -4px; - top: -4px; - z-index: 1; - background: #fff; - width: 16px; - height: 16px; - border-radius: 50%; - color: #3357a7; - text-align: center; - font-size: 10px; - display: flex; - justify-content: center; - align-items: center; - font-weight: 700; - border: 1px solid #f1f1f1; - padding-top: 2px; -} - -.trending-now .trending-text { - font-weight: 700; - color: #000; - max-height: 75px; - overflow: hidden; - line-height: 19px; -} - -.trending-now .slick-track { - display: flex; - align-items: center; -} - -.trending-now .slick-slide { - margin-right: 20px; -} - -.trending-now .slick-next, -.trending-now .slick-prev { - background-color: transparent; - width: 30px; - height: 30px; - top: 40px; -} - -.trending-now .slider-next-button.white { - background: transparent; -} - -.trending-now .icon-button { - width: 30px; - height: 30px; -} - -.trending-now .slick-next:after, -.trending-now .slick-prev:after { - display: none; -} - -.trending-now .slick-next { - right: 0; -} - -.trending-now .slick-list { - padding: 10px; -} - -.t-centerdiv { - display: flex; - align-items: center; - margin: 0 20px; -} - -.trendingslider { - width: 90%; -} - -::-moz-selection { - background: #cdd9f3; - color: #000; -} - -::selection { - background: #cdd9f3; - color: #000; -} - -.sharing { - position: absolute; - visibility: hidden; - top: 0; - left: 0; - z-index: 500; - -webkit-transform: translateY(-5px); - transform: translateY(-5px); - -webkit-transition: -webkit-transform .25s ease-in-out; - transition: -webkit-transform .25s ease-in-out; - transition: transform .25s ease-in-out; - transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out; - box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3); - background-color: #212a34; - border-radius: 3px; -} - -.sharing svg { - fill: #a1acb4; - display: block; -} - -.sharing button { - border-radius: 0; - border: 0; - display: block; - padding: 8px 6px; - cursor: pointer; - outline: 0; - font-size: 14px; - -webkit-transition: background-color .2s; - transition: background-color .2s; - margin: 0; - background-color: transparent; -} - -.sharing button:active .icon, -.sharing button:focus .icon, -.sharing button:hover .icon { - fill: #fff; -} - -.sharing__buttons { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - position: relative; - z-index: 10; - overflow: hidden; -} - -.sharing__triangle { - background-color: #212a34; - width: 18px; - height: 18px; - position: absolute; - bottom: 12px; - left: 50%; - -webkit-transform: translate3d(-50%, 100%, 0) rotate(45deg); - transform: translate3d(-50%, 100%, 0) rotate(45deg); -} - -.sharing--shown { - visibility: visible; - -webkit-transform: translateY(0); - transform: translateY(0); -} - -#share { - padding-left: 12px; -} - -#tweet { - padding-right: 12px; -} - -#help { - padding: 15px; - background-color: #fd0; - color: #000; - margin: 0; - text-align: center; -} - -.twitter-height svg { - width: 24px; - height: 18px; -} - -.new-comments { - max-width: 1100px; - margin: 0 auto; -} - -.trending-widgets { - margin: 40px 0; -} - -.trending-widgets .youmay-like { - flex-wrap: wrap; -} - -.trending-widgets .youmay-like .card { - min-width: 13rem; - max-width: 13rem; - margin-right: .9rem; - margin-bottom: .9rem; -} - -.trending-widgets .youmay-like .card:nth-child(5n) { - margin-right: 0; -} - -.trending-widgets .youmay-like .card-strip { - left: 5px; - right: 3px; -} - -.trending-widgets .card-strip span:empty { - font-size: 0; - line-height: 0; - display: none; - padding-bottom: 0; -} - -.new-comments .stories-card:nth-child(5n) { - margin-right: 15px; -} - -.new-comments .stories-card:nth-child(6n) { - margin-right: 0; -} - -.comment-auto { - max-width: 800px; - margin: 0 auto; -} - -.article-newsletter .poll-imgs.newsletterinput, -.brief-video .poll-imgs.video-small, -.header .poll-imgs.profile-data, -.menu-items .nav-menu .categories .nav-category a.poll-imgs, -.menu-items .nav-menu .categories .poll-imgs.nav-category, -.nav-ul .nav-category a.poll-imgs, -.nav-ul .poll-imgs.nav-category, -.original-popup .poll-imgs.browse-form, -.poll-imgs.art-social, -.poll-imgs.author-row, -.poll-imgs.block-header, -.poll-imgs.breadcrumb.trunc, -.poll-imgs.browse-list, -.poll-imgs.card, -.poll-imgs.card-strip, -.poll-imgs.comment, -.poll-imgs.comment-form, -.poll-imgs.comment-post, -.poll-imgs.comment-post-box, -.poll-imgs.comment-post-links, -.poll-imgs.d-flex, -.poll-imgs.daily-story, -.poll-imgs.digital-left, -.poll-imgs.digital-page, -.poll-imgs.focus-card-body, -.poll-imgs.liver-two, -.poll-imgs.login-container, -.poll-imgs.menu-categories, -.poll-imgs.open-header, -.poll-imgs.org-tab, -.poll-imgs.original-popup-header, -.poll-imgs.original-top, -.poll-imgs.ov-card, -.poll-imgs.ov-card-detail, -.poll-imgs.ov-card-watch, -.poll-imgs.pie-chart, -.poll-imgs.preview-list, -.poll-imgs.preview-list-item.text, -.poll-imgs.profile-img, -.poll-imgs.quiz-list, -.poll-imgs.quiz-list-row, -.poll-imgs.quiz-result-box, -.poll-imgs.r-card, -.poll-imgs.readcard, -.poll-imgs.retake-container, -.poll-imgs.scroll-header-right, -.poll-imgs.section-big, -.poll-imgs.sectiontrending, -.poll-imgs.series, -.poll-imgs.sh-tab, -.poll-imgs.stories-now, -.poll-imgs.story-now, -.poll-imgs.story-now-circle, -.poll-imgs.t-arrow, -.poll-imgs.team-mg, -.poll-imgs.teamcolor, -.poll-imgs.topic-cards, -.poll-imgs.topic-slide, -.poll-imgs.toplogo, -.poll-imgs.user-weather, -.poll-imgs.video-latest, -.poll-imgs.videosummery, -.poll-imgs.youmay-like, -.popular-slider .poll-imgs.slick-track, -.quick-slider .poll-imgs.slick-track, -.right-container .video-infocus .poll-imgs.card-strip, -.right-container .video-infocus .poll-imgs.video-small, -.rightsocial .poll-imgs.share-strip, -.rightsocial .poll-imgs.share-strip-social, -.shadow-card.video-card .poll-imgs.video-small, -.tbd-cont .tbc-border .poll-imgs.tbd-text, -.teamcolor .poll-imgs.team-d, -.topic-container.d-flex .poll-imgs.slick-track, -.topics-cont a.poll-imgs, -.topics-cont div.poll-imgs, -.topics .poll-imgs.topic, -.video-l-card .poll-imgs.card-detail, -a.poll-imgs[data-network=indiatimes] { - flex-wrap: wrap; - margin-bottom: -30px; -} - -.article-newsletter .poll-imgs.newsletterinput .option, -.brief-video .poll-imgs.video-small .option, -.header .poll-imgs.profile-data .option, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .option, -.menu-items .nav-menu .categories .poll-imgs.nav-category .option, -.nav-ul .nav-category a.poll-imgs .option, -.nav-ul .poll-imgs.nav-category .option, -.original-popup .poll-imgs.browse-form .option, -.poll-imgs.art-social .option, -.poll-imgs.author-row .option, -.poll-imgs.block-header .option, -.poll-imgs.breadcrumb.trunc .option, -.poll-imgs.browse-list .option, -.poll-imgs.card-strip .option, -.poll-imgs.card .option, -.poll-imgs.comment-form .option, -.poll-imgs.comment-post-box .option, -.poll-imgs.comment-post-links .option, -.poll-imgs.comment-post .option, -.poll-imgs.comment .option, -.poll-imgs.d-flex .option, -.poll-imgs.daily-story .option, -.poll-imgs.digital-left .option, -.poll-imgs.digital-page .option, -.poll-imgs.focus-card-body .option, -.poll-imgs.liver-two .option, -.poll-imgs.login-container .option, -.poll-imgs.menu-categories .option, -.poll-imgs.open-header .option, -.poll-imgs.org-tab .option, -.poll-imgs.original-popup-header .option, -.poll-imgs.original-top .option, -.poll-imgs.ov-card-detail .option, -.poll-imgs.ov-card-watch .option, -.poll-imgs.ov-card .option, -.poll-imgs.pie-chart .option, -.poll-imgs.preview-list-item.text .option, -.poll-imgs.preview-list .option, -.poll-imgs.profile-img .option, -.poll-imgs.quiz-list-row .option, -.poll-imgs.quiz-list .option, -.poll-imgs.quiz-result-box .option, -.poll-imgs.r-card .option, -.poll-imgs.readcard .option, -.poll-imgs.retake-container .option, -.poll-imgs.scroll-header-right .option, -.poll-imgs.section-big .option, -.poll-imgs.sectiontrending .option, -.poll-imgs.series .option, -.poll-imgs.sh-tab .option, -.poll-imgs.stories-now .option, -.poll-imgs.story-now-circle .option, -.poll-imgs.story-now .option, -.poll-imgs.t-arrow .option, -.poll-imgs.team-mg .option, -.poll-imgs.teamcolor .option, -.poll-imgs.topic-cards .option, -.poll-imgs.topic-slide .option, -.poll-imgs.toplogo .option, -.poll-imgs.user-weather .option, -.poll-imgs.video-latest .option, -.poll-imgs.videosummery .option, -.poll-imgs.youmay-like .option, -.popular-slider .poll-imgs.slick-track .option, -.quick-slider .poll-imgs.slick-track .option, -.right-container .video-infocus .poll-imgs.video-small .option, -.rightsocial .poll-imgs.share-strip-social .option, -.rightsocial .poll-imgs.share-strip .option, -.shadow-card.video-card .poll-imgs.video-small .option, -.tbd-cont .tbc-border .poll-imgs.tbd-text .option, -.teamcolor .poll-imgs.team-d .option, -.topic-container.d-flex .poll-imgs.slick-track .option, -.topics-cont a.poll-imgs .option, -.topics-cont div.poll-imgs .option, -.topics .poll-imgs.topic .option, -.video-l-card .poll-imgs.card-detail .option, -a.poll-imgs[data-network=indiatimes] .option { - border: 0; - color: #222; - font-size: 14px; -} - -.article-newsletter .poll-imgs.newsletterinput .option:hover, -.brief-video .poll-imgs.video-small .option:hover, -.header .poll-imgs.profile-data .option:hover, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .option:hover, -.menu-items .nav-menu .categories .poll-imgs.nav-category .option:hover, -.nav-ul .nav-category a.poll-imgs .option:hover, -.nav-ul .poll-imgs.nav-category .option:hover, -.original-popup .poll-imgs.browse-form .option:hover, -.poll-imgs.art-social .option:hover, -.poll-imgs.author-row .option:hover, -.poll-imgs.block-header .option:hover, -.poll-imgs.breadcrumb.trunc .option:hover, -.poll-imgs.browse-list .option:hover, -.poll-imgs.card-strip .option:hover, -.poll-imgs.card .option:hover, -.poll-imgs.comment-form .option:hover, -.poll-imgs.comment-post-box .option:hover, -.poll-imgs.comment-post-links .option:hover, -.poll-imgs.comment-post .option:hover, -.poll-imgs.comment .option:hover, -.poll-imgs.d-flex .option:hover, -.poll-imgs.daily-story .option:hover, -.poll-imgs.digital-left .option:hover, -.poll-imgs.digital-page .option:hover, -.poll-imgs.focus-card-body .option:hover, -.poll-imgs.liver-two .option:hover, -.poll-imgs.login-container .option:hover, -.poll-imgs.menu-categories .option:hover, -.poll-imgs.open-header .option:hover, -.poll-imgs.org-tab .option:hover, -.poll-imgs.original-popup-header .option:hover, -.poll-imgs.original-top .option:hover, -.poll-imgs.ov-card-detail .option:hover, -.poll-imgs.ov-card-watch .option:hover, -.poll-imgs.ov-card .option:hover, -.poll-imgs.pie-chart .option:hover, -.poll-imgs.preview-list-item.text .option:hover, -.poll-imgs.preview-list .option:hover, -.poll-imgs.profile-img .option:hover, -.poll-imgs.quiz-list-row .option:hover, -.poll-imgs.quiz-list .option:hover, -.poll-imgs.quiz-result-box .option:hover, -.poll-imgs.r-card .option:hover, -.poll-imgs.readcard .option:hover, -.poll-imgs.retake-container .option:hover, -.poll-imgs.scroll-header-right .option:hover, -.poll-imgs.section-big .option:hover, -.poll-imgs.sectiontrending .option:hover, -.poll-imgs.series .option:hover, -.poll-imgs.sh-tab .option:hover, -.poll-imgs.stories-now .option:hover, -.poll-imgs.story-now-circle .option:hover, -.poll-imgs.story-now .option:hover, -.poll-imgs.t-arrow .option:hover, -.poll-imgs.team-mg .option:hover, -.poll-imgs.teamcolor .option:hover, -.poll-imgs.topic-cards .option:hover, -.poll-imgs.topic-slide .option:hover, -.poll-imgs.toplogo .option:hover, -.poll-imgs.user-weather .option:hover, -.poll-imgs.video-latest .option:hover, -.poll-imgs.videosummery .option:hover, -.poll-imgs.youmay-like .option:hover, -.popular-slider .poll-imgs.slick-track .option:hover, -.quick-slider .poll-imgs.slick-track .option:hover, -.right-container .video-infocus .poll-imgs.video-small .option:hover, -.rightsocial .poll-imgs.share-strip-social .option:hover, -.rightsocial .poll-imgs.share-strip .option:hover, -.shadow-card.video-card .poll-imgs.video-small .option:hover, -.tbd-cont .tbc-border .poll-imgs.tbd-text .option:hover, -.teamcolor .poll-imgs.team-d .option:hover, -.topic-container.d-flex .poll-imgs.slick-track .option:hover, -.topics-cont a.poll-imgs .option:hover, -.topics-cont div.poll-imgs .option:hover, -.topics .poll-imgs.topic .option:hover, -.video-l-card .poll-imgs.card-detail .option:hover, -a.poll-imgs[data-network=indiatimes] .option:hover { - background-color: transparent; - color: #222; -} - -.article-newsletter .poll-imgs.newsletterinput .pollimg, -.brief-video .poll-imgs.video-small .pollimg, -.header .poll-imgs.profile-data .pollimg, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .pollimg, -.menu-items .nav-menu .categories .poll-imgs.nav-category .pollimg, -.nav-ul .nav-category a.poll-imgs .pollimg, -.nav-ul .poll-imgs.nav-category .pollimg, -.original-popup .poll-imgs.browse-form .pollimg, -.poll-imgs.art-social .pollimg, -.poll-imgs.author-row .pollimg, -.poll-imgs.block-header .pollimg, -.poll-imgs.breadcrumb.trunc .pollimg, -.poll-imgs.browse-list .pollimg, -.poll-imgs.card-strip .pollimg, -.poll-imgs.card .pollimg, -.poll-imgs.comment-form .pollimg, -.poll-imgs.comment-post-box .pollimg, -.poll-imgs.comment-post-links .pollimg, -.poll-imgs.comment-post .pollimg, -.poll-imgs.comment .pollimg, -.poll-imgs.d-flex .pollimg, -.poll-imgs.daily-story .pollimg, -.poll-imgs.digital-left .pollimg, -.poll-imgs.digital-page .pollimg, -.poll-imgs.focus-card-body .pollimg, -.poll-imgs.liver-two .pollimg, -.poll-imgs.login-container .pollimg, -.poll-imgs.menu-categories .pollimg, -.poll-imgs.open-header .pollimg, -.poll-imgs.org-tab .pollimg, -.poll-imgs.original-popup-header .pollimg, -.poll-imgs.original-top .pollimg, -.poll-imgs.ov-card-detail .pollimg, -.poll-imgs.ov-card-watch .pollimg, -.poll-imgs.ov-card .pollimg, -.poll-imgs.pie-chart .pollimg, -.poll-imgs.preview-list-item.text .pollimg, -.poll-imgs.preview-list .pollimg, -.poll-imgs.profile-img .pollimg, -.poll-imgs.quiz-list-row .pollimg, -.poll-imgs.quiz-list .pollimg, -.poll-imgs.quiz-result-box .pollimg, -.poll-imgs.r-card .pollimg, -.poll-imgs.readcard .pollimg, -.poll-imgs.retake-container .pollimg, -.poll-imgs.scroll-header-right .pollimg, -.poll-imgs.section-big .pollimg, -.poll-imgs.sectiontrending .pollimg, -.poll-imgs.series .pollimg, -.poll-imgs.sh-tab .pollimg, -.poll-imgs.stories-now .pollimg, -.poll-imgs.story-now-circle .pollimg, -.poll-imgs.story-now .pollimg, -.poll-imgs.t-arrow .pollimg, -.poll-imgs.team-mg .pollimg, -.poll-imgs.teamcolor .pollimg, -.poll-imgs.topic-cards .pollimg, -.poll-imgs.topic-slide .pollimg, -.poll-imgs.toplogo .pollimg, -.poll-imgs.user-weather .pollimg, -.poll-imgs.video-latest .pollimg, -.poll-imgs.videosummery .pollimg, -.poll-imgs.youmay-like .pollimg, -.popular-slider .poll-imgs.slick-track .pollimg, -.quick-slider .poll-imgs.slick-track .pollimg, -.right-container .video-infocus .poll-imgs.video-small .pollimg, -.rightsocial .poll-imgs.share-strip-social .pollimg, -.rightsocial .poll-imgs.share-strip .pollimg, -.shadow-card.video-card .poll-imgs.video-small .pollimg, -.tbd-cont .tbc-border .poll-imgs.tbd-text .pollimg, -.teamcolor .poll-imgs.team-d .pollimg, -.topic-container.d-flex .poll-imgs.slick-track .pollimg, -.topics-cont a.poll-imgs .pollimg, -.topics-cont div.poll-imgs .pollimg, -.topics .poll-imgs.topic .pollimg, -.video-l-card .poll-imgs.card-detail .pollimg, -a.poll-imgs[data-network=indiatimes] .pollimg { - flex: 0 0 23.2%; - margin-right: 15px; - margin-bottom: 30px; - cursor: pointer; -} - -.article-newsletter .poll-imgs.newsletterinput .pollimg:last-child, -.article-newsletter .poll-imgs.newsletterinput .pollimg:nth-child(4n + 4), -.brief-video .poll-imgs.video-small .pollimg:last-child, -.brief-video .poll-imgs.video-small .pollimg:nth-child(4n + 4), -.header .poll-imgs.profile-data .pollimg:last-child, -.header .poll-imgs.profile-data .pollimg:nth-child(4n + 4), -.menu-items .nav-menu .categories .nav-category a.poll-imgs .pollimg:last-child, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .pollimg:nth-child(4n + 4), -.menu-items .nav-menu .categories .poll-imgs.nav-category .pollimg:last-child, -.menu-items .nav-menu .categories .poll-imgs.nav-category .pollimg:nth-child(4n + 4), -.nav-ul .nav-category a.poll-imgs .pollimg:last-child, -.nav-ul .nav-category a.poll-imgs .pollimg:nth-child(4n + 4), -.nav-ul .poll-imgs.nav-category .pollimg:last-child, -.nav-ul .poll-imgs.nav-category .pollimg:nth-child(4n + 4), -.original-popup .poll-imgs.browse-form .pollimg:last-child, -.original-popup .poll-imgs.browse-form .pollimg:nth-child(4n + 4), -.poll-imgs.art-social .pollimg:last-child, -.poll-imgs.art-social .pollimg:nth-child(4n + 4), -.poll-imgs.author-row .pollimg:last-child, -.poll-imgs.author-row .pollimg:nth-child(4n + 4), -.poll-imgs.block-header .pollimg:last-child, -.poll-imgs.block-header .pollimg:nth-child(4n + 4), -.poll-imgs.breadcrumb.trunc .pollimg:last-child, -.poll-imgs.breadcrumb.trunc .pollimg:nth-child(4n + 4), -.poll-imgs.browse-list .pollimg:last-child, -.poll-imgs.browse-list .pollimg:nth-child(4n + 4), -.poll-imgs.card-strip .pollimg:last-child, -.poll-imgs.card-strip .pollimg:nth-child(4n + 4), -.poll-imgs.card .pollimg:last-child, -.poll-imgs.card .pollimg:nth-child(4n + 4), -.poll-imgs.comment-form .pollimg:last-child, -.poll-imgs.comment-form .pollimg:nth-child(4n + 4), -.poll-imgs.comment-post-box .pollimg:last-child, -.poll-imgs.comment-post-box .pollimg:nth-child(4n + 4), -.poll-imgs.comment-post-links .pollimg:last-child, -.poll-imgs.comment-post-links .pollimg:nth-child(4n + 4), -.poll-imgs.comment-post .pollimg:last-child, -.poll-imgs.comment-post .pollimg:nth-child(4n + 4), -.poll-imgs.comment .pollimg:last-child, -.poll-imgs.comment .pollimg:nth-child(4n + 4), -.poll-imgs.d-flex .pollimg:last-child, -.poll-imgs.d-flex .pollimg:nth-child(4n + 4), -.poll-imgs.daily-story .pollimg:last-child, -.poll-imgs.daily-story .pollimg:nth-child(4n + 4), -.poll-imgs.digital-left .pollimg:last-child, -.poll-imgs.digital-left .pollimg:nth-child(4n + 4), -.poll-imgs.digital-page .pollimg:last-child, -.poll-imgs.digital-page .pollimg:nth-child(4n + 4), -.poll-imgs.focus-card-body .pollimg:last-child, -.poll-imgs.focus-card-body .pollimg:nth-child(4n + 4), -.poll-imgs.liver-two .pollimg:last-child, -.poll-imgs.liver-two .pollimg:nth-child(4n + 4), -.poll-imgs.login-container .pollimg:last-child, -.poll-imgs.login-container .pollimg:nth-child(4n + 4), -.poll-imgs.menu-categories .pollimg:last-child, -.poll-imgs.menu-categories .pollimg:nth-child(4n + 4), -.poll-imgs.open-header .pollimg:last-child, -.poll-imgs.open-header .pollimg:nth-child(4n + 4), -.poll-imgs.org-tab .pollimg:last-child, -.poll-imgs.org-tab .pollimg:nth-child(4n + 4), -.poll-imgs.original-popup-header .pollimg:last-child, -.poll-imgs.original-popup-header .pollimg:nth-child(4n + 4), -.poll-imgs.original-top .pollimg:last-child, -.poll-imgs.original-top .pollimg:nth-child(4n + 4), -.poll-imgs.ov-card-detail .pollimg:last-child, -.poll-imgs.ov-card-detail .pollimg:nth-child(4n + 4), -.poll-imgs.ov-card-watch .pollimg:last-child, -.poll-imgs.ov-card-watch .pollimg:nth-child(4n + 4), -.poll-imgs.ov-card .pollimg:last-child, -.poll-imgs.ov-card .pollimg:nth-child(4n + 4), -.poll-imgs.pie-chart .pollimg:last-child, -.poll-imgs.pie-chart .pollimg:nth-child(4n + 4), -.poll-imgs.preview-list-item.text .pollimg:last-child, -.poll-imgs.preview-list-item.text .pollimg:nth-child(4n + 4), -.poll-imgs.preview-list .pollimg:last-child, -.poll-imgs.preview-list .pollimg:nth-child(4n + 4), -.poll-imgs.profile-img .pollimg:last-child, -.poll-imgs.profile-img .pollimg:nth-child(4n + 4), -.poll-imgs.quiz-list-row .pollimg:last-child, -.poll-imgs.quiz-list-row .pollimg:nth-child(4n + 4), -.poll-imgs.quiz-list .pollimg:last-child, -.poll-imgs.quiz-list .pollimg:nth-child(4n + 4), -.poll-imgs.quiz-result-box .pollimg:last-child, -.poll-imgs.quiz-result-box .pollimg:nth-child(4n + 4), -.poll-imgs.r-card .pollimg:last-child, -.poll-imgs.r-card .pollimg:nth-child(4n + 4), -.poll-imgs.readcard .pollimg:last-child, -.poll-imgs.readcard .pollimg:nth-child(4n + 4), -.poll-imgs.retake-container .pollimg:last-child, -.poll-imgs.retake-container .pollimg:nth-child(4n + 4), -.poll-imgs.scroll-header-right .pollimg:last-child, -.poll-imgs.scroll-header-right .pollimg:nth-child(4n + 4), -.poll-imgs.section-big .pollimg:last-child, -.poll-imgs.section-big .pollimg:nth-child(4n + 4), -.poll-imgs.sectiontrending .pollimg:last-child, -.poll-imgs.sectiontrending .pollimg:nth-child(4n + 4), -.poll-imgs.series .pollimg:last-child, -.poll-imgs.series .pollimg:nth-child(4n + 4), -.poll-imgs.sh-tab .pollimg:last-child, -.poll-imgs.sh-tab .pollimg:nth-child(4n + 4), -.poll-imgs.stories-now .pollimg:last-child, -.poll-imgs.stories-now .pollimg:nth-child(4n + 4), -.poll-imgs.story-now-circle .pollimg:last-child, -.poll-imgs.story-now-circle .pollimg:nth-child(4n + 4), -.poll-imgs.story-now .pollimg:last-child, -.poll-imgs.story-now .pollimg:nth-child(4n + 4), -.poll-imgs.t-arrow .pollimg:last-child, -.poll-imgs.t-arrow .pollimg:nth-child(4n + 4), -.poll-imgs.team-mg .pollimg:last-child, -.poll-imgs.team-mg .pollimg:nth-child(4n + 4), -.poll-imgs.teamcolor .pollimg:last-child, -.poll-imgs.teamcolor .pollimg:nth-child(4n + 4), -.poll-imgs.topic-cards .pollimg:last-child, -.poll-imgs.topic-cards .pollimg:nth-child(4n + 4), -.poll-imgs.topic-slide .pollimg:last-child, -.poll-imgs.topic-slide .pollimg:nth-child(4n + 4), -.poll-imgs.toplogo .pollimg:last-child, -.poll-imgs.toplogo .pollimg:nth-child(4n + 4), -.poll-imgs.user-weather .pollimg:last-child, -.poll-imgs.user-weather .pollimg:nth-child(4n + 4), -.poll-imgs.video-latest .pollimg:last-child, -.poll-imgs.video-latest .pollimg:nth-child(4n + 4), -.poll-imgs.videosummery .pollimg:last-child, -.poll-imgs.videosummery .pollimg:nth-child(4n + 4), -.poll-imgs.youmay-like .pollimg:last-child, -.poll-imgs.youmay-like .pollimg:nth-child(4n + 4), -.popular-slider .poll-imgs.slick-track .pollimg:last-child, -.popular-slider .poll-imgs.slick-track .pollimg:nth-child(4n + 4), -.quick-slider .poll-imgs.slick-track .pollimg:last-child, -.quick-slider .poll-imgs.slick-track .pollimg:nth-child(4n + 4), -.right-container .video-infocus .poll-imgs.video-small .pollimg:last-child, -.right-container .video-infocus .poll-imgs.video-small .pollimg:nth-child(4n + 4), -.rightsocial .poll-imgs.share-strip-social .pollimg:last-child, -.rightsocial .poll-imgs.share-strip-social .pollimg:nth-child(4n + 4), -.rightsocial .poll-imgs.share-strip .pollimg:last-child, -.rightsocial .poll-imgs.share-strip .pollimg:nth-child(4n + 4), -.shadow-card.video-card .poll-imgs.video-small .pollimg:last-child, -.shadow-card.video-card .poll-imgs.video-small .pollimg:nth-child(4n + 4), -.tbd-cont .tbc-border .poll-imgs.tbd-text .pollimg:last-child, -.tbd-cont .tbc-border .poll-imgs.tbd-text .pollimg:nth-child(4n + 4), -.teamcolor .poll-imgs.team-d .pollimg:last-child, -.teamcolor .poll-imgs.team-d .pollimg:nth-child(4n + 4), -.topic-container.d-flex .poll-imgs.slick-track .pollimg:last-child, -.topic-container.d-flex .poll-imgs.slick-track .pollimg:nth-child(4n + 4), -.topics-cont a.poll-imgs .pollimg:last-child, -.topics-cont a.poll-imgs .pollimg:nth-child(4n + 4), -.topics-cont div.poll-imgs .pollimg:last-child, -.topics-cont div.poll-imgs .pollimg:nth-child(4n + 4), -.topics .poll-imgs.topic .pollimg:last-child, -.topics .poll-imgs.topic .pollimg:nth-child(4n + 4), -.video-l-card .poll-imgs.card-detail .pollimg:last-child, -.video-l-card .poll-imgs.card-detail .pollimg:nth-child(4n + 4), -a.poll-imgs[data-network=indiatimes] .pollimg:last-child, -a.poll-imgs[data-network=indiatimes] .pollimg:nth-child(4n + 4) { - margin-right: 0; -} - -.article-newsletter .poll-imgs.newsletterinput .pollimg.active .option, -.brief-video .poll-imgs.video-small .pollimg.active .option, -.header .poll-imgs.profile-data .pollimg.active .option, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .pollimg.active .option, -.menu-items .nav-menu .categories .poll-imgs.nav-category .pollimg.active .option, -.nav-ul .nav-category a.poll-imgs .pollimg.active .option, -.nav-ul .poll-imgs.nav-category .pollimg.active .option, -.original-popup .poll-imgs.browse-form .pollimg.active .option, -.poll-imgs.art-social .pollimg.active .option, -.poll-imgs.author-row .pollimg.active .option, -.poll-imgs.block-header .pollimg.active .option, -.poll-imgs.breadcrumb.trunc .pollimg.active .option, -.poll-imgs.browse-list .pollimg.active .option, -.poll-imgs.card-strip .pollimg.active .option, -.poll-imgs.card .pollimg.active .option, -.poll-imgs.comment-form .pollimg.active .option, -.poll-imgs.comment-post-box .pollimg.active .option, -.poll-imgs.comment-post-links .pollimg.active .option, -.poll-imgs.comment-post .pollimg.active .option, -.poll-imgs.comment .pollimg.active .option, -.poll-imgs.d-flex .pollimg.active .option, -.poll-imgs.daily-story .pollimg.active .option, -.poll-imgs.digital-left .pollimg.active .option, -.poll-imgs.digital-page .pollimg.active .option, -.poll-imgs.focus-card-body .pollimg.active .option, -.poll-imgs.liver-two .pollimg.active .option, -.poll-imgs.login-container .pollimg.active .option, -.poll-imgs.menu-categories .pollimg.active .option, -.poll-imgs.open-header .pollimg.active .option, -.poll-imgs.org-tab .pollimg.active .option, -.poll-imgs.original-popup-header .pollimg.active .option, -.poll-imgs.original-top .pollimg.active .option, -.poll-imgs.ov-card-detail .pollimg.active .option, -.poll-imgs.ov-card-watch .pollimg.active .option, -.poll-imgs.ov-card .pollimg.active .option, -.poll-imgs.pie-chart .pollimg.active .option, -.poll-imgs.preview-list-item.text .pollimg.active .option, -.poll-imgs.preview-list .pollimg.active .option, -.poll-imgs.profile-img .pollimg.active .option, -.poll-imgs.quiz-list-row .pollimg.active .option, -.poll-imgs.quiz-list .pollimg.active .option, -.poll-imgs.quiz-result-box .pollimg.active .option, -.poll-imgs.r-card .pollimg.active .option, -.poll-imgs.readcard .pollimg.active .option, -.poll-imgs.retake-container .pollimg.active .option, -.poll-imgs.scroll-header-right .pollimg.active .option, -.poll-imgs.section-big .pollimg.active .option, -.poll-imgs.sectiontrending .pollimg.active .option, -.poll-imgs.series .pollimg.active .option, -.poll-imgs.sh-tab .pollimg.active .option, -.poll-imgs.stories-now .pollimg.active .option, -.poll-imgs.story-now-circle .pollimg.active .option, -.poll-imgs.story-now .pollimg.active .option, -.poll-imgs.t-arrow .pollimg.active .option, -.poll-imgs.team-mg .pollimg.active .option, -.poll-imgs.teamcolor .pollimg.active .option, -.poll-imgs.topic-cards .pollimg.active .option, -.poll-imgs.topic-slide .pollimg.active .option, -.poll-imgs.toplogo .pollimg.active .option, -.poll-imgs.user-weather .pollimg.active .option, -.poll-imgs.video-latest .pollimg.active .option, -.poll-imgs.videosummery .pollimg.active .option, -.poll-imgs.youmay-like .pollimg.active .option, -.popular-slider .poll-imgs.slick-track .pollimg.active .option, -.quick-slider .poll-imgs.slick-track .pollimg.active .option, -.right-container .video-infocus .poll-imgs.video-small .pollimg.active .option, -.rightsocial .poll-imgs.share-strip-social .pollimg.active .option, -.rightsocial .poll-imgs.share-strip .pollimg.active .option, -.shadow-card.video-card .poll-imgs.video-small .pollimg.active .option, -.tbd-cont .tbc-border .poll-imgs.tbd-text .pollimg.active .option, -.teamcolor .poll-imgs.team-d .pollimg.active .option, -.topic-container.d-flex .poll-imgs.slick-track .pollimg.active .option, -.topics-cont a.poll-imgs .pollimg.active .option, -.topics-cont div.poll-imgs .pollimg.active .option, -.topics .poll-imgs.topic .pollimg.active .option, -.video-l-card .poll-imgs.card-detail .pollimg.active .option, -a.poll-imgs[data-network=indiatimes] .pollimg.active .option { - color: #fff; -} - -.article-newsletter .poll-imgs.newsletterinput .pollimg.active .pull-right, -.brief-video .poll-imgs.video-small .pollimg.active .pull-right, -.header .poll-imgs.profile-data .pollimg.active .pull-right, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .pollimg.active .pull-right, -.menu-items .nav-menu .categories .poll-imgs.nav-category .pollimg.active .pull-right, -.nav-ul .nav-category a.poll-imgs .pollimg.active .pull-right, -.nav-ul .poll-imgs.nav-category .pollimg.active .pull-right, -.original-popup .poll-imgs.browse-form .pollimg.active .pull-right, -.poll-imgs.art-social .pollimg.active .pull-right, -.poll-imgs.author-row .pollimg.active .pull-right, -.poll-imgs.block-header .pollimg.active .pull-right, -.poll-imgs.breadcrumb.trunc .pollimg.active .pull-right, -.poll-imgs.browse-list .pollimg.active .pull-right, -.poll-imgs.card-strip .pollimg.active .pull-right, -.poll-imgs.card .pollimg.active .pull-right, -.poll-imgs.comment-form .pollimg.active .pull-right, -.poll-imgs.comment-post-box .pollimg.active .pull-right, -.poll-imgs.comment-post-links .pollimg.active .pull-right, -.poll-imgs.comment-post .pollimg.active .pull-right, -.poll-imgs.comment .pollimg.active .pull-right, -.poll-imgs.d-flex .pollimg.active .pull-right, -.poll-imgs.daily-story .pollimg.active .pull-right, -.poll-imgs.digital-left .pollimg.active .pull-right, -.poll-imgs.digital-page .pollimg.active .pull-right, -.poll-imgs.focus-card-body .pollimg.active .pull-right, -.poll-imgs.liver-two .pollimg.active .pull-right, -.poll-imgs.login-container .pollimg.active .pull-right, -.poll-imgs.menu-categories .pollimg.active .pull-right, -.poll-imgs.open-header .pollimg.active .pull-right, -.poll-imgs.org-tab .pollimg.active .pull-right, -.poll-imgs.original-popup-header .pollimg.active .pull-right, -.poll-imgs.original-top .pollimg.active .pull-right, -.poll-imgs.ov-card-detail .pollimg.active .pull-right, -.poll-imgs.ov-card-watch .pollimg.active .pull-right, -.poll-imgs.ov-card .pollimg.active .pull-right, -.poll-imgs.pie-chart .pollimg.active .pull-right, -.poll-imgs.preview-list-item.text .pollimg.active .pull-right, -.poll-imgs.preview-list .pollimg.active .pull-right, -.poll-imgs.profile-img .pollimg.active .pull-right, -.poll-imgs.quiz-list-row .pollimg.active .pull-right, -.poll-imgs.quiz-list .pollimg.active .pull-right, -.poll-imgs.quiz-result-box .pollimg.active .pull-right, -.poll-imgs.r-card .pollimg.active .pull-right, -.poll-imgs.readcard .pollimg.active .pull-right, -.poll-imgs.retake-container .pollimg.active .pull-right, -.poll-imgs.scroll-header-right .pollimg.active .pull-right, -.poll-imgs.section-big .pollimg.active .pull-right, -.poll-imgs.sectiontrending .pollimg.active .pull-right, -.poll-imgs.series .pollimg.active .pull-right, -.poll-imgs.sh-tab .pollimg.active .pull-right, -.poll-imgs.stories-now .pollimg.active .pull-right, -.poll-imgs.story-now-circle .pollimg.active .pull-right, -.poll-imgs.story-now .pollimg.active .pull-right, -.poll-imgs.t-arrow .pollimg.active .pull-right, -.poll-imgs.team-mg .pollimg.active .pull-right, -.poll-imgs.teamcolor .pollimg.active .pull-right, -.poll-imgs.topic-cards .pollimg.active .pull-right, -.poll-imgs.topic-slide .pollimg.active .pull-right, -.poll-imgs.toplogo .pollimg.active .pull-right, -.poll-imgs.user-weather .pollimg.active .pull-right, -.poll-imgs.video-latest .pollimg.active .pull-right, -.poll-imgs.videosummery .pollimg.active .pull-right, -.poll-imgs.youmay-like .pollimg.active .pull-right, -.popular-slider .poll-imgs.slick-track .pollimg.active .pull-right, -.quick-slider .poll-imgs.slick-track .pollimg.active .pull-right, -.right-container .video-infocus .poll-imgs.video-small .pollimg.active .pull-right, -.rightsocial .poll-imgs.share-strip-social .pollimg.active .pull-right, -.rightsocial .poll-imgs.share-strip .pollimg.active .pull-right, -.shadow-card.video-card .poll-imgs.video-small .pollimg.active .pull-right, -.tbd-cont .tbc-border .poll-imgs.tbd-text .pollimg.active .pull-right, -.teamcolor .poll-imgs.team-d .pollimg.active .pull-right, -.topic-container.d-flex .poll-imgs.slick-track .pollimg.active .pull-right, -.topics-cont a.poll-imgs .pollimg.active .pull-right, -.topics-cont div.poll-imgs .pollimg.active .pull-right, -.topics .poll-imgs.topic .pollimg.active .pull-right, -.video-l-card .poll-imgs.card-detail .pollimg.active .pull-right, -a.poll-imgs[data-network=indiatimes] .pollimg.active .pull-right { - font-weight: 700; - position: absolute; - background-color: #3d60ff; - color: #fff; - border-radius: 50%; - display: block; - flex: 0 0 40px; - height: 40px; - text-align: center; - padding-top: 13px; - top: 7px; - right: 7px; - z-index: 1; - max-width: 40px; - width: 40px; - font-size: 12px; -} - -.article-newsletter .poll-imgs.newsletterinput .pollimg.false .pull-right, -.brief-video .poll-imgs.video-small .pollimg.false .pull-right, -.header .poll-imgs.profile-data .pollimg.false .pull-right, -.menu-items .nav-menu .categories .nav-category a.poll-imgs .pollimg.false .pull-right, -.menu-items .nav-menu .categories .poll-imgs.nav-category .pollimg.false .pull-right, -.nav-ul .nav-category a.poll-imgs .pollimg.false .pull-right, -.nav-ul .poll-imgs.nav-category .pollimg.false .pull-right, -.original-popup .poll-imgs.browse-form .pollimg.false .pull-right, -.poll-imgs.art-social .pollimg.false .pull-right, -.poll-imgs.author-row .pollimg.false .pull-right, -.poll-imgs.block-header .pollimg.false .pull-right, -.poll-imgs.breadcrumb.trunc .pollimg.false .pull-right, -.poll-imgs.browse-list .pollimg.false .pull-right, -.poll-imgs.card-strip .pollimg.false .pull-right, -.poll-imgs.card .pollimg.false .pull-right, -.poll-imgs.comment-form .pollimg.false .pull-right, -.poll-imgs.comment-post-box .pollimg.false .pull-right, -.poll-imgs.comment-post-links .pollimg.false .pull-right, -.poll-imgs.comment-post .pollimg.false .pull-right, -.poll-imgs.comment .pollimg.false .pull-right, -.poll-imgs.d-flex .pollimg.false .pull-right, -.poll-imgs.daily-story .pollimg.false .pull-right, -.poll-imgs.digital-left .pollimg.false .pull-right, -.poll-imgs.digital-page .pollimg.false .pull-right, -.poll-imgs.focus-card-body .pollimg.false .pull-right, -.poll-imgs.liver-two .pollimg.false .pull-right, -.poll-imgs.login-container .pollimg.false .pull-right, -.poll-imgs.menu-categories .pollimg.false .pull-right, -.poll-imgs.open-header .pollimg.false .pull-right, -.poll-imgs.org-tab .pollimg.false .pull-right, -.poll-imgs.original-popup-header .pollimg.false .pull-right, -.poll-imgs.original-top .pollimg.false .pull-right, -.poll-imgs.ov-card-detail .pollimg.false .pull-right, -.poll-imgs.ov-card-watch .pollimg.false .pull-right, -.poll-imgs.ov-card .pollimg.false .pull-right, -.poll-imgs.pie-chart .pollimg.false .pull-right, -.poll-imgs.preview-list-item.text .pollimg.false .pull-right, -.poll-imgs.preview-list .pollimg.false .pull-right, -.poll-imgs.profile-img .pollimg.false .pull-right, -.poll-imgs.quiz-list-row .pollimg.false .pull-right, -.poll-imgs.quiz-list .pollimg.false .pull-right, -.poll-imgs.quiz-result-box .pollimg.false .pull-right, -.poll-imgs.r-card .pollimg.false .pull-right, -.poll-imgs.readcard .pollimg.false .pull-right, -.poll-imgs.retake-container .pollimg.false .pull-right, -.poll-imgs.scroll-header-right .pollimg.false .pull-right, -.poll-imgs.section-big .pollimg.false .pull-right, -.poll-imgs.sectiontrending .pollimg.false .pull-right, -.poll-imgs.series .pollimg.false .pull-right, -.poll-imgs.sh-tab .pollimg.false .pull-right, -.poll-imgs.stories-now .pollimg.false .pull-right, -.poll-imgs.story-now-circle .pollimg.false .pull-right, -.poll-imgs.story-now .pollimg.false .pull-right, -.poll-imgs.t-arrow .pollimg.false .pull-right, -.poll-imgs.team-mg .pollimg.false .pull-right, -.poll-imgs.teamcolor .pollimg.false .pull-right, -.poll-imgs.topic-cards .pollimg.false .pull-right, -.poll-imgs.topic-slide .pollimg.false .pull-right, -.poll-imgs.toplogo .pollimg.false .pull-right, -.poll-imgs.user-weather .pollimg.false .pull-right, -.poll-imgs.video-latest .pollimg.false .pull-right, -.poll-imgs.videosummery .pollimg.false .pull-right, -.poll-imgs.youmay-like .pollimg.false .pull-right, -.popular-slider .poll-imgs.slick-track .pollimg.false .pull-right, -.quick-slider .poll-imgs.slick-track .pollimg.false .pull-right, -.right-container .video-infocus .poll-imgs.video-small .pollimg.false .pull-right, -.rightsocial .poll-imgs.share-strip-social .pollimg.false .pull-right, -.rightsocial .poll-imgs.share-strip .pollimg.false .pull-right, -.shadow-card.video-card .poll-imgs.video-small .pollimg.false .pull-right, -.tbd-cont .tbc-border .poll-imgs.tbd-text .pollimg.false .pull-right, -.teamcolor .poll-imgs.team-d .pollimg.false .pull-right, -.topic-container.d-flex .poll-imgs.slick-track .pollimg.false .pull-right, -.topics-cont a.poll-imgs .pollimg.false .pull-right, -.topics-cont div.poll-imgs .pollimg.false .pull-right, -.topics .poll-imgs.topic .pollimg.false .pull-right, -.video-l-card .poll-imgs.card-detail .pollimg.false .pull-right, -a.poll-imgs[data-network=indiatimes] .pollimg.false .pull-right { - font-weight: 700; - position: absolute; - background-color: hsla(0, 0%, 9%, .5); - color: #fff; - border-radius: 50%; - display: block; - flex: 0 0 40px; - height: 40px; - text-align: center; - padding-top: 13px; - top: 7px; - right: 7px; - z-index: 1; - max-width: 40px; - width: 40px; - font-size: 12px; -} - -.pollimg:nth-child(4) { - margin-right: 0; -} - -.pollimg.active { - background: linear-gradient(0deg, #4364ff, #0037ff); - color: #fff; - border: none; -} - -.pollimg { - margin-bottom: 15px; - position: relative; - border-radius: 5px; - overflow: hidden; -} - -.pollimg:last-child { - margin-bottom: 0; -} - -.img-poll-op .option { - flex-direction: column; -} - -.img-poll-op .poll-new { - width: 100%; - height: 160px; -} - -.img-poll-op .poll-new:before { - padding-top: 100%; -} - -.img-poll-op .option-left { - font-weight: 700; - max-width: 100%; - margin: 0 auto; - text-align: left; - padding: .75rem; - line-height: 1.3; -} - -.nopoll .option { - background-color: #fff; - border-radius: .25rem; - border: 1px solid #171717; - padding: .875rem 1rem; - color: #3457a7; - font-weight: 700; - width: 100%; - font-size: 1rem; - cursor: pointer; -} - -.nopoll .option:hover { - color: #fff; - background: #171717; -} - -.left-container .quickpoll h4 { - margin-bottom: 4px; - line-height: 1.6; -} - -.left-container .custom-polls .poll-summerys { - margin-bottom: 1.2rem; -} - -.layout-main { - border-radius: 5px; - border: 1px solid #eee; - box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2); - background: #fff; - overflow-x: hidden; -} - -.layoff-widget { - width: 100%; - border-collapse: collapse; -} - -.layoff-widget thead { - background: #3457a7; - color: #fff; -} - -.layoff-widget td, -.layoff-widget th { - padding: 10px 15px; - white-space: nowrap; - text-align: left; - word-break: break-word; -} - -.layoff-widget th { - font: 1.2em/1.2em; - font-weight: 700; -} - -.layoff-widget tbody tr:nth-child(odd) { - background: #fff; - color: #000; -} - -.layoff-widget tbody tr:nth-child(2n) { - background: #e9ecf3; - color: #000; -} - -.pie-chart .flex-1 { - flex: 1; - width: 50%; - font-size: 10px; -} - -.pie-chart .flex-1:first-child { - margin-right: 20px; -} - -.pie-chart .block-header-title, -.pie-chart .comment-top, -.pie-chart .h-dinline, -.pie-chart .topic-slide { - font-size: 16px; -} - -.pie-chart .block-header-title:after, -.pie-chart .comment-top:after, -.pie-chart .h-dinline:after, -.pie-chart .topic-slide:after { - display: none; -} - -.pie-center { - text-align: center; -} - -.pie-center .block-header-title:after, -.pie-center .block-header-title:before, -.pie-center .comment-top:after, -.pie-center .comment-top:before, -.pie-center .h-dinline:after, -.pie-center .h-dinline:before, -.pie-center .topic-slide:after, -.pie-center .topic-slide:before { - display: none; -} - -.pie-center .block-header-title, -.pie-center .comment-top, -.pie-center .h-dinline, -.pie-center .topic-slide { - max-width: 450px; - margin: 0 auto; -} - -.pie-top { - margin-top: -20px; -} - -.container.responsive-container, -.responsive-container.fifa-center { - max-width: 78rem; - border-bottom: 1px solid #eee; - padding-bottom: 50px; -} - -.flex-1.pie-top { - font-weight: 400; -} - -.mt-60 { - margin-top: 60px; -} - -.responsive-container p { - padding-bottom: 10px; -} - -.chart-center { - margin: 0 auto; - text-align: center; - width: 500px; -} - -#keyboard-cont { - display: flex; - flex-direction: column; - align-items: center; - padding-top: 10px; -} - -#keyboard-cont div { - display: flex; -} - -.game-btn { - background-color: #3457a7; - color: #fff; - border: 0; - border-radius: 5px; - padding: 10px 20px; -} - -#keyboard-cont div.error-active { - border: 1px solid #f8d8d8; - background-color: #fff; - color: red; - justify-content: center; - padding: 5px 10px; - width: 100%; - text-align: center; - visibility: hidden; - opacity: 0; - transition: visibility 0s linear .33s, opacity .33s linear; - max-width: 400px; - margin: 0 auto; - height: 30px; -} - -#keyboard-cont div.error-active.active { - visibility: visible; - opacity: 1; - transition-delay: 0s; -} - -.wordle-cont { - max-width: 750px; - margin: 0 auto; -} - -.wordle-cont h2 { - font-size: 2rem; - line-height: 2rem; - margin-bottom: 1rem; - font-weight: 700; - text-align: center; -} - -.wordle-cont h3 { - font-size: 1rem; - line-height: 1.5rem; - margin-bottom: 1rem; - font-weight: 400; -} - -.labels { - width: 100%; - height: 25px; - text-align: center; - position: absolute; - bottom: -26px; -} - -.labels li { - width: 63px; - font-size: 12px; - color: #000; - text-align: center; - text-transform: uppercase; - display: inline-block; -} - -.message.hide { - visibility: hidden; - opacity: 0; - transition: visibility 0s linear .3s, opacity .3s; -} - -.message.show { - visibility: visible; - opacity: 1; - transition: visibility 0s linear 0s, opacity .3s; -} - -.game-card .game-allcard span:before, -.game-card .game-cardinner-img:before { - padding-top: 100%; -} - -.artwidth { - min-width: 460px; -} - -.left-container iframe.iframe-slike { - background-color: #f1f1f1; - max-width: 100%; - width: 100%; - height: 415px; - border: 0; - overflow: hidden; -} - -.article-newsletter { - background-color: #c8e7e1; - padding: 40px 20px; - border-radius: 5px; - border: 1px solid #98bdb6; -} - -.article-newsletter .subheading { - font-weight: 700; - padding-bottom: 10px; - border-bottom: 2px solid #000; - color: #000; - font-size: 2em; - display: inline-block; -} - -.article-newsletter .submsg { - padding-bottom: 30px; - color: #000; -} - -.article-newsletter .newsletterinput { - justify-content: center; - width: 60%; - margin: 0 auto; -} - -.article-newsletter .newsletterinput input, -.article-newsletter .newsletterinput input:focus { - width: 96%; - margin-right: 20px; - background-color: #fff; - color: #000; - padding: 10px 20px; - border: 0; -} - -.article-newsletter .newsletterinput button { - background-color: #3457a7; - border: 0; - border-radius: 4px; - color: #fff; - padding: 10px 30px; -} - -.article-newsletter .newsletterinput button .loading { - margin-top: -10px; - margin-bottom: -10px; -} - -.article-newsletter .newsletterinput button .loading svg { - width: 2rem; - height: 2rem; -} - -.article-newsletter .success { - color: green; -} - -.article-newsletter .error { - color: red; -} - -.next-cont { - border-right: 1px solid #eee; - padding: 0 20px; -} - -.slick-slide:first-child .next-cont { - padding-left: 0; -} - -.readcard { - border-bottom: 1px solid #eee; - padding-bottom: 10px; - padding-top: 10px; -} - -.readcard .readcard-img { - flex: 0 0 33.77%; - border-radius: 5px; - overflow: hidden; -} - -.readcard .readcard-title { - flex: 0 0 66%; - margin-left: 3%; - color: #000; - max-height: 50px; - overflow: hidden; - line-height: 1.4; -} - -.readcard:last-child { - border-bottom: 0; - padding-bottom: 0; -} - -.read-next-block { - max-width: 730px; - margin: 0 auto; -} - -.read-next-block .slick-dots { - display: block; - position: relative; - display: flex; - flex-wrap: wrap; - justify-content: center; - margin: 20px auto; - list-style: none; - text-align: center; -} - -.read-next-block .slick-dots li { - position: relative; - width: 20px; - height: 20px; - margin: 0 3px; - cursor: pointer; - display: flex; - align-items: center; - justify-content: center; -} - -.read-next-block .slick-dots li button { - font-size: 0; - line-height: 0; - display: block; - padding: 5px; - color: transparent; - border: 0; - outline: none; - background: transparent; - cursor: pointer; -} - -.read-next-block .slick-dots li button:before { - font-family: sans-serif; - font-size: 40px; - line-height: 1.25rem; - position: absolute; - top: 0; - left: 0; - width: 20px; - height: 20px; - content: "•"; - text-align: center; - opacity: .25; - color: #000; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - margin: auto; -} - -.read-next-block .slick-dots li button:focus:before, -.read-next-block .slick-dots li button:hover:before { - opacity: 1; -} - -.read-next-block .slick-dots li.slick-active button:before { - opacity: 1; - color: #3357a7; -} - -.read-next-block .slick-next, -.read-next-block .slick-prev { - top: -70px; -} - -.read-next-block .slick-next .icon-button, -.read-next-block .slick-prev .icon-button { - width: 2rem; - height: 2rem; - border: 1px solid #000; -} - -.read-next-block .slick-arrow.slick-disabled { - display: block; -} - -.read-next-block .slick-arrow.slick-disabled .icon-button { - border: 1px solid #ccc; -} - -.read-next-block .slick-prev { - left: auto; - right: 50px; -} - -.read-next-block .slick-slide:last-child .next-cont { - margin: right 0; - border-right: 0; - padding-right: 0; -} - -.read-next-block .block-header-title, -.read-next-block .comment-top, -.read-next-block .h-dinline, -.read-next-block .topic-slide { - margin-bottom: 18px; -} - -.read-next-block .block-header-title:after, -.read-next-block .comment-top:after, -.read-next-block .h-dinline:after, -.read-next-block .topic-slide:after { - width: 60%; -} - -.sticky-ad-container { - display: flex; - flex-direction: column; - background-color: #ededed; - text-align: center; - margin: 0 auto 24px; - width: 730px; - overflow: visible; -} - -.sticky-ad-620 { - height: 620px; -} - -.sticky-ad-480 { - height: 480px; -} - -.sticky-ad-container>div { - position: -webkit-sticky; - position: sticky; - top: 70px; - margin: 25px auto 0; -} - -.sticky-ad-container.advertisement_text:not(.clearfix):before { - content: "ADVERTISEMENT"; - font-size: .7em; - color: #8a8a8a; - line-height: 20px; - display: block; - position: absolute; - margin-top: 4px; - width: 100%; - left: 0; - text-align: center; -} - -.advertisement_text>div:not(.clearfix):before { - padding-bottom: 0; -} - -.sticky-ad-container.advertisement_text>div:not(.clearfix):before { - content: ""; - line-height: 1; - position: relative; - margin-top: 0; - left: auto; - right: auto; -} - -.common-card .similar-stories .youmay-like.card, -.right-container .similar-stories .youmay-like, -.rightsocial .similar-stories .youmay-like.share-strip, -.rightsocial .similar-stories .youmay-like.share-strip-social, -.similar-stories .common-card .youmay-like.card, -.similar-stories .right-container .youmay-like, -.similar-stories .rightsocial .youmay-like.share-strip, -.similar-stories .rightsocial .youmay-like.share-strip-social, -.similar-stories .topic-col .youmay-like.card, -.similar-stories .video-r-card .youmay-like.card, -.similar-stories .youmay-like.browse-list, -.similar-stories .youmay-like.comment-form, -.similar-stories .youmay-like.comment-post, -.similar-stories .youmay-like.comment-post-box, -.similar-stories .youmay-like.daily-story, -.similar-stories .youmay-like.flex-wrap, -.similar-stories .youmay-like.menu-categories, -.similar-stories .youmay-like.retake-container, -.similar-stories .youmay-like.sectiontrending, -.similar-stories .youmay-like.video-latest, -.topic-col .similar-stories .youmay-like.card, -.video-r-card .similar-stories .youmay-like.card { - flex-wrap: wrap; -} - -.description .andbeyond_adunit { - overflow: visible; -} - -.article-container .stories-card:nth-child(5n) { - margin-right: 15px; -} - -.article-container .stories-card:nth-child(6n) { - margin-right: 0; -} - -.dark-theme { - background-color: #171717; -} - -.video-latest { - padding: 1rem 3rem 1.5rem; -} - -.video-latest-right { - flex: 0 0 calc(100% - 668px); -} - -.video-r-card .card-img { - flex: 0 0 calc(100% - 230px); -} - -.video-r-card .card-img:before { - padding-top: 133%; -} - -.video-r-card .card-body { - flex: 0 0 calc(100% - 114px); - max-width: calc(100% - 114px); -} - -.video-l-card { - flex: 0 0 calc(100% - 364px); - max-width: calc(100% - 364px); - margin-right: 1.5rem; -} - -.video-l-card .vid-title { - width: 100%; -} - -.video-l-card .card-img { - margin-bottom: 1rem; - border-radius: 4px; -} - -.video-l-card .card-img:before { - padding-top: 57.47126%; -} - -.video-l-card .card-img iframe { - position: absolute; - top: 0; -} - -.video-l-card .card-title { - font-weight: 700; -} - -.video-l-card .card-summury { - max-height: 40px; - overflow: hidden; -} - -.video-l-card .card-detail { - margin-bottom: 1.1875rem; -} - -.video-l-card .card-detail-logo { - min-width: 3.75rem; - width: 3.75rem; - height: 6.125rem; -} - -.video-l-card .card-strip { - margin: 1.1875rem 0; -} - -.video-r-card { - background-color: hsla(0, 0%, 100%, .1); - border-bottom: 1px solid hsla(0, 0%, 100%, .2); - padding: 1rem .5rem .75rem; - cursor: pointer; -} - -.video-r-card.active { - background-color: #3457a7; -} - -.video-r-card:last-child { - border-bottom: 0; -} - -.video-r-card .card-img { - order: 2; - flex: 0 0 calc(100% - 200px); - max-width: calc(100% - 200px); -} - -.video-r-card .card-img:before { - padding-top: 56.03448%; -} - -.video-r-card .card-img iframe { - position: absolute; - top: 0; -} - -.video-r-card .card-section { - margin-bottom: .375rem; -} - -.video-r-card .card-body { - order: 1; - flex: 0 0 calc(100% - 132px); - max-width: calc(100% - 132px); - margin-right: 1rem; -} - -.video-r-card .card-strip { - margin-top: .75rem; - display: none; -} - -.webseries-slider-slide { - flex: 0 0 calc(100% - 896px); - max-width: calc(100% - 912px); - margin: 0 3rem 1.5rem 0; -} - -.webseries-slider-slide:before { - padding-top: 150%; -} - -.webseries-slider-slide:last-child { - margin: 0 0 1.5rem; -} - -.webseries-slider-slide:nth-child(5n) { - margin-right: 0; -} - -.block-desc { - line-height: 1.5; -} - -.episodes-tab { - border-bottom: 1px solid hsla(0, 0%, 100%, .2); -} - -.episodes-tab a { - font-weight: 700; - padding-bottom: 1rem; - margin-right: 1.5rem; - opacity: .5; - transition: opacity .3s ease-in-out; -} - -.episodes-tab a.select, -.episodes-tab a:hover { - opacity: 1; -} - -.episodes-block { - padding: 1.5rem 1rem; -} - -.episodes-block-left { - flex: 0 0 75%; -} - -.episodes-thumb { - max-width: 3.75rem; - margin-right: 1rem; -} - -.episodes-thumb:before { - padding-top: 100%; -} - -.episodes-detail { - font-weight: 700; - vertical-align: super; -} - -.episodes-slider-slide { - flex: 0 0 15.5rem; - margin-right: 1.5rem; -} - -.episodes-slider-slide:last-child { - margin-right: 0; -} - -.episodes-slider .card-img { - max-width: 15.5rem; -} - -.episodes-slider .card-img:before { - padding-top: 50.80645%; -} - -.episodes-slider .card-img iframe { - position: absolute; - top: 0; -} - -.episodes-slider .card-detail { - margin-bottom: .5rem; -} - -.episodes-slider .card-title { - font-weight: 700; - height: 2.25rem; -} - -.episodes-slider .icon-video-big { - width: 2.375rem; - height: 2.375rem; -} - -.quick-slider .slick-next, -.quick-slider .slick-prev { - top: 0; - bottom: 0; - margin: auto; -} - -.slider-next-button { - position: absolute; - top: 0; - right: 0; - z-index: 3; - max-width: 4.5rem; - height: 100%; - cursor: pointer; -} - -.slider-next-button.black { - background-image: linear-gradient(90deg, hsla(0, 0%, 9%, 0) 0, #171717); -} - -.slider-next-button.white { - background-image: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, .8) 50%, #fff 71%, #fff 81%, #fff); -} - -.icon-button { - background-color: #fff; - width: 3.5rem; - height: 3.5rem; - border-radius: 100%; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); -} - -.icon-button, -.icon-button svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} - -.icon-button svg { - fill: #171717; - width: 1.5rem; - height: 1.5rem; -} - -.video-infocus { - padding-bottom: 1.5rem; -} - -.video-infocus .card-img:before { - padding-top: 51.27273%; -} - -.video-infocus .card-img iframe { - position: absolute; - top: 0; -} - -.video-infocus .card-summury { - margin-left: 10.2rem; -} - -.video-infocus .card-detail-logo { - width: 8.625rem; - height: 11.625rem; - margin-right: 1.5rem; -} - -.video-infocus .card-title { - font-weight: 700; - font-size: 2.25rem; - margin-bottom: .5rem; -} - -.video-infocus .icon-video-big { - max-width: 2.75rem; -} - -.blue-tag { - font-weight: 700; - position: absolute; - top: 0; - left: 0; - background-image: linear-gradient(0deg, #3457a7, #3457a7); - z-index: 2; - padding: .625rem .875rem; - border-bottom-right-radius: .25rem; -} - -.focus-video .card-body, -.random-blocks .card-body { - background: transparent; -} - -.focus-video .card-img { - border-radius: 20px; -} - -.focus-video .card-img img { - line-height: 0; - display: block; -} - -.top-video .card-img:before { - padding-top: 51.27273%; -} - -.top-video .card-img iframe { - position: absolute; - top: 0; -} - -.top-video .card img { - line-height: 0; - display: block; -} - -.top-video .card-body { - position: absolute; - right: 0; - bottom: 0; - left: 0; - background-image: linear-gradient(180deg, hsla(0, 0%, 9%, 0), #171717); - z-index: 1; - padding: 1.25rem; -} - -.top-video .card-summury { - font-size: .875rem; - margin-left: 7.75rem; -} - -.top-video .card-detail-logo { - width: 6.25rem; - height: 8.4375rem; - margin-right: 1.5rem; -} - -.top-video .card-title { - font-weight: 700; - font-size: 1.5rem; -} - -.top-video .card-strip { - margin: .3125rem 0; -} - -.top-video .icon-video-big { - max-width: 2.75rem; -} - -.small-video-card { - background-color: #171717; - padding: 1.5rem; - flex-direction: row; -} - -.small-video-card:after { - position: absolute; - right: 24px; - bottom: 0; - left: 24px; - content: ""; - border-bottom: 1px solid hsla(0, 0%, 100%, .3); - z-index: 1; -} - -.small-video-card .card-body { - order: 1; - flex: 0 0 calc(100% - 223px); - margin-right: 1.5rem; -} - -.small-video-card .card-img { - order: 2; - flex: 0 0 calc(100% - 853px); -} - -.small-video-card .card-img:before { - padding-top: 56.50224%; -} - -.small-video-card .card-detail-logo { - width: 6.8125rem; - height: 9.375rem; - margin-right: 1.5rem; -} - -.small-video-card .card-title { - font-weight: 700; - font-size: 1.125rem; -} - -.small-video-card .card-summury { - font-size: .875rem; - margin-left: 8.25rem; -} - -.small-video-card .card-strip { - margin: .625rem 0 1rem; -} - -.small-video-card .no-padding-card:before { - padding-top: 0; -} - -.preview-button { - font-weight: 700; - border-radius: .25rem; - display: flex; - align-items: center; - padding: .3125rem 1rem; - border: 1px solid #fff; -} - -.preview-button span { - width: 1.5rem; - height: 1.5rem; - margin-left: 1.5rem; -} - -.preview-list-item { - width: 5.625rem; - height: 5.625rem; - margin-right: 1.5rem; -} - -.preview-list-item:last-of-type { - margin-right: 0; -} - -.preview-list-item.text { - line-height: 1.5; -} - -.preview-list-item.text svg { - margin-top: .5rem; -} - -.preview-list-item.thumb { - background-color: hsla(0, 0%, 100%, .2); - border-radius: 100%; -} - -.preview-list-item.thumb img { - border-radius: 100%; -} - -.original-popup { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - background-color: #212121; - z-index: 9999; - overflow-y: auto; -} - -.original-popup-header { - background-color: #000; - height: 3.5rem; -} - -.original-popup .icon-close { - width: 3.5rem; - height: 3.5rem; -} - -.original-popup .icon-close svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: .875rem; - height: .875rem; -} - -.original-popup .icon-close svg path { - fill: #fff; -} - -.original-popup .browse-form { - background-color: #171717; - border-radius: .25rem; - padding-right: 1rem; -} - -.original-popup .browse-form-input { - font-weight: 700; - background-color: transparent; - border: 0; - border-bottom: 1px solid hsla(0, 0%, 100%, .2); - padding-top: .8125rem; - margin-bottom: .75rem; - line-height: 1.5; - color: #fff; -} - -.original-popup .browse-form-button { - width: 3rem; - height: 2.1875rem; -} - -.original-popup .browse-form-button svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 1.0625rem; - height: 1.0625rem; - fill: #3457a7; -} - -.original-popup .browse-form-button svg path { - fill: #fff; -} - -.original-popup .episodes-tab { - border-bottom: 0; - margin-bottom: .5rem; -} - -.browse-title { - font-weight: 700; - opacity: .87; - margin-bottom: 1rem; -} - -.browse-list-thumb { - width: 5.625rem; - height: 5.625rem; - margin: 0 1.375rem 1.375rem 0; - border-radius: .25rem; -} - -.browse-list-thumb:before { - padding-top: 100%; -} - -.browse-list-thumb:nth-child(10n) { - margin: 0 0 1.375rem; -} - -.ov-card { - background-color: #171717; - border-radius: .25rem; - padding: 1rem; -} - -.ov-card-thumb { - flex: 0 0 4.75rem; - margin-right: 1rem; - border-radius: .25rem; -} - -.ov-card-thumb:before { - padding-top: 151.31579%; -} - -.ov-card-detail { - width: 58%; - margin-right: 1.5rem; -} - -.ov-card-count, -.ov-card-section { - font-weight: 700; -} - -.ov-card-count span { - margin-right: .3125rem; -} - -.ov-card-desc { - opacity: .87; -} - -.ov-card-watch .button { - font-weight: 700; - border: 1px solid #fff; - border-radius: .25rem; - padding: .6875rem .5rem; -} - -.ov-card-watch .button-episode { - background-color: #fff; - color: #000; -} - -.ov-card-watch .button-episode svg path { - fill: #000; -} - -.ov-card-watch .button .icon { - width: 1.5rem; - height: 1.5rem; - margin-right: .5rem; - vertical-align: middle; -} - -.ov-card .icon-play { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 1.875rem; - height: 1.875rem; - z-index: 1; -} - -.home-container .original-popup .block-header-title, -.home-container .original-popup .comment-top, -.home-container .original-popup .h-dinline, -.home-container .original-popup .topic-slide { - color: #fff; -} - -.original-top .original-left { - flex: 1; - margin-right: 40px; -} - -.original-top .original-left .card-detail .card-detail-logo { - width: 94px; - height: 140px; - border-radius: 10px; -} - -.original-top .original-left .card-detail .card-title { - font-weight: 700; - font-size: 2rem; - color: #fff; - margin-top: 15px; -} - -.original-top .original-right { - flex: 1; - position: relative; - overflow: hidden; -} - -.original-top .original-right.top-video .card-img { - border-radius: 20px; -} - -.original-top .original-right:before { - background-image: linear-gradient(0deg, rgba(33, 33, 33, 0), #212121); - width: 100%; - height: 100px; - content: ""; - position: absolute; - left: -220px; - top: 0; - z-index: 1; - transform: rotate(-90deg); -} - -.watch-episode { - border: 1px solid #fff; - border-radius: 4px; - margin-top: 20px; - padding: 8px; - font-size: 14px; - display: flex; - justify-content: center; - align-items: center; - position: relative; -} - -.watch-episode svg { - vertical-align: -7px; -} - -.watch-episode .watch-span strong { - font-weight: 400; -} - -.video-time { - position: absolute; - top: 10px; - right: 10px; -} - -.org-tab a { - font-weight: 700; - color: hsla(0, 0%, 100%, .7); - border-bottom: 4px solid transparent; - margin-right: 20px; - padding-bottom: 5px; -} - -.org-tab a.active { - color: #fff; - border-bottom: 4px solid #fce44d; -} - -.card.small-video-card .card-img a { - display: block; - line-height: 0; -} - -.webseries-logo path { - fill: #000; -} - -.original-popup .webseries-logo path { - fill: #fff; -} - -.black-theme .block-header-title, -.black-theme .comment-top, -.black-theme .h-dinline, -.black-theme .topic-slide, -.original-popup .ov-card .ov-card-count, -.original-popup .ov-card .ov-card-desc, -.original-popup .ov-card .ov-card-section { - color: #fff; -} - -.black-theme .bgwhite span { - color: #000; -} - -.top-video .card, -.top-video .card-detail-logo, -.video-infocus .card, -.video-infocus .card-detail-logo { - border-radius: 20px; -} - -.top-video .icon-video-big, -.video-infocus .icon-video-big { - max-width: inherit; - width: 68px; -} - -.black-bg .l-row.mb-36, -.black-bg .l-row.video-latest { - padding-bottom: 36px; -} - -.black-bg .webseries-slider-slide { - min-width: 169px; -} - -.original-top .original-right.top-video { - max-height: 272px; -} - -.original-top .original-right.top-video .card-img { - border-radius: 0 20px 20px 0; -} - -.bgImg .black-theme { - background: transparent; -} - -.bgImg .black-theme .block-header-all { - background: #212121; -} - -.menu-right .block-header-title, -.menu-right .comment-top, -.menu-right .h-dinline, -.menu-right .topic-slide { - color: #3457a7; -} - -.menu-right .card-section span svg path { - fill: rgba(0, 0, 0, .8); -} - -.gallery-slide-img { - position: relative; - line-height: 0; - display: block; - border: 1px solid #f1f1f1; - border-radius: 5px; -} - -.gallery-slide-zoom { - position: absolute; - right: 16px; - bottom: 16px; - background-color: #171717; - border-radius: 100%; - width: 2.25rem; - height: 2.25rem; - z-index: 1; -} - -.gallery-slide-container { - padding: 1.5rem 0; -} - -.gallery-slide-container.active .gallery-slide-description.short { - display: none; -} - -.gallery-slide-container.active .gallery-slide-description { - display: block; -} - -.gallery-slide-caption { - font-weight: 700; - font-size: 0; - line-height: Infinity; - margin-bottom: .3125rem; - position: relative; -} - -.gallery-slide-description { - font-size: 1rem; - line-height: 1.6875; - display: none; -} - -.gallery-slide-description.short { - display: block; -} - -.gallery-overlay { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - background-color: rgba(0, 0, 0, .9); - z-index: 99999; -} - -.gallery-overlay-nav { - box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25); - height: 3.5rem; -} - -.gallery-overlay-icon { - width: 3.5rem; - height: 3.5rem; -} - -.gallery-overlay-icon .close { - fill: #fff; - width: .875rem; - height: .875rem; -} - -.gallery-overlay-share { - position: absolute; - right: 16px; - bottom: 170px; - background-color: #fff; - border-radius: 100%; - width: 3rem; - height: 3rem; - z-index: 1; -} - -.gallery-overlay-headline { - font-weight: 700; - font-size: .875rem; - line-height: 1.5; - padding: 1.5rem 1rem; -} - -.gallery-overlay-img { - max-width: 100%; - height: 82vh; - display: flex; - align-items: center; -} - -.gallery-overlay-caption { - font-size: .75rem; - line-height: 1.75; - position: absolute; - bottom: 34px; - padding: 0 1rem; - z-index: 2; - display: none; -} - -.gallery-overlay-caption:not(.expanded) { - position: relative; -} - -.gallery-overlay-caption p { - font-size: 12px; -} - -.gallery-overlay-counter { - font-weight: 700; -} - -.gallery-overlay .active .gallery-overlay-caption, -.swiper-data.slide.smooth.active { - display: block; -} - -.swiper-container { - overflow: hidden; - position: relative; - max-width: 100%; -} - -.swiper-container .swiper { - --n: 1; - display: flex; - align-items: flex-start; - overflow-y: hidden; - width: 100%; - width: calc(var(--n)*100%); - transform: translate(calc(var(--tx, 0px) + var(--i, 0)/var(--n)*-100%)); -} - -.swiper-container .swiper>.swiper-data { - width: 100%; - width: calc(100%/var(--n)); - display: inline-block; -} - -.swiper-container .smooth { - transition: transform calc(var(--f, 1)*0.5s) ease-out; -} - -.gallery-overlay .overlay { - background: rgba(0, 0, 0, .9); - left: 0; - right: 0; - top: 0; - bottom: 0; - z-index: 1; - position: fixed; -} - -.gallery-overlay-caption .caption p a { - color: #fff; -} - -.gallery-overlay-counter { - text-align: center; - display: block; - margin: 10px 0; -} - -.gallery-overlay-caption span { - font-size: .75rem; -} - -.gallery-overlay-caption .see-more, -.gallery-overlay-caption a { - font-weight: 700; - color: #4364ff; -} - -.swiper .overlay { - display: none; -} - -.img-credits { - margin-bottom: 20px; -} - -.left-container .gallery-slide-caption { - font-size: 1.4rem; -} - -.quiz-card-title { - font: 700 1.25rem/1.5 Georgia; - font-style: italic; - margin-bottom: 1rem; -} - -.quiz-card-title:before { - content: ""; - border-left: .5rem solid #3457a7; - margin-right: .75rem; -} - -.trivia .quiz-card { - margin-bottom: 2rem; -} - -.trivia .quiz-card-opt { - padding: 1rem; -} - -.quiz-card-opt { - margin-bottom: 1.25rem; -} - -.quiz-card-big { - margin-bottom: 1rem; -} - -.quiz-card-big:before { - padding-top: 65.83333%; -} - -.quiz-list .option.answer-thumb:last-child { - margin-right: 0; -} - -.quiz-list-row { - background-color: #fff; - border-radius: .25rem; - border: .0625rem solid #171717; - padding: .8125rem 1rem .75rem; -} - -.quiz-list-row-text { - font-weight: 700; - letter-spacing: .3px; - line-height: 1.5; -} - -.quiz-list-row .right-icon path { - fill: #fff; -} - -.quiz-list-col { - flex: 0 0 47%; - margin: 0 1rem 1rem 0; - border: 1px solid #171717; - background-color: #fff; - border-radius: 4px; -} - -.quiz-list-col:before { - padding-top: 100%; -} - -.quiz-list-col:nth-child(2n) { - margin: 0 0 1rem; -} - -.quiz-list-col .content { - font-weight: 700; - line-height: 1.5; - text-align: center; -} - -.quiz-list-col .content-text { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - padding: 0 15px; - width: 100%; -} - -.quiz-list-col .right-icon { - position: absolute; - top: 10px; - right: 10px; - width: 15px; - height: 15px; - z-index: 1; -} - -.quiz-list-col .right-icon svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: .9375rem; - height: .9375rem; -} - -.quiz-list-col .right-icon svg path { - fill: #fff; -} - -.option.answer-thumb { - flex: 0 0 9.6875rem; - margin-right: 1.5625rem; -} - -.option.answer-thumb .right-icon { - position: absolute; - top: 0; - left: 0; - background-color: rgba(0, 0, 0, .8); - width: 100%; - height: 100%; - z-index: 1; -} - -.option.answer-thumb .right-icon svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 3.125rem; - height: 3.125rem; -} - -.option.answer-thumb figure { - border-radius: 5px; -} - -.option.answer-thumb figure:before { - padding-top: 100%; -} - -.option-title { - font-weight: 700; - margin-top: .625rem; - line-height: 1.5; -} - -.right-answer { - background-image: linear-gradient(0deg, #3457a7, #3457a7); - border: .0625rem solid #3457a7; -} - -.wrong-answer { - background-color: #171717; -} - -.disable { - background-color: hsla(0, 0%, 9%, .1); - border: .0625rem solid rgba(52, 87, 167, .1); - opacity: .4; -} - -.default-icon, -.default-icon-tick { - flex: 0 0 1.5rem; - height: 1.5rem; -} - -.default-icon-tick { - fill: #fff; -} - -.default-icon-tick svg { - width: 1.0625rem; -} - -.quiz-result-img:before { - padding-top: 50%; -} - -.quiz-result-title { - font-weight: 700; - background-color: #ffed59; - flex: 1; - font-size: 1.25rem; - font-style: italic; - line-height: 1.5; - padding: 1.5rem 1.125rem; -} - -.quiz-result-desc { - padding: 0 1.125rem 1.125rem; -} - -.quiz-result-share a { - flex: 0 0 1.5rem; - height: 1.5rem; - margin-right: 1.5rem; -} - -.quiz-result-share a:last-of-type { - margin-right: 0; -} - -.quiz-result-or { - line-height: 1.5; -} - -.quiz-result-or:after, -.quiz-result-or:before { - position: absolute; - top: 8px; - background-color: #171717; - content: ""; - width: 45%; - height: 1px; - opacity: .3; -} - -.quiz-result-or:before { - left: 0; -} - -.quiz-result-or:after { - right: 0; -} - -.quiz-result-retake { - font-weight: 700; - font-size: 1rem; - font-style: italic; - padding: .8125rem .625rem .8125rem 1rem; - display: inline-block; - border: 1px solid #171717; - background-color: #fff; -} - -.retake-spin { - vertical-align: sub; - margin-left: 5px; -} - -.retake-spin path { - fill: #171717; -} - -.retake-container { - background-color: #ffed59; - padding: 1.5rem 1rem; -} - -.retake-msg { - flex: 0 0 12.25rem; -} - -.retake-msg span { - font-weight: 700; - line-height: 1.5; - letter-spacing: .3px; - display: block; - margin-bottom: 1.5rem; -} - -.retake-img { - flex: 0 0 8.25rem; -} - -.quiz-card { - position: relative; -} - -.quiz-card .answer-strip { - background-color: #fff; - border-radius: .25rem; - border: .0625rem solid #171717; - padding: .5rem 1rem; - opacity: 0; - display: none; - transition: all .2s ease-in; - font: 1rem/1.4 georgia-regular; -} - -.quiz-card .answer-strip.show { - background-color: #f5f5f5; - display: block; - opacity: 1; - margin-bottom: 1rem; -} - -.right-icon { - line-height: 1; -} - -.profile-bg { - background: url(/images/desktop/profile-bg.jpg) no-repeat; - min-height: 220px; - background-size: cover; - border-bottom: 3px solid #3457a7; -} - -.profile-mt { - position: relative; -} - -.profile-left { - position: absolute; - top: 40px; - left: 0; - right: 0; -} - -.profile-left .deatil-nav a { - color: #fff; - opacity: .6; - text-transform: none; - padding-bottom: 5px; -} - -.profile-left .deatil-nav a.tab-active { - border-bottom: 3px solid #fff; - opacity: 1; -} - -.profile-left .author-strip { - min-width: 200px; -} - -.profile-left .author-strip-img { - border-radius: 0; -} - -.profile-img { - align-items: center; -} - -.profile-img .image-cont { - width: 85px; - height: 85px; - border-radius: 4px; - overflow: hidden; - margin-right: 20px; -} - -.profile-img .big-text { - color: #fff; - font-size: 2.25rem; - line-height: 1rem; - margin-bottom: 20px; -} - -.profile-img .big-text span, -.profile-img a { - font-weight: 700; -} - -.profile-img a { - color: #fff; -} - -.mt-80 { - margin-top: 80px; -} - -.profile-social { - background: #fff; - padding: 15px; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - border-radius: 4px; - max-width: 500px; -} - -.block-header-title, -.comment-top, -.h-dinline, -.profile-right, -.topic-slide { - overflow: hidden; -} - -.profile-right { - width: 70%; - background: #fff; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - border-radius: 4px; - max-width: 45rem; - padding: 15px; - margin-left: 15%; - margin-bottom: 5rem; - margin-top: 50px; -} - -.profile-right .block-header-title, -.profile-right .comment-top, -.profile-right .h-dinline, -.profile-right .topic-slide { - font-size: 16px; -} - -.profile-right .l-form-input { - color: #000; - opacity: .85; -} - -.profile-right .l-form-row:last-child { - margin-bottom: 0; -} - -.by-text { - color: rgba(0, 0, 0, .7); -} - -.bookmark-cont { - margin-top: 2rem; -} - -.bookmark-cont h2 { - width: 80%; -} - -.bookmark-cont nav { - width: 20%; - text-align: right; -} - -.bookmark-cont .navigation a { - font-weight: 700; - font-size: 1rem; - margin-left: 1rem; -} - -.bookmark-cont .navigation .tab-active { - border-bottom: 3px solid #3457a7; - color: #3457a7; -} - -.bookmark-cont .read-strip { - display: none; -} - -.bookmark-cont .read-strip.tab-active { - display: block; -} - -.checkbox { - margin-bottom: 2rem; -} - -.checkbox label { - font-size: .75rem; - margin-right: 1rem; -} - -.checkbox .check-container { - font-size: .75rem; - margin-right: 2rem; -} - -.checkbox .check-container input { - margin-right: .5rem; -} - -.author-page { - max-width: 1000px; -} - -.author-row { - flex-wrap: wrap; - margin-top: 40px; - margin-bottom: 40px; -} - -.author-row .mx-30 { - width: 47%; - margin-right: 3%; - margin-bottom: 3%; - border: 1px solid #f1f1f1; - padding: 20px; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .07); - border-radius: 4px; - overflow: hidden; -} - -.author-row .mx-30:last-child, -.author-row .mx-30:nth-child(2) { - margin-right: 0; -} - -.author-row .author-strip-img { - width: 80px; - height: 80px; - flex: 0 0 80px; - border-radius: 0; - border: 0; -} - -.brief-video .video-tittle, -.live-score, -.mt-10, -.open-header, -.penalties { - margin-top: 10px; -} - -.success-message { - background: #bcdbc5; - padding: .5rem; - color: green; - font-size: .8rem; -} - -.success-message .close-icon { - float: right; -} - -.alert-danger { - background: #e2b7b7; - padding: .5rem; - color: #a53838; - font-size: .8rem; -} - -.alert-danger .close-icon { - float: right; -} - -.quote { - margin-bottom: 1rem; - width: 50%; - margin-left: 25%; - line-height: 1.7rem; -} - -.quote-share { - text-align: center; - margin-bottom: 3rem; -} - -.share-icons svg { - width: 1.5rem; - margin-left: 10px; - margin-right: 10px; -} - -.share-text { - font-weight: 700; - margin-top: 5px; - font-size: .8rem; -} - -.microsite-quote { - text-align: center; - margin-top: 2rem; -} - -.microsite-stories { - text-align: center; - display: flex; - flex-wrap: wrap; - justify-content: center; -} - -.microsite-stories .card-body { - text-align: left; -} - -.microsite-stories .card-img.not-inline .card-img { - display: flex; -} - -.bigcard.micro-slider { - overflow: hidden; - border-radius: 1.25rem; -} - -.bigcard.micro-slider .slick-next, -.bigcard.micro-slider .slick-prev { - background-color: transparent; - width: 56px; - height: 56px; - top: 45%; -} - -.bigcard.micro-slider .slick-prev { - left: 25px; -} - -.bigcard.micro-slider .slick-next { - right: 25px; -} - -.bigcard.micro-slider .slider-next-button.white { - background-image: none; -} - -.bigcard.micro-slider .card-cont { - margin-top: 0; - border-radius: 1.25rem; -} - -.bigcard.micro-slider .icon-button { - box-shadow: none; -} - -.bigcard.micro-slider .video-play { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 3.75rem; - height: 3.75rem; - z-index: 1; -} - -.tabs-cards { - display: flex; - flex-wrap: wrap; -} - -.spectrum-logo { - margin: 0 auto 20px; - text-align: center; -} - -.spectrum-logo img { - margin: 0 auto; - width: inherit; -} - -.search-page .search-bar { - margin-bottom: 1.5rem; -} - -.search-page .search-bar span { - top: 16px; - left: 18px; - z-index: 2; -} - -.search-page .search-bar input { - color: #171717; - margin-top: 3px; - width: 87%; - height: 24px; - border: 0; - background: transparent; - border-bottom: 1px solid #ddd; - margin-left: 12px; -} - -.search-page .menu-categories .category { - margin-bottom: 1.5rem; -} - -.search-page .category-thumb img { - width: 100%; - height: auto; -} - -.search-page form { - border: 1px solid #3457a7; - border-radius: 4px; - padding: 8px 10px 6px; - background: #fafafa; -} - -.search-page form .close { - right: 1rem; - left: inherit; - top: .9rem; -} - -.search-page form .close svg { - width: 15px; -} - -.search-page form .close svg path { - fill: #000; -} - -.search-page .trending-keywords .keyword { - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - margin-right: .5rem; - margin-bottom: 1rem; - padding: .5rem; - border-radius: 4px; - font-size: 14px; - opacity: .87; - line-height: 1.5; - color: #000; -} - -.search-page .dropdown-menu .menu-right { - width: 100%; - background: none; -} - -.search-page .dropdown-menu .menu-right .common-card { - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - margin-bottom: 1rem; - padding: 0; -} - -.search-page .dropdown-menu .menu-right .common-card .card-body, -.search-page .dropdown-menu .menu-right .common-card .card-strip { - padding: 0 .5rem; -} - -.search-page .dropdown-menu .menu-right .common-card .card-img { - border-radius: 0; -} - -.search-page .common-card .card-img { - order: 1; - flex: 0 0 140px; -} - -.search-page .common-card .card-body { - margin-left: 1rem; - order: 2; - flex: 0 0 calc(100% - 157px); -} - -.search-page .common-card .card-body .card-section, -.search-page .common-card .card-body .card-title { - text-align: left; -} - -.search-page .youmay-like.section-youlike { - margin-right: 20px; -} - -.no-result .top { - font-weight: 700; - color: #000; - font-weight: 400; - line-height: 1; - padding-top: 20px; - text-align: center; -} - -.black-theme .top { - color: #fff; -} - -.captcha-container .static-header { - border-bottom: 1px solid #f2f2f2; - text-align: center; - background: #3357a7; - padding: .5rem; -} - -.captcha-container .static-header .logo svg { - width: 45px; - height: 45px; -} - -.captcha-container .static-header .logo svg path { - fill: #fff; -} - -.captcha-container .cap-title { - margin-top: 5rem; - margin-bottom: 2rem; -} - -.captcha-container .captcha-text { - display: inline-flex; - align-content: center; - align-items: center; -} - -.captcha-container .captcha-text img { - width: 6rem; -} - -.captcha-container .captcha-text input { - border: 1px solid #171717; - padding: .6rem; - border-radius: 3px; -} - -.captcha-container .submit-button { - background: #3457a7; - color: #fff; - padding: .8rem 6rem; - border: none; - margin-bottom: 3rem; - border-radius: 4px; - font-size: .9rem; - text-align: center; -} - -.captcha-container .refresh-icon svg { - width: 1rem; - margin-left: 1rem; -} - -.captcha-container .copyright { - position: fixed; - width: 100%; - bottom: 0; -} - -.captcha-container .error { - color: red; - font-size: .8rem; - margin-bottom: .5rem; -} - -a.pink-text { - color: #e02020; -} - -.power-left h1 { - color: #3457a7; - font-weight: 700; - font-weight: 400; -} - -.power-left .card-body a, -.power-left .highlight-story { - color: #000; -} - -.power-left .card-strip { - margin: .5rem 0 1rem; -} - -.power-left .card-img:before { - padding-top: 60.86207%; -} - -.power-left .card-img { - border-radius: 20px; - overflow: hidden; -} - -.power-left .video-latest { - padding: 1.5rem; -} - -.power-left .video-l-card { - flex: 0 0 100%; - max-width: 100%; -} - -.power-left .video-l-card .card-strip-read, -.power-left .video-l-card .card-summury, -.power-left .video-l-card .card-title { - color: #fff; -} - -.power-left .video-l-card .card-strip-read, -.power-left .video-l-card .card-summury { - font-family: Verdana; -} - -.power-left .video-l-card .str-bookmark svg path { - fill: #fff; -} - -.power-left .video-l-card .block-header-title, -.power-left .video-l-card .comment-top, -.power-left .video-l-card .h-dinline, -.power-left .video-l-card .topic-slide { - color: #fff; -} - -.power-left .stories-card { - min-width: 220px; - max-width: 220px; - box-shadow: none; - border: 1px solid #eee; -} - -.power-left .text-cont { - text-align: center; -} - -.highlight-star svg path { - fill: #ffed59; -} - -.video-row { - width: 100%; -} - -.videosummery { - align-items: flex-start; - border-top: 1px solid hsla(0, 0%, 100%, .3); - padding: 20px 0; -} - -.videosummery .powericon { - flex: 0 0 5%; - margin-top: 2px; -} - -.videosummery .powerrow-text { - flex: 0 0 95%; - margin-left: 10px; -} - -.videosummery .powerrow-text span:first-child { - font-weight: 700; - color: #fff; - line-height: 24px; - font-size: 16px; -} - -.videosummery .powerrow-text span:last-child { - font-family: Verdana; - color: hsla(0, 0%, 100%, .7); - line-height: 16px; - font-size: 12px; -} - -.videosummery .powerrow-text span:last-child strong { - font-weight: 700; - font-style: italic; -} - -.summery-cont { - border: 1px solid #ccc; - border-radius: 10px; - padding: 20px; -} - -.summery-cont .top { - font-weight: 700; - margin-bottom: 15px; - color: #000; -} - -.summery-cont .top a { - font-size: 14px; - color: #3457a7; -} - -.summery-cont ul li { - margin-bottom: 5px; - list-style: disc; - margin-left: 20px; - color: #3457a7; -} - -.summery-cont ul li a { - font-size: 14px; - color: #3457a7; - display: block; -} - -.summery-cont ul li a:last-child { - margin-bottom: 0; -} - -.rightsocial { - background: #fff; - box-shadow: 0 0 10px rgba(0, 0, 0, .1); - border-radius: 12px; - padding: 10px 10px 20px; - text-align: center; -} - -.rightsocial .share-strip { - width: 100%; -} - -.rightsocial .share-strip-head { - color: rgba(0, 0, 0, .7); - font-style: italic; -} - -.rightsocial .share-strip-head:after, -.rightsocial .share-strip-head:before { - font-weight: 700; - content: ". ."; - color: hsla(0, 0%, 9%, .7); - vertical-align: 3px; - font-style: normal; - font-size: 2rem; -} - -.rightsocial .share-strip-head:before { - padding-right: 1.25rem; -} - -.rightsocial .share-strip-head:after { - padding-left: 1.25rem; -} - -.rightsocial .share-strip-social { - width: 100%; - height: 1.5rem; -} - -.rightsocial .share-strip-icon { - flex: 0 0 15.053763440860216%; -} - -.rightsocial .share-strip-icon svg { - width: 1.5rem; - height: 1.5rem; -} - -.rightsocial .share-strip-icon .reddit { - width: 2.125rem; -} - -.rightsocial .share-strip-icon .bookmark { - width: 1.1875rem; -} - -.rightsocial .share-strip-text { - font-family: Verdana; - color: #000; -} - -.rightsocial .share-strip-button { - background-color: #fff; - border: 1px solid #171717; - border-radius: .625rem; - padding: .6875rem 0; - display: block; - width: 100%; -} - -.rightsocial .share-strip-button img { - max-width: 7.4375rem; - display: block; - margin: 0 auto; -} - -.did-know .menu-items { - padding: 0; - width: 100%; -} - -.did-know .block-header-all { - font-style: normal; -} - -.did-know .nav-ul .menu-right { - padding-left: 0; - background: transparent; -} - -.did-know .nav-ul .menu-right .nav-category { - font-family: Verdana; - max-height: inherit; - font-size: 15px; - line-height: 22px; - border-bottom: 0; - padding-bottom: 10px; - display: inline-block; -} - -.did-know .nav-ul .menu-right .nav-category a { - display: inline; - color: #3457a7; -} - -.did-know .nav-ul .dropdown-menu a { - border-bottom: 0; -} - -.did-know .nav-ul .nav-category a { - color: #3457a7; - border-bottom: 0; -} - -.did-know .nav-ul .nav-category a svg path { - fill: #3457a7; -} - -.did-know .nav-ul .category-cont a { - padding-left: 0; -} - -.did-know .nav-ul .nav-category { - max-height: inherit; - align-items: end; - margin-top: -20px; - margin-bottom: 10px; -} - -.did-know .nav-ul .nav-category a { - font-weight: 700; -} - -.did-know .nav-ul .nav-category a.section-n { - padding-bottom: 15px; - padding-top: 15px; - display: block; - line-height: 24px; -} - -.did-know .nav-menu li { - border-bottom: 1px solid rgba(0, 0, 0, .1); -} - -.power-left .responsive-wrap iframe { - border: 1px solid #eee; -} - -.left-container.power-left .slick-next, -.left-container.power-left .slick-prev { - background-color: transparent; - width: 60px; - top: 35%; -} - -.left-container .slider-next-button.white { - background: transparent; -} - -.power-left .icon-button { - background-color: #fff; - width: 3.5rem; - height: 3.5rem; - border-radius: 100%; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); -} - -.icon-button svg, -.power-left .icon-button { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); -} - -.h-dinline h2 { - display: inline; - font-size: 1.5rem; -} - -.power-left .mt-new { - padding-top: 10px; -} - -.power-left.pop-btn { - margin-top: -20px; -} - -.story-newslider .stories-card { - max-width: inherit; - min-width: inherit; -} - -.story-newslider .slider-next-button.white { - background: transparent; -} - -.story-newslider .slick-next, -.story-newslider .slick-prev { - width: 60px; - height: 60px; - background-color: transparent; - top: 35%; -} - -.story-newslider .slick-slide { - margin-right: 20px; -} - -.story-newslider .slick-slide:last-child { - margin-right: 0; -} - -.story-newslider .slick-track { - display: flex; -} - -:root { - --fifa-white: #fff; - --fifa-black: #000; - --fifa-table-border: #f4f4f4; - --fifa-light-gray: #f6f7fb; - --fifa-border: #dee2e6; - --fifa-eee: #eee; - --fifa-yellow: #ffeb3b; - --fifa-red: #fa0200; - --fifa-green: green; - --fifa-lp: #c8102e; - --fifa-mu: #da291c; - --fifa-blue: #4285f4; -} - -.fifa-center { - max-width: 700px; -} - -.fifa-football span { - width: 16px; - height: 16px; - margin-right: 7px; - display: inline-block; -} - -.fifa-football span:last-child { - margin-right: 0; -} - -.fifa-football .win { - background-image: url(/images/fifa/win.svg); - background-repeat: no-repeat; -} - -.fifa-football .lose { - background-image: url(/images/fifa/lose.svg); - background-repeat: no-repeat; -} - -.fifa-football .default { - background-image: url(/images/fifa/n-result.svg); - background-repeat: no-repeat; -} - -.fifa-football .draw { - background-image: url(/images/fifa/draw.svg); - background-repeat: no-repeat; -} - -.fifa-football .next-round { - background-color: var(--fifa-blue); -} - -.default-section { - background-color: #f8f9fa; - padding: 6px 8px 10px; - border-radius: 4px; - border: 1px solid #dadce0; - margin: 8px; - font-size: 12px; - line-height: 16px; - display: flex; -} - -.default-section .flex-1 { - flex: 1; -} - -.default-section .tittle-big { - font-size: 12px; - color: #000; - margin-bottom: 10px; - font-weight: 700; -} - -.fifa-status { - display: flex; - align-items: center; - margin-bottom: 5px; -} - -.fifa-status span { - margin-right: 10px; -} - -.fifa-status:last-child { - margin-bottom: 0; -} - -.fifa-status.fifa-football span { - width: 10px; - height: 10px; -} - -.fifa-status.fifa-football span:last-child { - margin-right: 8px; -} - -.world-cup .opacty-light { - color: #888; - font-family: Verdana; -} - -.world-cup .icc-no, -.world-cup .icc-team { - text-transform: none; - font-family: Verdana; -} - -.icc-no { - width: 20px; - text-align: center; -} - -.fifa-webstories .text-cont a { - line-height: 18px; -} - -.fifa-webstories .amp-stories .stories-card:nth-child(4n) { - margin-right: 0; -} - -.mb-15 { - margin-bottom: 15px; -} - -.align-center, -.article-newsletter .newsletterinput, -.r-card, -.t-arrow, -.tbd-cont .tbc-border .tbd-text, -.team-mg, -.teamcolor, -.teamcolor .team-d { - align-items: center; -} - -.tbd-cont .flex-n { - flex: 22.75%; - max-width: 175px; - position: relative; -} - -.tbd-cont .s-cont { - flex: 3%; -} - -.tbd-cont .tbc-border { - background-color: #fff; - border-radius: 8px; - border: 1px solid #dadce0; - margin: 0; - overflow: hidden; - padding: 6px 12px 7px; - position: relative; - z-index: 1; -} - -.tbd-cont .tbc-border .tbd-font { - font-size: 11px; - line-height: 16px; - color: #70757a; - margin-bottom: 5px; -} - -.tbd-cont .tbc-border .tbd-font span { - display: block; -} - -.tbd-cont .tbc-border .icon-bg { - width: 22px; - height: 22px; - margin-right: 5px; -} - -.tbd-cont .tbc-border .icon-bg img { - max-width: 20px; -} - -.tbd-cont .tbc-border .tbd-text { - font-size: 12px; - color: #70757a; -} - -.tbd-cont .tbc-border .tbd-text:last-child { - margin-top: 5px; -} - -.col-center { - justify-content: space-around; - display: flex; - flex-direction: column; -} - -.col-center:first-child .tbc-border { - margin-bottom: 12px; -} - -.col-center:first-child .tbc-border:first-child { - margin-top: 12px; -} - -.col-center:first-child .tbc-border:nth-child(2n) { - margin-bottom: 22px; -} - -.col-center:last-child { - justify-content: center; -} - -.line-border { - background-color: #fff; - border-radius: 2px; - border: 1px solid #dadce0; - border-left: 0; - z-index: 0; - width: 10px; - position: relative; -} - -.four-line .line-border { - height: 90px; -} - -.three-line .line-border { - height: 200px; -} - -.two-line .line-border { - height: 440px; -} - -.line-border:after { - width: 12px; - height: 1px; - background-color: #dadce0; - content: ""; - position: absolute; - right: -12px; - top: 50%; -} - -.finalist, -.top-heading { - position: relative; -} - -.finalist:after { - content: ""; - background-color: #4285f4; - width: 4px; - height: 98%; - position: absolute; - left: -30px; - top: 0; - bottom: 0; - margin: auto; -} - -.all-season { - display: flex; -} - -.all-season a { - flex: 1; - font-size: 14px; - text-align: center; - padding: 8px 10px; - color: #666; -} - -.all-season a.active, -.all-season a:hover { - background-color: #3457a7; -} - -.liverpool-table td { - padding: 0 5px; -} - -.liverpool td { - padding: 0 5px; - border-bottom: .1px solid #ddd; -} - -.liverpool td:last-child, -.liverpool td:nth-child(4n) { - background-color: #eee; -} - -.red-text { - color: red; -} - -.penalties span { - font-weight: 700; -} - -.graycenter { - background-color: #eee; - min-height: 40px; - text-align: center; - font-size: 14px; - color: #888; - justify-content: center; -} - -.graycenter, -.head-flex { - border-bottom: 1px solid #ddd; - display: flex; - align-items: center; -} - -.head-flex { - min-height: 70px; - background: #fff; - padding: 0 10px; -} - -.head-flex .head-one { - flex: 1; - align-items: center; -} - -.head-flex .head-one span { - line-height: 23px; - font-weight: 700; - color: #666; -} - -.head-flex .head-one img { - max-width: 40px; -} - -.head-flex .head-one:nth-child(2n) { - justify-content: center; -} - -.head-flex .head-one:last-child { - justify-content: end; -} - -.tbd-text .goal-winner { - font-weight: 700; - color: #000; - position: relative; -} - -.tbd-text .goal-winner:after { - position: absolute; - top: 2px; - right: -10px; - bottom: 0; - content: ""; - width: 0; - height: 0; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-right: 5px solid #000; -} - -.m-width-td { - width: 40px; -} - -.set-width-td { - width: 130px; -} - -.circletext, -.ext-bold { - font-weight: 700; -} - -.w-set { - max-width: 200px; -} - -.matches-container { - display: flex; - flex-direction: column; - margin: 0 auto .75rem; -} - -.matches-container:first-of-type { - margin-top: 2rem; -} - -.matches-content { - display: flex; - flex-direction: column; - padding-bottom: 1rem; - border-bottom: 1px solid #eaeaea; - margin-bottom: 1rem; - position: relative; -} - -.matches-content:last-of-type { - margin-bottom: 0; - border-bottom: 0; - padding-bottom: 0; -} - -.matches-box { - border-radius: 0; - box-shadow: 0 0 0 .0625rem #f1f1f1; - background-color: #fff; - padding: 0 .75rem .75rem; -} - -.matches-date { - background-color: #f9f9f9; - border-bottom: .0625rem solid #eaeaea; - color: #202124; - padding: .5rem .5rem .5rem .75rem; - margin: 0 -.75rem 1rem; - border-radius: 0; -} - -.matches-row { - display: flex; - align-items: center; -} - -.matches-row.box { - border-radius: .25rem; - padding: 1.5rem .625rem; - flex-wrap: wrap; - color: #999; - overflow: hidden; - justify-content: center; -} - -.matches-team { - display: flex; - align-items: center; - white-space: nowrap; - flex: 1; - overflow: hidden; -} - -.matches-team-img { - display: block; -} - -.matches-team-img img { - width: auto; -} - -.matches-vs { - margin: 0 5%; -} - -.matches-result, -.matches-venue { - flex: 1; - line-height: 1.7; -} - -.matches-result { - font-weight: 700; -} - -.matches-teamlist { - display: flex; - flex-wrap: wrap; - gap: .5rem; - margin: 0 .75rem 1rem; -} - -.matches-teamlist .team-button { - background-color: #fff; - font: .625rem/1; - font-weight: 700; - border-radius: .125rem; - padding: .375rem .625rem; - color: #000; - white-space: nowrap; - text-decoration: none; - text-align: center; - flex: 1 1 24%; - border: .0625rem solid #eaeaea; -} - -.matches-teamlist .team-button.active { - background-color: #000; - color: #fff; -} - -.matches-team-top { - text-align: center; -} - -.icc-dark-blue { - color: #3357a7; -} - -.matches-heading { - color: #000; - text-align: center; - font-size: 24px; - font-weight: 700; - margin-bottom: 10px; -} - -.white-bg { - background-color: #fff; -} - -.wc-table-container { - position: static; - display: block; - padding-top: 1rem; - white-space: normal; - width: 100%; -} - -.wc-table-block { - margin-bottom: 1rem; -} - -.wc-table-data { - border-collapse: separate; - border-spacing: 0; - width: 100%; - padding: 0; -} - -.wc-table-head { - font-weight: 700; - color: #202124; - margin-left: .875rem; - margin-bottom: .75rem; -} - -.wc-table-th { - font-weight: 700; - background-color: #eee; - color: #000; - vertical-align: middle; - white-space: nowrap; - text-align: center; - min-width: .875rem; - padding: 0 .125rem .5rem; -} - -.wc-table-th.first-th { - padding: 0 0 .5rem; - text-align: left; -} - -.wc-table-th .inner-th { - text-overflow: ellipsis; - white-space: nowrap; - font-weight: 700; - padding-top: 10px; - padding-bottom: 4px; - color: #444; -} - -.wc-table-td { - color: #202124; - line-height: 0; - height: 2.5rem; - padding: 0; - vertical-align: middle; - text-align: center; - border-top: 1px solid #dadce0; -} - -.icc-team { - display: flex; - align-items: center; -} - -.icc-team-no { - flex: 0 0 1.5625rem; - text-align: center; -} - -.icc-team-img { - background-color: #f9f9f9; - border-radius: .1875rem; - flex: 0 0 1.5625rem; -} - -.icc-team-img:before { - padding-top: 100%; -} - -.icc-team-name { - text-align: left; - max-width: 6.5rem; - padding-right: .5rem; -} - -.showmore-matches { - margin: .2rem .75rem 1rem; -} - -.bld-text, -.gold-no { - font-weight: 700; -} - -.icc-t-light { - color: #70757a; -} - -.icc-t-dark { - color: #202124; -} - -.mt-5 { - margin-top: .3rem; -} - -.block-header-svg { - width: 25px; - height: 25px; -} - -.wc-table-data.border-table th { - padding: .875rem 0; -} - -.fifa-timeline { - position: relative; - padding: 1.5625rem 0; -} - -.fifa-timeline:before { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - background-color: var(--fifa-border); - content: ""; - width: 1px; - height: 100%; - margin: auto; -} - -.fifa-timeline-block { - display: flex; - justify-content: space-between; - align-items: center; - padding: 1.5625rem 0; -} - -.fifa-timeline-circle { - background-color: var(--fifa-white); - border: 1px solid var(--fifa-border); - flex: 0 0 3.125rem; - height: 3.125rem; - display: block; - text-align: center; - border-radius: 50%; - overflow: hidden; - margin: 0 4%; - position: relative; -} - -.fifa-timeline-circle .circle-text { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - display: block; -} - -.fifa-timeline-left { - justify-content: right; -} - -.fifa-timeline-right { - justify-content: left; -} - -.fifa-timeline-left, -.fifa-timeline-right { - display: flex; - align-items: center; - flex: 1; -} - -.fifa-timeline-content { - display: flex; - flex-direction: column; - text-align: center; - align-items: center; -} - -.fifa-timeline-card, -.fifa-timeline-goal, -.fifa-timeline-team { - margin-bottom: .3125rem; -} - -.fifa-timeline-goal { - flex: 0 0 1.875rem; - width: 1.875rem; - background-color: transparent; -} - -.fifa-timeline-card { - background-color: var(--fifa-eee); - flex: 0 0 2.1875rem; - width: 1.5625rem; -} - -.fifa-timeline-card.yellow { - background-color: var(--fifa-yellow); -} - -.fifa-timeline-card.red { - background-color: var(--fifa-red); -} - -.fifa-timeline-team { - color: #70757a; -} - -.fifa-timeline .t-shirt { - width: 6.25rem; - height: 6.25rem; - display: block; -} - -.fifa-timeline .lp svg, -.fifa-timeline .mu svg { - fill: currentColor; -} - -.tshirt-white svg g { - stroke: #666; -} - -.statistics-cont .statisticshead { - font-weight: 700; - color: #444; - text-align: center; -} - -.statistics-cont .statistics-main { - display: flex; - align-items: center; -} - -.statistics-cont .statistics-main .flex-s { - flex: 0 0 10%; - text-align: center; -} - -.statistics-cont .statistics-main .flex-m { - flex: 0 0 80%; - background-color: #999; - height: 8px; - text-align: center; - border-radius: 5px; - overflow: hidden; - display: flex; - border: 1px solid #eee; -} - -.statistics-cont .statistics-main .flex-m .flex-half { - flex: 0 0 50%; - display: flex; -} - -.statistics-cont .statistics-main .flex-m .flex-half span { - height: 5px; - display: block; -} - -.statistics-cont .statistics-main .flex-m .flex-half:first-child { - justify-content: flex-end; -} - -.statistics-cont .statistics-main .flex-m .flex-half:last-child { - justify-content: flex-start; -} - -.matches-vs { - flex: 0 0 10%; - position: relative; -} - -.m-10 { - margin: 0 10px; -} - -.gold-no.active { - color: #000; - position: relative; -} - -.gold-no.active:after { - position: absolute; - top: 13px; - right: -13px; - bottom: 0; - content: ""; - width: 0; - height: 0; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-right: 5px solid #3357a7; -} - -.gold-no:first-child.active:after { - position: absolute; - top: 13px; - bottom: 0; - left: -13px; - transform: rotateY(180deg); -} - -.liver-two { - padding: 5px; -} - -.mr-5 { - margin-right: 5px; -} - -.mr-10 { - margin-right: 10px; -} - -.border-b { - border-bottom: 1px solid #dadce0; -} - -.liverpool-table .wc-table-th { - width: 33%; -} - -.green-hl { - color: #16b7c8; -} - -.red-hl { - color: red; -} - -.fifa-timeline-left.mu, -.fifa-timeline-right.lp { - justify-content: center; -} - -.gray-bg { - background-color: var(--fifa-light-gray); -} - -.alter-table { - padding: 0; - border: 1px solid var(--fifa-border); - border-top: 0; -} - -.alter-table thead { - background-color: var(--fifa-light-gray); -} - -.alter-table th { - font-weight: 700; - height: 2.5rem; -} - -.alter-table td, -.alter-table th { - border-bottom: 1px solid var(--fifa-border); - padding: 0 .875rem; -} - -.alter-table td { - white-space: nowrap; - word-break: break-word; - border-top: 0; - font-size: 14px; -} - -.alter-table tr:last-child>td { - border-bottom: 0; -} - -.alter-table .table-team-img { - margin-right: 0; -} - -.team-row { - font-weight: 700; - color: #444; - font-size: 15px; - margin-right: auto; - display: flex; - align-items: center; - text-transform: uppercase; -} - -.team-row span { - font-size: 13px; - color: #888; - margin-left: 5px; - text-decoration: line-through; -} - -.pt-height { - padding: 10px 5px 10px 15px; - position: relative; -} - -.l-borderset { - content: ""; - width: 4px; - height: 98%; - position: absolute; - left: -6px; - top: 0; - bottom: 0; - margin: auto; -} - -.player-statistics.alter-table { - border-top: 1px solid var(--fifa-border); -} - -.player-statistics.alter-table tr:last-child>td { - border-bottom: 1px solid var(--fifa-border); -} - -.fifa-table-responsive { - overflow-x: auto; -} - -.topassists-bg .wc-table-td, -.topred-bg .wc-table-td, -.topscorers-bg .wc-table-td { - color: #fff; -} - -.topscorers-bg { - background-color: var(--fifa-blue); -} - -.topassists-bg { - background-color: var(--fifa-green); -} - -.topyellow-bg { - background-color: var(--fifa-yellow); -} - -.topred-bg { - background-color: var(--fifa-red); -} - -.teamcolor .team-d { - color: #444; - flex: 1; - justify-content: center; -} - -.teamcolor .team-d span { - width: 10px; - height: 10px; - margin-right: 8px; - border: .5px solid var(--fifa-border); -} - -.head-one .gold-no.active { - margin: 0; - color: #000; -} - -.head-one .gold-no.active:after { - top: 8px; -} - -.head-one .line-space { - margin: 0 5px; -} - -.line-img { - display: flex; - align-items: center; - flex: 1; - justify-content: center; -} - -.line-img img { - width: auto; - margin-right: 10px; -} - -.description .fifa-center { - max-width: inherit; -} - -.font-l { - color: #888; - margin-right: 20px; - width: 12px; -} - -.lineups-cont .fifa-status { - align-items: flex-start; -} - -.borderwhite { - background-color: #dee2e6; -} - -.team-bgs { - color: #444; - display: flex; - align-items: center; -} - -.team-bgs span { - width: 10px; - height: 10px; - margin-right: 8px; - border: .5px solid var(--fifa-border); - display: block; -} - -.font-11 { - font-size: 11px; -} - -.subst-icon { - flex: 0 0 1.875rem; - width: 1.875rem; - background-color: transparent; -} - -.subst-icon svg { - width: 30px; - height: 30px; -} - -.circletext { - color: #000; - position: absolute; - left: 0; - right: 0; - bottom: 2px; - z-index: 1; - width: 36px; - height: 36px; - background: #f1f1f1; - border-radius: 50px; - margin: 0 auto; - display: flex; - align-items: center; - justify-content: center; -} - -.circle-main { - position: absolute; - width: 40px; - height: 40px; - animation: colors 4s infinite; - right: 10px; - top: -40px; -} - -#halfclip { - width: 50%; - overflow: hidden; - transform-origin: left center; - animation: cliprotate 16s steps(2) infinite; - -webkit-animation: cliprotate 16s steps(2) infinite; - display: none; -} - -#halfclip, -.halfcircle { - height: 100%; - right: 0; - position: absolute; -} - -.halfcircle { - box-sizing: border-box; - border-color: #3457a7 transparent transparent #3457a7; - border-style: solid; - border-width: 2px; - border-radius: 50%; - display: block; -} - -#clipped { - width: 200%; - -webkit-animation: rotate 8s linear infinite; - animation: rotate 8s linear infinite; -} - -#fixed { - width: 100%; - transform: rotate(135deg); - -webkit-animation: showfixed 16s steps(2) infinite; - animation: showfixed 16s steps(2) infinite; - display: none; -} - -@keyframes cliprotate { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(1turn); - transform: rotate(1turn); - } -} - -@keyframes rotate { - 0% { - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - } - - to { - -webkit-transform: rotate(135deg); - transform: rotate(135deg); - } -} - -@keyframes showfixed { - 0% { - opacity: 0; - } - - 49% { - opacity: 0; - } - - 50% { - opacity: 1; - } - - to { - opacity: 1; - } -} - -.al-flex { - flex: 0 0 80%; -} - -.ar-flex { - position: relative; -} - -.mt-ab { - margin-top: -30px; - margin-bottom: 40px; -} - -.cut-text { - font-weight: 700; - font-size: 13px; - color: #fff; - margin-left: 5px; -} - -.team-mg { - padding: 5px 20px; - min-height: 58px; - width: 100%; -} - -.teamcircle { - padding: 5px 10px 0; - height: 87.3%; -} - -.circle-no .player-no { - color: #000; -} - -.circlenwhite .player-no { - color: #fff; -} - -.goal { - position: absolute; - top: 3px; - right: 0; - bottom: 0; - left: 9px; - background-color: #fff; - border: 1px solid #000; - text-align: center; - z-index: 1; - border-radius: 50%; - display: block; - line-height: 1.4; - width: 17px; - height: 17px; -} - -.live-loader { - width: 10%; - height: .1875rem; - display: block; - position: relative; - overflow: hidden; - margin-top: .3rem; -} - -.live-loader:after { - position: absolute; - top: 0; - left: 0; - content: ""; - width: .9375rem; - height: .1875rem; - background-color: #3357a7; - -webkit-animation: moveline 1s linear infinite alternate; - animation: moveline 1s linear infinite alternate; -} - -@keyframes moveline { - 0% { - left: 0; - transform: translateX(-1%); - } - - to { - left: 100%; - transform: translateX(-99%); - } -} - -.third-card { - border-top: 1px solid var(--fifa-table-border); - padding-top: 10px; -} - -.th-card { - margin-bottom: 5px; -} - -.ps-bttom { - position: relative; - margin-bottom: 154px; -} - -.ps-bttom .third-card { - position: absolute; - bottom: -145px; - left: 0; - width: 100%; -} - -.player-substitutes { - background-color: #fff; - padding: 10px; - border: 1px solid var(--fifa-border); - border-top: 0; -} - -.player-substitutes .substitutes-inner { - border-radius: 5px; - overflow: hidden; - padding: 10px; - box-shadow: 0 1px 6px rgba(32, 33, 36, .3); -} - -.player-substitutes .substitutes-inner .alter-table, -.player-substitutes .substitutes-inner .alter-table td { - border: 0; -} - -.player-substitutes .substitutes-inner .alter-table td { - padding-left: 0; -} - -.subst-heading { - color: #000; - text-transform: uppercase; - margin-left: auto; - margin-right: auto; -} - -.text-right .font-l { - margin-left: 10px; - margin-right: 0; -} - -.alter-table:last-child .t-arrow { - justify-content: end; -} - -.penalties { - color: #000; - position: absolute; - right: 0; - left: 0; - bottom: -50px; - margin: 0 auto 0 -16px; -} - -.penalties span { - display: block; -} - -.team-divider { - width: 100%; - display: block; - height: 57px; -} - -.teamcircle div:empty { - font-size: 0; - line-height: 0; - display: none; - padding-bottom: 0; -} - -.player-lineup:before { - padding-top: 138%; - padding-top: 200%; -} - -.player-lineup-inner { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - margin: auto; - width: 100%; - height: 100%; - display: flex; - flex-direction: column; - justify-content: space-between; - align-items: flex-start; - overflow: hidden; -} - -.player-lineup-bottom, -.player-lineup-top { - padding: 0 1rem; - color: #fff; - flex: 0 0 6%; - align-self: stretch; -} - -.player-lineup-img { - flex: 0 0 1.5rem; - margin-right: .5rem; -} - -.player-lineup-img:before { - padding-top: 100%; -} - -.player-lineup-count { - font-weight: 700; -} - -.player-lineup-center { - flex: 1; - align-self: stretch; -} - -.player-card { - display: flex; - justify-content: center; - flex-wrap: wrap; -} - -.player-card-circle { - display: inline-block; - flex: 0 0 40px; - height: 40px; - border: 1px solid #fff; - border-radius: 50%; - margin-bottom: .375rem; -} - -.player-card-circle .icon { - border-radius: 50%; - width: 1.0625rem; - height: 1.0625rem; - position: absolute; - bottom: -.1875rem; - z-index: 1; -} - -.player-card-circle .icon svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 100%; - height: 100%; -} - -.player-card-circle .icon-football { - left: -.625rem; -} - -.player-card-circle .icon-football .goal { - position: absolute; - top: 3px; - right: 0; - bottom: 0; - left: 6px; - background-color: #fff; - border: .125rem solid #000; - text-align: center; - z-index: 1; - border-radius: 50%; - display: block; - line-height: 1.4; - width: 17px; - height: 17px; -} - -.player-card-circle .player-no { - font-weight: 700; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - color: #000; -} - -.player-card-circle .icon-down { - background-color: #fff; - right: -.625rem; -} - -.player-card-circle .card { - position: absolute; - width: 8px; - height: 12px; - overflow: hidden; - top: -3px; - z-index: 1; - display: block; -} - -.player-card-circle .card.yellow { - background-color: #ff0; - right: -.3125rem; - transform: rotate(9deg); -} - -.player-card-circle .card.red { - background-color: red; - left: -.3125rem; - transform: rotate(-18deg); -} - -.player-card-name { - color: #fff; - text-align: center; - line-height: 1.2; -} - -.team-player { - display: flex; - flex-direction: column; - justify-content: space-between; - height: 45%; -} - -.team-player-divider { - display: block; - width: 100%; - height: 10%; -} - -.alert .r-card, -.text-left .r-card { - margin-left: 10px; - margin-right: 10px; -} - -.r-card .card { - position: relative; - width: 8px; - height: 12px; - overflow: hidden; - z-index: 1; - display: block; -} - -.r-card .yellow { - background-color: var(--fifa-yellow); -} - -.r-card .red { - background-color: var(--fifa-red); -} - -.r-card .f-ball { - width: 15px; - height: 15px; -} - -.ml-5 { - margin-left: 5px; -} - -.head-one { - position: relative; -} - -.head-one .penalties.red-text { - color: red; - font-size: 11px; - font-family: Verdana; - bottom: auto; - top: 20px; -} - -.winteams { - border-bottom: 1px solid #ddd; - padding-bottom: 10px; -} - -.winteams .head-flex { - border-bottom: 0; -} - -.mt10 { - margin-top: -10px; -} - -.ipl-spalash { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - margin: 50px auto 10px; - position: relative; - max-width: 70.625rem; -} - -.ipl-spalash-2023 { - position: absolute; - z-index: 1; - left: 18%; - top: 30%; - text-align: left; - width: 17.875rem; -} - -.ipl-spalash-2023 .text-1 { - font-weight: 700; - font-size: 3.7rem; - text-transform: uppercase; - font-weight: 900; - color: #3457a7; - line-height: 1; - text-shadow: 0 1px 2px rgba(0, 0, 0, .5); -} - -.ipl-spalash-bottom { - width: 100%; - position: relative; -} - -.ipl-spalash-player { - width: 11.875rem; - position: relative; - z-index: 1; - margin-bottom: -3.125rem; -} - -.ipl-spalash-player .shadow { - position: absolute; - top: 0; - right: -15px; - bottom: 0; - opacity: .2; -} - -.ipl-spalash-player svg { - width: 100%; - height: 100%; -} - -.ipl-spalash-ground { - width: 80%; - background-color: #36b649; - height: 9.375rem; - border-radius: 100%; - position: relative; -} - -.ipl-spalash-msg { - width: 100%; - color: #c7c7c7; - text-align: center; - margin: 1.25rem auto 3.125rem; - font-size: .9375rem; -} - -.daily-story-header.sports-story-header { - font-size: 22px; -} - -.influencer { - width: 100%; -} - -.influencer-pattern { - background-image: url(/images/subtle_white_feathers.png); - background-repeat: repeat; -} - -.influencer-heading { - font-weight: 700; - flex: 1; - text-align: center; - position: relative; - padding-bottom: 1rem; - color: #3457a7; -} - -.influencer-heading:after { - position: absolute; - right: 0; - bottom: 0; - left: 0; - background-color: #ffed59; - content: ""; - width: 3.125rem; - height: .25rem; - z-index: 1; - margin: auto; -} - -.influencer-top { - max-width: 70.625rem; - padding: 1.875rem 0; -} - -.influencer-top .card-img:before { - padding-bottom: 56.25%; -} - -.influencer-top .card-img iframe { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - margin: auto; - width: 100%; - height: 100%; - object-fit: fill; -} - -.influencer-top .influencer-tag-anchor { - background-color: #ddd; -} - -.influencer-profile { - flex-direction: column; - flex-wrap: wrap; - align-items: center; - text-align: center; - margin-left: auto; - margin-right: auto; - max-width: 50rem; -} - -.influencer-profile-right { - flex: 1; - text-align: left; - margin-left: 1rem; - width: 100%; -} - -.influencer-profile-img { - width: 9.375rem; - height: 9.375rem; - border-radius: 50%; -} - -.influencer-profile-img:before { - padding-top: 100%; -} - -.influencer-profile-editor { - font-weight: 700; -} - -.influencer-profile-date { - font-weight: 700; - color: rgba(0, 0, 0, .4); - margin-left: .1875rem; -} - -.influencer-profile-desc { - line-height: 1.5; - color: rgba(0, 0, 0, .6); -} - -.influencer-profile-social { - align-items: center; -} - -.influencer-profile-social a { - width: 2rem; - height: 2rem; - margin-right: .9375rem; -} - -.influencer-profile-social a.instagram { - border-radius: 50%; -} - -.influencer-profile-social a img, -.influencer-profile-social a svg { - width: 100%; - height: 100%; -} - -.influencer-video:before { - padding-bottom: 56.25%; -} - -.influencer-video iframe { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - object-fit: fill; - margin: auto; -} - -.influencer-load-more { - font-weight: 700; - background-color: #3457a7; - border-radius: .3125rem; - color: #fff; - padding: 1rem 1.5rem .75rem; - text-align: center; - text-shadow: 0 -1px 0 rgba(0, 0, 0, .4); - border-left: 1px solid #2e4476; - box-shadow: 0 5px 0 0 #2e4476; - cursor: pointer; - transition: all 0s ease-out; -} - -.influencer-load-more:hover { - box-shadow: 0 2px 0 0 #2e4476; -} - -.influencer-tag { - margin-bottom: .3125rem; - max-height: 3.25rem; -} - -.influencer-tag-anchor { - background-color: #ededed; - color: #747474; - border-radius: .75rem; - font-size: .66rem; - line-height: 0; - padding: .625rem .5rem; - margin: 0 .3125rem .3125rem 0; - align-self: flex-start; -} - -.influencer-tag-anchor:last-child { - margin: 0 0 .3125rem; -} - -.influencer .row-view { - display: flex; - align-items: center; -} - -.influencer .row-view .influencer-profile { - flex: 0 0 35%; - max-width: 35%; - margin-right: 5%; - margin-bottom: 0; -} - -.influencer .row-view .card-img { - flex: 0 0 60%; - max-width: 60%; -} - -.circle-cont { - display: flex; - flex-wrap: wrap; -} - -.circle-width { - width: 250px; - margin-right: 25px; - margin-bottom: 30px; - text-align: center; -} - -.circle-width:last-child { - margin-right: 0; -} - -.circle-width .text { - font-weight: 700; - color: #000; - line-height: 28px; - display: block; - margin-top: .3125rem; -} - -.circle-width .img-row { - display: block; - border-radius: 50%; - overflow: hidden; - width: 250px; - height: 250px; -} - -.circle-cont.influencers-cont .art-social { - line-height: 0; -} - -.circle-cont.influencers-cont .art-social a { - margin-right: 15px; - flex: 0 0 1.875rem; - height: 1.875rem; - position: relative; -} - -.circle-cont.influencers-cont .art-social a img, -.circle-cont.influencers-cont .art-social a svg { - width: 100%; - height: 100%; -} - -.circle-cont.influencers-cont .art-social a.instagram { - border-radius: 50%; - overflow: hidden; - margin-right: 0; -} - -.circle-cont.influencers-cont .circle-width { - flex: 0 0 17.5rem; - margin: 0 3% 3.125rem; -} - -.circle-cont.influencers-cont .circle-width .text { - line-height: 1.2; - margin-top: 0; - margin-bottom: .3125rem; -} - -.circle-cont.influencers-cont .img-row { - position: relative; - width: 9.375rem; - height: 9.375rem; -} - -.circle-cont.influencers-cont .img-row:before { - padding-top: 100%; -} - -.circle-cont.influencers-cont .circle-width-desc { - line-height: 1.5; - height: 63px; - color: rgba(0, 0, 0, .7); - display: -webkit-box; - max-width: 15rem; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; -} - -.block-header { - position: relative; - overflow: hidden; -} - -.block-header-title, -.comment-top, -.h-dinline, -.topic-slide { - font-weight: 700; - padding-left: 0; - width: 100%; -} - -.block-header-title span, -.comment-top span, -.h-dinline span, -.topic-slide span { - font-family: Verdana; - font-weight: 400; -} - -.block-header-title:not(.nobar):not(.topic-slide), -.comment-top:not(.nobar):not(.topic-slide), -.h-dinline:not(.nobar):not(.topic-slide), -.topic-slide:not(.nobar):not(.topic-slide) { - padding-left: 1rem; -} - -.block-header-title:not(.nobar):not(.topic-slide):before, -.comment-top:not(.nobar):not(.topic-slide):before, -.h-dinline:not(.nobar):not(.topic-slide):before, -.topic-slide:not(.nobar):not(.topic-slide):before { - position: absolute; - top: 0; - bottom: 0; - left: 0; - content: ""; - background: #fce44d; - width: .5rem; - height: 100%; -} - -.block-header-all { - font-weight: 700; - line-height: 1.214; - font-style: italic; -} - -.card { - background-clip: border-box; - min-width: 0; - word-wrap: break-word; -} - -.card-img { - order: 1; -} - -.card-body { - order: 2; - flex: 1 0 auto; - min-height: 1px; -} - -.card-section { - font-weight: 700; - margin-bottom: .5rem; - opacity: .87; -} - -.card-section, -.card-strip, -.card-summury { - opacity: .87; -} - -.card-detail:after { - clear: both; - content: ""; - display: block; -} - -.card-detail-logo { - width: 3.75rem; - height: 6.125rem; -} - -.card-detail-logo:before { - padding-top: 163.33333%; -} - -.card-caption { - position: absolute; - right: 0; - bottom: 0; - left: 0; - background-image: linear-gradient(180deg, transparent, #000); - padding: 1rem; - z-index: 1; -} - -.card-caption-title { - font-weight: 700; -} - -.card-strip { - order: 3; - flex: 1 0 auto; -} - -.card-strip-bookmark { - max-width: 1.5rem; - height: 1.5rem; -} - -.card-strip-social a { - width: 1.5rem; - margin-right: 1.5rem; - line-height: 0; -} - -.card-strip-social .copy { - width: 1.125rem; -} - -.card-strip-social path { - fill: #fff; -} - -.icon-clock { - max-width: .9375rem; - height: .9375rem; - vertical-align: sub; -} - -.icon-arrow { - max-width: 1.5rem; - height: 1.5rem; - fill: #3457a7; - vertical-align: middle; - margin-left: 5px; -} - -.icon-video-big { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - max-width: 2.3125rem; - z-index: 1; -} - -.icon-section { - max-width: 1.875rem; - height: 1.875rem; - border-radius: 100%; - vertical-align: -10px; - margin: -.0625rem .5rem 0 0; -} - -.icon-story { - max-width: .9375rem; - margin-right: .5rem; - fill: #171717; - vertical-align: bottom; -} - -a.share-strip-bookmark svg { - width: 1.625rem; - height: 1.625rem; -} - -.block-header-title:after, -.comment-top:after, -.h-dinline:after, -.topic-slide:after { - position: absolute; - top: 50%; - bottom: 0; - content: ""; - background: #fce44d; - width: 100%; - height: 4px; - margin-left: 10px; -} - -.block-header-all { - background: #fff; - position: absolute; - right: 0; - top: 0; - padding: 5px 0 10px 20px; -} - -.topic-col .block-header-all { - background: transparent; -} - -.daily-story-right .block-header-title:after, -.daily-story-right .comment-top:after, -.daily-story-right .h-dinline:after, -.daily-story-right .topic-slide:after, -.topic-col .block-header-title:after, -.topic-col .comment-top:after, -.topic-col .h-dinline:after, -.topic-col .topic-slide:after, -.video-latest-right .block-header-title:after, -.video-latest-right .comment-top:after, -.video-latest-right .h-dinline:after, -.video-latest-right .topic-slide:after { - display: none; -} - -.black-theme .block-header-all { - background: #000; -} - -.black-theme .icon-arrow, -.black-theme .icon-arrow path:first-child { - fill: #3457a7; -} - -.black-theme .icon-arrow path { - fill: #fff; -} - -.black-theme .webseries-logo path { - fill: #fff; -} - -.episodes-block .align-items-start.h-dinline, -.episodes-block .align-items-start.mb-24, -.episodes-block .align-items-start.original-top, -.episodes-block .org-tab a.align-items-start, -.episodes-block .video-infocus .align-items-start.card-img, -.episodes-block .video-infocus .align-items-start.card-strip, -.org-tab .episodes-block a.align-items-start, -.video-infocus .episodes-block .align-items-start.card-img, -.video-infocus .episodes-block .align-items-start.card-strip { - position: relative; -} - -.episodes-block .block-header-all { - background: #171717; -} - -.partner-carousel { - box-shadow: none; - margin-bottom: 0; -} - -.partner-carousel .slider-next-button { - max-width: 2.5rem; -} - -.partner-carousel .slider-next-button .icon-button { - width: 2.5rem; - height: 2.5rem; -} - -.episodes-block.dark-theme { - color: #fff; -} - -.episodes-block.dark-theme a { - color: inherit; -} - -.widget-webseries_episodes .episodes-tab { - border-bottom: 1px solid rgba(0, 0, 0, .2); - display: none; -} - -.widget-webseries_episodes .episodes-tab a { - color: #000; -} - -.widget-top-story .top-trending .card-scene { - min-width: 16.4375rem; - max-width: 16.4375rem; -} - -.youmay-like .card-scene { - min-width: 17.4375rem; - max-width: 17.4375rem; -} - -.common-card .card-scene { - width: 11.875rem; -} - -.trending-widgets .youmay-like .card-scene { - min-width: 13.75rem; - max-width: 13.75rem; -} - -.youmay-like.section-youlike .card-scene { - min-width: 15.9375rem; - max-width: 15.9375rem; -} - -.card-scene { - perspective: 600px; - flex: 1; -} - -.card-scene .flip-card { - transition: transform 1s; - transform-style: preserve-3d; - cursor: pointer; - position: relative; - width: 100%; -} - -.card-scene .flip-card.is-flipped { - transform: rotateY(180deg) translateZ(1px); -} - -.card-scene .flip-card.is-flipped .card-front { - z-index: -1; -} - -.card-scene .flip-card .card-face { - position: relative; - height: 100%; - width: 100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.card-scene .flip-card .card-back { - transform: rotateY(180deg) translateZ(1px); - position: absolute; - top: 0; - z-index: 1; -} - -.youmay-like .audio-card { - width: 15.9375rem; -} - -.similar-stories .youmay-like .card, -.trending-widgets .youmay-like .audio-card { - min-width: 13rem; - max-width: 13rem; -} - -.similar-stories .youmay-like .card { - margin-right: .75rem; - margin-bottom: .9rem; -} - -.audio-card { - background-color: #0045e6; - flex-direction: column; - word-wrap: break-word; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - border-radius: .5rem; - overflow: hidden; - width: 100%; - height: 100%; - position: relative; -} - -.audio-card, -.audio-card-body { - display: flex; - justify-content: center; -} - -.audio-card-body { - flex: 1 0 auto; - min-height: 1px; - padding: .75rem; - flex-wrap: wrap; - align-items: center; - flex-direction: column; -} - -.audio-card-headline { - font-weight: 700; - color: #fff; - line-height: 1.5; - text-align: center; - min-height: 3.375rem; - max-height: 3.375rem; - overflow: hidden; -} - -.audio-card-read { - font-weight: 700; - background-color: #fff; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .3); - border-radius: 1.5625rem; - color: #3457a7; - padding: .45rem .9375rem; - width: auto; -} - -.dropdown-menu a.audio-card-read { - font-size: .75rem; - color: #3457a7; - width: auto; -} - -.quick-poll { - background-color: #fff; - box-shadow: 0 .3125rem 1.25rem 0 rgba(0, 0, 0, .1); - padding-top: 1rem; -} - -.quick-poll .options .option { - font-weight: 700; - background-color: #fff; - border: 1px solid #202020; - padding: .875rem 1rem; -} - -.l-form-input, -.newsletter-input { - background-color: #212121; - border: .0625rem solid hsla(0, 0%, 100%, .3); - padding: .8125rem 3.125rem .75rem 1rem; -} - -.l-form-button, -.newsletter-button { - position: absolute; - top: 1px; - right: 1px; - width: 2.875rem; - height: 2.875rem; - background-image: linear-gradient(0deg, #3457a7, #3457a7); - z-index: 1; - border: 0; - border-top-right-radius: .125rem; - border-bottom-right-radius: .125rem; -} - -.l-form-button svg, -.newsletter-button svg { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 1.5rem; -} - -.l-form-button:focus, -.newsletter-button:focus { - outline: none; -} - -.slick-slide { - float: left; -} - -.optical-widget-slider { - display: flex; - flex-wrap: wrap; -} - -.optical-widget-card { - background-color: #fff; - border-radius: .25rem; - background-clip: border-box; - box-shadow: 0 0 .625rem 0 rgba(0, 0, 0, .1); - flex: 0 0 13rem; - margin: 0 .9rem .9rem 0; - word-wrap: break-word; - display: flex; - flex-direction: column; -} - -.optical-widget-card:nth-child(5n + 5) { - margin: 0 0 .9rem; -} - -.optical-widget-card-img { - border-radius: .3125rem .3125rem 0 0; -} - -.optical-widget-card-img:before { - padding-top: 76.66667%; -} - -.optical-widget-card-body { - background-color: #fff; - padding: .5rem; -} - -.optical-widget-card-title { - color: #000; - line-height: 1.5; -} - -.optical-widget-more { - display: flex; - text-align: center; - justify-content: center; - margin: 1.875rem auto 2.5rem; -} - -.optical-widget-more a { - font-weight: 700; - background-color: #3457a7; - border-radius: .25rem; - border: 1px solid #3457a7; - padding: .875rem 1rem; - cursor: pointer; - color: #fff; - max-width: 300px; - margin: 0 auto; -} - -.comments-textarea { - font-family: Verdana; - font-size: 16px; - background-color: #fff; - border: 1px solid #3457a7; - padding: .875rem; - min-height: 5.625rem; -} - -.comments .narration-button { - font-weight: 700; - background-color: #3457a7; - border-radius: .25rem; - border: 1px solid #3457a7; - padding: .875rem 1rem; - cursor: pointer; - color: #fff; - max-width: 300px; - margin: 0 auto; -} - -.comments .narration-button span:first-of-type { - line-height: 1.3125rem; -} - -.comments .narration-button span:last-of-type { - line-height: .9375rem; -} - -.comment-title { - line-height: 1.2; - letter-spacing: .71px; - padding-bottom: 4px; -} - -.comment-desc { - line-height: 1.43; - letter-spacing: .25px; -} - -.comment-form { - margin-top: .625rem; -} - -.comment-form-textarea { - border-radius: 8px; - border: 1px solid #dcdcdc; - flex: 1 1 100%; - padding: .75em 1em; - color: #000; - outline: 0; -} - -.comment-form-sumbit { - font-weight: 700; - background-color: #3457a7; - border-radius: 24px; - line-height: 1.63; - padding: 6px 30px; - border: none; - text-transform: uppercase; - outline: 0; -} - -.comment-post-left { - background-color: #d8d8d8; - border-radius: 16px; - flex: 0 0 40px; - height: 40px; - margin-right: 15px; - border: 1px solid #eee; -} - -.comment-post-left:before { - padding-top: 100%; -} - -.comment-post-right { - flex: 1 1 80%; -} - -.comment-post-box { - border-radius: 21px; - background-color: #e2e2e2; - padding: 8px 16px; - margin-bottom: .625rem; -} - -.comment-post-name { - flex: 0 1 85%; - line-height: 1.43; - padding-bottom: 4px; - font-family: Georgia; -} - -.comment-post-time { - position: absolute; - top: 8px; - right: 17px; - font-style: italic; -} - -.comment-post-desc { - flex: 0 1 85%; - line-height: 1.43; -} - -.comment-post-links button { - background-color: transparent; - border: 0; - color: inherit; - padding: 10px; - line-height: 1; -} - -.comment-post-links span { - margin-bottom: 3px; -} - -.comment-post.nested-comment { - padding-left: 47px; -} - -.comment-button { - text-transform: uppercase; - border: 1px solid #3457a7; - border-radius: 24px; - font-size: .8125em; - line-height: 1.23; - padding: 11px 22px 10px; - color: #3457a7; -} - -.comment-button:first-of-type { - margin-left: 15%; -} - -.comment-reply-form { - padding: 0 0 0 50px; -} - -.comment-reply-form .comment-form-textarea { - line-height: 1; - height: 44px; -} - -.comment-center { - margin: 0 auto; -} - -.comment-center .comment-button:first-of-type { - margin-left: 0; - margin-top: 20px; -} - -@keyframes placeHolderShimmer { - 0% { - background-position: -468px 0; - } - - to { - background-position: 468px 0; - } -} - -.anime-bg { - animation: placeHolderShimmer 1s linear infinite forwards; - -webkit-animation: placeHolderShimmer 1s linear infinite forwards; - background: #f6f7f8; - background: #eee; - background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eee), color-stop(24%, #ddd), color-stop(36%, #eee)); - background: -webkit-linear-gradient(left, #eee 8%, #ddd 24%, #eee 36%); - background: linear-gradient(90deg, #eee 8%, #ddd 24%, #eee 36%); - background-size: 800px 104px; - height: 51px; - position: relative; -} - -.anime.black-theme { - padding-top: 1px; -} - -.anime.black-theme .anime-bg { - animation: placeHolderShimmer 1s linear infinite forwards; - -webkit-animation: placeHolderShimmer 1s linear infinite forwards; - background: #f6f7f8; - background: #2b2929; - background: -webkit-gradient(linear, left top, right top, color-stop(8%, #2b2929), color-stop(24%, #3d3b3b), color-stop(36%, #2b2929)); - background: -webkit-linear-gradient(left, #2b2929 8%, #3d3b3b 24%, #2b2929 36%); - background: linear-gradient(90deg, #2b2929 8%, #3d3b3b 24%, #2b2929 36%); - background-size: 800px 104px; - height: 51px; - position: relative; -} - -.anime .category { - width: 30%; - margin-top: 27px; - margin-left: 3%; -} - -.anime .round { - border-radius: 50%; - margin-left: 1.5rem; -} - -.anime .small-card .right-cont { - min-height: 14vh; -} - -.p-relative { - position: relative; -} - -.overlap-div { - background: #fff; - height: 9rem; - width: 90%; - margin-left: 5%; - position: absolute; - top: 12rem; - z-index: 1; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); -} - -.home-cards { - margin-top: 8rem; -} - -.slider { - overflow-x: scroll; - -webkit-overflow-scrolling: touch; -} - -.slider::-webkit-scrollbar { - display: none; -} - -.slider .slide { - flex: 0 0 13.125rem; - margin-right: 1rem; - padding: 1rem; - border-radius: 4px; - background: #171717; -} - -.slider .slide:before { - padding-top: 6.19048%; -} - -.anime-color { - background: #f6f7f8; - background: #eee; - background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eee), color-stop(24%, #ddd), color-stop(36%, #eee)); - background: -webkit-linear-gradient(left, #eee 8%, #ddd 24%, #eee 36%); - background: linear-gradient(90deg, #eee 8%, #ddd 24%, #eee 36%); - background-size: 800px 104px; - height: 51px; - position: relative; -} - -.commoncard-height { - min-height: 256px; - content: ""; -} - -.login-popup-container { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - width: 100%; -} - -.login-popup-container .l-login .close { - right: 3rem; -} - -.login-popup-container .login-content { - overflow-y: scroll; - height: 100vh; - background: rgba(0, 0, 0, .4); -} - -.login-popup-container .login-container { - background: #fff; - max-width: 30%; - left: 0; - right: 0; - margin: 0 auto; - padding: 20px 30px; - top: 30px; - border-radius: 5px; -} - -.login-popup-container .close.hey svg path { - fill: #fff; -} - -.popup-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; - opacity: .8; -} - -.login-content { - box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15); - background: #fff; -} - -.login-container { - flex-direction: column; - padding: 1.5rem 0; - max-width: 400px; - margin-left: 35%; -} - -.l-form-row:after { - clear: both; - content: ""; - display: block; -} - -.l-form-input { - background-color: #fff; - border: 1px solid #171717; - color: #171717; -} - -.l-form-label { - font-size: .75rem; - line-height: 1.5; - position: absolute; - top: -9px; - left: 8px; - background-color: #fff; - color: #171717; - padding: 0 .5rem; - z-index: 1; - font-family: Georgia; -} - -.l-form-other:after, -.l-form-other:before { - position: absolute; - top: 0; - bottom: 0; - background-color: #171717; - content: ""; - height: 1px; - margin: auto; - width: 26.5%; - z-index: 1; -} - -.l-form-other:after { - right: 0; -} - -.l-form-other:before { - left: 0; -} - -.l-form-social { - border-radius: .25rem; - box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); - background-color: #fff; - flex: 0 0 9.75rem; - line-height: 1.5; - padding: .75rem 0; -} - -font-family:Georgia .l-form-social:first-of-type { - margin-right: 1rem; -} - -.l-form-social .icon { - width: 1.5rem; - height: 1.5rem; - margin-right: .5rem; - vertical-align: bottom; -} - -.l-form-optional { - font-family: Georgia; - font-size: 1rem; - line-height: 1.3125; - color: #3457a7; -} - -.l-form-btn { - font-family: Georgia; - background-color: #3457a7; - padding: 1rem 0; - border-radius: .25rem; - line-height: 1.5; - border: 0; -} - -.l-form-bottom { - padding: 2.75rem 0 0; - background-color: #fff; - height: 150px; - margin-top: 2rem; -} - -.l-form-bottom a { - color: #3457a7; -} - -.l-form-bottom p { - margin-bottom: 1rem; -} - -.error .l-form-input { - border: 1px solid #3457a7; -} - -.error .l-form-label { - color: #3457a7; -} - -.l-login-greet { - font-size: 1.25rem; - line-height: 1.2; - color: #171717; - font-style: italic; - font-family: Georgia; -} - -.l-login-greet span { - font-style: normal; -} - -.l-login-banner { - margin-left: auto; - margin-right: auto; -} - -.l-login-link { - font-family: Georgia; -} - -.l-login-link a { - text-decoration: underline; -} - -.l-login-link a:first-of-type { - margin-right: 1.5rem; -} - -.l-login-middle { - font-family: Georgia; -} - -.l-login-middle a { - color: #3457a7; -} - -.l-login-back { - position: absolute; - top: 18px; - left: 10px; - background-color: #f8f8f8; - z-index: 3; - border-radius: 50%; - padding-top: .5rem; - width: 2.25rem; - height: 2.25rem; -} - -.l-login-msg { - line-height: 1.71; - color: #171717; -} - -.l-login-otp { - color: #3457a7; - font-family: Georgia; -} - -.l-login-otp svg { - width: 1rem; - margin-right: .5rem; - vertical-align: middle; -} - -.l-login-msg-small { - line-height: 1.88; - color: #e02020; -} - -.l-login .partitioned { - letter-spacing: 42px; - background-image: linear-gradient(270deg, #dcdbdb 50%, hsla(0, 0%, 100%, 0) 0); - background-position: bottom; - background-size: 50px 1px; - background-repeat: repeat-x; - background-position-x: 43px; -} - -.l-login .close { - position: absolute; - right: 1rem; - top: 1rem; - z-index: 9; -} - -.l-login .close svg { - width: 1rem; - cursor: pointer; -} - -.checkbox-container { - padding-left: 2.1875rem; - line-height: 1.43; - cursor: pointer; - user-select: none; -} - -.checkbox-container input { - position: absolute; - opacity: 0; - cursor: pointer; - height: 0; - width: 0; -} - -.checkbox-container .checkmark { - position: absolute; - top: 0; - left: 0; - background-color: #eee; - height: 1.25rem; - width: 1.25rem; -} - -.checkbox-container .checkmark:after { - position: absolute; - top: 2px; - left: 6px; - content: ""; - display: none; - width: .3125rem; - height: .625rem; - border: solid #fff; - border-width: 0 2px 2px 0; - transform: rotate(45deg); -} - -.checkbox-container input:checked~.checkmark { - background-color: #3457a7; -} - -.checkbox-container:after { - content: ""; - position: absolute; -} - -.recaptcha-error .help-block { - color: #ff5076; -} - -.p-eye { - position: absolute; - top: 6px; - right: 10px; - z-index: 1; - width: 2.25rem; - height: 2.25rem; - line-height: 1; - margin: auto; -} - -.p-eye .eye-c, -.p-eye .eye-o { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 1.25rem; -} - -.alert { - margin: .5rem auto .5rem .75rem; -} - -.alert-danger { - color: #e02020; -} - -.alert-success { - color: green; -} - -.edit-text { - color: #3457a7; - font-family: Georgia; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 1.25rem; -} - -.inactive { - background-color: rgba(0, 0, 0, .3); -} - -.timesLogo { - width: 10.625rem; - margin: 1.5625rem auto; -} - -.tlp { - font-family: Arial, Helvetica, sans-serif; - font-style: italic; - color: #000; - margin-bottom: .9375rem; - line-height: 1.3; -} - -.brand-logo { - display: flex; - flex-direction: column; - justify-content: center; - background-color: #fff; - padding: 1.5625rem 0 1.25rem; - margin-bottom: 1.875rem; - text-align: center; -} - -.brand-logo-headline { - flex: 1; - font: 700 .9375rem/1 Arial, Helvetica, sans-serif; - color: #000; - margin-bottom: .625rem; -} - -.brand-logo-group { - display: flex; - justify-content: center; - align-items: center; -} - -.brand-logo .logosprite { - background: url(https://img.etimg.com/photo/65526461.cms) no-repeat 0 -10000px; - width: 32px; - height: 36px; - display: inline-block; - margin-right: .25rem; -} - -.brand-logo .logosprite:last-child { - margin-right: 0; -} - -.brand-logo .toi { - background-position: 0 1px; -} - -.brand-logo .et { - background-position: 0 -49px; -} - -.brand-logo .nbt { - background-position: 0 -99px; -} - -.brand-logo .sm { - background-position: 0 -149px; -} - -.brand-logo .st { - background-position: 0 -200px; -} - -.brand-logo .gaana { - background-position: 0 -251px; -} - -.brand-logo .itimes { - background-position: 0 -301px; -} - -.brand-logo .tp { - background-position: 0 -351px; -} - -.gallery-slide { - color: #333; - line-height: 1.7em; - background: #fff; - box-shadow: 0 4px 20px 0 rgba(240, 135, 135, .08); - margin-bottom: 20px; - padding: 1.0625rem 1rem .9375rem; -} - -.gallery-logo { - margin: 10px 20px; -} - -.gallery-logo svg path { - fill: #fff; -} - -.gal-overlay { - background: #000; - position: fixed; - top: 0; - left: 0; - right: 0; - height: 100%; - z-index: 999; - overflow-y: scroll; -} - -.gal-overlay .container, -.gal-overlay .fifa-center { - position: relative; -} - -.gal-img-container { - flex: 2; - background: #1d1d1d; - height: 70vh; - justify-content: center; - align-items: center; - display: flex; -} - -.gal-img-container img { - max-height: 100%; - width: auto; -} - -.arrow-container { - position: absolute; - left: 30px; - right: 30px; - top: 20px; - height: 70vh; -} - -.arrow-container .next, -.arrow-container .prev { - position: absolute; - top: 40%; -} - -.arrow-container .prev { - left: -100px; -} - -.arrow-container .prev svg { - transform: rotate(180deg); -} - -.arrow-container .next { - right: -100px; -} - -.arrow-container .slider-control { - position: absolute; - cursor: pointer; -} - -.arrow-container .slider-control svg { - background: #212121; - border-radius: 50%; -} - -.gal-close { - position: absolute; - right: 20px; - top: 20px; -} - -.gal-close svg { - width: 20px; - height: 20px; -} - -.gal-close svg path { - fill: #fff; -} - -.gal-counter { - padding: 20px 0; - font-weight: 700; - text-align: center; -} - -.gal-counter, -.left-container .gallery-caption, -.left-container .gallery-caption p { - color: #fff; -} - -.gallery-caption a { - color: #3457a7; -} - -.gallery-caption p { - font-size: 1em; - padding-bottom: 20px; -} - -.gallery-caption p:last-child { - padding-bottom: 0; -} - -.slider-control.disabled { - opacity: .4; -} - -.gallercaption .slider-control { - position: relative; - display: inline-block; - cursor: pointer; -} - -.gallercaption .slider-control svg path { - fill: #fce44d; -} - -.gallercaption .slider-control.prev { - left: 0; - margin-right: 50px; - transform: rotate(180deg); - top: -5px; -} - -.gallercaption .slider-control.disabled { - opacity: .5; -} - -@media screen and (min-width:768px) and (max-width:1200px) { - - .card-strip-read, - .card-summury, - .card.small-card:nth-child(5n), - .episodes-slider-slide:last-child, - .floating-header .sectiontrending, - .nav-tittle, - .right-container, - .sectiontrending li:nth-child(7n), - .sectiontrending li:nth-child(8n), - .sh-tab a { - display: none; - } - - .sh-tab a:first-child, - .sh-tab a:nth-child(2n), - .sh-tab a:nth-child(3n), - .sh-tab a:nth-child(4n) { - display: block; - } - - .sectiontrending .top-bar { - font-size: .875rem; - } - - .bigcard .card-cont .top-head span { - margin: 0 auto 15px; - } - - .optical-widget-card { - flex: 0 0 23%; - } - - .optical-widget-card:nth-child(5n + 5) { - margin: 0 .9rem .9rem 0; - } - - .bigcard .card-cont .top-summery { - font-size: 1.375rem; - line-height: 2rem; - } - - .youmay-like .card-scene { - min-width: 25.5%; - max-width: 25.5%; - } - - .youmay-like .card.small-card { - min-width: inherit; - max-width: inherit; - margin-right: 1rem; - } - - .youmay-like .partner-carousel .card.small-card { - max-width: inherit; - } - - .youmay-like .partner-carousel .slick-slide { - overflow: hidden; - } - - .card.partner-carousel, - .widget-top-story .top-trending .card-scene { - min-width: 25.5%; - max-width: 25.5%; - } - - .trending-widgets .youmay-like .card-scene { - min-width: 25%; - max-width: 25%; - } - - .stories-card { - min-width: 23%; - max-width: 23%; - height: 334px; - margin: 0 7px 15px; - } - - .card.partner-carousel { - margin-right: 0; - } - - .widget-top-story .top-trending .slick-slider .card-scene { - min-width: inherit; - max-width: inherit; - } - - .section-container .top-trending .small-card:last-child { - margin-right: 1rem; - } - - .bigcard .card-cont .main-img:before { - padding-top: 56.25%; - } - - .card.partner-carousel .slider-next-button .icon-button { - opacity: 1; - } - - .partner-carousel .slider-next-button .icon-button { - width: 1.8rem; - height: 1.8rem; - } - - .card.partner-carousel .slick-next, - .card.partner-carousel .slick-prev { - background-color: transparent; - } - - .card.partner-carousel .slick-next { - right: 16px; - } - - .card.partner-carousel .slider-next-button .icon-button { - left: 16px; - } - - .black-bg .webseries-slider-slide:nth-child(5n), - .card.small-card:nth-child(4n), - .left-container { - margin-right: 0; - } - - .video-l-card { - max-width: none; - margin-right: 0; - } - - .video-latest-right { - max-height: inherit; - } - - .daily-story-left, - .daily-story-right, - .video-l-card, - .video-latest-right { - width: 100%; - flex: 0 0 auto; - margin-bottom: 20px; - } - - .video-r-card .card-img { - max-width: 90px; - } - - .dropdown-menu .menu-right .common-card .card-img { - flex: 1 1 100%; - } - - .focus-video .card-body .card-detail { - padding: 0; - } - - .footer-container { - grid-template-columns: repeat(1, 1fr); - } - - .footer-social, - a[data-network=indiatimes] { - justify-content: center; - } - - a[data-network=whatshot] { - margin-left: auto; - margin-right: auto; - } - - .footer-section { - grid-template-columns: 1fr; - } - - .footer-headline[data-tagline=indiatimes], - .footer-links, - .footer-section, - .grid-2, - .grid-3 { - text-align: center; - } - - .grid-2, - .grid-3 { - margin-top: 30px; - } - - .login-container { - margin-left: 25%; - } - - .up-next-article:before { - left: -15px; - } - - .up-next-article:after { - right: -16px; - } - - .black-bg .webseries-slider-slide { - min-width: 125px; - margin-right: 1rem; - } - - .episodes-slider-slide { - flex: 1; - margin-right: 1rem; - } - - .episodes-slider-slide:last-child { - margin-right: 0; - } - - .black-theme .block-header .block-header-title, - .black-theme .block-header .comment-top, - .black-theme .block-header .h-dinline, - .black-theme .block-header .topic-slide { - color: #fff; - } - - .video-latest { - padding: 1rem 1rem 0; - } - - .small-video-card .card-img { - max-width: 200px; - flex: 0 0 auto; - } - - .video-section { - width: 100%; - } - - .video-infocus .card-title { - font-size: 1.8rem; - } - - .arrow-container .next { - right: 0; - } - - .arrow-container .prev { - left: 0; - } - - .gal-img-container { - height: 86vh; - } - - .top-stroy .card-img:before { - padding-top: 74%; - } - - .youmay-like.section-youlike { - margin-right: 15px; - } - - .common-card .card-img { - max-width: 90px; - } - - .menu-center .dropdown-menu .menu-right .common-card { - max-width: 160px; - margin-right: 15px; - } - - .menu-center .dropdown-menu .menu-right .common-card:nth-child(4n) { - margin-right: 0; - } - - .menu-center .dropdown-menu .menu-right .common-card:last-child { - display: none; - } - - .menu-center .common-card .card-img { - max-width: 100%; - } - - .video-latest .video-latest-right .video-r-card .card-body { - flex: 0 0 calc(100% - 110px); - max-width: calc(100% - 110px); - } - - .stories-now { - overflow-x: auto; - justify-content: flex-start; - } - - .article-top h1 { - font-size: 2rem; - line-height: 2.5rem; - } - - .grid-sm .block-card .card-img { - max-height: 72px; - overflow: hidden; - min-height: 72px; - } - - .optical-card { - min-width: 30%; - width: 30%; - } - - .optical-card:nth-child(4n) { - margin-right: 23px; - } - - .optical-card-title { - font-size: .875rem; - min-height: 105px; - } - - .youmay-like.section-youlike .card-scene { - min-width: 10.37rem; - max-width: 10.37rem; - } - - .youmay-like.section-youlike.section-last { - margin-right: 0; - } - - .card-section span { - margin-right: 5px; - } - - .card-section span svg { - width: 12px; - vertical-align: bottom; - } - - .microsite-stories .youmay-like.section-youlike .card-scene, - .microsite-stories .youmay-like.section-youlike .card.small-card { - min-width: 13rem; - max-width: 13rem; - } - - .circle-width { - width: 29%; - } - - .circle-width .img-row { - width: 200px; - height: 200px; - } - - .circle-width .text { - font-size: .875rem; - margin-top: 1rem; - line-height: 1.5; - } - - .circle-width:last-child { - display: none; - } - - .microsite-row .tabs-cards .youmay-like.section-youlike:nth-child(4n) { - margin-right: 0; - } - - .pie-chart { - flex-direction: column; - } - - .pie-chart .flex-1 { - width: 100%; - } - - .article-newsletter .contactus.newsletterinput, - .brief-video .contactus.video-small, - .contactus.art-social, - .contactus.author-row, - .contactus.block-header, - .contactus.breadcrumb.trunc, - .contactus.browse-list, - .contactus.card, - .contactus.card-strip, - .contactus.comment, - .contactus.comment-form, - .contactus.comment-post, - .contactus.comment-post-box, - .contactus.comment-post-links, - .contactus.daily-story, - .contactus.digital-left, - .contactus.digital-page, - .contactus.focus-card-body, - .contactus.liver-two, - .contactus.login-container, - .contactus.menu-categories, - .contactus.open-header, - .contactus.org-tab, - .contactus.original-popup-header, - .contactus.original-top, - .contactus.ov-card, - .contactus.ov-card-detail, - .contactus.ov-card-watch, - .contactus.pie-chart, - .contactus.preview-list, - .contactus.preview-list-item.text, - .contactus.profile-img, - .contactus.quiz-list, - .contactus.quiz-list-row, - .contactus.quiz-result-box, - .contactus.r-card, - .contactus.readcard, - .contactus.retake-container, - .contactus.scroll-header-right, - .contactus.section-big, - .contactus.sectiontrending, - .contactus.series, - .contactus.sh-tab, - .contactus.stories-now, - .contactus.story-now, - .contactus.story-now-circle, - .contactus.t-arrow, - .contactus.team-mg, - .contactus.teamcolor, - .contactus.topic-cards, - .contactus.topic-slide, - .contactus.toplogo, - .contactus.user-weather, - .contactus.video-latest, - .contactus.videosummery, - .contactus.youmay-like, - .d-flex.contactus, - .header .contactus.profile-data, - .menu-items .nav-menu .categories .contactus.nav-category, - .menu-items .nav-menu .categories .nav-category a.contactus, - .nav-ul .contactus.nav-category, - .nav-ul .nav-category a.contactus, - .original-popup .contactus.browse-form, - .popular-slider .contactus.slick-track, - .quick-slider .contactus.slick-track, - .right-container .video-infocus .contactus.card-strip, - .right-container .video-infocus .contactus.video-small, - .rightsocial .contactus.share-strip, - .rightsocial .contactus.share-strip-social, - .shadow-card.video-card .contactus.video-small, - .tbd-cont .tbc-border .contactus.tbd-text, - .teamcolor .contactus.team-d, - .topic-container.d-flex .contactus.slick-track, - .topics-cont a.contactus, - .topics-cont div.contactus, - .topics .contactus.topic, - .video-l-card .contactus.card-detail, - a.contactus[data-network=indiatimes] { - flex-direction: column; - } - - .similar-stories .youmay-like .card.small-card { - max-width: 22.8%; - min-width: 22.8%; - margin-right: 1rem; - } -} - -@media screen and (min-width:768px) and (max-width:900px) { - - .ad-cls, - .BAD_ADS_JS { - max-width: 768px; - overflow: hidden; - width: 100%; - } -} - -@media screen and (min-width:1024px) and (max-width:1115px) { - .left-container { - max-width: 1000px; - } - - .youmay-like .card.small-card { - min-width: 14.5rem; - max-width: 14.5rem; - } - - .card.small-card:nth-child(5n) { - display: block; - } -} - -#closeDiv { - top: 102px; - left: auto; - right: 0; -} - -.skinner-ad #closeDiv { - top: 0px; -} \ No newline at end of file diff --git a/src/__fixtures__/indiatimes-20231008.json b/src/__fixtures__/indiatimes-20231008.json deleted file mode 100644 index 7979b263..00000000 --- a/src/__fixtures__/indiatimes-20231008.json +++ /dev/null @@ -1,58390 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 14331, - "linesOfCode": 19092, - "size": 437264, - "complexity": 54056, - "comments": { - "total": 0, - "size": 0 - }, - "embeddedContent": { - "size": { - "total": 0, - "ratio": 0 - }, - "types": { - "total": 0, - "totalUnique": 0, - "uniquenessRatio": 0, - "unique": {} - } - } - }, - "atrules": { - "fontface": { - "total": 0, - "totalUnique": 0, - "unique": [], - "uniquenessRatio": 0 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 3, - "totalUnique": 3, - "unique": { - "screen and (min-width:768px) and (max-width:1200px)": 1, - "screen and (min-width:768px) and (max-width:900px)": 1, - "screen and (min-width:1024px) and (max-width:1115px)": 1 - }, - "uniquenessRatio": 1, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "charset": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "supports": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 5, - "totalUnique": 5, - "unique": { - "@keyframes cliprotate": 1, - "@keyframes rotate": 1, - "@keyframes showfixed": 1, - "@keyframes moveline": 1, - "@keyframes placeHolderShimmer": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 8, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 8 - } - }, - "rules": { - "total": 2376, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 1406, - "mean": 6.028198653198653, - "mode": 2, - "range": 1404, - "sum": 14323, - "items": [ - 16, - 12, - 59, - 6, - 105, - 6, - 9, - 2, - 6, - 23, - 10, - 19, - 15, - 109, - 8, - 120, - 3, - 20, - 12, - 34, - 37, - 74, - 12, - 6, - 4, - 4, - 3, - 2, - 2, - 2, - 3, - 4, - 4, - 5, - 28, - 5, - 4, - 3, - 3, - 2, - 3, - 2, - 2, - 4, - 4, - 3, - 7, - 18, - 7, - 22, - 3, - 2, - 2, - 18, - 2, - 2, - 3, - 2, - 8, - 4, - 4, - 2, - 8, - 5, - 5, - 3, - 2, - 10, - 3, - 18, - 2, - 2, - 15, - 2, - 3, - 21, - 12, - 3, - 2, - 5, - 4, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 5, - 3, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 8, - 4, - 5, - 4, - 2, - 5, - 6, - 2, - 5, - 3, - 5, - 4, - 2, - 2, - 8, - 3, - 3, - 4, - 3, - 2, - 7, - 10, - 2, - 8, - 2, - 2, - 2, - 2, - 6, - 4, - 4, - 2, - 2, - 7, - 2, - 2, - 3, - 3, - 5, - 5, - 3, - 3, - 2, - 3, - 3, - 11, - 2, - 2, - 2, - 5, - 2, - 6, - 5, - 4, - 2, - 7, - 7, - 5, - 2, - 2, - 4, - 2, - 98, - 8, - 3, - 2, - 4, - 3, - 8, - 8, - 5, - 2, - 2, - 2, - 2, - 6, - 3, - 100, - 2, - 3, - 2, - 6, - 2, - 2, - 2, - 2, - 10, - 2, - 6, - 3, - 2, - 2, - 9, - 4, - 4, - 3, - 7, - 4, - 2, - 4, - 2, - 2, - 2, - 7, - 4, - 2, - 5, - 3, - 3, - 7, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 7, - 3, - 2, - 2, - 2, - 4, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 3, - 2, - 3, - 3, - 4, - 7, - 2, - 2, - 3, - 3, - 4, - 1406, - 2, - 5, - 2, - 2, - 3, - 2, - 8, - 7, - 2, - 5, - 3, - 6, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 9, - 11, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 5, - 4, - 2, - 3, - 3, - 3, - 4, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 3, - 9, - 2, - 2, - 14, - 3, - 3, - 2, - 2, - 3, - 4, - 2, - 2, - 9, - 3, - 3, - 4, - 2, - 6, - 2, - 2, - 2, - 11, - 3, - 13, - 3, - 7, - 2, - 5, - 2, - 5, - 2, - 2, - 2, - 2, - 3, - 5, - 5, - 2, - 5, - 3, - 5, - 4, - 2, - 6, - 3, - 3, - 2, - 5, - 2, - 3, - 4, - 9, - 3, - 4, - 3, - 2, - 2, - 4, - 4, - 5, - 3, - 3, - 3, - 3, - 4, - 4, - 2, - 4, - 3, - 6, - 2, - 5, - 4, - 2, - 3, - 3, - 8, - 10, - 10, - 3, - 2, - 13, - 2, - 5, - 4, - 4, - 2, - 3, - 7, - 3, - 2, - 4, - 10, - 4, - 2, - 4, - 3, - 2, - 6, - 3, - 2, - 5, - 7, - 3, - 3, - 7, - 4, - 2, - 2, - 4, - 3, - 3, - 4, - 2, - 2, - 11, - 9, - 4, - 9, - 3, - 2, - 4, - 2, - 8, - 6, - 8, - 2, - 7, - 4, - 2, - 3, - 4, - 5, - 3, - 10, - 5, - 3, - 14, - 3, - 12, - 2, - 14, - 18, - 19, - 2, - 2, - 8, - 17, - 79, - 10, - 6, - 5, - 3, - 12, - 8, - 5, - 3, - 3, - 8, - 12, - 2, - 6, - 6, - 6, - 9, - 4, - 2, - 5, - 8, - 5, - 4, - 23, - 3, - 5, - 9, - 7, - 8, - 4, - 4, - 6, - 3, - 3, - 9, - 3, - 5, - 3, - 2, - 5, - 2, - 2, - 3, - 3, - 6, - 3, - 2, - 10, - 3, - 6, - 2, - 2, - 5, - 4, - 7, - 2, - 2, - 3, - 5, - 6, - 2, - 3, - 2, - 9, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 4, - 2, - 6, - 3, - 2, - 2, - 4, - 2, - 4, - 2, - 2, - 7, - 2, - 5, - 9, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 6, - 2, - 3, - 5, - 4, - 2, - 2, - 5, - 3, - 3, - 3, - 2, - 3, - 2, - 3, - 4, - 4, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 4, - 3, - 2, - 8, - 5, - 6, - 4, - 2, - 53, - 48, - 47, - 48, - 48, - 47, - 47, - 48, - 50, - 47, - 50, - 49, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 23, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 3, - 5, - 3, - 3, - 5, - 6, - 5, - 6, - 5, - 5, - 21, - 3, - 2, - 5, - 5, - 6, - 5, - 4, - 2, - 4, - 5, - 7, - 6, - 4, - 2, - 2, - 2, - 2, - 3, - 7, - 5, - 5, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 5, - 2, - 8, - 3, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 5, - 2, - 2, - 4, - 3, - 2, - 5, - 7, - 3, - 5, - 17, - 8, - 2, - 3, - 2, - 17, - 3, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 3, - 3, - 7, - 3, - 3, - 2, - 7, - 2, - 3, - 2, - 3, - 7, - 4, - 3, - 6, - 3, - 5, - 5, - 4, - 17, - 2, - 4, - 2, - 2, - 2, - 2, - 7, - 4, - 7, - 7, - 5, - 2, - 5, - 2, - 3, - 6, - 5, - 5, - 6, - 2, - 2, - 5, - 2, - 3, - 2, - 2, - 6, - 2, - 3, - 8, - 3, - 9, - 6, - 3, - 5, - 4, - 6, - 4, - 3, - 7, - 5, - 3, - 5, - 4, - 2, - 3, - 3, - 2, - 18, - 2, - 2, - 19, - 25, - 5, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 6, - 2, - 4, - 4, - 3, - 4, - 2, - 2, - 3, - 6, - 3, - 3, - 5, - 6, - 2, - 8, - 5, - 3, - 2, - 3, - 4, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 4, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 50, - 5, - 3, - 2, - 2, - 3, - 3, - 5, - 2, - 2, - 2, - 5, - 3, - 5, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 10, - 41, - 9, - 11, - 2, - 3, - 6, - 6, - 6, - 2, - 4, - 2, - 4, - 2, - 5, - 3, - 3, - 3, - 5, - 11, - 5, - 4, - 2, - 8, - 3, - 2, - 4, - 2, - 6, - 2, - 2, - 2, - 4, - 3, - 12, - 2, - 8, - 4, - 2, - 6, - 4, - 7, - 3, - 4, - 2, - 2, - 4, - 5, - 5, - 4, - 2, - 8, - 2, - 3, - 2, - 2, - 5, - 3, - 2, - 2, - 3, - 3, - 6, - 4, - 13, - 7, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 27, - 2, - 4, - 2, - 5, - 2, - 4, - 8, - 4, - 2, - 7, - 5, - 2, - 2, - 12, - 12, - 4, - 4, - 8, - 4, - 4, - 4, - 5, - 8, - 2, - 3, - 3, - 80, - 77, - 313, - 2, - 2, - 5, - 2, - 7, - 3, - 6, - 2, - 5, - 3, - 2, - 4, - 2, - 2, - 5, - 4, - 2, - 4, - 2, - 6, - 2, - 2, - 3, - 5, - 3, - 4, - 5, - 10, - 3, - 13, - 7, - 3, - 2, - 2, - 8, - 3, - 5, - 2, - 3, - 9, - 3, - 3, - 4, - 3, - 3, - 3, - 6, - 5, - 4, - 2, - 2, - 2, - 501, - 2, - 2, - 4, - 6, - 2, - 3, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 3, - 2, - 5, - 4, - 5, - 3, - 5, - 2, - 5, - 2, - 3, - 101, - 3, - 3, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 4, - 2, - 2, - 2, - 2, - 4, - 17, - 2, - 7, - 2, - 3, - 2, - 2, - 9, - 3, - 3, - 4, - 3, - 7, - 5, - 5, - 2, - 2, - 3, - 5, - 2, - 2, - 6, - 7, - 17, - 3, - 3, - 2, - 3, - 10, - 2, - 3, - 2, - 2, - 3, - 7, - 2, - 3, - 5, - 4, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 3, - 4, - 3, - 4, - 7, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 8, - 3, - 4, - 10, - 2, - 2, - 2, - 2, - 2, - 48, - 2, - 5, - 4, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 4, - 3, - 3, - 6, - 2, - 2, - 4, - 12, - 3, - 5, - 29, - 20, - 5, - 2, - 3, - 3, - 3, - 4, - 2, - 2, - 10, - 11, - 4, - 2, - 7, - 2, - 2, - 5, - 2, - 4, - 2, - 3, - 4, - 10, - 2, - 3, - 4, - 12, - 3, - 2, - 10, - 3, - 2, - 5, - 12, - 7, - 6, - 2, - 3, - 7, - 2, - 7, - 4, - 6, - 2, - 2, - 3, - 3, - 2, - 4, - 5, - 6, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 4, - 2, - 6, - 4, - 2, - 2, - 2, - 3, - 5, - 5, - 9, - 5, - 3, - 3, - 3, - 7, - 9, - 2, - 6, - 2, - 3, - 2, - 2, - 3, - 2, - 7, - 3, - 6, - 3, - 2, - 4, - 2, - 5, - 7, - 3, - 3, - 4, - 2, - 6, - 7, - 5, - 2, - 2, - 4, - 6, - 2, - 7, - 2, - 2, - 4, - 7, - 2, - 7, - 8, - 2, - 6, - 8, - 4, - 2, - 3, - 18, - 6, - 3, - 2, - 6, - 2, - 3, - 3, - 2, - 2, - 4, - 2, - 3, - 3, - 15, - 3, - 12, - 4, - 8, - 9, - 4, - 2, - 2, - 6, - 3, - 3, - 2, - 2, - 5, - 2, - 3, - 5, - 2, - 2, - 3, - 80, - 80, - 79, - 81, - 155, - 78, - 93, - 93, - 2, - 4, - 5, - 2, - 2, - 3, - 2, - 7, - 10, - 3, - 3, - 2, - 6, - 3, - 3, - 6, - 3, - 3, - 3, - 4, - 2, - 5, - 5, - 2, - 9, - 6, - 2, - 5, - 2, - 2, - 2, - 4, - 5, - 2, - 6, - 14, - 4, - 3, - 6, - 5, - 6, - 7, - 4, - 4, - 3, - 2, - 7, - 5, - 7, - 3, - 4, - 8, - 6, - 3, - 3, - 2, - 2, - 3, - 2, - 4, - 4, - 7, - 3, - 3, - 9, - 9, - 10, - 16, - 3, - 3, - 3, - 5, - 2, - 2, - 3, - 4, - 5, - 5, - 8, - 2, - 2, - 5, - 11, - 2, - 7, - 23, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 4, - 2, - 5, - 2, - 2, - 4, - 2, - 3, - 2, - 5, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 5, - 8, - 2, - 2, - 6, - 6, - 4, - 2, - 2, - 3, - 2, - 4, - 4, - 2, - 9, - 3, - 2, - 3, - 2, - 3, - 3, - 8, - 3, - 4, - 3, - 2, - 2, - 4, - 8, - 4, - 3, - 2, - 4, - 3, - 3, - 2, - 2, - 7, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 9, - 3, - 3, - 7, - 2, - 4, - 9, - 3, - 8, - 2, - 3, - 4, - 5, - 2, - 2, - 4, - 4, - 2, - 3, - 3, - 2, - 2, - 5, - 3, - 2, - 5, - 8, - 5, - 3, - 4, - 5, - 4, - 2, - 10, - 10, - 2, - 2, - 4, - 6, - 3, - 3, - 2, - 2, - 8, - 2, - 5, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 6, - 9, - 2, - 2, - 2, - 6, - 4, - 2, - 8, - 3, - 3, - 4, - 9, - 5, - 5, - 8, - 2, - 2, - 2, - 3, - 4, - 8, - 4, - 2, - 8, - 2, - 4, - 2, - 4, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 4, - 2, - 6, - 2, - 2, - 4, - 7, - 7, - 7, - 2, - 3, - 8, - 7, - 2, - 2, - 4, - 3, - 2, - 4, - 4, - 2, - 2, - 2, - 8, - 2, - 4, - 2, - 2, - 9, - 2, - 2, - 8, - 3, - 2, - 3, - 2, - 6, - 2, - 2, - 9, - 5, - 2, - 5, - 2, - 5, - 5, - 3, - 2, - 2, - 2, - 6, - 5, - 3, - 2, - 2, - 6, - 6, - 10, - 5, - 3, - 2, - 2, - 2, - 2, - 3, - 4, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 4, - 9, - 3, - 6, - 6, - 5, - 2, - 5, - 2, - 5, - 3, - 4, - 4, - 3, - 5, - 2, - 2, - 3, - 6, - 2, - 2, - 2, - 3, - 2, - 8, - 3, - 3, - 3, - 2, - 4, - 9, - 2, - 3, - 5, - 4, - 2, - 2, - 10, - 3, - 4, - 3, - 2, - 3, - 4, - 3, - 2, - 7, - 2, - 5, - 3, - 2, - 3, - 4, - 2, - 4, - 9, - 3, - 4, - 4, - 2, - 4, - 3, - 2, - 2, - 3, - 2, - 3, - 4, - 3, - 2, - 5, - 5, - 2, - 2, - 2, - 4, - 3, - 3, - 5, - 5, - 3, - 4, - 4, - 3, - 5, - 4, - 2, - 6, - 2, - 3, - 8, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 7, - 4, - 3, - 2, - 3, - 8, - 3, - 2, - 3, - 2, - 2, - 5, - 2, - 5, - 2, - 2, - 5, - 2, - 6, - 6, - 3, - 2, - 2, - 3, - 2, - 6, - 2, - 2, - 2, - 13, - 2, - 5, - 2, - 3, - 3, - 3, - 3, - 2, - 9, - 2, - 5, - 4, - 2, - 2, - 3, - 2, - 3, - 4, - 3, - 2, - 2, - 2, - 9, - 4, - 2, - 9, - 5, - 2, - 4, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 8, - 2, - 2, - 2, - 8, - 3, - 10, - 2, - 6, - 3, - 2, - 3, - 3, - 2, - 2, - 7, - 5, - 4, - 3, - 4, - 2, - 2, - 2, - 4, - 11, - 2, - 2, - 3, - 2, - 4, - 2, - 7, - 4, - 5, - 7, - 3, - 7, - 6, - 2, - 2, - 2, - 4, - 2, - 5, - 12, - 3, - 2, - 2, - 6, - 2, - 6, - 2, - 5, - 5, - 9, - 3, - 7, - 8, - 3, - 3, - 4, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 11, - 5, - 11, - 6, - 2, - 2, - 5, - 5, - 4, - 4, - 4, - 2, - 2, - 2, - 4, - 3, - 2, - 4, - 3, - 3, - 9, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 11, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 2, - 3, - 4, - 5, - 2, - 2, - 8, - 5, - 3, - 9, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 5, - 3, - 2, - 2, - 5, - 3, - 2, - 4, - 2, - 2, - 4, - 6, - 2, - 4, - 3, - 15, - 7, - 7, - 5, - 7, - 4, - 6, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 4, - 3, - 2, - 2, - 15, - 7, - 10, - 3, - 3, - 3, - 2, - 3, - 5, - 5, - 5, - 3, - 2, - 5, - 3, - 2, - 7, - 2, - 4, - 5, - 3, - 15, - 6, - 3, - 2, - 2, - 3, - 4, - 7, - 7, - 7, - 2, - 15, - 7, - 3, - 8, - 4, - 4, - 4, - 5, - 4, - 4, - 7, - 2, - 2, - 3, - 2, - 2, - 6, - 3, - 2, - 2, - 8, - 7, - 8, - 3, - 5, - 6, - 3, - 6, - 6, - 2, - 2, - 3, - 7, - 11, - 3, - 2, - 10, - 2, - 8, - 5, - 4, - 2, - 2, - 4, - 3, - 2, - 4, - 2, - 4, - 2, - 10, - 12, - 2, - 3, - 9, - 2, - 3, - 5, - 3, - 3, - 5, - 2, - 6, - 6, - 2, - 5, - 4, - 4, - 3, - 4, - 4, - 2, - 8, - 3, - 7, - 6, - 5, - 12, - 4, - 4, - 2, - 4, - 4, - 4, - 4, - 3, - 2, - 8, - 2, - 3, - 3, - 4, - 2, - 2, - 4, - 6, - 7, - 6, - 5, - 3, - 12, - 6, - 2, - 13, - 2, - 3, - 2, - 2, - 10, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 3, - 6, - 2, - 2, - 6, - 5, - 2, - 4, - 3, - 10, - 4, - 7, - 8, - 8, - 4, - 4, - 5, - 5, - 12, - 7, - 3, - 2, - 3, - 10, - 2, - 2, - 2, - 3, - 3, - 5, - 10, - 7, - 10, - 2, - 2, - 4, - 3, - 2, - 7, - 9, - 7, - 2, - 2, - 5, - 5, - 5, - 3, - 6, - 2, - 2, - 8, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 11, - 2, - 11, - 4, - 3, - 2, - 2, - 9, - 2, - 3, - 2, - 6, - 2, - 9, - 3, - 8, - 2, - 4, - 9, - 2, - 9, - 3, - 5, - 4, - 4, - 11, - 11, - 2, - 2, - 7, - 2, - 5, - 5, - 7, - 5, - 2, - 2, - 2, - 2, - 6, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 10, - 3, - 3, - 4, - 3, - 7, - 5, - 3, - 5, - 6, - 7, - 11, - 2, - 3, - 2, - 9, - 7, - 2, - 2, - 2, - 8, - 2, - 3, - 6, - 8, - 5, - 4, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 9, - 3, - 7, - 3, - 6, - 4, - 2, - 2, - 2, - 3, - 3, - 4, - 3, - 2, - 4, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 5, - 2, - 11, - 5, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 2, - 4, - 3, - 5, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 4, - 3, - 2, - 7, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 6, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 4, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 4, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 79, - 4, - 5, - 2, - 3, - 2, - 4, - 2 - ], - "total": 2376, - "totalUnique": 52, - "unique": { - "2": 887, - "3": 485, - "4": 290, - "5": 222, - "6": 119, - "7": 99, - "8": 69, - "9": 47, - "10": 33, - "11": 19, - "12": 19, - "13": 6, - "14": 4, - "15": 7, - "16": 2, - "17": 6, - "18": 6, - "19": 3, - "20": 2, - "21": 2, - "22": 1, - "23": 4, - "25": 1, - "27": 1, - "28": 1, - "29": 1, - "34": 1, - "37": 1, - "41": 1, - "47": 4, - "48": 5, - "49": 1, - "50": 3, - "53": 1, - "59": 1, - "74": 1, - "77": 1, - "78": 1, - "79": 3, - "80": 3, - "81": 1, - "93": 2, - "98": 1, - "100": 1, - "101": 1, - "105": 1, - "109": 1, - "120": 1, - "155": 1, - "313": 1, - "501": 1, - "1406": 1 - }, - "uniquenessRatio": 0.021885521885521887 - }, - "selectors": { - "min": 1, - "max": 1405, - "mean": 3.4423400673400675, - "mode": 1, - "range": 1404, - "sum": 8179, - "items": [ - 15, - 11, - 58, - 5, - 104, - 5, - 8, - 1, - 5, - 22, - 9, - 18, - 14, - 108, - 7, - 119, - 1, - 19, - 11, - 33, - 33, - 65, - 6, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 27, - 3, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 2, - 6, - 17, - 6, - 21, - 2, - 1, - 1, - 17, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 17, - 1, - 1, - 14, - 1, - 1, - 20, - 11, - 2, - 1, - 4, - 3, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 96, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 97, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1405, - 1, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 12, - 2, - 6, - 1, - 13, - 17, - 18, - 1, - 1, - 7, - 16, - 78, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 22, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 6, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 46, - 46, - 46, - 46, - 46, - 46, - 46, - 46, - 46, - 46, - 46, - 46, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 22, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 4, - 4, - 4, - 4, - 1, - 4, - 20, - 2, - 1, - 4, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 7, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 16, - 4, - 1, - 1, - 1, - 16, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 16, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 17, - 1, - 1, - 17, - 17, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 2, - 1, - 2, - 4, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 4, - 4, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 49, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 40, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 26, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 76, - 76, - 312, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 500, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 100, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 16, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 6, - 16, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 46, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 27, - 16, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 78, - 77, - 77, - 77, - 154, - 77, - 77, - 77, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 8, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 22, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 12, - 1, - 2, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 78, - 1, - 2, - 1, - 1, - 1, - 1, - 1 - ], - "total": 2376, - "totalUnique": 43, - "unique": { - "1": 2021, - "2": 174, - "3": 25, - "4": 52, - "5": 11, - "6": 6, - "7": 4, - "8": 3, - "9": 3, - "10": 1, - "11": 3, - "12": 2, - "13": 1, - "14": 2, - "15": 1, - "16": 7, - "17": 7, - "18": 2, - "19": 1, - "20": 2, - "21": 1, - "22": 4, - "26": 1, - "27": 2, - "33": 2, - "40": 1, - "46": 13, - "49": 1, - "58": 1, - "65": 1, - "76": 2, - "77": 6, - "78": 3, - "96": 1, - "97": 1, - "100": 1, - "104": 1, - "108": 1, - "119": 1, - "154": 1, - "312": 1, - "500": 1, - "1405": 1 - }, - "uniquenessRatio": 0.0180976430976431 - }, - "declarations": { - "min": 1, - "max": 17, - "mean": 2.585858585858586, - "mode": 1, - "range": 16, - "sum": 6144, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 9, - 6, - 5, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 7, - 1, - 3, - 1, - 7, - 4, - 4, - 2, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 7, - 3, - 4, - 3, - 1, - 4, - 5, - 1, - 4, - 2, - 4, - 3, - 1, - 1, - 7, - 2, - 2, - 3, - 2, - 1, - 6, - 9, - 1, - 7, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 1, - 1, - 6, - 1, - 1, - 2, - 2, - 4, - 4, - 2, - 1, - 1, - 1, - 2, - 10, - 1, - 1, - 1, - 4, - 1, - 5, - 4, - 3, - 1, - 6, - 6, - 3, - 1, - 1, - 3, - 1, - 2, - 7, - 2, - 1, - 3, - 2, - 7, - 7, - 4, - 1, - 1, - 1, - 1, - 5, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 5, - 2, - 1, - 1, - 8, - 2, - 2, - 2, - 6, - 3, - 1, - 3, - 1, - 1, - 1, - 6, - 3, - 1, - 4, - 2, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 3, - 6, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 6, - 1, - 4, - 2, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 8, - 10, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 3, - 1, - 2, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 7, - 1, - 1, - 12, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 8, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 10, - 1, - 12, - 2, - 6, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 1, - 4, - 2, - 4, - 3, - 1, - 4, - 2, - 1, - 1, - 4, - 1, - 2, - 3, - 8, - 2, - 3, - 2, - 1, - 1, - 3, - 1, - 4, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 3, - 2, - 5, - 1, - 4, - 3, - 1, - 2, - 2, - 7, - 9, - 9, - 2, - 1, - 12, - 1, - 3, - 2, - 2, - 1, - 2, - 6, - 2, - 1, - 3, - 9, - 2, - 1, - 3, - 2, - 1, - 5, - 2, - 1, - 4, - 6, - 2, - 2, - 6, - 3, - 1, - 1, - 3, - 2, - 2, - 3, - 1, - 1, - 10, - 8, - 3, - 8, - 2, - 1, - 3, - 1, - 7, - 5, - 7, - 1, - 6, - 3, - 1, - 2, - 2, - 4, - 2, - 8, - 3, - 1, - 2, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 5, - 4, - 2, - 11, - 7, - 4, - 2, - 2, - 7, - 11, - 1, - 5, - 5, - 5, - 8, - 3, - 1, - 4, - 7, - 4, - 3, - 1, - 2, - 4, - 8, - 6, - 7, - 3, - 3, - 5, - 1, - 1, - 3, - 1, - 4, - 2, - 1, - 4, - 1, - 1, - 2, - 2, - 5, - 2, - 1, - 9, - 2, - 5, - 1, - 1, - 4, - 2, - 6, - 1, - 1, - 2, - 4, - 5, - 1, - 2, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 3, - 1, - 5, - 2, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 6, - 1, - 4, - 7, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 5, - 1, - 1, - 4, - 3, - 1, - 1, - 4, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 3, - 3, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 7, - 3, - 5, - 3, - 1, - 7, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 4, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 3, - 1, - 3, - 4, - 6, - 5, - 3, - 1, - 1, - 1, - 1, - 2, - 6, - 4, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 3, - 2, - 1, - 4, - 6, - 2, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 6, - 2, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 6, - 3, - 2, - 5, - 2, - 4, - 4, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 6, - 3, - 6, - 6, - 4, - 1, - 4, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 7, - 2, - 8, - 5, - 2, - 3, - 3, - 2, - 2, - 2, - 6, - 4, - 2, - 3, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 8, - 4, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 3, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 4, - 1, - 6, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 8, - 9, - 1, - 2, - 5, - 5, - 5, - 1, - 3, - 1, - 3, - 1, - 4, - 2, - 2, - 2, - 4, - 10, - 4, - 3, - 1, - 7, - 2, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 11, - 1, - 7, - 3, - 1, - 5, - 3, - 6, - 2, - 3, - 1, - 1, - 3, - 1, - 4, - 3, - 1, - 7, - 1, - 2, - 1, - 1, - 4, - 2, - 1, - 1, - 2, - 2, - 4, - 3, - 12, - 6, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 4, - 1, - 3, - 7, - 3, - 1, - 6, - 4, - 1, - 1, - 11, - 10, - 3, - 3, - 6, - 3, - 3, - 3, - 4, - 7, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 4, - 1, - 6, - 1, - 2, - 1, - 4, - 2, - 1, - 3, - 1, - 1, - 3, - 2, - 1, - 3, - 1, - 5, - 1, - 1, - 2, - 4, - 2, - 3, - 4, - 5, - 2, - 12, - 6, - 2, - 1, - 1, - 7, - 2, - 4, - 1, - 2, - 8, - 2, - 1, - 3, - 2, - 2, - 2, - 5, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 2, - 1, - 4, - 3, - 3, - 2, - 4, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 6, - 1, - 2, - 1, - 1, - 8, - 2, - 2, - 2, - 2, - 6, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 1, - 1, - 2, - 2, - 1, - 2, - 9, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 4, - 3, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 6, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 7, - 2, - 3, - 8, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 3, - 2, - 2, - 5, - 1, - 1, - 2, - 11, - 1, - 4, - 2, - 4, - 1, - 1, - 2, - 2, - 2, - 3, - 1, - 1, - 9, - 10, - 3, - 1, - 6, - 1, - 1, - 4, - 1, - 3, - 1, - 2, - 3, - 9, - 1, - 2, - 2, - 11, - 1, - 1, - 9, - 2, - 1, - 4, - 11, - 6, - 5, - 1, - 1, - 6, - 1, - 6, - 3, - 5, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 4, - 4, - 7, - 3, - 1, - 2, - 2, - 6, - 5, - 1, - 5, - 1, - 2, - 1, - 1, - 2, - 1, - 6, - 2, - 5, - 2, - 1, - 3, - 1, - 4, - 6, - 2, - 2, - 3, - 1, - 5, - 6, - 4, - 1, - 1, - 3, - 5, - 1, - 6, - 1, - 1, - 3, - 3, - 1, - 6, - 7, - 1, - 5, - 7, - 3, - 1, - 2, - 17, - 5, - 2, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 14, - 2, - 11, - 1, - 7, - 8, - 3, - 1, - 1, - 5, - 2, - 2, - 1, - 1, - 4, - 1, - 2, - 4, - 1, - 1, - 2, - 2, - 3, - 2, - 4, - 1, - 1, - 16, - 16, - 1, - 3, - 4, - 1, - 1, - 2, - 1, - 6, - 9, - 2, - 2, - 1, - 5, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 4, - 1, - 5, - 13, - 3, - 2, - 5, - 4, - 5, - 6, - 3, - 3, - 1, - 1, - 6, - 4, - 6, - 2, - 3, - 6, - 5, - 2, - 2, - 1, - 1, - 2, - 1, - 3, - 3, - 6, - 2, - 2, - 8, - 8, - 9, - 15, - 1, - 2, - 1, - 3, - 1, - 1, - 2, - 3, - 1, - 1, - 7, - 1, - 1, - 4, - 10, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 4, - 1, - 1, - 3, - 1, - 2, - 1, - 4, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 7, - 1, - 1, - 5, - 4, - 3, - 1, - 1, - 2, - 1, - 3, - 3, - 1, - 8, - 1, - 1, - 2, - 1, - 2, - 2, - 7, - 2, - 3, - 2, - 1, - 1, - 3, - 7, - 3, - 2, - 1, - 3, - 2, - 2, - 1, - 1, - 6, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 8, - 2, - 2, - 6, - 1, - 3, - 8, - 2, - 7, - 1, - 2, - 3, - 4, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 4, - 2, - 1, - 4, - 7, - 1, - 2, - 3, - 4, - 3, - 1, - 9, - 9, - 1, - 1, - 3, - 5, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 8, - 1, - 1, - 1, - 5, - 3, - 1, - 7, - 2, - 2, - 3, - 8, - 4, - 4, - 7, - 1, - 1, - 1, - 1, - 3, - 7, - 3, - 1, - 7, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 5, - 1, - 1, - 3, - 6, - 6, - 6, - 1, - 2, - 7, - 6, - 1, - 1, - 3, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 7, - 1, - 3, - 1, - 1, - 7, - 1, - 1, - 7, - 2, - 1, - 2, - 1, - 5, - 1, - 1, - 8, - 4, - 1, - 4, - 1, - 4, - 4, - 2, - 1, - 1, - 1, - 5, - 4, - 1, - 1, - 1, - 5, - 1, - 9, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 8, - 1, - 5, - 1, - 4, - 1, - 4, - 1, - 4, - 2, - 3, - 3, - 2, - 4, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 2, - 1, - 7, - 2, - 2, - 2, - 1, - 3, - 8, - 1, - 2, - 4, - 3, - 1, - 1, - 9, - 2, - 3, - 1, - 1, - 2, - 3, - 1, - 1, - 6, - 1, - 4, - 2, - 1, - 2, - 3, - 1, - 3, - 8, - 2, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 3, - 2, - 2, - 4, - 4, - 2, - 3, - 3, - 2, - 4, - 3, - 1, - 5, - 1, - 2, - 6, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 6, - 3, - 2, - 1, - 2, - 7, - 2, - 1, - 2, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 3, - 1, - 5, - 4, - 2, - 1, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 12, - 1, - 4, - 1, - 2, - 2, - 2, - 2, - 1, - 8, - 1, - 4, - 3, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 8, - 4, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 7, - 1, - 9, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 6, - 3, - 3, - 2, - 3, - 1, - 1, - 1, - 3, - 10, - 1, - 1, - 1, - 1, - 3, - 1, - 6, - 3, - 4, - 6, - 2, - 6, - 5, - 1, - 1, - 1, - 2, - 1, - 4, - 11, - 2, - 1, - 1, - 5, - 1, - 5, - 1, - 4, - 4, - 8, - 2, - 6, - 7, - 2, - 2, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 10, - 4, - 10, - 5, - 1, - 1, - 3, - 4, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 2, - 2, - 8, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 10, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 4, - 1, - 1, - 7, - 4, - 2, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 2, - 1, - 1, - 4, - 2, - 1, - 3, - 1, - 1, - 3, - 5, - 1, - 3, - 2, - 14, - 6, - 6, - 3, - 6, - 3, - 5, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 3, - 2, - 1, - 1, - 14, - 6, - 9, - 2, - 2, - 2, - 1, - 2, - 4, - 4, - 4, - 1, - 1, - 4, - 2, - 1, - 6, - 1, - 3, - 4, - 2, - 14, - 4, - 2, - 1, - 1, - 2, - 3, - 6, - 6, - 6, - 1, - 14, - 6, - 2, - 7, - 3, - 3, - 3, - 4, - 3, - 2, - 6, - 1, - 1, - 2, - 1, - 1, - 5, - 2, - 1, - 1, - 7, - 6, - 7, - 2, - 4, - 5, - 2, - 5, - 5, - 1, - 1, - 2, - 6, - 10, - 2, - 1, - 9, - 1, - 7, - 4, - 3, - 1, - 1, - 3, - 2, - 1, - 3, - 1, - 2, - 1, - 9, - 11, - 1, - 2, - 8, - 1, - 2, - 4, - 2, - 2, - 4, - 1, - 5, - 5, - 1, - 4, - 2, - 3, - 2, - 3, - 3, - 1, - 7, - 2, - 3, - 2, - 1, - 8, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 2, - 1, - 7, - 1, - 2, - 2, - 3, - 1, - 1, - 3, - 5, - 6, - 5, - 4, - 2, - 8, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 2, - 5, - 1, - 1, - 5, - 4, - 1, - 2, - 2, - 9, - 2, - 6, - 7, - 7, - 3, - 3, - 4, - 3, - 10, - 5, - 1, - 1, - 2, - 9, - 1, - 1, - 1, - 2, - 2, - 4, - 9, - 6, - 9, - 1, - 1, - 3, - 2, - 1, - 6, - 8, - 6, - 1, - 1, - 4, - 4, - 4, - 2, - 5, - 1, - 1, - 7, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 10, - 1, - 10, - 3, - 2, - 1, - 1, - 8, - 1, - 2, - 1, - 5, - 1, - 8, - 2, - 7, - 1, - 3, - 8, - 1, - 8, - 2, - 4, - 3, - 3, - 10, - 9, - 1, - 1, - 6, - 1, - 4, - 4, - 6, - 4, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 9, - 2, - 2, - 3, - 2, - 6, - 4, - 2, - 4, - 5, - 6, - 10, - 1, - 2, - 1, - 8, - 5, - 1, - 1, - 1, - 7, - 1, - 2, - 5, - 7, - 4, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 8, - 1, - 6, - 2, - 5, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 4, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 3, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 3, - 1 - ], - "total": 2376, - "totalUnique": 17, - "unique": { - "1": 1103, - "2": 462, - "3": 263, - "4": 176, - "5": 94, - "6": 96, - "7": 65, - "8": 43, - "9": 30, - "10": 18, - "11": 10, - "12": 6, - "13": 1, - "14": 5, - "15": 1, - "16": 2, - "17": 1 - }, - "uniquenessRatio": 0.007154882154882155 - } - }, - "selectors": { - "total": 8167, - "totalUnique": 7026, - "uniquenessRatio": 0.8602914166768704, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 1, - 2, - 2 - ], - "sum": [ - 32, - 22471, - 2397 - ], - "mean": [ - 0.003918207420105302, - 2.75143871678707, - 0.29349822456226277 - ], - "mode": [ - 0, - 2, - 0 - ], - "items": [ - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 2 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 2, - 1 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 1 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 8, - 1 - ], - [ - 0, - 8, - 0 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 7, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 6, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 1 - ], - [ - 1, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ] - ], - "total": 8167, - "totalUnique": 34, - "unique": { - "0,2,0": 1694, - "0,1,0": 1170, - "0,1,1": 443, - "0,3,0": 1349, - "0,1,2": 43, - "0,3,1": 600, - "1,1,1": 6, - "1,1,0": 5, - "0,4,1": 200, - "0,4,0": 832, - "0,2,1": 531, - "0,5,0": 623, - "0,2,2": 72, - "0,3,2": 55, - "0,0,0": 1, - "0,0,1": 18, - "0,5,1": 120, - "0,6,1": 40, - "0,6,0": 224, - "0,5,2": 1, - "0,2,3": 7, - "0,6,2": 5, - "0,4,2": 5, - "1,2,0": 5, - "1,2,2": 1, - "0,1,3": 6, - "0,7,0": 63, - "0,8,0": 11, - "0,7,1": 11, - "1,2,1": 5, - "0,8,1": 7, - "1,0,0": 9, - "1,0,1": 1, - "0,3,3": 4 - }, - "uniquenessRatio": 0.004163095383861884 - }, - "complexity": { - "min": 1, - "max": 16, - "mean": 4.353985551610139, - "mode": 4, - "range": 15, - "sum": 35559, - "total": 8167, - "totalUnique": 16, - "unique": { - "1": 1197, - "2": 962, - "3": 1212, - "4": 1297, - "5": 1068, - "6": 861, - "7": 583, - "8": 466, - "9": 208, - "10": 174, - "11": 47, - "12": 57, - "13": 15, - "14": 13, - "15": 3, - "16": 4 - }, - "uniquenessRatio": 0.001959103710052651, - "items": [ - 3, - 1, - 1, - 3, - 3, - 3, - 2, - 5, - 3, - 5, - 5, - 3, - 3, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 7, - 7, - 5, - 3, - 1, - 3, - 4, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 9, - 3, - 1, - 1, - 3, - 7, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 2, - 6, - 3, - 3, - 7, - 3, - 1, - 1, - 5, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 5, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 6, - 6, - 6, - 5, - 6, - 1, - 1, - 3, - 4, - 4, - 4, - 3, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 4, - 4, - 4, - 3, - 1, - 1, - 1, - 4, - 4, - 3, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 6, - 6, - 6, - 6, - 1, - 3, - 1, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 5, - 1, - 4, - 4, - 1, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 7, - 5, - 5, - 3, - 6, - 6, - 6, - 6, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 4, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 3, - 3, - 6, - 6, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 2, - 2, - 1, - 3, - 1, - 1, - 2, - 3, - 4, - 1, - 2, - 3, - 5, - 6, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 4, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 5, - 6, - 3, - 4, - 1, - 3, - 1, - 1, - 2, - 1, - 3, - 4, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 2, - 4, - 5, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 4, - 1, - 3, - 4, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 5, - 1, - 5, - 6, - 3, - 3, - 3, - 3, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 6, - 1, - 1, - 1, - 2, - 1, - 1, - 5, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 2, - 3, - 4, - 1, - 2, - 5, - 6, - 7, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 7, - 6, - 6, - 5, - 7, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 7, - 1, - 4, - 4, - 5, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 5, - 6, - 3, - 4, - 1, - 1, - 2, - 1, - 3, - 4, - 1, - 2, - 4, - 1, - 7, - 3, - 1, - 1, - 2, - 1, - 2, - 7, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 4, - 5, - 1, - 2, - 1, - 1, - 2, - 2, - 3, - 4, - 1, - 4, - 3, - 4, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 5, - 6, - 3, - 4, - 3, - 5, - 1, - 2, - 1, - 1, - 7, - 1, - 1, - 3, - 1, - 5, - 6, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 1, - 3, - 1, - 5, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 5, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 5, - 3, - 1, - 5, - 1, - 2, - 4, - 2, - 6, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 6, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 6, - 4, - 2, - 6, - 2, - 3, - 3, - 5, - 3, - 3, - 7, - 7, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 7, - 5, - 5, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 7, - 5, - 5, - 3, - 3, - 7, - 7, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 7, - 9, - 5, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 3, - 5, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 5, - 3, - 5, - 7, - 5, - 5, - 9, - 5, - 1, - 3, - 2, - 6, - 6, - 8, - 9, - 6, - 4, - 7, - 1, - 3, - 3, - 5, - 7, - 6, - 3, - 5, - 5, - 9, - 9, - 7, - 5, - 2, - 1, - 1, - 3, - 5, - 2, - 6, - 1, - 2, - 3, - 5, - 7, - 5, - 6, - 3, - 5, - 7, - 9, - 9, - 9, - 8, - 8, - 5, - 9, - 7, - 7, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 3, - 4, - 6, - 6, - 6, - 12, - 10, - 6, - 6, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 10, - 12, - 6, - 6, - 6, - 6, - 8, - 6, - 6, - 7, - 8, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 6, - 6, - 7, - 8, - 6, - 7, - 6, - 6, - 6, - 6, - 3, - 5, - 3, - 5, - 3, - 5, - 5, - 5, - 7, - 6, - 1, - 1, - 3, - 3, - 7, - 7, - 7, - 11, - 13, - 5, - 7, - 5, - 5, - 6, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 5, - 5, - 11, - 7, - 5, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 7, - 6, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 9, - 9, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 8, - 5, - 5, - 5, - 5, - 9, - 5, - 5, - 5, - 8, - 5, - 7, - 7, - 7, - 5, - 5, - 7, - 5, - 5, - 5, - 7, - 7, - 9, - 7, - 7, - 7, - 9, - 9, - 7, - 7, - 8, - 9, - 7, - 8, - 7, - 7, - 7, - 7, - 5, - 1, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 1, - 3, - 3, - 5, - 7, - 9, - 6, - 3, - 4, - 6, - 1, - 4, - 2, - 6, - 1, - 3, - 3, - 5, - 3, - 5, - 2, - 5, - 7, - 1, - 3, - 5, - 1, - 1, - 3, - 7, - 3, - 7, - 1, - 7, - 1, - 3, - 3, - 3, - 3, - 3, - 9, - 9, - 9, - 7, - 5, - 6, - 6, - 7, - 7, - 7, - 3, - 4, - 5, - 5, - 6, - 6, - 3, - 4, - 4, - 9, - 9, - 6, - 1, - 3, - 5, - 1, - 2, - 4, - 1, - 2, - 4, - 3, - 5, - 5, - 5, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 6, - 8, - 2, - 2, - 6, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 4, - 4, - 6, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 4, - 6, - 4, - 6, - 8, - 6, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 6, - 4, - 4, - 5, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 4, - 4, - 10, - 12, - 6, - 8, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 6, - 5, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 7, - 4, - 4, - 4, - 4, - 8, - 4, - 4, - 6, - 4, - 7, - 4, - 6, - 6, - 6, - 4, - 4, - 6, - 4, - 4, - 4, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 6, - 10, - 6, - 6, - 6, - 6, - 8, - 8, - 6, - 6, - 7, - 8, - 6, - 7, - 6, - 6, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 6, - 6, - 8, - 6, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 8, - 8, - 8, - 12, - 8, - 8, - 8, - 8, - 10, - 10, - 8, - 8, - 9, - 10, - 8, - 9, - 8, - 8, - 6, - 6, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 6, - 6, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 4, - 4, - 4, - 6, - 2, - 2, - 4, - 10, - 12, - 6, - 8, - 4, - 6, - 2, - 6, - 6, - 2, - 8, - 8, - 6, - 6, - 4, - 7, - 2, - 8, - 6, - 2, - 7, - 6, - 6, - 6, - 2, - 4, - 6, - 6, - 8, - 10, - 10, - 12, - 10, - 11, - 8, - 12, - 8, - 8, - 8, - 12, - 8, - 8, - 8, - 8, - 12, - 8, - 13, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 8, - 10, - 4, - 6, - 6, - 8, - 6, - 7, - 4, - 8, - 4, - 4, - 4, - 8, - 4, - 4, - 4, - 4, - 8, - 4, - 9, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 6, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 4, - 6, - 8, - 6, - 4, - 4, - 4, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 6, - 4, - 6, - 8, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 4, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 6, - 4, - 6, - 8, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 6, - 6, - 9, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 10, - 10, - 8, - 8, - 6, - 6, - 6, - 6, - 8, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 7, - 4, - 4, - 4, - 4, - 6, - 6, - 4, - 4, - 6, - 6, - 8, - 8, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 4, - 4, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 5, - 7, - 5, - 7, - 9, - 7, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 6, - 6, - 8, - 6, - 8, - 10, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 6, - 2, - 2, - 2, - 2, - 7, - 4, - 4, - 6, - 4, - 6, - 8, - 2, - 2, - 6, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 8, - 5, - 7, - 7, - 9, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 7, - 4, - 4, - 6, - 4, - 4, - 4, - 5, - 6, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 4, - 6, - 8, - 4, - 4, - 6, - 4, - 10, - 12, - 6, - 8, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 5, - 4, - 4, - 6, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 7, - 4, - 4, - 4, - 4, - 4, - 8, - 4, - 6, - 4, - 4, - 3, - 4, - 7, - 4, - 6, - 6, - 4, - 4, - 4, - 6, - 4, - 4, - 4, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 8, - 6, - 4, - 4, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 7, - 8, - 8, - 8, - 8, - 8, - 6, - 8, - 8, - 5, - 5, - 1, - 3, - 1, - 3, - 5, - 6, - 5, - 6, - 7, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 3, - 5, - 9, - 5, - 7, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 3, - 3, - 1, - 2, - 2, - 2, - 1, - 3, - 4, - 3, - 3, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 6, - 6, - 5, - 5, - 5, - 6, - 1, - 5, - 7, - 3, - 5, - 8, - 5, - 5, - 5, - 5, - 3, - 1, - 1, - 4, - 4, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 5, - 6, - 1, - 1, - 3, - 3, - 3, - 5, - 5, - 5, - 7, - 6, - 6, - 5, - 5, - 7, - 9, - 1, - 3, - 4, - 3, - 5, - 7, - 7, - 1, - 5, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 5, - 1, - 3, - 5, - 4, - 6, - 1, - 3, - 3, - 1, - 3, - 5, - 5, - 7, - 5, - 5, - 7, - 7, - 7, - 7, - 5, - 3, - 5, - 3, - 1, - 1, - 3, - 4, - 4, - 3, - 5, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 1, - 6, - 6, - 1, - 4, - 5, - 3, - 5, - 5, - 6, - 2, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 3, - 5, - 5, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 5, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 3, - 3, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 7, - 9, - 3, - 5, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 1, - 4, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 5, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 9, - 5, - 3, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 4, - 4, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 1, - 3, - 4, - 3, - 3, - 1, - 3, - 5, - 5, - 1, - 3, - 5, - 7, - 3, - 7, - 6, - 3, - 3, - 3, - 3, - 5, - 7, - 1, - 3, - 2, - 3, - 3, - 4, - 3, - 3, - 3, - 5, - 5, - 4, - 1, - 3, - 4, - 3, - 3, - 1, - 3, - 4, - 4, - 3, - 4, - 3, - 3, - 3, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 3, - 1, - 4, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 2, - 4, - 5, - 6, - 6, - 4, - 6, - 4, - 4, - 1, - 3, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 4, - 3, - 3, - 5, - 6, - 1, - 1, - 1, - 1, - 3, - 7, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 6, - 6, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 11, - 11, - 11, - 11, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 9, - 9, - 9, - 8, - 8, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 13, - 13, - 13, - 13, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 8, - 8, - 8, - 8, - 6, - 6, - 6, - 5, - 5, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 10, - 10, - 10, - 10, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 8, - 8, - 8, - 7, - 7, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 12, - 12, - 12, - 12, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 9, - 9, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 14, - 14, - 14, - 14, - 10, - 10, - 10, - 12, - 12, - 12, - 12, - 10, - 10, - 10, - 10, - 8, - 8, - 8, - 7, - 7, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 12, - 12, - 12, - 12, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 5, - 3, - 1, - 1, - 3, - 7, - 5, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 3, - 3, - 3, - 3, - 7, - 5, - 3, - 1, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 7, - 7, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 6, - 3, - 4, - 3, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 6, - 5, - 5, - 7, - 5, - 7, - 5, - 3, - 5, - 4, - 3, - 5, - 6, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 1, - 3, - 5, - 3, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 9, - 5, - 5, - 7, - 3, - 3, - 5, - 8, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 4, - 5, - 5, - 5, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 4, - 1, - 5, - 6, - 4, - 8, - 6, - 6, - 7, - 5, - 3, - 5, - 5, - 9, - 9, - 5, - 5, - 4, - 4, - 5, - 4, - 6, - 6, - 6, - 8, - 7, - 7, - 3, - 3, - 3, - 3, - 2, - 4, - 2, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 1, - 5, - 7, - 5, - 6, - 3, - 1, - 3, - 2, - 3, - 1, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 3, - 8, - 7, - 7, - 7, - 7, - 5, - 2, - 2, - 1, - 3, - 1, - 3, - 3, - 3, - 5, - 1, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 1, - 3, - 4, - 4, - 4, - 4, - 4, - 3, - 6, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 5, - 4, - 4, - 3, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 8, - 6, - 6, - 6, - 6, - 6, - 8, - 6, - 8, - 7, - 7, - 6, - 8, - 8, - 8, - 8, - 8, - 7, - 5, - 5, - 5, - 5, - 5, - 7, - 5, - 7, - 6, - 6, - 5, - 7, - 7, - 7, - 7, - 7, - 3, - 3, - 5, - 1, - 3, - 4, - 3, - 3, - 5, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 7, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 3, - 3, - 3, - 5, - 1, - 1, - 3, - 4, - 3, - 3, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 11, - 7, - 5, - 8, - 5, - 6, - 5, - 3, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 3, - 3, - 11, - 3, - 3, - 7, - 3, - 3, - 5, - 4, - 8, - 5, - 3, - 3, - 7, - 3, - 5, - 5, - 7, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 5, - 6, - 5, - 5, - 3, - 5, - 4, - 4, - 4, - 4, - 4, - 3, - 5, - 5, - 5, - 7, - 3, - 7, - 3, - 5, - 3, - 5, - 6, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 4, - 4, - 4, - 4, - 7, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 1, - 2, - 2, - 2, - 2, - 1, - 3, - 5, - 7, - 3, - 5, - 5, - 5, - 5, - 3, - 1, - 1, - 3, - 2, - 4, - 5, - 1, - 3, - 4, - 4, - 3, - 5, - 6, - 6, - 6, - 8, - 4, - 8, - 8, - 7, - 1, - 2, - 3, - 5, - 6, - 3, - 5, - 7, - 9, - 7, - 6, - 6, - 3, - 5, - 5, - 5, - 5, - 5, - 7, - 8, - 7, - 7, - 5, - 5, - 3, - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 3, - 5, - 7, - 5, - 3, - 4, - 6, - 3, - 3, - 6, - 6, - 8, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 8, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 1, - 3, - 4, - 1, - 1, - 1, - 6, - 6, - 6, - 12, - 10, - 8, - 6, - 6, - 6, - 6, - 8, - 6, - 6, - 7, - 8, - 6, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 12, - 10, - 8, - 6, - 6, - 6, - 6, - 8, - 6, - 6, - 7, - 8, - 6, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 13, - 13, - 13, - 13, - 11, - 11, - 11, - 11, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 8, - 9, - 9, - 9, - 9, - 7, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 8, - 8, - 8, - 8, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 5, - 2, - 3, - 1, - 3, - 1, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 4, - 3, - 1, - 3, - 5, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 5, - 3, - 1, - 2, - 1, - 1, - 3, - 5, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 4, - 3, - 5, - 1, - 3, - 10, - 6, - 8, - 10, - 6, - 8, - 10, - 6, - 8, - 16, - 12, - 14, - 14, - 10, - 12, - 12, - 8, - 10, - 10, - 6, - 8, - 10, - 6, - 8, - 10, - 6, - 8, - 10, - 6, - 8, - 10, - 10, - 10, - 16, - 14, - 12, - 10, - 10, - 10, - 10, - 12, - 12, - 10, - 10, - 11, - 12, - 10, - 8, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 11, - 10, - 10, - 10, - 10, - 12, - 12, - 8, - 8, - 10, - 10, - 10, - 10, - 6, - 6, - 8, - 8, - 11, - 7, - 9, - 12, - 8, - 10, - 10, - 6, - 8, - 6, - 10, - 8, - 6, - 10, - 8, - 4, - 6, - 10, - 8, - 10, - 16, - 14, - 12, - 14, - 12, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 12, - 10, - 8, - 10, - 8, - 6, - 10, - 8, - 6, - 10, - 8, - 6, - 10, - 8, - 8, - 10, - 9, - 10, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 9, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 8, - 14, - 16, - 10, - 12, - 8, - 10, - 10, - 10, - 12, - 12, - 10, - 10, - 8, - 8, - 8, - 8, - 11, - 12, - 10, - 11, - 10, - 10, - 10, - 8, - 10, - 8, - 10, - 8, - 8, - 12, - 12, - 10, - 10, - 6, - 6, - 10, - 10, - 8, - 8, - 7, - 11, - 9, - 8, - 12, - 10, - 6, - 10, - 8, - 7, - 11, - 9, - 10, - 10, - 8, - 8, - 6, - 6, - 6, - 10, - 8, - 8, - 8, - 6, - 8, - 12, - 14, - 8, - 10, - 8, - 8, - 8, - 10, - 10, - 8, - 8, - 6, - 9, - 10, - 8, - 9, - 8, - 8, - 8, - 6, - 6, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 8, - 6, - 10, - 8, - 6, - 11, - 7, - 9, - 10, - 10, - 6, - 6, - 8, - 8, - 10, - 6, - 8, - 8, - 8, - 8, - 14, - 12, - 10, - 8, - 8, - 8, - 8, - 10, - 10, - 8, - 8, - 9, - 10, - 8, - 6, - 6, - 6, - 6, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 8, - 9, - 8, - 8, - 8, - 8, - 10, - 6, - 8, - 1, - 3, - 3, - 3, - 4, - 4, - 5, - 4, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 3, - 5, - 4, - 1, - 7, - 5, - 5, - 5, - 5, - 11, - 9, - 7, - 5, - 5, - 5, - 3, - 5, - 3, - 3, - 4, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 9, - 11, - 5, - 7, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 4, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 7, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 6, - 3, - 3, - 3, - 3, - 7, - 3, - 3, - 5, - 3, - 6, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 7, - 7, - 5, - 5, - 6, - 7, - 5, - 6, - 5, - 5, - 5, - 5, - 1, - 1, - 5, - 4, - 1, - 3, - 3, - 5, - 3, - 3, - 2, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 3, - 1, - 3, - 7, - 7, - 7, - 7, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 7, - 7, - 5, - 1, - 1, - 1, - 3, - 4, - 1, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 5, - 5, - 3, - 4, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 6, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 3, - 5, - 3, - 1, - 2, - 3, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 2, - 6, - 1, - 4, - 5, - 1, - 2, - 1, - 3, - 4, - 6, - 6, - 6, - 6, - 3, - 7, - 3, - 3, - 7, - 1, - 3, - 3, - 3, - 5, - 3, - 3, - 6, - 5, - 5, - 6, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 6, - 6, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 5, - 5, - 1, - 7, - 3, - 2, - 1, - 3, - 5, - 5, - 7, - 3, - 5, - 6, - 5, - 5, - 5, - 7, - 7, - 7, - 5, - 1, - 3, - 3, - 5, - 2, - 2, - 1, - 1, - 5, - 3, - 3, - 6, - 6, - 6, - 4, - 4, - 4, - 5, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 5, - 6, - 6, - 6, - 5, - 6, - 6, - 6, - 4, - 4, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 5, - 1, - 2, - 1, - 1, - 5, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 5, - 5, - 4, - 5, - 1, - 3, - 4, - 5, - 4, - 4, - 1, - 2, - 3, - 1, - 3, - 3, - 4, - 1, - 3, - 1, - 3, - 4, - 1, - 4, - 1, - 4, - 1, - 1, - 3, - 3, - 5, - 1, - 3, - 5, - 1, - 1, - 4, - 4, - 3, - 3, - 5, - 1, - 3, - 1, - 3, - 3, - 4, - 5, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 4, - 4, - 6, - 6, - 4, - 4, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 7, - 3, - 3, - 5, - 9, - 3, - 5, - 7, - 1, - 3, - 1, - 3, - 5, - 3, - 5, - 3, - 1, - 3, - 3, - 5, - 3, - 3, - 5, - 7, - 2, - 4, - 5, - 5, - 6, - 8, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 5, - 5, - 3, - 3, - 6, - 7, - 5, - 3, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 4, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 5, - 7, - 5, - 6, - 5, - 5, - 1, - 4, - 4, - 4, - 10, - 8, - 6, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 6, - 6, - 4, - 4, - 5, - 6, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 6, - 12, - 10, - 8, - 6, - 6, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 8, - 6, - 6, - 7, - 8, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 7, - 7, - 7, - 13, - 11, - 9, - 7, - 7, - 5, - 5, - 5, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 9, - 7, - 7, - 8, - 9, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 6, - 6, - 6, - 12, - 10, - 8, - 6, - 6, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 8, - 6, - 6, - 7, - 8, - 6, - 7, - 6, - 6, - 6, - 6, - 6, - 7, - 8, - 7, - 8, - 7, - 8, - 13, - 14, - 11, - 12, - 9, - 10, - 7, - 8, - 7, - 8, - 5, - 6, - 5, - 6, - 5, - 6, - 6, - 7, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 6, - 7, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 6, - 7, - 8, - 7, - 8, - 9, - 10, - 7, - 8, - 7, - 8, - 8, - 9, - 9, - 10, - 7, - 8, - 8, - 9, - 7, - 8, - 7, - 8, - 7, - 8, - 7, - 8, - 7, - 8, - 9, - 9, - 9, - 15, - 13, - 11, - 9, - 9, - 7, - 7, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 11, - 9, - 9, - 10, - 11, - 9, - 10, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 15, - 13, - 11, - 9, - 9, - 7, - 7, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 11, - 9, - 9, - 10, - 11, - 9, - 10, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 15, - 13, - 11, - 9, - 9, - 7, - 7, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 8, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 9, - 9, - 11, - 9, - 9, - 10, - 11, - 9, - 10, - 9, - 9, - 9, - 9, - 9, - 3, - 2, - 1, - 2, - 3, - 3, - 4, - 3, - 3, - 4, - 5, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 7, - 7, - 3, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 2, - 1, - 3, - 1, - 1, - 3, - 1, - 4, - 5, - 1, - 3, - 3, - 1, - 3, - 2, - 2, - 6, - 4, - 1, - 4, - 1, - 3, - 3, - 3, - 5, - 6, - 5, - 7, - 9, - 3, - 3, - 1, - 4, - 1, - 3, - 3, - 2, - 1, - 3, - 5, - 7, - 8, - 9, - 9, - 9, - 3, - 3, - 5, - 5, - 4, - 6, - 3, - 6, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 5, - 6, - 7, - 6, - 5, - 6, - 6, - 6, - 5, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 6, - 6, - 3, - 5, - 5, - 1, - 1, - 1, - 3, - 4, - 3, - 1, - 3, - 3, - 4, - 5, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 4, - 5, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 1, - 1, - 3, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 4, - 5, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 1, - 1, - 3, - 3, - 1, - 4, - 5, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 5, - 4, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 3, - 3, - 4, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 1, - 2, - 2, - 4, - 2, - 4, - 1, - 1, - 3, - 5, - 7, - 3, - 3, - 3, - 5, - 7, - 3, - 1, - 1, - 2, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 7, - 5, - 3, - 5, - 5, - 5, - 5, - 3, - 7, - 7, - 3, - 6, - 4, - 1, - 3, - 5, - 1, - 3, - 4, - 6, - 3, - 5, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 3, - 4, - 6, - 3, - 5, - 3, - 3, - 3, - 3, - 9, - 1, - 1, - 1, - 5, - 4, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 5, - 4, - 1, - 3, - 5, - 3, - 3, - 7, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 2, - 3, - 3, - 1, - 1, - 2, - 5, - 1, - 1, - 5, - 1, - 2, - 3, - 3, - 3, - 3, - 5, - 7, - 2, - 4, - 6, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 3, - 4, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 5, - 6, - 3, - 3, - 1, - 3, - 3, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 4, - 1, - 3, - 3, - 5, - 1, - 1, - 3, - 4, - 5, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 6, - 2, - 4, - 4, - 4, - 4, - 5, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 5, - 7, - 9, - 5, - 5, - 7, - 9, - 9, - 9, - 5, - 5, - 7, - 7, - 4, - 3, - 3, - 3, - 7, - 9, - 3, - 3, - 5, - 5, - 3, - 5, - 3, - 3, - 2, - 3, - 5, - 3, - 3, - 4, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 9, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 1, - 1, - 3, - 3, - 6, - 6, - 8, - 1, - 3, - 5, - 5, - 7, - 8, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 3, - 3, - 5, - 7, - 9, - 7, - 7, - 11, - 7, - 5, - 7, - 8, - 5, - 5, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 4, - 3, - 3, - 3, - 4, - 3, - 1, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 2, - 4, - 5, - 3, - 3, - 3, - 1, - 5, - 7, - 1, - 1, - 3, - 1, - 1, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 7, - 5, - 7, - 5, - 6, - 1, - 4, - 5, - 6, - 2, - 1, - 3, - 3, - 3, - 2, - 1, - 1, - 2, - 1, - 3, - 4, - 4, - 3, - 3, - 4, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 5, - 5, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 7, - 9, - 8, - 8, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 6, - 3, - 1, - 3, - 1, - 1, - 2, - 7, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 4, - 5, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 5, - 7, - 7, - 1, - 3, - 4, - 1, - 3, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 5, - 3, - 3, - 3, - 4, - 4, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 4, - 5, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 4, - 5, - 5, - 2, - 3, - 1, - 2, - 1, - 1, - 2, - 3, - 5, - 5, - 1, - 1, - 2, - 3, - 3, - 4, - 6, - 8, - 8, - 7, - 4, - 6, - 4, - 5, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 1, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 6, - 5, - 5, - 4, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 3, - 1, - 3, - 5, - 2, - 4, - 3, - 5, - 5, - 3, - 3, - 5, - 4, - 1, - 3, - 4, - 6, - 5, - 5, - 3, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 3, - 6, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 2, - 1, - 3, - 1, - 4, - 1, - 2, - 4, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 1, - 1, - 1, - 5, - 3, - 3, - 8, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 5, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 4, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 5, - 1, - 3, - 3, - 4, - 6, - 2, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 5, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 5, - 3, - 3, - 5, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 3, - 3, - 4, - 2, - 3, - 7, - 4, - 4, - 1, - 1, - 4, - 2, - 3, - 1, - 1, - 5, - 5, - 3, - 4, - 5, - 5, - 5, - 3, - 7, - 1, - 3, - 5, - 3, - 4, - 6, - 5, - 2, - 5, - 5, - 1, - 2, - 7, - 6, - 6, - 6, - 5, - 4, - 4, - 4, - 6, - 5, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 5, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 2, - 5, - 5, - 5, - 5, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 4, - 2, - 3, - 7, - 9, - 8, - 5, - 7, - 1, - 3, - 5, - 1, - 3, - 1, - 4, - 3, - 3, - 5, - 6, - 7, - 1, - 3, - 3, - 2, - 8, - 1, - 3, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 8, - 10, - 4, - 6, - 4, - 4, - 4, - 6, - 6, - 4, - 4, - 5, - 6, - 4, - 5, - 4, - 4, - 4, - 4, - 4, - 6, - 1, - 1, - 1, - 4, - 4, - 1, - 3 - ] - }, - "id": { - "total": 32, - "totalUnique": 29, - "unique": { - "#keyboard-cont div.error-active": 2, - "#stories-tab .card-caption-title": 2, - ".menu-open #header": 1, - ".maturity-container #maturity-rating": 1, - ".maturity-container #maturity-rating .static-pages": 1, - ".maturity-container #maturity-rating table th:last-child": 1, - ".maturity-container #maturity-rating table": 1, - ".maturity-container #maturity-rating td": 1, - ".maturity-container #maturity-rating th": 1, - ".maturity-container #maturity-rating .popup-header": 1, - "#stories-tab .card-img img": 1, - ".home-container #home_card_ad .ads>div": 1, - ".home-container #home_card_ad .advertisement_text>div": 1, - "#keyboard-cont .right-container div.error-active": 1, - "#stories-tab .right-container .card-caption-title": 1, - ".right-container #keyboard-cont div.error-active": 1, - ".right-container #stories-tab .card-caption-title": 1, - "#stories-tab .section-last+.section-youlike": 1, - "#share": 1, - "#tweet": 1, - "#help": 1, - "#keyboard-cont": 1, - "#keyboard-cont div": 1, - "#keyboard-cont div.error-active.active": 1, - "#halfclip": 2, - "#clipped": 1, - "#fixed": 1, - "#closeDiv": 1, - ".skinner-ad #closeDiv": 1 - }, - "uniquenessRatio": 0.90625, - "ratio": 0.003918207420105302 - }, - "pseudoClasses": { - "total": 1081, - "totalUnique": 16, - "unique": { - "first-of-type": 13, - "after": 108, - "last-child": 255, - "checked": 3, - "first-child": 20, - "before": 294, - "last-of-type": 40, - "focus": 8, - "not": 110, - "hover": 103, - "nth-child": 119, - "nth-last-child": 3, - "active": 1, - "empty": 2, - "root": 1, - "Georgia": 1 - }, - "uniquenessRatio": 0.014801110083256245 - }, - "accessibility": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "keyframes": { - "total": 12, - "totalUnique": 4, - "unique": { - "0%": 5, - "to": 5, - "49%": 1, - "50%": 1 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "prefixed": { - "total": 5, - "totalUnique": 5, - "unique": { - ".facebook-live::-webkit-scrollbar-track": 1, - ".facebook-live::-webkit-scrollbar": 1, - ".facebook-live::-webkit-scrollbar-thumb": 1, - "::-moz-selection": 1, - ".slider::-webkit-scrollbar": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0006122199093914534 - }, - "combinators": { - "total": 10369, - "totalUnique": 4, - "unique": { - " ": 10313, - "~": 3, - ">": 49, - "+": 4 - }, - "uniquenessRatio": 0.00038576526183817147 - } - }, - "declarations": { - "total": 6144, - "totalUnique": 1910, - "uniquenessRatio": 0.3108723958333333, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 6144 - } - }, - "properties": { - "total": 6144, - "totalUnique": 131, - "unique": { - "font-family": 46, - "font-size": 192, - "line-height": 138, - "display": 297, - "position": 258, - "overflow": 85, - "min-height": 44, - "height": 264, - "margin-left": 78, - "margin-right": 248, - "background-color": 192, - "content": 51, - "width": 363, - "top": 161, - "right": 97, - "bottom": 65, - "left": 134, - "margin": 154, - "object-fit": 5, - "transform": 52, - "padding": 216, - "box-sizing": 4, - "-webkit-text-size-adjust": 1, - "-webkit-tap-highlight-color": 1, - "-webkit-overflow-scrolling": 2, - "color": 313, - "text-decoration": 4, - "outline": 10, - "list-style": 6, - "max-width": 176, - "padding-left": 30, - "padding-right": 21, - "margin-top": 99, - "margin-bottom": 161, - "border-radius": 178, - "float": 10, - "background": 146, - "padding-bottom": 60, - "text-align": 124, - "z-index": 105, - "overflow-y": 7, - "box-shadow": 64, - "cursor": 30, - "fill": 87, - "text-transform": 28, - "text-overflow": 10, - "white-space": 17, - "flex-direction": 29, - "flex-wrap": 22, - "flex-grow": 1, - "justify-content": 50, - "align-items": 77, - "align-self": 6, - "padding-top": 109, - "border": 109, - "border-bottom": 83, - "font-weight": 201, - "vertical-align": 50, - "border-bottom-color": 1, - "opacity": 63, - "border-right": 9, - "min-width": 44, - "transition": 30, - "max-height": 41, - "visibility": 11, - "font-style": 28, - "background-position": 14, - "background-repeat": 7, - "background-size": 7, - "background-image": 23, - "flex": 137, - "filter": 2, - "user-select": 3, - "touch-action": 1, - "clear": 4, - "pointer-events": 3, - "border-top": 13, - "animation": 8, - "grid-template-columns": 4, - "grid-column-gap": 2, - "letter-spacing": 12, - "transform-origin": 2, - "align-content": 2, - "flex-basis": 2, - "order": 15, - "border-color": 2, - "border-width": 3, - "-webkit-transition": 3, - "-webkit-user-select": 1, - "-moz-user-select": 1, - "border-left": 4, - "text-shadow": 3, - "stroke": 3, - "overflow-x": 5, - "background-clip": 3, - "border-collapse": 3, - "direction": 1, - "will-change": 1, - "-webkit-transform": 7, - "word-break": 2, - "font": 5, - "transition-delay": 1, - "-webkit-font-smoothing": 1, - "-moz-osx-font-smoothing": 1, - "border-bottom-right-radius": 2, - "--n": 1, - "--fifa-white": 1, - "--fifa-black": 1, - "--fifa-table-border": 1, - "--fifa-light-gray": 1, - "--fifa-border": 1, - "--fifa-eee": 1, - "--fifa-yellow": 1, - "--fifa-red": 1, - "--fifa-green": 1, - "--fifa-lp": 1, - "--fifa-mu": 1, - "--fifa-blue": 1, - "gap": 1, - "border-spacing": 1, - "-webkit-animation": 6, - "border-style": 1, - "-webkit-line-clamp": 1, - "-webkit-box-orient": 1, - "word-wrap": 3, - "perspective": 1, - "transform-style": 1, - "-webkit-backface-visibility": 1, - "backface-visibility": 1, - "border-top-right-radius": 1, - "background-position-x": 1 - }, - "uniquenessRatio": 0.021321614583333332, - "prefixed": { - "total": 27, - "totalUnique": 13, - "unique": { - "-webkit-text-size-adjust": 1, - "-webkit-tap-highlight-color": 1, - "-webkit-overflow-scrolling": 2, - "-webkit-transition": 3, - "-webkit-user-select": 1, - "-moz-user-select": 1, - "-webkit-transform": 7, - "-webkit-font-smoothing": 1, - "-moz-osx-font-smoothing": 1, - "-webkit-animation": 6, - "-webkit-line-clamp": 1, - "-webkit-box-orient": 1, - "-webkit-backface-visibility": 1 - }, - "uniquenessRatio": 0.48148148148148145, - "ratio": 0.00439453125 - }, - "custom": { - "total": 13, - "totalUnique": 13, - "unique": { - "--n": 1, - "--fifa-white": 1, - "--fifa-black": 1, - "--fifa-table-border": 1, - "--fifa-light-gray": 1, - "--fifa-border": 1, - "--fifa-eee": 1, - "--fifa-yellow": 1, - "--fifa-red": 1, - "--fifa-green": 1, - "--fifa-lp": 1, - "--fifa-mu": 1, - "--fifa-blue": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.0021158854166666665, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0065104166666667, - "mode": 1, - "range": 1, - "sum": 6184 - } - }, - "values": { - "colors": { - "total": 1020, - "totalUnique": 146, - "unique": { - "#ccc": 6, - "transparent": 52, - "#fff": 230, - "#171717": 46, - "#fafafa": 7, - "#8a8a8a": 4, - "#a5a0a0": 1, - "rgba(0, 0, 0, .9)": 3, - "rgba(0, 0, 0, .18)": 2, - "rgba(0, 0, 0, .15)": 4, - "#3457a7": 107, - "rgba(0, 0, 0, .87)": 4, - "#212121": 10, - "#000": 101, - "hsla(0, 0%, 100%, .3)": 7, - "#f1f1f1": 15, - "rgba(0, 0, 0, .1)": 37, - "#d6d1d1": 1, - "#c4c4c4": 2, - "rgba(52, 87, 167, .05)": 6, - "rgba(0, 0, 0, .5)": 6, - "rgba(0, 0, 0, .07)": 3, - "rgba(0, 0, 0, .8)": 7, - "rgba(0, 0, 0, .05)": 2, - "hsla(0, 0%, 100%, .1)": 2, - "rgba(0, 0, 0, .56)": 1, - "#3948da": 4, - "#0927b6": 4, - "#fce44d": 16, - "#eee": 37, - "#444": 6, - "#222": 4, - "#f5f5f5": 3, - "rgba(0, 0, 0, .7)": 18, - "hsla(0, 0%, 9%, .5)": 2, - "#555": 3, - "#dadce0": 7, - "#f8f9fa": 3, - "#3357a7": 15, - "#0e0a45": 1, - "#eaeaea": 4, - "red": 9, - "#aaa": 1, - "#ed2967": 2, - "#e6e6e7": 1, - "#06182c": 1, - "rgba(77, 72, 69, .15)": 1, - "rgba(77, 72, 69, .2)": 1, - "hsla(0, 0%, 100%, .2)": 5, - "#ecebeb": 2, - "#999": 3, - "#b1b1b1": 1, - "#f9f9f9": 6, - "rgba(0, 0, 0, .22)": 2, - "rgba(0, 0, 0, .62)": 1, - "rgba(0, 0, 0, .69)": 1, - "rgba(0, 0, 0, .76)": 1, - "hsla(0, 0%, 100%, 0)": 4, - "#264860": 1, - "#e5e4de": 2, - "#0037ff": 4, - "hsla(0, 0%, 9%, .1)": 9, - "hsla(0, 0%, 9%, .7)": 2, - "#ddd": 12, - "#4364ff": 6, - "hsla(0, 0%, 9%, 0)": 4, - "hsla(0, 0%, 100%, .7)": 8, - "#fc5122": 2, - "#e9eeff": 1, - "#b2b1b1": 1, - "#575757": 2, - "#f3f6f9": 1, - "hsla(0, 0%, 100%, .79)": 1, - "rgba(51, 51, 51, .5)": 4, - "#ffed59": 7, - "#f6d93a": 1, - "#eaeef9": 1, - "hsla(0, 0%, 100%, .8)": 2, - "rgba(0, 0, 0, .4)": 6, - "hsla(0, 0%, 98%, 0)": 1, - "rgba(0, 0, 0, .04)": 1, - "rgba(0, 0, 0, .2)": 3, - "#ff5354": 1, - "#9764ff": 1, - "#dc0000": 1, - "#3557a7": 2, - "#e6e5e5": 1, - "#ef4044": 3, - "#939393": 2, - "#ff6d00": 1, - "rgba(51, 51, 51, .2)": 1, - "#cdd9f3": 2, - "rgba(0, 0, 0, .3)": 3, - "#212a34": 2, - "#a1acb4": 1, - "#fd0": 1, - "#3d60ff": 1, - "#e9ecf3": 1, - "#f8d8d8": 1, - "#c8e7e1": 1, - "#98bdb6": 1, - "green": 4, - "#ededed": 2, - "rgba(33, 33, 33, 0)": 1, - "rgba(0, 0, 0, .25)": 1, - "rgba(52, 87, 167, .1)": 1, - "#bcdbc5": 1, - "#e2b7b7": 1, - "#a53838": 1, - "#f2f2f2": 1, - "#e02020": 3, - "#f4f4f4": 1, - "#f6f7fb": 1, - "#dee2e6": 2, - "#ffeb3b": 1, - "#fa0200": 1, - "#c8102e": 1, - "#da291c": 1, - "#4285f4": 2, - "#888": 4, - "#70757a": 4, - "#666": 3, - "#202124": 4, - "currentColor": 1, - "#16b7c8": 1, - "rgba(32, 33, 36, .3)": 1, - "#ff0": 1, - "#36b649": 1, - "#c7c7c7": 1, - "rgba(0, 0, 0, .6)": 1, - "#2e4476": 3, - "#747474": 1, - "#0045e6": 1, - "#202020": 1, - "#dcdcdc": 1, - "#d8d8d8": 1, - "#e2e2e2": 1, - "#f6f7f8": 3, - "#2b2929": 7, - "#3d3b3b": 3, - "#f8f8f8": 1, - "#dcdbdb": 1, - "#ff5076": 1, - "#333": 1, - "rgba(240, 135, 135, .08)": 1, - "#1d1d1d": 1 - }, - "uniquenessRatio": 0.14313725490196078, - "itemsPerContext": { - "background-color": { - "total": 178, - "totalUnique": 49, - "unique": { - "#ccc": 1, - "#fff": 46, - "rgba(0, 0, 0, .87)": 1, - "#212121": 4, - "#fafafa": 3, - "rgba(52, 87, 167, .05)": 6, - "rgba(0, 0, 0, .5)": 2, - "transparent": 18, - "#3457a7": 18, - "#f5f5f5": 3, - "rgba(0, 0, 0, .7)": 3, - "hsla(0, 0%, 9%, .5)": 2, - "#f1f1f1": 2, - "#f8f9fa": 3, - "#3357a7": 3, - "#0e0a45": 1, - "#ed2967": 1, - "red": 2, - "#e6e6e7": 1, - "#06182c": 1, - "#000": 8, - "#f9f9f9": 4, - "rgba(0, 0, 0, .8)": 3, - "#171717": 9, - "#fce44d": 2, - "hsla(0, 0%, 98%, 0)": 1, - "#212a34": 2, - "#fd0": 1, - "#3d60ff": 1, - "#c8e7e1": 1, - "#ededed": 2, - "hsla(0, 0%, 100%, .1)": 1, - "hsla(0, 0%, 100%, .2)": 1, - "rgba(0, 0, 0, .9)": 1, - "hsla(0, 0%, 9%, .1)": 1, - "#ffed59": 3, - "#dadce0": 1, - "#4285f4": 1, - "#eee": 4, - "#999": 1, - "#dee2e6": 1, - "#ff0": 1, - "#36b649": 1, - "#ddd": 1, - "#0045e6": 1, - "#d8d8d8": 1, - "#e2e2e2": 1, - "#f8f8f8": 1, - "rgba(0, 0, 0, .3)": 1 - }, - "uniquenessRatio": 0.2752808988764045 - }, - "-webkit-tap-highlight-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "transparent": 1 - }, - "uniquenessRatio": 1 - }, - "color": { - "total": 309, - "totalUnique": 50, - "unique": { - "#171717": 14, - "#8a8a8a": 4, - "#a5a0a0": 1, - "#fff": 74, - "#3457a7": 46, - "#000": 69, - "rgba(0, 0, 0, .8)": 2, - "#222": 4, - "rgba(0, 0, 0, .7)": 12, - "#555": 3, - "#3357a7": 6, - "#eaeaea": 1, - "red": 7, - "#aaa": 1, - "#ed2967": 1, - "#b1b1b1": 1, - "#212121": 1, - "rgba(0, 0, 0, .87)": 1, - "#0037ff": 2, - "hsla(0, 0%, 9%, .7)": 2, - "#4364ff": 2, - "hsla(0, 0%, 100%, .7)": 6, - "#fc5122": 1, - "#b2b1b1": 1, - "#575757": 2, - "#c4c4c4": 1, - "hsla(0, 0%, 100%, .8)": 1, - "#ffed59": 1, - "#dc0000": 1, - "#3557a7": 1, - "#ef4044": 2, - "#939393": 2, - "#ff6d00": 1, - "green": 3, - "transparent": 1, - "#a53838": 1, - "#e02020": 3, - "#888": 4, - "#70757a": 4, - "#666": 2, - "#202124": 4, - "#999": 1, - "#444": 5, - "#16b7c8": 1, - "#c7c7c7": 1, - "rgba(0, 0, 0, .4)": 1, - "rgba(0, 0, 0, .6)": 1, - "#747474": 1, - "#ff5076": 1, - "#333": 1 - }, - "uniquenessRatio": 0.16181229773462782 - }, - "background": { - "total": 177, - "totalUnique": 51, - "unique": { - "#fafafa": 4, - "rgba(0, 0, 0, .9)": 2, - "#fff": 42, - "transparent": 17, - "#3457a7": 6, - "rgba(0, 0, 0, .87)": 2, - "hsla(0, 0%, 100%, .1)": 1, - "#3948da": 4, - "#0927b6": 4, - "#fce44d": 5, - "#000": 6, - "hsla(0, 0%, 100%, .2)": 1, - "#3357a7": 2, - "rgba(0, 0, 0, .22)": 2, - "rgba(0, 0, 0, .62)": 1, - "rgba(0, 0, 0, .69)": 1, - "rgba(0, 0, 0, .76)": 1, - "#212121": 4, - "#264860": 1, - "hsla(0, 0%, 100%, 0)": 1, - "rgba(0, 0, 0, .1)": 2, - "#e9eeff": 1, - "rgba(0, 0, 0, .5)": 3, - "hsla(0, 0%, 9%, .1)": 1, - "#4364ff": 2, - "#0037ff": 2, - "#171717": 4, - "#f3f6f9": 1, - "#eaeef9": 1, - "#ffed59": 1, - "rgba(0, 0, 0, .04)": 1, - "rgba(0, 0, 0, .7)": 1, - "rgba(0, 0, 0, .8)": 1, - "rgba(0, 0, 0, .2)": 1, - "#ff5354": 1, - "#9764ff": 1, - "#3557a7": 1, - "hsla(0, 0%, 100%, .7)": 1, - "rgba(0, 0, 0, .4)": 3, - "#f9f9f9": 1, - "#cdd9f3": 2, - "#e9ecf3": 1, - "#bcdbc5": 1, - "#e2b7b7": 1, - "#f1f1f1": 1, - "#f6f7f8": 3, - "#eee": 14, - "#ddd": 6, - "#2b2929": 7, - "#3d3b3b": 3, - "#1d1d1d": 1 - }, - "uniquenessRatio": 0.288135593220339 - }, - "box-shadow": { - "total": 61, - "totalUnique": 19, - "unique": { - "rgba(0, 0, 0, .18)": 2, - "rgba(0, 0, 0, .15)": 4, - "rgba(0, 0, 0, .1)": 30, - "rgba(0, 0, 0, .07)": 3, - "rgba(0, 0, 0, .05)": 2, - "rgba(0, 0, 0, .56)": 1, - "rgba(77, 72, 69, .15)": 1, - "rgba(77, 72, 69, .2)": 1, - "hsla(0, 0%, 9%, .1)": 1, - "rgba(51, 51, 51, .5)": 4, - "#fff": 2, - "rgba(51, 51, 51, .2)": 1, - "rgba(0, 0, 0, .3)": 2, - "rgba(0, 0, 0, .2)": 1, - "rgba(0, 0, 0, .25)": 1, - "#f1f1f1": 1, - "rgba(32, 33, 36, .3)": 1, - "#2e4476": 2, - "rgba(240, 135, 135, .08)": 1 - }, - "uniquenessRatio": 0.3114754098360656 - }, - "fill": { - "total": 87, - "totalUnique": 15, - "unique": { - "#fff": 44, - "#000": 9, - "#171717": 4, - "#3457a7": 15, - "#444": 1, - "rgba(0, 0, 0, .7)": 2, - "#fc5122": 1, - "#3357a7": 2, - "#fce44d": 2, - "#4364ff": 2, - "#ef4044": 1, - "#a1acb4": 1, - "rgba(0, 0, 0, .8)": 1, - "#ffed59": 1, - "currentColor": 1 - }, - "uniquenessRatio": 0.1724137931034483 - }, - "border": { - "total": 74, - "totalUnique": 20, - "unique": { - "#fff": 11, - "#f1f1f1": 11, - "transparent": 4, - "#dadce0": 4, - "#3357a7": 1, - "#eee": 7, - "#ecebeb": 2, - "#999": 1, - "#000": 4, - "#171717": 10, - "hsla(0, 0%, 100%, .3)": 2, - "#3457a7": 8, - "#e6e5e5": 1, - "#f8d8d8": 1, - "#98bdb6": 1, - "#ccc": 2, - "rgba(52, 87, 167, .1)": 1, - "#eaeaea": 1, - "#202020": 1, - "#dcdcdc": 1 - }, - "uniquenessRatio": 0.2702702702702703 - }, - "border-bottom": { - "total": 56, - "totalUnique": 19, - "unique": { - "hsla(0, 0%, 100%, .3)": 3, - "#d6d1d1": 1, - "rgba(0, 0, 0, .1)": 5, - "#fff": 2, - "#fce44d": 6, - "#eee": 7, - "#000": 2, - "#ccc": 1, - "#e5e4de": 2, - "hsla(0, 0%, 9%, .1)": 4, - "#ddd": 5, - "hsla(0, 0%, 100%, .7)": 1, - "#3457a7": 5, - "transparent": 4, - "hsla(0, 0%, 100%, .2)": 3, - "#f2f2f2": 1, - "#eaeaea": 2, - "#dadce0": 1, - "rgba(0, 0, 0, .2)": 1 - }, - "uniquenessRatio": 0.3392857142857143 - }, - "border-bottom-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "border-right": { - "total": 8, - "totalUnique": 6, - "unique": { - "#c4c4c4": 1, - "#ccc": 1, - "#eee": 3, - "#fff": 1, - "#000": 1, - "#3357a7": 1 - }, - "uniquenessRatio": 0.75 - }, - "border-top": { - "total": 8, - "totalUnique": 5, - "unique": { - "#eee": 1, - "hsla(0, 0%, 9%, .1)": 2, - "hsla(0, 0%, 100%, .3)": 2, - "transparent": 2, - "#dadce0": 1 - }, - "uniquenessRatio": 0.625 - }, - "background-image": { - "total": 34, - "totalUnique": 15, - "unique": { - "hsla(0, 0%, 100%, 0)": 3, - "#f9f9f9": 1, - "hsla(0, 0%, 9%, 0)": 4, - "#171717": 5, - "hsla(0, 0%, 100%, .79)": 1, - "#fff": 4, - "#ffed59": 1, - "#f6d93a": 1, - "transparent": 3, - "hsla(0, 0%, 100%, .8)": 1, - "#3457a7": 6, - "rgba(33, 33, 33, 0)": 1, - "#212121": 1, - "#000": 1, - "#dcdbdb": 1 - }, - "uniquenessRatio": 0.4411764705882353 - }, - "border-color": { - "total": 5, - "totalUnique": 3, - "unique": { - "#ccc": 1, - "#3457a7": 2, - "transparent": 2 - }, - "uniquenessRatio": 0.6 - }, - "border-left": { - "total": 3, - "totalUnique": 3, - "unique": { - "#fff": 1, - "#3457a7": 1, - "#2e4476": 1 - }, - "uniquenessRatio": 1 - }, - "text-shadow": { - "total": 3, - "totalUnique": 2, - "unique": { - "rgba(0, 0, 0, .4)": 2, - "rgba(0, 0, 0, .5)": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "stroke": { - "total": 3, - "totalUnique": 3, - "unique": { - "#fce44d": 1, - "#fff": 1, - "#666": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-white": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-black": { - "total": 1, - "totalUnique": 1, - "unique": { - "#000": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-table-border": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f4f4f4": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-light-gray": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f6f7fb": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-border": { - "total": 1, - "totalUnique": 1, - "unique": { - "#dee2e6": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-eee": { - "total": 1, - "totalUnique": 1, - "unique": { - "#eee": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-yellow": { - "total": 1, - "totalUnique": 1, - "unique": { - "#ffeb3b": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-red": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fa0200": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-green": { - "total": 1, - "totalUnique": 1, - "unique": { - "green": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-lp": { - "total": 1, - "totalUnique": 1, - "unique": { - "#c8102e": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-mu": { - "total": 1, - "totalUnique": 1, - "unique": { - "#da291c": 1 - }, - "uniquenessRatio": 1 - }, - "--fifa-blue": { - "total": 1, - "totalUnique": 1, - "unique": { - "#4285f4": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 1020, - "totalUnique": 7, - "unique": { - "hex3": 413, - "transparent": 52, - "hex6": 370, - "rgba": 124, - "hsla": 47, - "named": 13, - "currentcolor": 1 - }, - "uniquenessRatio": 0.006862745098039216 - } - }, - "gradients": { - "total": 35, - "totalUnique": 24, - "unique": { - "linear-gradient(270deg, #3948da, #0927b6)": 4, - "linear-gradient(180deg, transparent, rgba(0, 0, 0, .22) 50%, rgba(0, 0, 0, .62) 71%, rgba(0, 0, 0, .69) 81%, rgba(0, 0, 0, .76))": 1, - "linear-gradient(180deg, hsla(0, 0%, 100%, 0), #f9f9f9)": 1, - "linear-gradient(hsla(0, 0%, 100%, 0) 5%, #fff)": 1, - "linear-gradient(180deg, hsla(0, 0%, 9%, 0), #171717)": 3, - "linear-gradient(0deg, #4364ff, #0037ff)": 2, - "linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, .79) 51%, #fff)": 1, - "linear-gradient(0deg, #ffed59, #f6d93a)": 1, - "linear-gradient(0deg, transparent, #171717)": 1, - "linear-gradient(180deg, transparent, rgba(0, 0, 0, .04) 19%, rgba(0, 0, 0, .22) 69%, rgba(0, 0, 0, .7) 98%, rgba(0, 0, 0, .8) 99%, transparent)": 1, - "linear-gradient(180deg, #ff5354, #9764ff)": 1, - "linear-gradient(180deg, transparent, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .4) 71%, rgba(0, 0, 0, .4) 81%, rgba(0, 0, 0, .5))": 1, - "linear-gradient(90deg, hsla(0, 0%, 9%, 0) 0, #171717)": 1, - "linear-gradient(90deg, transparent, hsla(0, 0%, 100%, .8) 50%, #fff 71%, #fff 81%, #fff)": 1, - "linear-gradient(0deg, #3457a7, #3457a7)": 3, - "linear-gradient(0deg, rgba(33, 33, 33, 0), #212121)": 1, - "linear-gradient(180deg, transparent, #000)": 1, - "-webkit-gradient(linear, left top, right top, color-stop(8%, #eee), color-stop(24%, #ddd), color-stop(36%, #eee))": 2, - "-webkit-linear-gradient(left, #eee 8%, #ddd 24%, #eee 36%)": 2, - "linear-gradient(90deg, #eee 8%, #ddd 24%, #eee 36%)": 2, - "-webkit-gradient(linear, left top, right top, color-stop(8%, #2b2929), color-stop(24%, #3d3b3b), color-stop(36%, #2b2929))": 1, - "-webkit-linear-gradient(left, #2b2929 8%, #3d3b3b 24%, #2b2929 36%)": 1, - "linear-gradient(90deg, #2b2929 8%, #3d3b3b 24%, #2b2929 36%)": 1, - "linear-gradient(270deg, #dcdbdb 50%, hsla(0, 0%, 100%, 0) 0)": 1 - }, - "uniquenessRatio": 0.6857142857142857 - }, - "fontFamilies": { - "total": 49, - "totalUnique": 6, - "unique": { - "Georgia": 13, - "Verdana, arial, sans-serif": 1, - "Verdana": 31, - "sans-serif": 1, - "georgia-regular": 1, - "Arial, Helvetica, sans-serif": 2 - }, - "uniquenessRatio": 0.12244897959183673 - }, - "fontSizes": { - "total": 197, - "totalUnique": 51, - "unique": { - "0": 4, - ".625rem": 4, - ".75rem": 9, - "1rem": 22, - ".875rem": 11, - "1.125rem": 2, - "1.25rem": 4, - "1.3125rem": 1, - "1.5rem": 4, - ".8rem": 6, - "12px": 14, - "14px": 28, - ".8px": 1, - "13px": 6, - ".7em": 2, - "20px": 2, - "16px": 12, - ".6875rem": 1, - ".75em": 2, - ".8em": 1, - "1.1875rem": 1, - "15px": 5, - "18px": 2, - "36px": 1, - "32px": 1, - "24px": 5, - "2em": 2, - "27px": 1, - "2.1rem": 1, - "1.8rem": 2, - "1.6rem": 1, - "1.1rem": 1, - ".7rem": 4, - "10px": 5, - "1em": 2, - ".5em": 1, - "2rem": 5, - "1.15rem": 3, - "17px": 2, - "1.2em": 1, - "40px": 1, - "2.25rem": 2, - "1.4rem": 1, - ".9rem": 1, - "11px": 3, - "3.7rem": 1, - ".9375rem": 2, - "22px": 1, - ".66rem": 1, - ".8125em": 1, - "1.375rem": 1 - }, - "uniquenessRatio": 0.25888324873096447 - }, - "lineHeights": { - "total": 143, - "totalUnique": 47, - "unique": { - "0": 24, - "1": 12, - "2": 1, - "1.5": 27, - ".9375rem": 2, - ".75": 1, - "1.5rem": 3, - "18px": 4, - "22px": 2, - "20px": 4, - "1rem": 2, - "1.71": 2, - "24px": 4, - "30px": 2, - "50px": 1, - "1.4": 6, - "38px": 1, - "3.5rem": 1, - "2.4rem": 1, - "2.2rem": 2, - "1.7rem": 2, - "1.9rem": 1, - "21px": 1, - "1.8rem": 3, - "1.6": 2, - "19px": 1, - "1.3": 2, - "1.2em": 1, - "2rem": 2, - "1.25rem": 1, - "Infinity": 1, - "1.6875": 1, - "1.75": 1, - "16px": 3, - "23px": 1, - "1.7": 1, - "1.2": 4, - "28px": 1, - "1.214": 1, - "1.3125rem": 1, - "1.43": 4, - "1.63": 1, - "1.23": 1, - "1.3125": 1, - "1.88": 1, - "1.7em": 1, - "2.5rem": 1 - }, - "uniquenessRatio": 0.32867132867132864 - }, - "zindexes": { - "total": 105, - "totalUnique": 20, - "unique": { - "0": 2, - "1": 46, - "2": 16, - "3": 6, - "6": 1, - "9": 6, - "10": 3, - "20": 1, - "30": 1, - "40": 1, - "98": 1, - "99": 3, - "500": 1, - "999": 6, - "1000": 2, - "1040": 1, - "1050": 2, - "9999": 1, - "99999": 2, - "-1": 3 - }, - "uniquenessRatio": 0.19047619047619047 - }, - "textShadows": { - "total": 3, - "totalUnique": 3, - "unique": { - "1px 1px 2px rgba(0, 0, 0, .4)": 1, - "0 1px 2px rgba(0, 0, 0, .5)": 1, - "0 -1px 0 rgba(0, 0, 0, .4)": 1 - }, - "uniquenessRatio": 1 - }, - "boxShadows": { - "total": 56, - "totalUnique": 31, - "unique": { - "0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15)": 2, - "0 0 10px 0 rgba(0, 0, 0, .1)": 16, - "0 12px 13px -5px rgba(0, 0, 0, .07)": 1, - "0 0 .625rem 0 rgba(0, 0, 0, .1)": 8, - "0 0 10px 0 rgba(0, 0, 0, .05)": 1, - "3px 10px 12px -14px rgba(0, 0, 0, .56)": 1, - "0 1px 4px rgba(77, 72, 69, .15), 0 8px 14px rgba(77, 72, 69, .2)": 1, - "0 4px 20px 0 rgba(0, 0, 0, .15)": 1, - "0 5px 10px 0 hsla(0, 0%, 9%, .1)": 1, - "0 8px 10px 0 rgba(0, 0, 0, .1)": 1, - "0 5px 10px 0 rgba(0, 0, 0, .1)": 2, - "inset 0 18px 19px -13px rgba(0, 0, 0, .05)": 1, - "0 2px 30px 0 rgba(0, 0, 0, .07)": 1, - "0 .25rem 1.25rem 0 rgba(0, 0, 0, .15)": 1, - "0 0 12px rgba(51, 51, 51, .5)": 2, - "0 3px 0 #fff, 0 0 12px rgba(51, 51, 51, .5)": 1, - "0 -3px 0 #fff, 0 0 12px rgba(51, 51, 51, .5)": 1, - "0 0 20px 0 rgba(0, 0, 0, .1)": 1, - "0 0 .5rem rgba(51, 51, 51, .2)": 1, - "0 0 20px 0 rgba(0, 0, 0, .3)": 1, - "0 0 5px 0 rgba(0, 0, 0, .2)": 1, - "0 .25rem .25rem 0 rgba(0, 0, 0, .25)": 1, - "0 0 .625rem 0 rgba(0, 0, 0, .07)": 1, - "0 0 10px rgba(0, 0, 0, .1)": 1, - "0 0 0 .0625rem #f1f1f1": 1, - "0 1px 6px rgba(32, 33, 36, .3)": 1, - "0 5px 0 0 #2e4476": 1, - "0 2px 0 0 #2e4476": 1, - "0 0 .625rem 0 rgba(0, 0, 0, .3)": 1, - "0 .3125rem 1.25rem 0 rgba(0, 0, 0, .1)": 1, - "0 4px 20px 0 rgba(240, 135, 135, .08)": 1 - }, - "uniquenessRatio": 0.5535714285714286 - }, - "borderRadiuses": { - "total": 179, - "totalUnique": 36, - "unique": { - "0": 10, - ".25rem": 22, - "5px": 16, - "50%": 30, - "4px": 28, - "12px": 2, - "4px 4px 0 0": 1, - "8px 8px 8px 8px": 1, - "0 20px 20px 0": 3, - "20px 0 0 20px": 1, - "20px": 14, - "5px 5px 0 0": 1, - "1.25rem": 4, - "2px": 4, - "30px": 2, - "100%": 11, - "8px": 3, - "1.25rem 1.25rem 0 0": 1, - "10px": 4, - "6px": 1, - "1000px": 1, - ".25rem .25rem 0 0": 1, - "0 .25rem .25rem 0": 1, - "3px": 2, - ".625rem": 1, - ".125rem": 3, - ".1875rem": 1, - "50px": 1, - ".3125rem": 1, - ".75rem": 1, - ".5rem": 1, - "1.5625rem": 1, - ".3125rem .3125rem 0 0": 1, - "24px": 2, - "16px": 1, - "21px": 1 - }, - "uniquenessRatio": 0.2011173184357542, - "itemsPerContext": { - "border-radius": { - "total": 176, - "totalUnique": 36, - "unique": { - "0": 10, - ".25rem": 21, - "5px": 16, - "50%": 30, - "4px": 28, - "12px": 2, - "4px 4px 0 0": 1, - "8px 8px 8px 8px": 1, - "0 20px 20px 0": 3, - "20px 0 0 20px": 1, - "20px": 14, - "5px 5px 0 0": 1, - "1.25rem": 4, - "2px": 4, - "30px": 2, - "100%": 11, - "8px": 3, - "1.25rem 1.25rem 0 0": 1, - "10px": 4, - "6px": 1, - "1000px": 1, - ".25rem .25rem 0 0": 1, - "0 .25rem .25rem 0": 1, - "3px": 2, - ".625rem": 1, - ".125rem": 1, - ".1875rem": 1, - "50px": 1, - ".3125rem": 1, - ".75rem": 1, - ".5rem": 1, - "1.5625rem": 1, - ".3125rem .3125rem 0 0": 1, - "24px": 2, - "16px": 1, - "21px": 1 - }, - "uniquenessRatio": 0.20454545454545456 - }, - "border-bottom-right-radius": { - "total": 2, - "totalUnique": 2, - "unique": { - ".25rem": 1, - ".125rem": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-right-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - ".125rem": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "animations": { - "durations": { - "total": 50, - "totalUnique": 12, - "unique": { - ".2s": 9, - ".1s": 1, - ".4s": 9, - "1s": 8, - ".5s": 2, - ".3s": 4, - ".25s": 5, - "0s": 4, - ".33s": 1, - "4s": 1, - "16s": 4, - "8s": 2 - }, - "uniquenessRatio": 0.24 - }, - "timingFunctions": { - "total": 43, - "totalUnique": 6, - "unique": { - "ease-in-out": 16, - "ease": 5, - "linear": 13, - "ease-out": 4, - "ease-in": 1, - "steps(2)": 4 - }, - "uniquenessRatio": 0.13953488372093023 - } - }, - "prefixes": { - "total": 14, - "totalUnique": 10, - "unique": { - "-webkit-transform .25s ease-in-out": 2, - "transform .25s ease-in-out, -webkit-transform .25s ease-in-out": 1, - "-webkit-box": 2, - "-webkit-flex": 1, - "-ms-flexbox": 1, - "-webkit-sticky": 1, - "-webkit-gradient(linear, left top, right top, color-stop(8%, #eee), color-stop(24%, #ddd), color-stop(36%, #eee))": 2, - "-webkit-linear-gradient(left, #eee 8%, #ddd 24%, #eee 36%)": 2, - "-webkit-gradient(linear, left top, right top, color-stop(8%, #2b2929), color-stop(24%, #3d3b3b), color-stop(36%, #2b2929))": 1, - "-webkit-linear-gradient(left, #2b2929 8%, #3d3b3b 24%, #2b2929 36%)": 1 - }, - "uniquenessRatio": 0.7142857142857143 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 2721, - "totalUnique": 9, - "unique": { - "rem": 905, - "vh": 14, - "px": 1660, - "s": 56, - "deg": 59, - "em": 21, - "fr": 3, - "turn": 2, - "vw": 1 - }, - "uniquenessRatio": 0.0033076074972436605, - "itemsPerContext": { - "font-size": { - "total": 188, - "totalUnique": 3, - "unique": { - "rem": 87, - "px": 90, - "em": 11 - }, - "uniquenessRatio": 0.015957446808510637 - }, - "height": { - "total": 206, - "totalUnique": 3, - "unique": { - "vh": 11, - "rem": 88, - "px": 107 - }, - "uniquenessRatio": 0.014563106796116505 - }, - "width": { - "total": 201, - "totalUnique": 3, - "unique": { - "rem": 90, - "px": 110, - "vw": 1 - }, - "uniquenessRatio": 0.014925373134328358 - }, - "min-height": { - "total": 43, - "totalUnique": 3, - "unique": { - "vh": 2, - "px": 39, - "rem": 2 - }, - "uniquenessRatio": 0.06976744186046512 - }, - "max-width": { - "total": 133, - "totalUnique": 2, - "unique": { - "rem": 40, - "px": 93 - }, - "uniquenessRatio": 0.015037593984962405 - }, - "padding-left": { - "total": 19, - "totalUnique": 2, - "unique": { - "rem": 5, - "px": 14 - }, - "uniquenessRatio": 0.10526315789473684 - }, - "padding-right": { - "total": 18, - "totalUnique": 2, - "unique": { - "rem": 6, - "px": 12 - }, - "uniquenessRatio": 0.1111111111111111 - }, - "margin-right": { - "total": 165, - "totalUnique": 2, - "unique": { - "rem": 69, - "px": 96 - }, - "uniquenessRatio": 0.012121212121212121 - }, - "margin-top": { - "total": 87, - "totalUnique": 2, - "unique": { - "rem": 23, - "px": 64 - }, - "uniquenessRatio": 0.022988505747126436 - }, - "margin-bottom": { - "total": 141, - "totalUnique": 3, - "unique": { - "rem": 62, - "px": 78, - "em": 1 - }, - "uniquenessRatio": 0.02127659574468085 - }, - "border-radius": { - "total": 138, - "totalUnique": 2, - "unique": { - "rem": 40, - "px": 98 - }, - "uniquenessRatio": 0.014492753623188406 - }, - "padding": { - "total": 323, - "totalUnique": 3, - "unique": { - "rem": 161, - "px": 160, - "em": 2 - }, - "uniquenessRatio": 0.009287925696594427 - }, - "line-height": { - "total": 48, - "totalUnique": 3, - "unique": { - "rem": 22, - "px": 25, - "em": 1 - }, - "uniquenessRatio": 0.0625 - }, - "padding-bottom": { - "total": 46, - "totalUnique": 2, - "unique": { - "rem": 10, - "px": 36 - }, - "uniquenessRatio": 0.043478260869565216 - }, - "box-shadow": { - "total": 85, - "totalUnique": 2, - "unique": { - "px": 67, - "rem": 18 - }, - "uniquenessRatio": 0.023529411764705882 - }, - "right": { - "total": 46, - "totalUnique": 2, - "unique": { - "rem": 8, - "px": 38 - }, - "uniquenessRatio": 0.043478260869565216 - }, - "top": { - "total": 66, - "totalUnique": 2, - "unique": { - "rem": 5, - "px": 61 - }, - "uniquenessRatio": 0.030303030303030304 - }, - "margin": { - "total": 110, - "totalUnique": 2, - "unique": { - "rem": 64, - "px": 46 - }, - "uniquenessRatio": 0.01818181818181818 - }, - "padding-top": { - "total": 42, - "totalUnique": 3, - "unique": { - "px": 30, - "rem": 11, - "em": 1 - }, - "uniquenessRatio": 0.07142857142857142 - }, - "border": { - "total": 78, - "totalUnique": 2, - "unique": { - "px": 71, - "rem": 7 - }, - "uniquenessRatio": 0.02564102564102564 - }, - "left": { - "total": 34, - "totalUnique": 3, - "unique": { - "px": 30, - "em": 1, - "rem": 3 - }, - "uniquenessRatio": 0.08823529411764706 - }, - "border-bottom": { - "total": 59, - "totalUnique": 2, - "unique": { - "px": 58, - "rem": 1 - }, - "uniquenessRatio": 0.03389830508474576 - }, - "vertical-align": { - "total": 30, - "totalUnique": 2, - "unique": { - "px": 29, - "rem": 1 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "border-right": { - "total": 8, - "totalUnique": 1, - "unique": { - "px": 8 - }, - "uniquenessRatio": 0.125 - }, - "transition": { - "total": 38, - "totalUnique": 1, - "unique": { - "s": 38 - }, - "uniquenessRatio": 0.02631578947368421 - }, - "bottom": { - "total": 22, - "totalUnique": 2, - "unique": { - "px": 19, - "rem": 3 - }, - "uniquenessRatio": 0.09090909090909091 - }, - "margin-left": { - "total": 54, - "totalUnique": 3, - "unique": { - "px": 39, - "rem": 13, - "em": 2 - }, - "uniquenessRatio": 0.05555555555555555 - }, - "max-height": { - "total": 35, - "totalUnique": 3, - "unique": { - "px": 32, - "vh": 1, - "rem": 2 - }, - "uniquenessRatio": 0.08571428571428572 - }, - "transform": { - "total": 32, - "totalUnique": 3, - "unique": { - "deg": 27, - "px": 4, - "turn": 1 - }, - "uniquenessRatio": 0.09375 - }, - "min-width": { - "total": 30, - "totalUnique": 2, - "unique": { - "px": 16, - "rem": 14 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "background": { - "total": 14, - "totalUnique": 2, - "unique": { - "deg": 13, - "px": 1 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "flex": { - "total": 71, - "totalUnique": 2, - "unique": { - "px": 30, - "rem": 41 - }, - "uniquenessRatio": 0.028169014084507043 - }, - "background-position": { - "total": 12, - "totalUnique": 1, - "unique": { - "px": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "border-top": { - "total": 10, - "totalUnique": 1, - "unique": { - "px": 10 - }, - "uniquenessRatio": 0.1 - }, - "animation": { - "total": 8, - "totalUnique": 1, - "unique": { - "s": 8 - }, - "uniquenessRatio": 0.125 - }, - "grid-template-columns": { - "total": 3, - "totalUnique": 1, - "unique": { - "fr": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "grid-column-gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "letter-spacing": { - "total": 12, - "totalUnique": 1, - "unique": { - "px": 12 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "background-image": { - "total": 15, - "totalUnique": 1, - "unique": { - "deg": 15 - }, - "uniquenessRatio": 0.06666666666666667 - }, - "border-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "-webkit-transition": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-left": { - "total": 3, - "totalUnique": 2, - "unique": { - "px": 2, - "rem": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "text-shadow": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "filter": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-transform": { - "total": 6, - "totalUnique": 3, - "unique": { - "px": 1, - "deg": 4, - "turn": 1 - }, - "uniquenessRatio": 0.5 - }, - "font": { - "total": 6, - "totalUnique": 2, - "unique": { - "em": 2, - "rem": 4 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "transition-delay": { - "total": 1, - "totalUnique": 1, - "unique": { - "s": 1 - }, - "uniquenessRatio": 1 - }, - "border-bottom-right-radius": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-animation": { - "total": 6, - "totalUnique": 1, - "unique": { - "s": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "perspective": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "border-top-right-radius": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "background-size": { - "total": 8, - "totalUnique": 1, - "unique": { - "px": 8 - }, - "uniquenessRatio": 0.125 - }, - "background-position-x": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.002277533756304, - "mode": 1, - "range": 1, - "sum": 6161 - }, - "keywords": { - "total": 266, - "totalUnique": 4, - "unique": { - "none": 95, - "auto": 135, - "inherit": 35, - "unset": 1 - }, - "uniquenessRatio": 0.015037593984962405 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/smashing-magazine-20231008.css b/src/__fixtures__/smashing-magazine-20231008.css deleted file mode 100644 index fc3ff2ce..00000000 --- a/src/__fixtures__/smashing-magazine-20231008.css +++ /dev/null @@ -1,28097 +0,0 @@ -@font-face { - font-family: Elena; - src: url(/fonts/ElenaWebRegular/ElenaWebRegular-subset-v2.woff2)format("woff2"), url(/fonts/ElenaWebRegular/ElenaWebRegular.woff)format("woff"); -} - -@font-face { - font-family: Elena; - src: url(/fonts/ElenaWebRegularItalic/ElenaWebRegularItalic-subset-v2.woff2)format("woff2"), url(/fonts/ElenaWebRegularItalic/ElenaWebRegularItalic.woff)format("woff"); - font-style: italic; -} - -@font-face { - font-family: Elena; - src: url(/fonts/ElenaWebBold/ElenaWebBold-subset-v2.woff2)format("woff2"), url(/fonts/ElenaWebBold/ElenaWebBold.woff)format("woff"); - font-weight: 700; -} - -@font-face { - font-family: Elena; - src: url(/fonts/ElenaWebBoldItalic/ElenaWebBoldItalic-subset.woff2)format("woff2"), url(/fonts/ElenaWebBoldItalic/ElenaWebBoldItalic.woff)format("woff"); - font-weight: 700; - font-style: italic; -} - -@font-face { - font-family: Mija; - src: url(/fonts/MijaRegular/Mija_Regular-webfont-subset.woff2)format("woff2"), url(/fonts/MijaRegular/Mija_Regular-webfont.woff)format("woff"); -} - -@font-face { - font-family: Mija; - src: url(/fonts/MijaBold/Mija_Bold-webfont-subset-v2.woff2)format("woff2"), url(/fonts/MijaBold/Mija_Bold-webfont.woff)format("woff"); - font-weight: 700; -} - -@charset "UTF-8"; - -*, -::after, -::before { - box-sizing: border-box; -} - -button, -input, -optgroup, -select, -textarea { - font: inherit; - margin: 0; -} - -html { - font-family: -apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, segoe ui, system-ui, Arial, sans-serif; - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - overflow-y: scroll; -} - -body { - margin: 0; - display: flex; - flex-direction: column; - background-color: #fff; - font-feature-settings: "onum" 1; - color: #333; - overflow: hidden; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-size: 1.125em; -} - -body, -html { - min-height: 100%; - overflow-x: hidden; -} - -body:not(.enhanced) .main-nav { - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} - -img { - border-style: none; - max-width: 100%; - position: relative; -} - -article, -footer, -header, -nav, -section { - display: block; -} - -.wf-loaded-stage2 .article--grid__author, -.wf-loaded-stage2 .article--post__author-name, -.wf-loaded-stage2 .author-post__author-title, -.wf-loaded-stage2 .author-post__read-more, -.wf-loaded-stage2 .author-post__tag, -.wf-loaded-stage2 .btn, -.wf-loaded-stage2 .h1, -.wf-loaded-stage2 .h2, -.wf-loaded-stage2 .nav-item, -.wf-loaded-stage2 .nl-box__form .nl-box__form--button, -.wf-loaded-stage2 .promo-box__button, -.wf-loaded-stage2 .promo-box__cta, -.wf-loaded-stage2 .search-input, -.wf-loaded-stage2 .subnav a, -.wf-loaded-stage2 h1, -.wf-loaded-stage2 h2 { - font-family: Mija, -apple-system, BlinkMacSystemFont, Roboto, roboto slab, droid serif, segoe ui, system-ui, Arial, sans-serif; -} - -.wf-loaded-stage2 .author-post__time, -.wf-loaded-stage2 .author__desc__title, -.wf-loaded-stage2 .header__title-desc, -.wf-loaded-stage2 .promo-box__heading, -.wf-loaded-stage2 body, -.wf-loaded-stage2 input[type=email], -.wf-loaded-stage2 time { - font-family: Elena, -apple-system, BlinkMacSystemFont, Roboto, roboto slab, droid serif, segoe ui, system-ui, Arial, sans-serif; -} - -.author-post__teaser { - font-size: .94em; - margin: calc(1.2em + .5vw)0; -} - -.wf-loaded-stage2 .author-post__teaser { - font-size: 1em; - margin: calc(1em + .5vw)0; -} - -.js-show-secondary .menu-text--sm, -.menu-text--lg, -.menu-text--lg--close, -.menu-text--sm--close { - display: none; -} - -.js-show-secondary .menu-text--sm--close { - display: block; -} - -@media all and (min-width:800px) { - .js-show-secondary .main-nav__secondary { - display: block; - top: 50px; - } - - .js-show-secondary .menu-text--lg--close, - .menu-text--lg { - display: block; - } - - .js-show-secondary .menu-text--lg, - .js-show-secondary .menu-text--sm--close, - .menu-text--sm { - display: none; - } -} - -.js-show-secondary .main-nav-more-item__button:before { - content: ""; - display: block; - margin-left: .35em; - width: 45px; - height: 30px; - background-position: 50%; - background-repeat: no-repeat; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50.21 35.05'%3E%3Cellipse cx='27.8' cy='32.92' fill='rgba(60,60,60,0.5)' rx='19.64' ry='1.2'/%3E%3Cpath fill='%23fff' d='M46.48 15.53a5.2 5.2 0 00-2-.31 7 7 0 00-1.43.19 7.66 7.66 0 001.19-1.52 7.12 7.12 0 011.12-.13 5.18 5.18 0 012 .31h.05a2.82 2.82 0 011.44 1.24 2.75 2.75 0 01.18 2 2.36 2.36 0 00-.74-.46 2 2 0 01.86 1c.11.45-.23 1-.67.92a1.86 1.86 0 00-.22-1 2.65 2.65 0 00-.29-1 2.74 2.74 0 00-1.49-1.24zM16.56 28.07c.06-.21.37-1.29.19-1.47 0 0 5.18 5.08 7.22-2.7a6 6 0 001.16.62c-.75 7-6.44 3.43-6.44 3.43.22.13.14 1.25.12 1.47-.16 2.2-3 1.63-3.74.11a2.44 2.44 0 01-.14-.34 1.4 1.4 0 001.63-1.12z' class='cls-2'/%3E%3Cpath fill='%23fff' d='M1.26 14.52c.08.23.18.45.28.67v.05c1.26 2.67 3.76 5 6.81 4.61a12 12 0 003.51-1.05 8.6 8.6 0 013.64-1 7.28 7.28 0 00.1 2.65A9.82 9.82 0 0117 18.5s-.77 2.34-.41 3a1 1 0 00-.15-.18 1.28 1.28 0 00-.8-.4 1 1 0 00-.89.7c-.23.45-.24.83-.63 1.17-1 .87-2.17 2-1.79 3.47a2.64 2.64 0 002.06 1.82A1.39 1.39 0 0016 27c.06-.21.36-1.28.18-1.46 0 0 5.19 5.07 7.23-2.7a5.65 5.65 0 001.16.61c1.43.56 3.94.91 6.11-2.07a20.36 20.36 0 005.68 1.13s-1.55-.55-1.61-1.28c0 0 3.84 1 6 0l-2.43-.32a3.69 3.69 0 001.68-.42 5.24 5.24 0 012.46 0c.73.08 1.06-.31 1.54-.78a1.17 1.17 0 00.09.33 2.06 2.06 0 00.12.35 3.21 3.21 0 00.37.65 1.35 1.35 0 001.27.53.92.92 0 00.53-.28 1.2 1.2 0 00.19-1.16 2 2 0 00-.77-.94 1.85 1.85 0 011 1.76c.44.08.78-.48.67-.93a1.13 1.13 0 00-.13-.32 2.4 2.4 0 00-.72-.7 2.26 2.26 0 01.74.45 2.67 2.67 0 00.1-.64v-.3a2.59 2.59 0 00-.28-1A2.65 2.65 0 0046 16.32l-.14-.06-.08-.05h-.06a10.1 10.1 0 00-3.9-.54 6.3 6.3 0 001.59-2.45 3 3 0 01-.12.73s1.61-.69.71-2.95a1 1 0 01.63.49 4.17 4.17 0 00-1.74-2.81 2.35 2.35 0 01.88.17 3.64 3.64 0 00-1.72-1.34l-.27-2.21.88.31s0-.35-.89-.86a7.17 7.17 0 00.36-3.37C39.32 1 38.27 2.48 38 2.94a12.73 12.73 0 00-2.56.26 2.83 2.83 0 011.29-.62 3.87 3.87 0 00-3.23.94s-2.73-2-5.37-1.29c0 0-.27 1.36 1.42 4.77a6.37 6.37 0 00-2.31 2.67 7.38 7.38 0 011.63-1.59s-2.44 2.6-1.46 4.67a3.77 3.77 0 01.35-1.55c0 .4-.24 3.2 1 4.61a9.92 9.92 0 01-.32-2s.37 2.53 3.84 3.6a4.35 4.35 0 01-1.49-1.54 11.65 11.65 0 002.47 1.23c-.61.18-1 .31-1 .31l-.81.38a6.56 6.56 0 01-2.34-1.49h-.07a.58.58 0 01-.31.08.64.64 0 01-.46-.21 5.47 5.47 0 01-1.14-2.91.66.66 0 01-.33-.31 3.48 3.48 0 01-.19-2.24 6.84 6.84 0 00-6.5-.26 18.29 18.29 0 012.43.43s-4.84.26-7.22 3.71c0 0 1.93-2 2.77-1.7a8.44 8.44 0 00-2.1 3A9.13 9.13 0 0012 16c-3.7.78-5.2-1.7-5.79-3.65 0-.13-.08-.25-.11-.37a.14.14 0 000-.07v-.16a.14.14 0 010-.06q-.1-.24-.1-.47v-.05a.68.68 0 000-.14 2.4 2.4 0 010-.24v-.09a.09.09 0 000-.05v-.08a.28.28 0 010-.09v-.12c-.09-2-1.43-2.88-3-1.92C.82 9.6.44 12.35 1.26 14.52zm26.58-3.41v.05z' class='cls-2'/%3E%3C/svg%3E"); - order: 1; -} - -.js-show-secondary .main-nav-more-item__button:after { - width: 15px; - height: 15px; - order: 2; - background-image: url(/images/icons/close.svg); -} - -.js-show-secondary .main-nav__secondary { - display: flex; -} - -strong { - font-weight: bolder; - letter-spacing: 0; -} - -svg:not(:root) { - overflow: hidden; -} - -button { - text-transform: none; - cursor: pointer; - font: inherit; - margin: 0; -} - -[type=submit], -button, -html [type=button] { - -webkit-appearance: button; -} - -[type=button]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} - -[type=button]:-moz-focusring, -[type=submit]:-moz-focusring, -button:-moz-focusring { - outline: ButtonText dotted 1px; -} - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -[type=search]::-webkit-search-cancel-button, -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -.main-nav-more-item__button { - padding: .4em .5rem .4em 1rem; - border: 1px solid rgba(0, 0, 0, 5%); - color: inherit; - display: flex; - align-items: center; - justify-content: space-around; - line-height: 1; - position: relative; - background-color: rgba(0, 0, 0, .2); - border-radius: 11px; - box-shadow: 0 13px 7px -15px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); -} - -.container { - width: calc(100% - .5em); - max-width: 1440px; - margin: 0 auto; - z-index: 1; - position: relative; -} - -.container::after { - content: ""; - display: table; - clear: both; -} - -.row { - display: flex; - flex: initial; - flex-direction: row; - flex-wrap: wrap; - margin-right: -1rem; - margin-left: -1rem; -} - -[class*=col-] { - flex: none; - padding-right: 1rem; - padding-left: 1rem; -} - -@media (min-width:48em) { - .container { - width: 52rem; - } -} - -@media (min-width:64em) { - .container { - width: 68rem; - } - - .col-md-8 { - flex: none; - padding-right: 1rem; - padding-left: 1rem; - flex-basis: 66.66666667%; - max-width: 66.66666667%; - } -} - -@media (min-width:75em) { - .container { - width: 79rem; - } -} - -.row::after { - clear: both; -} - -.col-12, -.col-4 { - flex-basis: 100%; - max-width: 100%; -} - -@media screen and (min-width:48em) { - .col-4 { - flex-basis: 33.33333%; - max-width: 33.33333%; - } - - .col-12 { - flex-basis: 100%; - max-width: 100%; - } -} - -@media screen and (min-width:40em) { - .col--article--grid:nth-of-type(1n + 5) { - order: 5; - } - - .container { - width: 92vw; - } -} - -@media screen and (min-width:1500px) { - .homepage .container { - max-width: 1635px; - } -} - -@media screen and (min-width:48em) { - .container { - width: 85vw; - } -} - -@media (max-width:1024px) { - .col { - width: 100%; - padding: 0 1em; - } - - .col--slim { - padding: 0 .5em; - } - - .row { - margin-left: 0; - margin-right: 0; - } -} - -.col-xs-12 { - flex-basis: 100%; - max-width: 100%; -} - -@media all and (min-width:48em) { - .col-sm-12 { - flex-basis: 100%; - max-width: 100%; - } -} - -@media all and (min-width:48em) { - - .col-sm, - .col-sm-1, - .col-sm-10, - .col-sm-11, - .col-sm-12, - .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-offset-0, - .col-sm-offset-1, - .col-sm-offset-10, - .col-sm-offset-11, - .col-sm-offset-12, - .col-sm-offset-2, - .col-sm-offset-3, - .col-sm-offset-4, - .col-sm-offset-5, - .col-sm-offset-6, - .col-sm-offset-7, - .col-sm-offset-8, - .col-sm-offset-9 { - flex: none; - padding-right: 1rem; - padding-left: 1rem; - } -} - -@media all and (min-width:75em) { - - .col-lg, - .col-lg-1, - .col-lg-10, - .col-lg-11, - .col-lg-12, - .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-offset-0, - .col-lg-offset-1, - .col-lg-offset-10, - .col-lg-offset-11, - .col-lg-offset-12, - .col-lg-offset-2, - .col-lg-offset-3, - .col-lg-offset-4, - .col-lg-offset-5, - .col-lg-offset-6, - .col-lg-offset-7, - .col-lg-offset-8, - .col-lg-offset-9 { - flex: none; - padding-right: 1rem; - padding-left: 1rem; - } - - .col-lg-4 { - flex-basis: 33.33333333%; - max-width: 33.33333333%; - } - - .col-lg-7 { - flex-basis: 58.33333333%; - max-width: 58.33333333%; - } - - .col-lg-offset-1 { - margin-left: 8.33333333%; - } -} - -.container--wide { - width: calc(100% - .5em); -} - -.man, -.mhn, -.mln { - margin-left: 0; -} - -.man, -.mbn, -.mvn { - margin-bottom: 0; -} - -.man, -.mhn, -.mrn { - margin-right: 0; -} - -.man, -.mtn, -.mvn { - margin-top: 0; -} - -.small { - font-size: .8em; -} - -.light-grey { - color: #767676; -} - -.mal, -.mtl, -.mvl { - margin-top: 20px; -} - -.block { - display: block; -} - -.author-post--primary { - margin-top: 1em; -} - -@media all and (min-width:650px) { - .author-post--primary { - margin-top: 2.25em; - } -} - -.author-post, -.author-post--primary { - margin-bottom: 3em; -} - -.author-post__header { - display: flex; - align-items: center; - flex-wrap: wrap; -} - -@media all and (min-width:650px) { - .author-post__header { - flex-wrap: nowrap; - } -} - -.author-post__title, -.card-post__title { - font-size: calc(18px + 1.1vw); - max-width: 800px; - margin: .5em 0; -} - -.author-post--primary .author-post__title { - font-size: calc(1.625rem + 1.3vw); - margin: .35em 0 .25em; -} - -.author-post__title-link, -.author-post__title-link code { - color: #333; - text-decoration: none; -} - -.author-post__author-title { - color: #d33a2c; - text-decoration-line: underline; - font-weight: 700; - font-size: .9em; -} - -.author-post__time { - color: #666; - text-transform: none; - font-size: .9em; - font-weight: 400; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: all-petite-caps; - text-transform: lowercase; - line-height: 1.2; -} - -.wf-loaded-stage2 .author-post__time { - font-variant: petite-caps; -} - -.author-post__tag { - font-weight: 700; - color: #666; - font-size: .9em; -} - -.author-post__tag span::after { - content: ", "; - color: #999; -} - -.author-post__tag span:last-child::after { - content: ""; -} - -.author-post__read-more { - color: #d33a2c; - font-weight: 700; - text-decoration-line: underline; -} - -.headline-content { - padding-bottom: 1em; -} - -.article--post__content p { - margin: 0; -} - -.promo-box { - --promo-background: #d33a2c; - --promo-text: white; - --promo-highlight: #b13125; - --promo-highlight-text: white; - --promo-highlight--hover: #87251c; - --promo-shadow: #350f0b; -} - -.promo-box--green { - --promo-background: #f1fdf8; - --promo-text: #333; - --promo-highlight: #19a972; - --promo-highlight-text: #fff; - --promo-highlight--hover: #19a972; -} - -.promo-box { - background: var(--promo-background); - color: var(--promo-text); - position: relative; - padding: 125px 1.5em 2em; - margin-top: 125px; - text-align: center; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - border-radius: 11px; - width: 100%; -} - -.promo-box__cta { - background: #fff; - color: #d33a2c; - text-decoration: none; - padding: .5em .8em; - border-radius: 11px; - box-shadow: 0 0 1px 1px rgba(0, 0, 0, .15); - background-image: none; - font-weight: 700; - font-size: 1.2em; - margin: 0; - position: relative; - box-shadow: 0 2px 6px rgba(0, 0, 0, .12); - transition: background .4s ease-in-out, color .4s ease-in-out; -} - -.promo-box__cta:active, -.promo-box__cta:focus { - outline: 0; - background: #fff; - text-shadow: none; - box-shadow: inset 0 3px 3px rgba(0, 0, 0, .3); -} - -.promo-box__heading { - line-height: 1.2; - font-size: 1.5em; - font-weight: 700; - margin: 1.25em 0 0; -} - -.promo-box__button { - background: var(--promo-highlight); - border-radius: 11px; - padding: .8em .5em; - font-size: 1.15em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); - text-decoration: none; - color: #fff; - font-weight: 700; - display: flex; - width: 100%; - justify-content: center; - transition: all .2s ease-in-out; -} - -.promo-box__button:active, -.promo-box__button:focus, -.promo-box__button:hover { - border-bottom: none; - cursor: pointer; - border-color: #dadada; -} - -.promo-box__button:active, -.promo-box__button:focus { - outline: 0; - box-shadow: inset 0 3px 3px rgba(0, 0, 0, .3); -} - -.promo-box__footer { - color: var(--promo-highlight-text); - line-height: 1.5em; - margin-top: 1em; -} - -.promo-box--smashing-tv__figure { - margin-bottom: -2em; -} - -.promo-box--smashing-tv__figure a { - background-image: none; -} - -small { - font-size: 80%; -} - -.grey, -.grey a { - color: #666; -} - -.center { - text-align: center; -} - -.c-promotion-box { - font-size: .9em; - border-radius: 11px; -} - -.c-promotion-box--ad::before { - display: block; - white-space: pre-wrap; - padding: 0 0 1.5em; - font-size: .75em; - font-style: italic; - color: #666; -} - -.homepage .sponsors::before { - content: "Our friends and supporters ↓"; - display: block; - white-space: pre-wrap; - padding: 0 0 1.5em; - font-size: .75em; - font-style: italic; - color: #666; -} - -time { - font-size: .8em; - color: #666; - text-transform: lowercase; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: small-caps; - text-transform: lowercase; - background-position: 50% 72%; -} - -code { - color: #000; - background: 0 0; - text-shadow: 0 1px #fff; - font-family: Fira Code, Menlo, Consolas, Monaco, andale mono, ubuntu mono, monospace; - font-size: 1em; - text-align: left; - font-feature-settings: normal; - white-space: pre; - word-spacing: normal; - word-break: normal; - font-variant-ligatures: none; - word-wrap: normal; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - -:not(pre)>code, -code { - background: #fff2ea; - color: #333; - font-size: calc(.75em + .1vw); - line-height: calc(1.5em + .2vw); - padding: 0 .2725em; - font-style: normal; - display: inline-block; -} - -a code { - background: 0 0; - padding: 0; - text-decoration-line: underline; -} - -:not(pre)>code { - white-space: normal; -} - -.load-more { - text-align: center; - padding: 1em 0 5em; -} - -a.load-more__link { - text-transform: lowercase; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: small-caps; - text-transform: lowercase; - background-position: 50% 72%; - text-transform: uppercase; - text-decoration: none; - font-size: .75em; - color: inherit; - background: 0 0; - text-shadow: none; - border-bottom: 5px solid #d33a2c; - letter-spacing: 1px; - display: inline-block; - padding: 1.25em 1em .5em; -} - -a.load-more__link::after { - content: " → "; -} - -.h1, -h1 { - font-size: calc(1.625rem + 1.6vw); - margin: 0; -} - -.h2, -h2 { - font-size: calc(1.375rem + 1.6vw); - margin: 0; -} - -.header__title-desc { - display: block; - margin-bottom: .5em; - letter-spacing: 2px; - color: #fff; - font-size: .35em; - font-weight: 400; - line-height: 1.2; - text-shadow: none; - text-transform: uppercase; -} - -.btn--text-shadow, -a.btn.btn--text-shadow { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -a.btn { - text-shadow: none; -} - -a.btn--white { - background: #fff; -} - -@media (max-width:64em) { - .col--article--grid.col--article__grid--ad { - display: none; - } -} - -.main-nav-more-item__button, -.nav-item-link { - white-space: nowrap; -} - -label { - max-width: 100%; -} - -input[type=email] { - background: #fff; - border: 1px solid #bbb; - background-position: right 1.35em center; - background-size: .25em .25em; - background-repeat: no-repeat; - margin-bottom: 5px; - border-radius: 11px; - padding: 1.35em 2em .6em 1em; - display: block; - width: 100%; - outline: 0; -} - -.homepage .sans-main-footer { - position: relative; - z-index: 1; -} - -.main-footer { - background-color: var(--THEME_SECONDARY_COLOR, #d33a2c); -} - -.cart-wrapper { - color: #333; -} - -@media all and (max-width:1099px) { - .sponsors:not(.sponsors__lead):not(.sponsors-leaderboard):not(#sponsors-article-end):not(.sponsors__mobile) { - display: none; - } -} - -.article--grid .promo-box__image-link, -.promo-box__image-link { - position: absolute; - display: flex; - top: 0; - padding: 0; - left: 50%; - transform: translate(-50%, -50%); - width: 250px; - height: 250px; - text-decoration: none; - background: 0 0; - align-items: center; - justify-content: center; -} - -.promo-box__image { - width: 100%; -} - -.author__desc__title { - color: #666; - text-transform: uppercase; - letter-spacing: 2px; - font-size: .9em; - margin: 0; - font-weight: 400; -} - -[data-src] { - display: block; - width: 100%; -} - -.col--article--grid { - float: left; - width: 100%; - margin-bottom: calc(.5em + 1vw); - display: block; -} - -.col--article--grid:first-of-type { - margin-left: -2px; -} - -@media screen and (min-width:40em) { - .col--article--grid { - width: 50%; - float: left; - } -} - -@media all and (min-width:1100px) { - .col--article--grid { - width: 33.33333%; - } -} - -.article--grid__container { - display: flex; - flex-wrap: wrap; -} - -.article--grid__container:after, -.article--grid__container:before { - content: " "; - display: table; - clear: both; -} - -.article--post { - padding-left: 5em; - margin: 4.5em 0; -} - -.article--post header:after, -.article--post header:before { - content: " "; - display: table; - clear: both; -} - -.article--post__author-name { - color: #666; - font-weight: 700; - font-size: calc(.9em + .1vw); -} - -.red { - color: #d33a2c; -} - -.article--post__title { - color: #333; - font-size: calc(18px + 1vw); - max-width: 90%; - margin: calc(-2em + 1.5vw)0 .5em; -} - -@media screen and (min-width:64em) { - .article--post__title { - margin-top: calc(-2em + 1.75vw); - } -} - -.article--post__title a { - color: #333; - text-decoration: none; - transition: color .1s linear; - padding: 0; -} - -.article--post__image { - float: left; - margin-left: 0; - margin-right: .45em; -} - -@media screen and (min-width:40em) { - .article--post__image { - margin-left: -5em; - margin-right: .85em; - } -} - -.f-article-highlights { - display: flex; - flex-wrap: wrap; -} - -.f-article-highlights__person { - margin-bottom: 3em; -} - -.f-article-item { - flex-basis: 100%; -} - -@media screen and (min-width:64rem) { - .f-article-item { - flex-basis: 50%; - } -} - -.f-article-item .article--post__content { - width: 90%; -} - -@media screen and (max-width:980px) { - .f-article-item .article--post__content { - width: 100%; - } -} - -.f-article-item .article--post { - margin: 2em 0; -} - -@media screen and (min-width:64rem) { - .f-article-item .article--post { - margin: 3em 0; - } -} - -.f-article-item:nth-child(1) .article--post, -.f-article-item:nth-child(2) .article--post { - margin-top: 0; -} - -.books__book__img { - width: 100%; - max-width: 250px; - will-change: transform; - transform-origin: 0 100%; - transform: rotate(-11deg); -} - -@media (max-width:40em) { - .books__book__img { - transform: none; - } -} - -.books__book__img img { - height: auto; -} - -.bio-image__large .bio-image { - --bio-image-border-width: 8px; -} - -.hidden { - display: none; -} - -.vertical { - color: #222; - display: block; - flex-basis: 100%; - text-align: right; - background-image: linear-gradient(currentColor, currentColor); - background-size: 100% 1px; - background-repeat: no-repeat; - font-feature-settings: "smcp" 1, "c2sc" 1; - font-variant: small-caps; - background-position: 50%; - text-transform: uppercase; - line-height: 1; - font-size: .7em; - margin: 3em 0 0 .75em; - max-width: 17.5em; - transform-origin: left center; - transform: rotateZ(90deg)translateX(-5em)translateY(1em); - letter-spacing: 4px; -} - -.vertical span { - display: inline-block; - padding: 0 .6em; - background-color: #f6f3f2; - position: relative; - top: .1em; -} - -@media all and (max-width:1025px) { - .vertical { - transform: none; - margin: 2.5em 0 2.5em calc(1.3em - 2px); - } -} - -@media (max-width:40em) { - .vertical { - transform: none; - margin: 2.5em 0 1.5em; - text-align: left; - background-image: none; - } -} - -@media all and (max-width:1300px) { - .vertical { - transform: rotateZ(90deg)translateX(-100px)translateY(10px); - } -} - -@media all and (max-width:1025px) { - .vertical { - transform: none; - } -} - -.vertical--white { - color: #000; - display: block; - text-align: right; - background-image: linear-gradient(currentColor, currentColor); - background-size: 100% 1px; - background-repeat: no-repeat; - font-feature-settings: "smcp" 1, "c2sc" 1; - font-variant: small-caps; - background-position: 50%; - text-transform: uppercase; - line-height: 1; - font-size: .7em; - margin: 3em 0 0; - transform-origin: left center; - transform: rotateZ(90deg)translateX(-5em)translateY(1em); - letter-spacing: 4px; - max-width: 22.5em; -} - -@media all and (min-width:1025px) { - .vertical--white { - max-width: 17.5em; - } -} - -.vertical--white span { - display: inline-block; - padding: 0 .6em; - background-color: #fff; - position: relative; - top: .1em; -} - -@media all and (max-width:1025px) { - .vertical--white { - transform: none; - margin: 2.5em 0 2.5em calc(1.3em - 2px); - } -} - -@media (max-width:40em) { - .vertical--white { - transform: none; - margin: 2.5em 0 1.5em; - text-align: left; - background-image: none; - } -} - -.bg--beige { - background-color: #f6f3f2; -} - -.bg--white { - background-color: #fff; -} - -.card__guide--green { - color: #18a46f; -} - -.card__guide--orange { - color: #f55700; -} - -.card__guide--violet { - color: #aa1994; -} - -.card__guide--green_bg { - --card-color: #18a46f; -} - -.card__guide--orange_bg { - --card-color: #f55700; -} - -.card__guide--violet_bg { - --card-color: #aa1994; -} - -.left-lined--beige-bg span { - background-color: #f6f3f2; -} - -.mha { - margin-right: auto; - margin-left: auto; -} - -.rounded-xl { - border-radius: .883em; -} - -.flex { - display: flex; -} - -.flex-wrap { - flex-wrap: wrap; -} - -.h-20 { - height: 5rem; -} - -.h-64 { - height: 16rem; -} - -.mt-2 { - margin-top: .5rem; -} - -.mt-5 { - margin-top: 1.25rem; -} - -.mr-5 { - margin-right: 1.25rem; -} - -.rounded-3xl { - border-radius: 1.2em; -} - -.flex-shrink-0 { - flex-shrink: 0; -} - -.h-48 { - height: 12rem; -} - -.w-32 { - width: 8rem; -} - -.h-32 { - height: 8rem; -} - -.w-48 { - width: 12rem; -} - -@media all and (max-width:600px) { - .mobw-40 { - width: 10rem; - } - - .mobh-40 { - height: 10rem; - } -} - -.mb-5 { - margin-bottom: 1.25rem; -} - -.w-20 { - width: 5rem; -} - -.w-64 { - width: 16rem; -} - -@media (min-width:768px) { - .md\:flex-1 { - flex: 1; - } -} - -article, -figure, -header, -main, -nav { - display: block; -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; -} - -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; - top: -.5em; -} - -.nowrap { - white-space: nowrap; -} - -.nowrap:after, -.nowrap:before { - content: " "; - display: table; - clear: both; -} - -.btn .sr-only, -.sr-only { - position: absolute; - display: inline-block; - height: 0; - width: 0; - line-height: 0; - overflow: hidden; -} - -.float--left { - float: left; -} - -#main { - position: relative; - z-index: 0; - background-color: #fff; -} - -:focus { - outline: dotted 3px; -} - -.header { - background: #d33a2c; - background: var(--THEME_COLOR, #d33a2c); - position: relative; - display: grid; - -moz-column-gap: 0; - column-gap: 0; - justify-content: flex-start; - align-items: center; - padding: .8em; - z-index: 2; - grid-template-columns: -webkit-min-content -webkit-min-content 1fr; - grid-template-columns: min-content min-content 1fr; - -moz-column-gap: 5px; - column-gap: 5px; -} - -@media screen and (min-width:31.25em) { - .header { - grid-template-columns: -webkit-min-content -webkit-min-content 0 minmax(100px, 100%); - grid-template-columns: min-content min-content 0 minmax(100px, 100%); - -moz-column-gap: 10px; - column-gap: 10px; - } -} - -@media screen and (min-width:700px) { - .header { - grid-template-columns: -webkit-min-content minmax(140px, 2fr)0 minmax(100px, 350px); - grid-template-columns: min-content minmax(140px, 2fr)0 minmax(100px, 350px); - } -} - -@media screen and (min-width:740px) { - .header { - padding: 1rem 2em; - } -} - -.search { - flex-basis: 100px; - flex-shrink: 1; -} - -@media screen and (min-width:48em) { - body { - font-size: calc(.35842vw + .95296em); - } -} - -body li, -body p { - line-height: calc(1.5em + .2vw); - word-break: break-word; -} - -body h1, -body h2 { - line-height: 1.2; -} - -body h4 { - line-height: calc(1.3em + .2 * (100vw - 21em)/14); -} - -::-webkit-input-placeholder { - color: #666; -} - -:-moz-placeholder { - color: #000; -} - -::-moz-placeholder { - color: #000; -} - -:-ms-input-placeholder { - color: #666; -} - -p { - margin: calc(1em + .5vw)0; -} - -figure { - margin: 0; - padding: 0; -} - -figure:after, -figure:before { - content: " "; - display: table; - clear: both; -} - -a { - text-decoration: none; - padding: 10px 0; - text-decoration-skip-ink: auto; - text-decoration-thickness: 1px; - text-underline-offset: 1px; - text-decoration-offset: initial; - text-decoration-line: underline; - color: #006fc6; -} - -@supports (-ms-ime-align:auto) { - body { - font-feature-settings: normal; - } -} - -h1 { - font-size: calc(1.625rem + 1.6vw); - margin: 0; -} - -h2 { - font-size: calc(1.375rem + 1.6vw); - margin: 0; -} - -h4 { - font-size: calc(1.125rem + .25vw); - text-transform: uppercase; - letter-spacing: 1px; - margin-top: 2em; - margin-bottom: 1em; - color: #333; -} - -@media all and (min-width:1550px) { - h1 { - font-size: 2.13894em; - } - - h2 { - font-size: 2.14857em; - } -} - -:target { - scroll-margin-top: 2rem; -} - -ul { - padding: 0; - margin: 1em 0; - max-width: 100%; - list-style: none; - padding-left: calc(1.4em + .7vw); - list-style-image: url(/images/bullet.svg); -} - -ul>li { - margin-bottom: .5em; - padding-left: .25em; -} - -.main-nav { - position: relative; - display: block; - min-width: 0; - color: #fff; - grid-column: span 2; - font-size: 1.05em; -} - -.menu-text--lg, -.menu-text--lg--close, -.menu-text--sm--close { - display: none; -} - -@media (min-width:800px) { - .search { - flex-basis: 500px; - } - - .main-nav { - grid-column: auto; - } - - .menu-text--sm { - display: none; - } - - .menu-text--lg { - display: block; - } -} - -.secondary-nav { - position: relative; - grid-row-start: 2; - grid-column: 1/5; -} - -.main-nav__primary { - display: flex; - list-style: none; - margin: 0; - padding: .4em 0; - flex-wrap: nowrap; - width: 100%; - flex-shrink: 1; - min-width: 0; - justify-content: flex-start; -} - -.main-nav span:empty { - display: none; -} - -@media all and (min-width:53.125em) { - .main-nav__primary { - justify-content: space-between; - } -} - -.nav-item { - flex-grow: 0; - background: 0 0; - text-shadow: none; - color: inherit; - font-weight: 700; - display: flex; - align-items: center; - margin-bottom: 0; - padding-left: 0; -} - -.main-nav-more-item { - position: relative; - width: 145px; -} - -@media (min-width:42.9375em) { - .main-nav-more-item { - margin-left: .35em; - } -} - -@media all and (max-width:52.5em) { - .main-nav-more-item { - justify-content: center; - } -} - -.nav-item-link { - padding: .35em .9rem; - background: 0 0; - color: #fff; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - text-decoration: none; -} - -@media screen and (min-width:800px) { - .main-nav__secondary .nav-item-link { - color: #d33a2c; - } -} - -.nav-item-link:focus, -.nav-item-link:hover { - background-color: rgba(0, 0, 0, .15); - border-radius: 11px; -} - -.main-nav__secondary .nav-item-link:focus, -.main-nav__secondary .nav-item-link:hover { - background-color: transparent; - box-shadow: none; -} - -.main-nav-more-item__button:active, -.main-nav-more-item__button:focus, -.nav-item-link:active, -.nav-item-link:focus { - outline-color: var(--THEME_COLOR_OUTLINE, #811d15); -} - -.secondary-nav .nav-item-link:active, -.secondary-nav .nav-item-link:focus { - outline-color: #811d15; -} - -.main-nav__secondary .nav-item-link { - text-shadow: none; - width: 100%; - text-decoration: none; - text-decoration-color: #d33a2c; - padding: .25em .7rem; -} - -.main-nav-more-item__button:after { - content: ""; - display: block; - margin-left: 9px; - width: 30px; - height: 30px; - background-position: 50%; - background-repeat: no-repeat; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.96 33.31'%3E%3Cellipse cx='17.98' cy='31.55' fill='rgba(60,60,60,0.3)' rx='14.75' ry='.57'/%3E%3Cpath fill='%23fff' d='M34.94 15v-.93c-.23-3-2.16-5.93-5.22-6.3-2.31-.28-3.39 1.45-2.4 3.84a.43.43 0 000 .05v.11a.14.14 0 010 .06.63.63 0 000 .09v.17c0 .08.06.18.09.29s0 0 0 .05a1 1 0 000 .17.64.64 0 010 .07c0 .18.1.38.14.6a.24.24 0 010 .08v.29c0 .03.06.33.08.5.37 2.58 0 6.27-4.73 7.37A12.74 12.74 0 0019.7 23c-.17-.65-.36-1.25-.55-1.77a5.16 5.16 0 002.05-2.56 11.26 11.26 0 01-.69 2.33c1.81-1.55 2-5.05 2-5.54a4.72 4.72 0 01.21 2c1.55-2.41-1.17-6-1.17-6a9.67 9.67 0 011.84 2.24C23 11.75 20.82 10 20.82 10c2.65-4 2.51-5.68 2.51-5.68-3.26-1.34-7 .73-7 .73a5.12 5.12 0 00-4-1.7 3.61 3.61 0 011.56 1 16.79 16.79 0 00-3.23-.74C10.41 3 9.4 1.16 6.22 1h-.58S5 3.64 5.61 5.19c-1.15.49-1.26.93-1.26.93l1.17-.25-.67 2.67a4.66 4.66 0 00-2.39 1.38 3 3 0 011.15-.07A5.11 5.11 0 001 13.05a1.32 1.32 0 01.87-.51c-1.47 2.69.49 3.76.49 3.76a3.8 3.8 0 010-.92 8.52 8.52 0 002.19 3.9 14.13 14.13 0 01-.24-1.59 5.46 5.46 0 001.93 2.7 6.25 6.25 0 01-.4-1.52 5.87 5.87 0 001.36 1.75c-.12.24-.24.47-.34.71a12 12 0 00-.7 2.13c0 .23-.09.45-.13.66a1.4 1.4 0 00-1-.31 1.4 1.4 0 00-1.09 1 3.1 3.1 0 000 1.57 9.48 9.48 0 001.8 3.92A2.92 2.92 0 004 30.06c-.56.16-1 .83-.72 1.34H22.6c.29-.51-.16-1.18-.72-1.34a2.92 2.92 0 00-1.71.24A9.48 9.48 0 0022 26.44 3.24 3.24 0 0022 25a15.89 15.89 0 012.87-.21 14.93 14.93 0 004.65-.69c3.72-1.24 5.38-5.25 5.38-9zm-12.49.42h-.05v-.07z'/%3E%3C/svg%3E"); -} - -.main-nav__secondary { - display: none; - color: #fff; - padding: .2em 0; - flex-wrap: wrap; - flex-direction: column; - justify-content: flex-start; - align-items: flex-start; - height: 10em; -} - -@media all and (min-width:31.25em) { - .main-nav__secondary .nav-item-link { - padding: .25em 1.1rem; - } - - .main-nav__secondary { - padding: .2em .5em; - } -} - -@media (-webkit-min-device-pixel-ratio:1.3), -(min-resolution:124.8dpi) { - .main-nav__secondary { - height: 11em; - } -} - -@media (min-width:800px) { - .secondary-nav { - grid-row: auto; - grid-column: auto; - } - - .main-nav__secondary { - display: none; - position: absolute; - top: 0; - left: -80px; - transform: translate(-50%, 0); - max-width: unset; - background: #fff; - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - border-radius: 11px; - margin: 0; - padding: 14px 20px 10px 10px; - min-width: 180px; - color: #d33a2c; - flex-direction: row; - justify-content: space-between; - align-items: center; - height: auto; - } - - .main-nav__secondary:before { - content: ""; - display: block; - position: absolute; - top: 1px; - left: 50%; - transform: translate(-50%, -100%); - width: 0; - height: 0; - border-left: 15px solid transparent; - border-right: 15px solid transparent; - border-bottom: 15px solid #fff; - } -} - -.nav-item-1, -.nav-item-10, -.nav-item-2, -.nav-item-3, -.nav-item-4, -.nav-item-5, -.nav-item-6, -.nav-item-7, -.nav-item-8, -.nav-item-9 { - display: none; -} - -.main-nav__secondary .nav-item-1, -.main-nav__secondary .nav-item-10, -.main-nav__secondary .nav-item-2, -.main-nav__secondary .nav-item-3, -.main-nav__secondary .nav-item-4, -.main-nav__secondary .nav-item-5, -.main-nav__secondary .nav-item-6, -.main-nav__secondary .nav-item-7, -.main-nav__secondary .nav-item-8, -.main-nav__secondary .nav-item-9 { - display: flex; -} - -@media (min-width:42.9375em) { - .nav-item-1 { - display: flex; - } - - .main-nav__secondary .nav-item-1 { - display: none; - } -} - -@media (min-width:52.5em) { - .nav-item-2 { - display: flex; - } - - .main-nav__secondary .nav-item-2 { - display: none; - } -} - -@media (min-width:56.5625em) { - .nav-item-3 { - display: flex; - } - - .main-nav__secondary .nav-item-3 { - display: none; - } -} - -@media (min-width:70em) { - .nav-item-4 { - display: flex; - } - - .main-nav__secondary .nav-item-4 { - display: none; - } -} - -@media (min-width:77.8125em) { - .nav-item-5 { - display: flex; - } - - .main-nav__secondary .nav-item-5 { - display: none; - } -} - -@media (min-width:104.375em) { - .nav-item-6 { - display: flex; - } - - .main-nav__secondary .nav-item-6 { - display: none; - } -} - -@media (min-width:113.4375em) { - .nav-item-7 { - display: flex; - } - - .main-nav__secondary .nav-item-7 { - display: none; - } -} - -@media (min-width:120.625em) { - .nav-item-8 { - display: flex; - } - - .main-nav__secondary .nav-item-8 { - display: none; - } -} - -@media (min-width:136.5625em) { - .nav-item-9 { - display: flex; - } - - .main-nav__secondary .nav-item-9 { - display: none; - } -} - -@media (min-width:179.6875em) { - .nav-item-10 { - display: flex; - } - - .main-nav__secondary .nav-item-10 { - display: none; - } - - .main-nav-more-item { - display: none; - } - - .main-nav__primary { - justify-content: flex-start; - } - - .nav-item { - padding: 0 .65em; - } - - .header, - .header.searchFocused { - grid-template-columns: -webkit-min-content minmax(140px, -webkit-max-content)0 minmax(250px, 600px); - grid-template-columns: min-content minmax(140px, max-content)0 minmax(250px, 600px); - } -} - -@media (max-width:480px) { - .header .search { - grid-column: 1/5; - margin-top: .5em; - } - - .main-nav__primary { - justify-content: flex-end; - } - - .main-nav-more-item { - justify-content: flex-end; - } -} - -.btn { - display: inline-block; - border-radius: 11px; - padding: .5em 1em; - text-align: center; - border: none; - font-weight: 700; - background: 0 0; - font-size: .9em; - outline: 0; -} - -.header__topics { - display: none; -} - -.input { - font: inherit; - margin: 0; - border: none; - display: block; - color: #333; - background-color: #fff; - padding: .4em .75em; - border-radius: 5.5px; - outline: 0; - font-size: 1.15rem; - width: 100%; -} - -.input::-webkit-input-placeholder { - color: #666; -} - -.input:-ms-input-placeholder, -.input::-webkit-input-placeholder { - color: #666; -} - -.input::-moz-placeholder { - color: #000; -} - -.input::-ms-clear { - display: none; -} - -.search .search-input { - padding-left: 52px; - background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 height=%2224%22 width=%2224%22%3E%3Cdefs%3E%3ClinearGradient id=%22linear-gradient%22 x1=%2222.31%22 y1=%2223.62%22 x2=%223.73%22 y2=%223.05%22 gradientUnits=%22userSpaceOnUse%22%3E%3Cstop offset=%220%22 stop-color=%22%23e93722%22/%3E%3Cstop offset=%221%22 stop-color=%22%23f86f25%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3EMagnifier%3C/title%3E%3Cpath fill=%22url(%23linear-gradient)%22 d=%22M23.33 20.1l-4.73-4.74a10.06 10.06.0 10-3.23 3.23l4.74 4.74a2.29 2.29.0 103.22-3.23zM5.85 14.26a5.94 5.94.0 118.42.0 6 6 0 01-8.42.0z%22/%3E%3C/svg%3E"); - background-repeat: no-repeat; - background-size: 22px; - background-position: 15px 45%; - font-size: calc(1em + .1vw); - border-radius: 11px; - padding-top: 1rem; - padding-bottom: 1rem; - font-weight: 700; - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); -} - -.search-button { - width: 0; - height: 0; - padding: 0; -} - -.enhanced .search-button { - display: none; -} - -.search-input-wrapper { - position: relative; -} - -.search-clear-button { - background: 0 0; - border: none; - position: absolute; - right: 0; - top: 50%; - transform: translate(-25%, -50%); - opacity: 0; - padding: .5em; -} - -.search-results { - background: var(--THEME_COLOR, #d33a2c); - color: #fff; -} - -.search-results ol img { - min-height: 100px; - height: auto; -} - -.logo { - font-size: 1em; - line-height: 0; - width: 3em; - flex-basis: 3em; - flex-shrink: 0; - position: relative; - z-index: 0; -} - -@media all and (min-width:1450px) { - .logo { - width: 10.5em; - flex-basis: 10.5em; - } - - .logo img { - transform: none; - } -} - -.logo a { - display: block; - background: 0 0; - outline: 0; - padding: 0; - color: transparent; - text-shadow: none; -} - -.logo a picture { - display: block; -} - -.logo img { - height: 3.5em; - transform: translate(0, 15%); -} - -a.back-to-top { - display: block; - background: 0 0; - width: 50px; - height: 50px; - opacity: .7; - text-shadow: none; - border-radius: 11px; - padding: 12.5px; - transform-origin: bottom left; - will-change: transform; - transform: rotate(-11deg); - background-color: #666; -} - -a.back-to-top svg { - display: block; -} - -.back-to-top-wrapper { - width: 50px; - height: 50px; - display: none; - position: fixed; - bottom: 20px; - right: 20px; - z-index: 9; - will-change: transform; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.back-to-top-wrapper::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100%; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transform-origin: 30% 50%; -} - -@media (min-height:600px) { - .back-to-top-wrapper { - display: block; - } -} - -img::before { - height: 2.5em; - display: block; - top: 2em; - content: " "; - width: 100%; - z-index: 2; - left: 0; -} - -img::after { - content: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%221em%22 height=%221em%22 viewBox=%220 0 32 32%22 style=%22margin-right:10px%22%3E%3Cpath fill=%22%23777%22 d=%22M26 28H6v-4l6-10 8.219 10L26 20v8z%22/%3E%3Cpath fill=%22%23777%22 d=%22M26 15c0 1.657-1.343 3-3 3s-3-1.343-3-3 1.343-3 3-3 3 1.343 3 3z%22/%3E%3Cpath fill=%22%23777%22 d=%22M28.681 7.159c-.694-.947-1.662-2.053-2.724-3.116s-2.169-2.03-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319H4.5c-1.378.0-2.5 1.121-2.5 2.5v27C2 30.878 3.122 32 4.5 32h23c1.378.0 2.5-1.122 2.5-2.5V10c0-.448-.137-1.23-1.319-2.841zM24.543 5.457c.959.959 1.712 1.825 2.268 2.543H22V3.189c.718.556 1.584 1.309 2.543 2.268zM28 29.5c0 .271-.229.5-.5.5h-23c-.271.0-.5-.229-.5-.5v-27c0-.271.229-.5.5-.5.0.0 15.499.0 15.5.0v7c0 .552.448 1 1 1h7v19.5z%22/%3E%3C/svg%3E")" " attr(alt); - font-size: .9em; - display: block; - color: #666; - line-height: 1.5; - position: absolute; - font-style: italic; - z-index: 2; - top: calc(2em - 35px); - text-align: center; - width: 104%; - left: -2%; - padding: 2.25em 1em; - text-shadow: none; - background-color: #eee; - border-radius: 11px; -} - -.bio-image { - --bio-image-border-width: 5px; - padding: 0; - margin: 0; - display: block; - width: auto; - height: auto; - border-radius: inherit; - position: relative; -} - -.bio-image::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100%; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transform-origin: 30% 50%; - opacity: 1; - transition: opacity .3s ease-in-out; -} - -a.bio-image-link { - background: 0 0; - text-shadow: none; - color: inherit; - padding: 0; - display: block; - border-radius: inherit; - width: inherit; - height: inherit; -} - -.bio-image-wrapper { - background: var(--bio-image-background-color, var(--bio-image-border-color, #d33a2c)); - border: solid var(--bio-image-border-width, 8px)var(--bio-image-border-color, #d33a2c); - border-radius: inherit; - transform: scale(.84)translateX(15%)rotateZ(-11deg); - transform-origin: 0 100%; - overflow: hidden; - width: 100%; - height: 100%; -} - -@media all and (min-width:640px) { - .author-post--primary .bio-image-wrapper { - min-width: 176px; - min-height: 176px; - } -} - -.bio-image-image { - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover; - display: block; - transform: scale(1.2)rotateZ(11deg); -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; -} - -.rounded-lg { - border-radius: .694rem; -} - -.mbm { - margin-bottom: 10px; -} - -@media (max-width:40em) { - .vertical--horizontal-fallback { - max-width: 100%; - } - - .vertical--horizontal-fallback span { - padding-left: 1em; - } - - .footer__topics__title { - text-align: left; - } - - .footer__topics__item { - font-size: calc(.975em + .2vw); - width: 50%; - float: left; - text-align: left; - } -} - -.footer__topics__title { - color: #fff; -} - -.footer__topics__item { - color: #fff; -} - -.footer__topics__item a { - background: 0 0; - color: inherit; -} - -.mtm { - margin-top: 10px; -} - -.promo-box--blue { - --promo-background: #e7f8ff; - --promo-text: #000; - --promo-highlight-text: #e7f8ff; - --promo-highlight: #006fc6; - --promo-highlight--hover: #006fc6; -} - -.nl-box__form { - display: flex; - padding-bottom: .5em; - text-align: center; - letter-spacing: -.5px; - color: #fff; - font-size: 1.15em; -} - -.nl-box__group:hover { - box-shadow: 0 1px 7px -5px rgba(50, 50, 93, .25), 0 3px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); -} - -.nl-box__form .nl-box__form--button, -.nl-box__form .nl-box__form--email { - flex-grow: 1; - flex-shrink: 0; - width: auto; - margin: 0; - padding: .75em 1em; - border: 0; - border-radius: 11px; - background: #fff; - font-size: 1em; - box-shadow: none; -} - -.promo-box .nl-box__form--button:focus, -.promo-box input.nl-box__form--email:active, -.promo-box input.nl-box__form--email:focus { - box-shadow: none; -} - -.nl-box__form--button:-ms-input-placeholder, -.nl-box__form--email:-ms-input-placeholder { - color: #777; - font-style: italic; -} - -.nl-box__form--button::-webkit-input-placeholder, -.nl-box__form--email::-webkit-input-placeholder { - color: #777; - font-style: italic; -} - -.nl-box__form--button:-ms-input-placeholder, -.nl-box__form--button::-moz-placeholder, -.nl-box__form--button::placeholder, -.nl-box__form--email:-ms-input-placeholder, -.nl-box__form--email::-moz-placeholder, -.nl-box__form--email::placeholder { - color: #777; - font-style: italic; -} - -.nl-box__form .nl-box__form--button { - transition: all .2s ease-in-out; - color: #fff; - background-color: #0168b8; - font-weight: 700; - box-shadow: 0 1px 1px rgba(0, 0, 0, .3); - width: 100%; - border: 0; - border-left: 1px solid #ddd; - flex: 2; - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.nl-box__form .nl-box__form--email { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - width: 100%; - flex: 4; - min-width: 150px; -} - -@media all and (max-width:650px) { - .nl-box__form .nl-box__group { - flex-wrap: wrap; - box-shadow: none; - } - - .nl-box__form .nl-box__form--button, - .nl-box__form .nl-box__form--email { - border-radius: 11px; - border-left: none; - } - - .nl-box__form .nl-box__form--email { - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - min-width: 100%; - } - - .nl-box__form .nl-box__form--button { - margin-top: 1em; - box-shadow: 0 1px 1px rgba(0, 0, 0, .5); - } -} - -.nl-box__form .nl-box__form--button:active, -.nl-box__form .nl-box__form--button:focus, -.nl-box__form .nl-box__form--button:hover { - cursor: pointer; - color: #fff; - background-color: #0168b8; - border-color: #dadada; - box-shadow: 0 1px 1px rgba(0, 0, 0, .3); -} - -.nl-box__form .nl-box__form--button:active, -.nl-box__form .nl-box__form--button:focus { - outline: 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); - box-shadow: inset 0 3px 3px rgba(0, 0, 0, .3); -} - -.nl-box__group { - display: flex; - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - border-radius: 11px; - transition: box-shadow .2s ease-in-out; -} - -.nl-box__wrapper { - display: flex; - flex-direction: column; - justify-content: center; -} - -.nl-box__form form { - width: 100%; -} - -.nl-box__form .nl-box__group { - margin: 0; -} - -.nl-box__caption { - font-size: .9em; - line-height: 1.5em; - color: #fff; - border-radius: 11px; - padding: .5em 1em; - display: inline-block; - background-color: rgba(0, 103, 184, .3490196078); - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); -} - -a.skip-main { - left: -999px; - position: absolute; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; - z-index: -999; -} - -.cookie-banner { - background-color: #fff; - border-radius: 11px; - position: fixed; - width: calc(19em + 1vw); - padding: 1em 1.5em; - font-size: 1em; - z-index: 99; - box-shadow: 0 6px 40px rgba(0, 0, 0, .3); - bottom: 1.25em; - right: 1.25em; -} - -.cookie-banner p { - font-size: .9em; - margin-top: 0; -} - -.cookie-banner__container { - display: flex; -} - -.cookie-banner button { - padding: .9em 1em; -} - -@media screen and (max-width:480px) { - .cookie-banner { - right: 0; - left: 0; - width: 100%; - border-radius: 0; - bottom: 0; - } - - .cookie-banner p { - margin-top: 1em; - } -} - -@media screen and (max-width:380px) { - .cookie-banner p { - margin-top: 0; - } -} - -.cookies--btn { - width: 100%; -} - -.mr5 { - margin-right: .5em; -} - -.mr0 { - margin-right: 0; -} - -.btn--white { - background: #fff; - color: #267dcc; - border: 1px solid #fff; -} - -.btn--white--bordered { - border: 1px solid #ddd; -} - -.btn--green { - background-color: #41b14f; - background-image: linear-gradient(#9ec14c, #41b14f); - color: #fff; -} - -.conf-panel__desc a { - color: #fff; -} - -.cards__grid, -footer { - content-visibility: auto; -} - -@media screen and (min-width:680px) { - .card { - margin: 0; - } -} - -.cards__grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); - grid-gap: 0 1.5em; -} - -@media screen and (max-width:650px) { - .cards__grid.cards__grid--frontpage { - grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); - } -} - -@media all and (min-width:68.75em) { - .cards__grid { - grid-template-columns: repeat(auto-fit, minmax(calc(350px + 5vw), 1fr)); - } - - .cards__grid--frontpage { - grid-template-columns: repeat(auto-fit, minmax(calc(280px + 5vw), 1fr)); - } -} - -@media (min-width:68.75em) { - .cards__grid--highlights { - display: grid; - width: 100%; - grid-template-columns: repeat(auto-fill, minmax(calc(225px + 5vw), 1fr)); - margin: 0 auto; - padding: 0; - } -} - -.cards__flex { - gap: 2em; -} - -.cards__flex .promo-box { - flex: 1; - flex-basis: 375px; - padding: 125px 1.25em 2em; -} - -.smashing-family-container { - margin: 0 0 4em; -} - -@media screen and (min-width:740px) { - .smashing-family-container { - margin: 4em 0; - } -} - -.smashing-family-container h3 { - text-transform: none; -} - -.homepage .smashing-family-container .container { - max-width: 2500px; -} - -.wf-loaded-stage2 .smashing-family-container .promo-box__heading { - font-family: Mija; -} - -.smashing-family-container .promo-box { - justify-content: start; -} - -@media screen and (min-width:80em) { - .cards__grid { - grid-template-columns: repeat(auto-fit, minmax(calc(450px + 5vw), 1fr)); - } - - .cards__grid--frontpage { - grid-template-columns: repeat(auto-fit, minmax(calc(280px + 5vw), 1fr)); - } -} - -.card { - border-radius: 11px; - padding: 2rem; - box-shadow: 0 2px 6px rgba(0, 0, 0, .12); - margin: 1.5em 0; -} - -.card>* { - margin-top: 0; - margin-bottom: 0; -} - -.card>*+* { - margin-top: 1.5rem; -} - -.card .h3 { - font-family: -apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Arial, sans-serif; -} - -.wf-loaded-stage2 .card .h3 { - font-family: Mija; -} - -.card--light { - background: #fff; - color: #333; -} - -.card--box-shadow { - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, 3%); - transition: box-shadow .2s ease-in-out; -} - -.card--box-shadow:hover { - box-shadow: 0 1px 7px -5px rgba(50, 50, 93, .25), 0 3px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, 3%); -} - -.card--green { - background-color: #f1fdf8; -} - -.card--orange { - background-color: #fef1f0; -} - -.card--violet { - background-color: #fbecf9; -} - -@media screen and (min-width:48em) { - .card--full { - padding: 0; - } -} - -.arrow-list { - list-style: none; - padding: 0; -} - -.arrow-list>li { - display: flex; - align-items: center; -} - -.arrow-list>li::before { - content: ""; - background: url(/images/icons/arrow.svg); - background-repeat: no-repeat; - background-position: 0; - width: 40px; - height: 18px; - flex-shrink: 0; -} - -.video-cta { - display: block; -} - -.video-cta__container { - position: relative; -} - -.video-cta__thumbnail { - display: block; - border-radius: 11px; -} - -.video-cta___title { - display: block; - border-radius: 11px; - line-height: 1.5em; -} - -.video-cta__title-link { - font-size: .9em; -} - -.video-cta__link { - display: flex; - align-items: center; - text-decoration: none; - font-weight: 700; - color: #006fc6; - background: 0 0; - font-family: -apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Arial, sans-serif; -} - -.wf-loaded-stage2 .video-cta__link { - font-family: Mija; -} - -.video-cta__link__arrow { - display: flex; - flex-basis: 25px; - flex-shrink: 0; -} - -.video-cta__caption { - color: #666; - font-style: italic; - font-size: .9em; -} - -.block-link, -.block-link:active, -.block-link:focus, -.block-link:hover { - font-weight: 700; - font-size: 1.4rem; - list-style: none; -} - -.block-link__by, -.block-link__by:active, -.block-link__by:focus, -.block-link__by:hover { - display: block; -} - -.block-link__by-href { - color: #666; - text-shadow: none; - background: 0 0; - text-decoration: underline; -} - -.video-cta__play-btn { - margin: 0; - position: absolute; - bottom: .5em; - right: .5em; - width: 50px; - height: 50px; - padding: .25em; - background-color: #006fc6; - fill: #fff; - border-radius: 50%; - transition: all .3s ease-in-out; -} - -.video-cta__play-btn a { - background-image: none; - padding: 0; -} - -.video-cta__container a:active .video-cta__play-btn, -.video-cta__container a:focus .video-cta__play-btn, -.video-cta__container:hover .video-cta__play-btn { - background-color: #d33a2c; -} - -.card .header__title-desc { - color: #202020; -} - -@media screen and (min-width:48em) { - .card { - padding: calc(2rem + .5vw); - } -} - -@media screen and (min-width:1025px) { - .cards__grid { - padding: 0 2em; - } - - .cards__grid--frontpage { - padding: 0 1em; - margin: 0; - } -} - -.card .btn--card { - background: var(--card-color, #333); - background-image: linear-gradient(var(--card-color, #41b14f), var(--card-color, #41b14f)); -} - -.btn.btn--large { - font-size: calc(1em + .25vw); - padding: .75em 1em; -} - -.stack { - margin-top: 0; - margin-bottom: 0; -} - -.stack>* { - margin-top: 0; - margin-bottom: 0; -} - -.stack>*+* { - margin-top: 2rem; - margin-top: var(--stack-margin, 2rem); -} - -.btn, -.toolbar-item { - display: inline-block; - border-radius: 11px; - padding: .5em 1em; - text-align: center; - text-decoration: none; - color: #fff; - border: none; - font-weight: 700; - background: 0 0; - font-size: .9em; - cursor: pointer; - outline: 0; -} - -.f-article-highlights__person { - margin-bottom: 3em; -} - -.family__grid { - --gap: 1.5em; - display: flex; - flex-wrap: nowrap; - justify-content: unset; -} - -.family__grid .promo-box { - justify-content: start; - flex: 1 0 calc(100% - 20px); - margin-right: var(--gap, 1em); -} - -.family__grid { - position: relative; - -webkit-overflow-scrolling: touch; - -ms-scroll-snap-type: x mandatory; - scroll-snap-type: x mandatory; - scroll-padding: 1rem; - scrollbar-color: #666 #ccc; - padding-bottom: var(--gap, 1em); - overflow-x: auto; -} - -.family__grid .promo-box { - scroll-snap-align: center; -} - -.family__grid .promo-box__footer { - line-height: 1.35em; -} - -.family__grid::-webkit-scrollbar { - width: 20px; - height: 20px; -} - -.family__grid-container { - position: relative; - max-width: 100%; -} - -.family__grid-container:after { - content: ""; - position: absolute; - right: 0; - top: 0; - bottom: 3.6rem; - width: 10px; - border-left-width: 2px; - border-right-width: 0; - border-style: solid; - border-image: linear-gradient(130deg, #fff 0, #4af9ae 10%, #54c8f9 30%, #f76d5e 50%, #74fd81 70%, #ebf75b 90%, #fff 100%)1 100%; - background: linear-gradient(130deg, #fff 0, #adfbda 10%, #97dcf9 30%, #fda399 50%, #94fb9e 70%, #f7ff99 90%, #fff 100%); -} - -.family__grid:hover { - cursor: grab; -} - -.family__grid::-webkit-scrollbar { - -webkit-appearance: none; -} - -::-webkit-scrollbar:vertical { - width: 25px; -} - -::-webkit-scrollbar:horizontal { - height: 25px; -} - -.family__grid::-webkit-scrollbar-thumb { - border: 1px solid #a9a9a9; - border-radius: 11px; - background: #a5a5a5; - background: linear-gradient(90deg, #bbb 0, #a5a5a5 50%, #bbb 100%); -} - -.family__grid::-webkit-scrollbar-track { - background: linear-gradient(90deg, #fff 0, #ddfbee 10%, #caedfb 30%, #fdcfca 50%, #cefdd3 70%, #f7fbca 100%); -} - -@media screen and (min-width:850px) { - .family__grid .promo-box { - flex: 1 0 calc(45% - 1vw - 10px); - } - - .family__grid:hover { - cursor: default; - } -} - -@media screen and (min-width:1450px) { - .family__grid .promo-box { - flex: 1 0 calc(29% - 1vw); - } -} - -header.subnav__header { - background: #fff; - padding: .2rem 0 0; - z-index: 1; -} - -.subnav__primary::-webkit-scrollbar { - display: none; - width: 0; - background: 0 0; -} - -.subnav__tags li:first-child { - padding-left: 14px; -} - -.subnav__tags li:last-child { - padding-right: .8em; -} - -.subnav__tags .subnav-item { - margin-bottom: 0; -} - -@media (min-width:740px) { - header.subnav__header { - padding: .25rem 0 0; - box-shadow: 0 4px 20px rgba(0, 0, 0, .12); - } - - .subnav__tags li:first-child { - padding-left: 35px; - } -} - -.subnav .nav-item-link { - color: #d33a2c; - text-shadow: none; - font-weight: 700; - font-family: Mija; - text-decoration-skip-ink: auto; - text-decoration-thickness: 1px; - text-underline-offset: 1px; - border-radius: 11px; - font-size: 1rem; - background-color: #ffe7e7; - transition: .2s border ease-in-out, .2s box-shadow ease-in-out; - border: 1px solid #fee0e0; -} - -.subnav .nav-item-link:hover { - color: #d33a2c; - text-shadow: none; - font-weight: 700; - font-family: Mija; - border-radius: 11px; - background-color: #ffe3e3; - border: 1px solid #faa4a4; -} - -.subnav-item a:active, -.subnav-item a:active:hover, -.subnav-item a:focus, -.subnav-item a:focus:hover { - box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12); - background-color: #d33a2c; - color: #fff; - outline: 0; -} - -.subnav-item { - display: flex; - margin-right: 9px; - padding-left: 3px; -} - -.subnav-item--active a.nav-item-link, -.subnav-item--active a.nav-item-link:hover { - background-color: #d33a2c; - color: #fff; - border: 1px solid #d33a2c; -} - -.subnav-item .nav-item-link { - padding: 2px 12px; -} - -.subnav a { - background: 0 0; - font-weight: 700; - display: flex; - align-items: center; - text-decoration: none; -} - -.subnav__primary { - padding: .25em 0; - margin-top: .25em; - margin-bottom: .35em; - display: flex; - position: relative; - scroll-snap-type: x; - scroll-padding: 1rem; - overflow-x: auto; - scrollbar-width: none; -} - -.subnav-more-item__button { - padding: .2em 1em; - border: 1px solid #ddd; - border-radius: 11px; - background: 0 0; - display: flex; - align-items: center; - justify-content: space-around; - color: #d33a2c; - position: relative; - font-size: .85em; - min-width: max-content; - transition: none; -} - -.hidden { - display: none; -} - -.subnav-item--green .nav-item-link:hover { - background-color: #c8f1e0; - border: 1px solid #a0dcc4; -} - -.subnav .nav-item-link:hover { - color: #d33a2c; - text-shadow: none; - font-weight: 700; - border-radius: 11px; - background-color: #ffe3e3; - border: 1px solid #faa4a4; -} - -@charset "UTF-8"; - -/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ - -html { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, "Open Sans", "Helvetica Neue", Arial, sans-serif; - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -footer, -header, -nav, -section { - display: block; -} - -figcaption, -figure, -main { - display: block; -} - -figure { - margin: 0; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -pre { - font-family: monospace; - font-size: 1em; -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; -} - -a:active, -a:hover { - outline-width: 0; -} - -abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -b, -strong { - font-weight: inherit; -} - -b, -strong { - font-weight: bolder; - letter-spacing: .25px; -} - -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -dfn { - font-style: italic; -} - -mark { - background-color: #ff0; - color: #000; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -audio, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -img { - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -button, -input, -optgroup, -select, -textarea { - font: inherit; - margin: 0; -} - -optgroup { - font-weight: 700; -} - -button, -select { - text-transform: none; -} - -[type=reset], -[type=submit], -button, -html [type=button] { - -webkit-appearance: button; -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} - -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} - -fieldset { - border: 1px solid silver; - margin: 0 2px; - padding: .35em .625em .75em; -} - -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} - -progress { - display: inline-block; - vertical-align: baseline; -} - -textarea { - overflow: auto; -} - -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0; -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; -} - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -[type=search]::-webkit-search-cancel-button, -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -details, -menu { - display: block; -} - -summary { - display: list-item; -} - -canvas { - display: inline-block; -} - -template { - display: none; -} - -[hidden] { - display: none; -} - -@media screen and (min-width:740px) { - - .global-header, - .header { - padding: 1rem 2em; - } -} - -@media screen and (min-width:700px) { - - .header, - .header.searchFocused { - grid-template-columns: -webkit-min-content minmax(140px, 2fr) 0 minmax(100px, 350px); - grid-template-columns: min-content minmax(140px, 2fr) 0 minmax(100px, 350px); - } -} - -@media screen and (min-width:31.25em) { - .header { - grid-template-columns: -webkit-min-content -webkit-min-content 0 minmax(100px, 100%); - grid-template-columns: min-content min-content 0 minmax(100px, 100%); - -moz-column-gap: 10px; - column-gap: 10px; - } -} - -.nav-item-link { - color: #fff; - transition: none; -} - -.nowrap { - white-space: nowrap; -} - -.nowrap:after, -.nowrap:before { - content: " "; - display: table; - clear: both; -} - -.btn .sr-only, -.sr-only { - position: absolute; - display: inline-block; - height: 0; - width: 0; - line-height: 0; - overflow: hidden; -} - -.green, -.highlight, -.success { - color: #41b14f; -} - -.error, -.red { - color: #d33a2c; -} - -.darker-red { - color: #61140f; -} - -.darkest-red { - color: #390c09; -} - -.black { - color: #000; -} - -.bold { - font-weight: 700; -} - -.in-progress, -.orange, -.pending { - color: #f88040; -} - -.light-grey { - color: #767676; -} - -.grey, -.grey a { - color: #666; -} - -.white { - color: #fff; -} - -.display-block { - display: block; -} - -.bg--grey { - background-color: #f6f6f6; -} - -.bg--lighter-grey { - background-image: linear-gradient(white, #f0f0f0); -} - -.bg--light-grey { - background-color: #fafafa; -} - -.bg--dark-grey { - background-color: #666; -} - -.bg--red { - background-color: #d33a2c; -} - -.bg--navy { - background-color: #282634; -} - -.bg--green { - background-color: #41b14f; -} - -.bg--light-green { - background-color: #e3f5e5; -} - -.bg--light-red { - background-color: #fbebea; -} - -.bg--dark-red { - background-color: #811d15; -} - -.small { - font-size: .8em; -} - -.smaller { - font-size: .7em; -} - -.larger { - font-size: 1.2em; -} - -.padding-bottom { - padding-bottom: 4vh; -} - -.italic { - font-style: italic; -} - -.thin { - font-weight: 400; -} - -.center { - text-align: center; -} - -.float--right { - float: right; -} - -.float--left { - float: left; -} - -.elena { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .elena { - font-family: Elena; -} - -.mija { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .mija { - font-family: Mija; -} - -.mt-0 { - margin-top: 0; -} - -.mb-0 { - margin-bottom: 0; -} - -.mb-8 { - margin-bottom: 2rem; -} - -.mb-12 { - margin-bottom: 3rem; -} - -.mb-10 { - margin-bottom: 2.5rem; -} - -.mb-12 { - margin-bottom: 3rem; -} - -.mb-16 { - margin-bottom: 4rem; -} - -.mt-16 { - margin-top: 4rem; -} - -.mt-12 { - margin-top: 3rem; -} - -.mt-8 { - margin-top: 2rem; -} - -.margin-center { - margin: 0 auto; -} - -.sticky { - position: fixed; - left: 0; - top: 0; - right: 0; - z-index: 10; - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); -} - -.enhanced .no-js-only, -.js .no-js-only { - display: none; -} - -.text-shadow { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.bird { - width: 60px; - height: 60px; - position: absolute; -} - -.bird #eye, -.bird #eye-2 { - -webkit-animation: blink 2s ease infinite; - animation: blink 2s ease infinite; - transform-origin: 50% 50%; -} - -@-webkit-keyframes cateye { - 15% { - transform: translate3d(0, -5px, 0); - } - - 30% { - transform: translate3d(-3px, -6px, 0); - } - - 45% { - transform: translate3d(-6px, -4px, 0); - } - - 60% { - transform: translate3d(-9px, 0, 0); - } - - 0%, - 100% { - transform: translate3d(0, -3px, 0); - } -} - -@keyframes cateye { - 15% { - transform: translate3d(0, -5px, 0); - } - - 30% { - transform: translate3d(-3px, -6px, 0); - } - - 45% { - transform: translate3d(-6px, -4px, 0); - } - - 60% { - transform: translate3d(-9px, 0, 0); - } - - 0%, - 100% { - transform: translate3d(0, -3px, 0); - } -} - -@-webkit-keyframes cateyesm { - 15% { - transform: translate3d(7px, 3px, 0); - } - - 30% { - transform: translate3d(6px, 1px, 0); - } - - 45% { - transform: translate3d(4px, 2px, 0); - } - - 60% { - transform: translate3d(3px, 5px, 0); - } - - 0%, - 100% { - transform: translate3d(7px, 4px, 0); - } -} - -@keyframes cateyesm { - 15% { - transform: translate3d(7px, 3px, 0); - } - - 30% { - transform: translate3d(6px, 1px, 0); - } - - 45% { - transform: translate3d(4px, 2px, 0); - } - - 60% { - transform: translate3d(3px, 5px, 0); - } - - 0%, - 100% { - transform: translate3d(7px, 4px, 0); - } -} - -.cateyesm { - -webkit-animation: cateyesm 5s infinite cubic-bezier(.39, .575, .565, 1); - animation: cateyesm 5s infinite cubic-bezier(.39, .575, .565, 1); - transform-origin: 50% 50%; -} - -#cateye { - -webkit-animation: cateye 5s infinite cubic-bezier(.39, .575, .565, 1); - animation: cateye 5s infinite cubic-bezier(.39, .575, .565, 1); - transform-origin: 50% 50%; -} - -.rwing { - left: 50px; - top: 10px; - width: 30px; - height: 30px; - position: absolute; - -webkit-animation: wing .5s infinite .3s; - animation: wing .5s infinite .3s; - transform-origin: 0 50%; -} - -.birdcontain { - position: absolute; - transform: translate3d(300px, 200px, 0); - -webkit-animation: birdmove 5s infinite cubic-bezier(.39, .575, .565, 1); - animation: birdmove 5s infinite cubic-bezier(.39, .575, .565, 1); -} - -@-webkit-keyframes birdmove { - 15% { - transform: translate3d(260px, 180px, 0); - } - - 30% { - transform: translate3d(240px, 150px, 0); - } - - 45% { - transform: translate3d(190px, 220px, 0); - } - - 60% { - transform: translate3d(150px, 240px, 0); - } - - 75% { - transform: translate3d(230px, 280px, 0); - } -} - -@keyframes birdmove { - 15% { - transform: translate3d(260px, 180px, 0); - } - - 30% { - transform: translate3d(240px, 150px, 0); - } - - 45% { - transform: translate3d(190px, 220px, 0); - } - - 60% { - transform: translate3d(150px, 240px, 0); - } - - 75% { - transform: translate3d(230px, 280px, 0); - } -} - -.lwing { - left: -5px; - top: 7px; - width: 30px; - height: 30px; - position: absolute; - -webkit-animation: wing .5s infinite; - animation: wing .5s infinite; - transform-origin: 100% 50%; -} - -.catloader { - width: 600px; -} - -@-webkit-keyframes wing { - 50% { - transform: rotate(10deg) translateZ(0); - } -} - -@keyframes wing { - 50% { - transform: rotate(10deg) translateZ(0); - } -} - -@-webkit-keyframes blink { - - 45%, - 55% { - transform: scaleY(1); - } - - 50% { - transform: scaleY(0); - } -} - -@keyframes blink { - - 45%, - 55% { - transform: scaleY(1); - } - - 50% { - transform: scaleY(0); - } -} - -.preloader { - text-align: center; -} - -.preloader div, -.preloader svg { - display: inline-block; -} - -.preloader--inner>svg { - max-width: 100%; -} - -.nowrap { - white-space: nowrap; -} - -.nowrap:after, -.nowrap:before { - content: " "; - display: table; - clear: both; -} - -.btn .sr-only, -.sr-only { - position: absolute; - display: inline-block; - height: 0; - width: 0; - line-height: 0; - overflow: hidden; -} - -.green, -.highlight, -.success { - color: #41b14f; -} - -.error, -.red { - color: #d33a2c; -} - -.darker-red { - color: #61140f; -} - -.darkest-red { - color: #390c09; -} - -.black { - color: #000; -} - -.bold { - font-weight: 700; -} - -.in-progress, -.orange, -.pending { - color: #f88040; -} - -.light-grey { - color: #767676; -} - -.grey, -.grey a { - color: #666; -} - -.white { - color: #fff; -} - -.display-block { - display: block; -} - -.bg--grey { - background-color: #f6f6f6; -} - -.bg--lighter-grey { - background-image: linear-gradient(white, #f0f0f0); -} - -.bg--light-grey { - background-color: #fafafa; -} - -.bg--dark-grey { - background-color: #666; -} - -.bg--red { - background-color: #d33a2c; -} - -.bg--navy { - background-color: #282634; -} - -.bg--green { - background-color: #41b14f; -} - -.bg--light-green { - background-color: #e3f5e5; -} - -.bg--light-red { - background-color: #fbebea; -} - -.bg--dark-red { - background-color: #811d15; -} - -.small { - font-size: .8em; -} - -.smaller { - font-size: .7em; -} - -.larger { - font-size: 1.2em; -} - -.padding-bottom { - padding-bottom: 4vh; -} - -.italic { - font-style: italic; -} - -.thin { - font-weight: 400; -} - -.center { - text-align: center; -} - -.float--right { - float: right; -} - -.float--left { - float: left; -} - -.elena { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .elena { - font-family: Elena; -} - -.mija { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .mija { - font-family: Mija; -} - -.mt-0 { - margin-top: 0; -} - -.mb-0 { - margin-bottom: 0; -} - -.mb-8 { - margin-bottom: 2rem; -} - -.mb-12 { - margin-bottom: 3rem; -} - -.mb-10 { - margin-bottom: 2.5rem; -} - -.mb-12 { - margin-bottom: 3rem; -} - -.mb-16 { - margin-bottom: 4rem; -} - -.mt-16 { - margin-top: 4rem; -} - -.mt-12 { - margin-top: 3rem; -} - -.mt-8 { - margin-top: 2rem; -} - -.margin-center { - margin: 0 auto; -} - -.sticky { - position: fixed; - left: 0; - top: 0; - right: 0; - z-index: 10; - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); -} - -.enhanced .no-js-only, -.js .no-js-only { - display: none; -} - -.text-shadow { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.container, -.container-fluid { - margin-right: auto; - margin-left: auto; -} - -.container-fluid { - padding-right: 8rem; - padding-left: 8rem; -} - -.row { - box-sizing: border-box; - display: flex; - flex: 0 1 auto; - flex-direction: row; - flex-wrap: wrap; - margin-right: -1rem; - margin-left: -1rem; -} - -.row.reverse { - flex-direction: row-reverse; -} - -.col.reverse { - flex-direction: column-reverse; -} - -.lg-hidden, -.md-hidden, -.sm-hidden, -.xs-hidden { - display: none; -} - -@media (min-width:48em) { - .xs-hidden { - display: block; - } -} - -@media (min-width:64em) { - .sm-hidden { - display: block; - } -} - -@media (min-width:64em) { - .md-hidden { - display: block; - } -} - -@media (min-width:75em) { - .lg-hidden { - display: block; - } -} - -.col-xs, -.col-xs-1, -.col-xs-10, -.col-xs-11, -.col-xs-12, -.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-offset-0, -.col-xs-offset-1, -.col-xs-offset-10, -.col-xs-offset-11, -.col-xs-offset-12, -.col-xs-offset-2, -.col-xs-offset-3, -.col-xs-offset-4, -.col-xs-offset-5, -.col-xs-offset-6, -.col-xs-offset-7, -.col-xs-offset-8, -.col-xs-offset-9, -[class*=col-] { - box-sizing: border-box; - flex: 0 0 auto; - padding-right: 1rem; - padding-left: 1rem; -} - -.col-xs { - flex-grow: 1; - flex-basis: 0; - max-width: 100%; -} - -.col-xs-1 { - flex-basis: 8.33333333%; - max-width: 8.33333333%; -} - -.col-xs-2 { - flex-basis: 16.66666667%; - max-width: 16.66666667%; -} - -.col-xs-3 { - flex-basis: 25%; - max-width: 25%; -} - -.col-xs-4 { - flex-basis: 33.33333333%; - max-width: 33.33333333%; -} - -.col-xs-5 { - flex-basis: 41.66666667%; - max-width: 41.66666667%; -} - -.col-xs-6 { - flex-basis: 50%; - max-width: 50%; -} - -.col-xs-7 { - flex-basis: 58.33333333%; - max-width: 58.33333333%; -} - -.col-xs-8 { - flex-basis: 66.66666667%; - max-width: 66.66666667%; -} - -.col-xs-9 { - flex-basis: 75%; - max-width: 75%; -} - -.col-xs-10 { - flex-basis: 83.33333333%; - max-width: 83.33333333%; -} - -.col-xs-11 { - flex-basis: 91.66666667%; - max-width: 91.66666667%; -} - -.col-xs-12 { - flex-basis: 100%; - max-width: 100%; -} - -.col-xs-offset-0 { - margin-left: 0; -} - -.col-xs-offset-1 { - margin-left: 8.33333333%; -} - -.col-xs-offset-2 { - margin-left: 16.66666667%; -} - -.col-xs-offset-3 { - margin-left: 25%; -} - -.col-xs-offset-4 { - margin-left: 33.33333333%; -} - -.col-xs-offset-5 { - margin-left: 41.66666667%; -} - -.col-xs-offset-6 { - margin-left: 50%; -} - -.col-xs-offset-7 { - margin-left: 58.33333333%; -} - -.col-xs-offset-8 { - margin-left: 66.66666667%; -} - -.col-xs-offset-9 { - margin-left: 75%; -} - -.col-xs-offset-10 { - margin-left: 83.33333333%; -} - -.col-xs-offset-11 { - margin-left: 91.66666667%; -} - -.start-xs { - justify-content: flex-start; - text-align: start; -} - -.center-xs { - justify-content: center; - text-align: center; -} - -.end-xs { - justify-content: flex-end; -} - -.top-xs { - align-items: flex-start; -} - -.middle-xs { - align-items: center; -} - -.bottom-xs { - align-items: flex-end; -} - -.around-xs { - justify-content: space-around; -} - -.between-xs { - justify-content: space-between; -} - -.first-xs { - order: -1; -} - -.last-xs { - order: 1; -} - -@media (min-width:48em) { - .container { - width: 52rem; - } - - .col-sm, - .col-sm-1, - .col-sm-10, - .col-sm-11, - .col-sm-12, - .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-offset-0, - .col-sm-offset-1, - .col-sm-offset-10, - .col-sm-offset-11, - .col-sm-offset-12, - .col-sm-offset-2, - .col-sm-offset-3, - .col-sm-offset-4, - .col-sm-offset-5, - .col-sm-offset-6, - .col-sm-offset-7, - .col-sm-offset-8, - .col-sm-offset-9 { - box-sizing: border-box; - flex: 0 0 auto; - padding-right: 1rem; - padding-left: 1rem; - } - - .col-sm { - flex-grow: 1; - flex-basis: 0; - max-width: 100%; - } - - .col-sm-1 { - flex-basis: 8.33333333%; - max-width: 8.33333333%; - } - - .col-sm-2 { - flex-basis: 16.66666667%; - max-width: 16.66666667%; - } - - .col-sm-3 { - flex-basis: 25%; - max-width: 25%; - } - - .col-sm-4 { - flex-basis: 33.33333333%; - max-width: 33.33333333%; - } - - .col-sm-5 { - flex-basis: 41.66666667%; - max-width: 41.66666667%; - } - - .col-sm-6 { - flex-basis: 50%; - max-width: 50%; - } - - .col-sm-7 { - flex-basis: 58.33333333%; - max-width: 58.33333333%; - } - - .col-sm-8 { - flex-basis: 66.66666667%; - max-width: 66.66666667%; - } - - .col-sm-9 { - flex-basis: 75%; - max-width: 75%; - } - - .col-sm-10 { - flex-basis: 83.33333333%; - max-width: 83.33333333%; - } - - .col-sm-11 { - flex-basis: 91.66666667%; - max-width: 91.66666667%; - } - - .col-sm-12 { - flex-basis: 100%; - max-width: 100%; - } - - .col-sm-offset-0 { - margin-left: 0; - } - - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - - .col-sm-offset-3 { - margin-left: 25%; - } - - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - - .col-sm-offset-6 { - margin-left: 50%; - } - - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - - .col-sm-offset-9 { - margin-left: 75%; - } - - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - - .start-sm { - justify-content: flex-start; - text-align: start; - } - - .center-sm { - justify-content: center; - text-align: center; - } - - .end-sm { - justify-content: flex-end; - } - - .top-sm { - align-items: flex-start; - } - - .middle-sm { - align-items: center; - } - - .bottom-sm { - align-items: flex-end; - } - - .around-sm { - justify-content: space-around; - } - - .between-sm { - justify-content: space-between; - } - - .first-sm { - order: -1; - } - - .last-sm { - order: 1; - } -} - -@media (min-width:64em) { - .container { - width: 68rem; - } - - .col-md, - .col-md-1, - .col-md-10, - .col-md-11, - .col-md-12, - .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-offset-0, - .col-md-offset-1, - .col-md-offset-10, - .col-md-offset-11, - .col-md-offset-12, - .col-md-offset-2, - .col-md-offset-3, - .col-md-offset-4, - .col-md-offset-5, - .col-md-offset-6, - .col-md-offset-7, - .col-md-offset-8, - .col-md-offset-9 { - box-sizing: border-box; - flex: 0 0 auto; - padding-right: 1rem; - padding-left: 1rem; - } - - .col-md { - flex-grow: 1; - flex-basis: 0; - max-width: 100%; - } - - .col-md-1 { - flex-basis: 8.33333333%; - max-width: 8.33333333%; - } - - .col-md-2 { - flex-basis: 16.66666667%; - max-width: 16.66666667%; - } - - .col-md-3 { - flex-basis: 25%; - max-width: 25%; - } - - .col-md-4 { - flex-basis: 33.33333333%; - max-width: 33.33333333%; - } - - .col-md-5 { - flex-basis: 41.66666667%; - max-width: 41.66666667%; - } - - .col-md-6 { - flex-basis: 50%; - max-width: 50%; - } - - .col-md-7 { - flex-basis: 58.33333333%; - max-width: 58.33333333%; - } - - .col-md-8 { - flex-basis: 66.66666667%; - max-width: 66.66666667%; - } - - .col-md-9 { - flex-basis: 75%; - max-width: 75%; - } - - .col-md-10 { - flex-basis: 83.33333333%; - max-width: 83.33333333%; - } - - .col-md-11 { - flex-basis: 91.66666667%; - max-width: 91.66666667%; - } - - .col-md-12 { - flex-basis: 100%; - max-width: 100%; - } - - .col-md-offset-0 { - margin-left: 0; - } - - .col-md-offset-1 { - margin-left: 8.33333333%; - } - - .col-md-offset-2 { - margin-left: 16.66666667%; - } - - .col-md-offset-3 { - margin-left: 25%; - } - - .col-md-offset-4 { - margin-left: 33.33333333%; - } - - .col-md-offset-5 { - margin-left: 41.66666667%; - } - - .col-md-offset-6 { - margin-left: 50%; - } - - .col-md-offset-7 { - margin-left: 58.33333333%; - } - - .col-md-offset-8 { - margin-left: 66.66666667%; - } - - .col-md-offset-9 { - margin-left: 75%; - } - - .col-md-offset-10 { - margin-left: 83.33333333%; - } - - .col-md-offset-11 { - margin-left: 91.66666667%; - } - - .start-md { - justify-content: flex-start; - text-align: start; - } - - .center-md { - justify-content: center; - text-align: center; - } - - .end-md { - justify-content: flex-end; - } - - .top-md { - align-items: flex-start; - } - - .middle-md { - align-items: center; - } - - .bottom-md { - align-items: flex-end; - } - - .around-md { - justify-content: space-around; - } - - .between-md { - justify-content: space-between; - } - - .first-md { - order: -1; - } - - .last-md { - order: 1; - } -} - -@media (min-width:75em) { - .container { - width: 79rem; - } - - .col-lg, - .col-lg-1, - .col-lg-10, - .col-lg-11, - .col-lg-12, - .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-offset-0, - .col-lg-offset-1, - .col-lg-offset-10, - .col-lg-offset-11, - .col-lg-offset-12, - .col-lg-offset-2, - .col-lg-offset-3, - .col-lg-offset-4, - .col-lg-offset-5, - .col-lg-offset-6, - .col-lg-offset-7, - .col-lg-offset-8, - .col-lg-offset-9 { - box-sizing: border-box; - flex: 0 0 auto; - padding-right: 1rem; - padding-left: 1rem; - } - - .col-lg { - flex-grow: 1; - flex-basis: 0; - max-width: 100%; - } - - .col-lg-1 { - flex-basis: 8.33333333%; - max-width: 8.33333333%; - } - - .col-lg-2 { - flex-basis: 16.66666667%; - max-width: 16.66666667%; - } - - .col-lg-3 { - flex-basis: 25%; - max-width: 25%; - } - - .col-lg-4 { - flex-basis: 33.33333333%; - max-width: 33.33333333%; - } - - .col-lg-5 { - flex-basis: 41.66666667%; - max-width: 41.66666667%; - } - - .col-lg-6 { - flex-basis: 50%; - max-width: 50%; - } - - .col-lg-7 { - flex-basis: 58.33333333%; - max-width: 58.33333333%; - } - - .col-lg-8 { - flex-basis: 66.66666667%; - max-width: 66.66666667%; - } - - .col-lg-9 { - flex-basis: 75%; - max-width: 75%; - } - - .col-lg-10 { - flex-basis: 83.33333333%; - max-width: 83.33333333%; - } - - .col-lg-11 { - flex-basis: 91.66666667%; - max-width: 91.66666667%; - } - - .col-lg-12 { - flex-basis: 100%; - max-width: 100%; - } - - .col-lg-offset-0 { - margin-left: 0; - } - - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - - .col-lg-offset-3 { - margin-left: 25%; - } - - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - - .col-lg-offset-6 { - margin-left: 50%; - } - - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - - .col-lg-offset-9 { - margin-left: 75%; - } - - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - - .start-lg { - justify-content: flex-start; - text-align: start; - } - - .center-lg { - justify-content: center; - text-align: center; - } - - .end-lg { - justify-content: flex-end; - } - - .top-lg { - align-items: flex-start; - } - - .middle-lg { - align-items: center; - } - - .bottom-lg { - align-items: flex-end; - } - - .around-lg { - justify-content: space-around; - } - - .between-lg { - justify-content: space-between; - } - - .first-lg { - order: -1; - } - - .last-lg { - order: 1; - } -} - -.col--right { - justify-self: flex-end; - order: 999; -} - -.col--center { - margin-left: auto; - margin-right: auto; - justify-self: space-around; -} - -.row::after { - clear: both; -} - -.col-1, -.col-10, -.col-11, -.col-12, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9 { - flex-basis: 100%; - max-width: 100%; -} - -@media screen and (min-width:48em) { - .col-1 { - flex-basis: 8.33333%; - max-width: 8.33333%; - } - - .col-2 { - flex-basis: 16.66667%; - max-width: 16.66667%; - } - - .col-3 { - flex-basis: 25%; - max-width: 25%; - } - - .col-4 { - flex-basis: 33.33333%; - max-width: 33.33333%; - } - - .col-5 { - flex-basis: 41.66667%; - max-width: 41.66667%; - } - - .col-6 { - flex-basis: 50%; - max-width: 50%; - } - - .col-7 { - flex-basis: 58.33333%; - max-width: 58.33333%; - } - - .col-8 { - flex-basis: 66.66667%; - max-width: 66.66667%; - } - - .col-9 { - flex-basis: 75%; - max-width: 75%; - } - - .col-10 { - flex-basis: 83.33333%; - max-width: 83.33333%; - } - - .col-11 { - flex-basis: 91.66667%; - max-width: 91.66667%; - } - - .col-12 { - flex-basis: 100%; - max-width: 100%; - } -} - -.container { - width: calc(100% - .5em); - max-width: 1440px; - margin: 0 auto; - z-index: 1; - position: relative; -} - -.container::after { - content: ""; - display: table; - clear: both; -} - -@media screen and (min-width:40em) { - .container { - width: 92vw; - } -} - -@media screen and (min-width:48em) { - .container { - width: 85vw; - } -} - -.auth-container { - overflow: hidden; -} - -@media all and (min-width:1500px) { - #member-area .pricing .container { - max-width: calc(1500px + 20vw); - } - - .homepage .container { - max-width: 1635px; - } -} - -.c-garfield-the-cat>p:first-of-type { - font-size: 1.1em; - line-height: 1.55em; -} - -.col--article-head { - display: flex; - flex-direction: column; -} - -@media (max-width:64em) { - .article--navigation { - display: flex; - flex-direction: row; - flex-wrap: nowrap; - } -} - -@media (max-width:64em) { - .article--navigation button:nth-child(1) { - margin-left: calc(30% + 1em); - margin-right: 1em; - margin-left: auto; - } -} - -@media (max-width:64em) { - .article--navigation button:nth-child(2) { - margin-right: 0; - } -} - -.internal-summary { - padding-left: 1.8em; -} - -.col--article-summary { - padding-left: 1.8em; - position: relative; -} - -@media (max-width:64em) { - .col--article-summary .collapsible__content { - background: #f6f3f2; - } -} - -@media all and (max-width:800px) { - .col--article-summary .collapsible__content { - padding: 0 calc(1em + 4vw); - } -} - -@media all and (min-width:800px) and (max-width:1024px) { - .col--article-summary .collapsible__content { - padding: 0 calc(1em + (100vw - 750px)/ 2); - } -} - -.article--content-page .col--article-summary, -.internal-summary { - margin-top: 0; -} - -.article--content-page .col--article-summary .newsletter-container, -.internal-summary .newsletter-container { - padding-top: 0; -} - -.internal__page__wrapper .col--internal-summary { - padding-bottom: 1.5em; -} - -@media screen and (min-width:64em) { - .internal__page__wrapper .col--internal-summary { - padding-top: 0; - } -} - -.article--content-page .article__content::before { - display: none; -} - -@media (max-width:1024px) { - .col { - width: 100%; - padding: 0 1em; - } - - .col--slim { - padding: 0 .5em; - } - - .row { - margin-left: 0; - margin-right: 0; - } - - .col--article-head, - .col--article-summary, - .internal-summary { - float: none; - margin: 0; - top: 0; - } - - .article__content { - float: none; - } - - .article__content::before { - display: none; - } -} - -.no-js body { - background-color: #fff; -} - -body, -html { - min-height: 100%; - overflow-x: hidden; -} - -#main { - position: relative; - z-index: 0; - background-color: #fff; -} - -#main:focus { - outline: 0; -} - -.cover { - position: relative; - z-index: 20; - background-color: #fff; -} - -.cover:after, -.cover:before { - content: " "; - display: table; - clear: both; -} - -hr { - height: 4px; - border-radius: 11px; - background: #d33a2c; - border: 0; - margin: 3em 0; -} - -@media screen and (min-width:64em) { - hr.small-only { - display: none; - } -} - -@media all and (min-width:1100px) { - .d-garfield-the-cat { - width: 100%; - display: grid; - grid-template-columns: 12.5rem repeat(12, minmax(0, 1fr)) 12.5rem; - grid-column-gap: .5rem; - grid-row-gap: calc(1em + .5vw); - } - - .d-garfield-the-cat>* { - grid-column: 2/14; - } - - .d-garfield-the-cat>p { - margin: 0; - } - - .d-garfield-the-cat>.break-out { - grid-column: 1/15; - max-width: 50em; - margin-left: auto; - margin-right: auto; - } - - .d-garfield-the-cat>.break-out img { - margin: 0 auto; - } - - .d-garfield-the-cat>.break-out figcaption { - max-width: 50em; - } - - .article__content .d-garfield-the-cat figcaption { - padding-top: calc((1em + .5vw)/ 2); - padding-bottom: 0; - margin: 0 auto; - } - - .d-garfield-the-cat>h3 { - margin-top: calc(.5em + .5vw); - margin-bottom: 0; - } - - .d-garfield-the-cat>h4 { - margin-top: calc(.5em + .5vw); - margin-bottom: calc(-1 * (1em + .5vw)/ 2); - } - - .d-garfield-the-cat>h5 { - margin-top: calc(.5em + .5vw); - margin-bottom: 0; - } - - .d-garfield-the-cat>ol li, - .d-garfield-the-cat>ul li { - margin-bottom: calc((1em + .5vw)/ 2); - } -} - -@media screen and (min-width:80em) { - - .c-garfield-the-cat, - .d-garfield-the-cat { - display: grid; - grid-template-columns: 16rem repeat(12, minmax(0, 1fr)) 16rem; - } -} - -@media screen and (min-width:100em) { - - .c-garfield-the-cat, - .d-garfield-the-cat { - display: grid; - grid-template-columns: 17rem repeat(12, minmax(0, 1fr)) 17rem; - } -} - -@media screen and (min-width:160em) { - - .c-garfield-the-cat, - .d-garfield-the-cat { - display: grid; - grid-template-columns: 18.5rem repeat(12, minmax(0, 1fr)) 18.5rem; - grid-column-gap: 1.75rem; - } - - .articlepage .container { - max-width: 1640px; - } -} - -@media (min-width:187.5em) { - - .c-garfield-the-cat, - .d-garfield-the-cat { - display: grid; - grid-template-columns: 20rem repeat(12, minmax(0, 1fr)) 20rem; - grid-column-gap: 2.25rem; - } - - .articlepage .container { - max-width: 1850px; - } -} - -body { - display: flex; - flex-direction: column; - background-color: #fff; -} - -body.articlepage, -body.dashboard, -body.eventspage { - background-color: #fff; -} - -embed, -iframe, -img, -object { - max-width: 100%; -} - -embed, -iframe, -object { - border: 0; -} - -:focus { - outline: 3px dotted var(--THEME_COLOR_HOVER, #d33a2c); - outline-offset: 2px; -} - -.header { - background: #d33a2c; - background: var(--THEME_COLOR, #d33a2c); - position: relative; - display: grid; - -moz-column-gap: 0; - column-gap: 0; - justify-content: flex-start; - align-items: center; - padding: .8em; - z-index: 2; - grid-template-columns: -webkit-min-content -webkit-min-content 1fr; - grid-template-columns: min-content min-content 1fr; - -moz-column-gap: 5px; - column-gap: 5px; -} - -@media all and (min-width:31.25em) { - .header { - grid-template-columns: -webkit-min-content -webkit-min-content 0 minmax(100px, 100%); - grid-template-columns: min-content min-content 0 minmax(100px, 100%); - -moz-column-gap: 10px; - column-gap: 10px; - } -} - -@media all and (min-width:480px) { - .header.searchFocused { - grid-template-columns: -webkit-min-content 1px 1px minmax(100px, 350px); - grid-template-columns: min-content 1px 1px minmax(100px, 350px); - } -} - -@media screen and (min-width:480px) and (max-width:700px) { - .header.searchFocused .main-nav { - opacity: 0; - } - - .header.searchFocused { - grid-template-columns: -webkit-min-content 1px 1px minmax(100px, 100%); - grid-template-columns: min-content 1px 1px minmax(100px, 100%); - } -} - -@media (min-width:700px) { - - .header, - .header.searchFocused { - grid-template-columns: -webkit-min-content minmax(140px, 2fr) 0 minmax(100px, 350px); - grid-template-columns: min-content minmax(140px, 2fr) 0 minmax(100px, 350px); - } - - .header.searchFocused .main-nav { - opacity: 1; - } -} - -@media (min-width:740px) { - .header { - padding: 1rem 2em; - } -} - -.search { - flex-basis: 100px; - flex-shrink: 1; -} - -@media (min-width:800px) { - .search { - flex-basis: 500px; - } -} - -a.skip-main { - left: -999px; - position: absolute; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; - z-index: -999; -} - -a.skip-main:active, -a.skip-main:focus { - color: #d33a2c; - background-color: #fff; - left: auto; - top: auto; - width: auto; - height: auto; - overflow: auto; - padding: .5em 1em; - text-align: center; - font-size: 1.2em; - z-index: 999; -} - -body:not(#home) .contrast-switcher { - display: none; -} - -header.subnav__header { - background: #fff; - padding: .2rem 0 0 0; - z-index: 1; -} - -.subnav__primary::-webkit-scrollbar { - display: none; - width: 0; - background: 0 0; -} - -.subnav__tags li:first-child { - padding-left: 14px; -} - -.subnav__tags li:last-child { - padding-right: .8em; -} - -.subnav__tags .subnav-item { - margin-bottom: 0; -} - -@media (min-width:740px) { - header.subnav__header { - padding: .25rem 0 0 0; - box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .12); - } - - .subnav__tags li:first-child { - padding-left: 35px; - } -} - -.subnav .nav-item-link { - color: #d33a2c; - text-shadow: none; - font-weight: 700; - -webkit-text-decoration-skip: ink; - text-decoration-skip-ink: auto; - text-decoration-thickness: 1px; - text-underline-offset: 1px; - border-radius: 11px; - font-size: 1rem; - background-color: #ffe7e7; - transition: .2s border ease-in-out, .2s box-shadow ease-in-out; - border: 1px solid #fee0e0; -} - -.wf-loaded-stage2 .subnav .nav-item-link { - font-family: Mija; -} - -.subnav .nav-item-link:hover { - color: #d33a2c; - text-shadow: none; - font-weight: 700; - border-radius: 11px; - background-color: #ffe3e3; - border: 1px solid #faa4a4; -} - -.wf-loaded-stage2 .subnav .nav-item-link:hover { - font-family: Mija; -} - -.subnav-item--green .nav-item-link { - color: #137d54; - background-color: #d6f3e7; - transition: .2s border ease-in-out, .2s box-shadow ease-in-out; - border: 1px solid #c6f2e0; -} - -.subnav-item--green .nav-item-link:hover { - background-color: #c8f1e0; - border: 1px solid #a0dcc4; -} - -.subnav-item a:active, -.subnav-item a:active:hover, -.subnav-item a:focus, -.subnav-item a:focus:hover { - box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .12); - background-color: #d33a2c; - color: #fff; -} - -.subnav-item--green a:active, -.subnav-item--green a:active:hover, -.subnav-item--green a:focus, -.subnav-item--green a:focus:hover { - background-color: #137d54; - color: #fff; -} - -.subnav-item { - display: flex; - margin-right: 9px; - padding-left: 3px; -} - -.subnav-item .nav-item-link { - padding: 2px 12px; -} - -.subnav a, -.subnav button { - background: 0 0; - font-weight: 700; - display: flex; - align-items: center; - text-decoration: none; -} - -.wf-loaded-stage2 .subnav a, -.wf-loaded-stage2 .subnav button { - font-family: Mija; -} - -.subnav__primary { - padding: .25em 0; - margin-top: .25em; - margin-bottom: .35em; - display: flex; - position: relative; - scroll-snap-type: x; - scroll-padding: 1rem; - overflow-x: auto; - scrollbar-width: none; -} - -.subnav-more-item__button { - padding: .2em 1em; - border: 1px solid #ddd; - border-radius: 11px; - background: 0 0; - display: flex; - align-items: center; - justify-content: space-around; - color: #d33a2c; - position: relative; - font-size: .85em; - min-width: -webkit-max-content; - min-width: -moz-max-content; - min-width: max-content; - transition: none; -} - -.subnav-more-item__button .menu-text, -.subnav-more-item__button[aria-expanded] .menu-text--close { - display: block; -} - -.subnav-more-item__button .menu-text--close, -.subnav-more-item__button[aria-expanded] .menu-text { - display: none; -} - -.subnav-item--active a.nav-item-link, -.subnav-item--active a.nav-item-link:hover { - background-color: #d33a2c; - color: #fff; - border: 1px solid #d33a2c; -} - -body { - font-feature-settings: "onum" 1; - color: #333; - overflow: hidden; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 body { - font-family: Elena; -} - -body { - font-size: 1.125em; -} - -@media screen and (min-width:48em) { - body { - font-size: calc(.3584229391vw + .9529569892em); - } -} - -@media screen and (min-width:187.5em) { - body { - font-size: 1.625em; - } -} - -.normal { - color: #333; -} - -body .form__field__label, -body blockquote, -body dl, -body dt, -body figcaption, -body li, -body p, -body textarea { - line-height: calc(1.5em + .2vw); - word-break: break-word; -} - -body h1, -body h2, -body h3 { - line-height: 1.2; -} - -body h4, -body h5, -body h6 { - line-height: calc(1.3em + .2 * (100vw - 21em)/ 14); -} - -body code { - font-feature-settings: normal; - font-style: normal; -} - -@supports (-ms-ime-align:auto) { - body { - font-feature-settings: normal; - } -} - -::-webkit-input-placeholder { - color: #666; -} - -:-moz-placeholder { - color: #000; -} - -::-moz-placeholder { - color: #000; -} - -:-ms-input-placeholder { - color: #666; -} - -.old-price { - position: relative; -} - -.old-price::before { - content: ""; - display: block; - position: absolute; - width: 100%; - height: 2px; - border-radius: 2px; - background: #d33a2c; - top: 50%; - margin-top: -2px; - transform: rotate(-35deg); -} - -.article-header--meta-item__date, -time { - font-size: .8em; - color: #666; - text-transform: lowercase; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .article-header--meta-item__date, -.wf-loaded-stage2 time { - font-family: Elena; -} - -.article-header--meta-item__date a, -time a { - background-position: center 72%; -} - -.lining-figures-tnum { - font-feature-settings: "smcp" 1, "c2sc" 1, "tnum" 1, "frac" 1, "sups" 1, "subs" 1; -} - -p { - margin: calc(1em + .5vw) 0; -} - -b, -strong { - letter-spacing: 0; -} - -.kbd, -kbd { - font-size: .9em; - padding: .0625rem .5rem; - border-radius: .125rem; - border: 1px solid #d33a2c; - box-shadow: 1px 1px 0 #d33a2c, 2px 2px 0 #d33a2c; - margin: 0 .25rem; - color: #d33a2c; - font-family: monospace; -} - -code, -pre { - color: #000; - background: 0 0; - text-shadow: 0 1px #fff; - font-family: Fira Code, Menlo, Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; - text-align: left; - white-space: pre; - word-spacing: normal; - word-break: normal; - font-variant-ligatures: none; - word-wrap: normal; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - hyphens: none; -} - -code ::-moz-selection, -code::-moz-selection, -pre ::-moz-selection, -pre::-moz-selection { - text-shadow: none; - background: #b3d4fc; -} - -code ::-moz-selection, -code::-moz-selection, -pre ::-moz-selection, -pre::-moz-selection { - text-shadow: none; - background: #b3d4fc; - color: #333; -} - -code ::selection, -code::selection, -pre ::selection, -pre::selection { - text-shadow: none; - background: #b3d4fc; - color: #333; -} - -pre { - padding: 1rem; - margin: .5rem 0; - resize: both; - max-width: 100vw; - color: #666; - background: #fafafa; - border: 1px solid #eee; - font-size: 1em; - border-radius: 11px; - min-width: 250px; - overflow: auto; -} - -@media (max-width:64em) { - pre { - max-width: 100%; - } -} - -:not(pre)>code, -code { - background: #fff2ea; - color: #333; - font-size: calc(.75em + .1vw); - line-height: calc(1.5em + .2vw); - padding: 0 .2725em; - display: inline-block; -} - -:not(pre)>code { - white-space: normal; -} - -pre>code, -pre[class]>code { - line-height: calc(1.65em + .2vw); - background: 0 0; - white-space: break-spaces; -} - -pre.code__inline code { - padding: 0; -} - -.coupon, -.highlight, -.note { - color: #333; - border-radius: 11px; - background: #fff2cc; - font-size: .75em; - padding: .15em .5em; - margin: 0 .15em; - text-shadow: none; -} - -.highlight { - font-size: 1em; - margin: 0; -} - -p.auth-modal__hint { - margin: 2em .15em 0 .15em; - color: #333; -} - -p.auth-modal__hint small { - font-size: .75em; - background: #fff2cc; - padding: .5em 1em; - border-radius: 11px; -} - -address { - line-height: 1.6; - margin: 1em 0; - font-style: normal; -} - -address span { - display: block; -} - -figure { - margin: 0; - padding: 0; -} - -figure:after, -figure:before { - content: " "; - display: table; - clear: both; -} - -figcaption a { - color: inherit; -} - -figcaption code, -figcaption pre { - font-style: normal; -} - -.figure--left-caption { - position: relative; -} - -.figure--left-caption img { - width: auto; - max-width: 100%; -} - -.figure--left-caption figcaption { - font-size: calc(.8em + .2vw); - color: #666; - padding: 2em 0; -} - -.figure--left-caption figcaption li { - margin: .5em 0; - padding: 0; - margin-bottom: -.25em; -} - -@media all and (min-width:1025px) { - .figure--left-caption figcaption { - width: 50.75%; - position: absolute; - top: 50%; - margin-top: 2em; - transform: translateY(-50%); - left: calc(-50% - 2em); - text-align: right; - } -} - -a { - text-decoration: none; - padding: 10px 0; - transition: color .1s ease-out; - color: #006fc6; - -webkit-text-decoration-skip: ink; - text-decoration-skip-ink: auto; - text-decoration-thickness: 1px; - text-underline-offset: 1px; - text-decoration-offset: initial; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -a code { - background: 0 0; - padding: 0; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -.load-more { - text-align: center; - padding: 1em 0 5em; -} - -a.load-more__link { - text-transform: lowercase; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - text-transform: uppercase; - font-size: .75em; - color: inherit; - background: 0 0; - text-shadow: none; - border-bottom: 5px solid #d33a2c; - letter-spacing: 1px; - transition: all .1s ease-out; - display: inline-block; - padding: 1.25em 1em .5em; - cursor: pointer; - text-decoration: none; -} - -a.load-more__link a { - background-position: center 72%; -} - -a.load-more__link:focus, -a.load-more__link:hover { - color: #d33a2c; -} - -a.load-more__link::after { - content: " → "; -} - -.read-more-link { - font-size: .95em; - text-shadow: none; - font-weight: 700; - display: table; - margin-top: .5em; - text-underline-offset: 5px; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .read-more-link { - font-family: Mija; -} - -.h1, -h1 { - font-size: calc(1.625rem + 1.6vw); - margin: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .h1, -.wf-loaded-stage2 h1 { - font-family: Mija; -} - -.h2, -h2 { - font-size: calc(1.375rem + 1.6vw); - margin: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .h2, -.wf-loaded-stage2 h2 { - font-family: Mija; -} - -.h3, -h3 { - font-size: calc(1.5rem + .25vw); - margin: 2em 0 .75em; - text-transform: capitalize; - color: #333; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .h3, -.wf-loaded-stage2 h3 { - font-family: Elena; -} - -.h4, -h4 { - font-size: calc(1.125rem + .25vw); - text-transform: uppercase; - letter-spacing: 1px; - margin-top: 2em; - margin-bottom: 1em; - color: #333; -} - -.h5, -h5 { - font-style: italic; - font-size: calc(1rem + .25vw); - color: #444; -} - -.h6, -h6 { - font-size: calc(1rem + .25vw); - letter-spacing: 1px; - color: #444; - text-transform: uppercase; - margin: 0; -} - -@media all and (min-width:1550px) { - - .h1, - h1 { - font-size: 2.13894em; - } - - .h2, - h2 { - font-size: 2.14857em; - } -} - -h2:target, -h3:target, -h4:target, -h5:target, -h6:target { - color: #d33a2c; - border-bottom: 5px solid #d33a2c; -} - -:target { - scroll-margin-top: 2rem; -} - -.article h1, -.article h2, -.article h3, -.article h4, -.article h5, -.article h6 { - position: relative; -} - -h1 code, -h2 code, -h3 code, -h4 code, -h5 code, -h6 code { - background: inherit; - text-transform: none; -} - -::-moz-selection, -code::-moz-selection { - text-shadow: none; - background: #b3d4fc; -} - -::selection, -code::selection { - text-shadow: none; - background: #b3d4fc; -} - -::-moz-selection { - text-shadow: none; - background: #b3d4fc; -} - -.success::-moz-selection { - text-shadow: none; - background: var(--THEME_COLOR, #b3d4fc); -} - -.success::selection { - text-shadow: none; - background: var(--THEME_COLOR, #b3d4fc); -} - -ol, -ul { - padding: 0; - margin: 1em 0; - max-width: 100%; -} - -ol { - list-style: none; - counter-reset: listCounter; -} - -ol>li { - padding-left: 1.75em; - padding-left: calc(1.65em + .7vw); - position: relative; - counter-increment: listCounter; - margin-bottom: 1em; -} - -ol>li::before { - content: counter(listCounter, decimal-leading-zero); - font-size: .7em; - font-weight: 700; - color: #d33a2c; - left: .8em; - position: absolute; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 ol>li::before { - font-family: Mija; -} - -ol ol>li { - padding-left: 2.25em; - padding-left: calc(1.35em + .7vw); -} - -ol ol ol>li { - padding-left: 3em; - padding-left: calc(2.4em + 1.4vw); -} - -ol[start="0"] { - counter-reset: listCounter -1; -} - -ol ul li:before { - content: ""; -} - -ol ol { - margin-left: 1em; - margin-top: 0; - margin-bottom: 0; -} - -ol ol>li::before { - content: counters(listCounter, ".", decimal-leading-zero) " "; - left: -1.5em; -} - -ul { - list-style: none; - padding-left: calc(1.4em + .7vw); - list-style-image: url(/images/bullet.svg); -} - -ul>li { - margin-bottom: .5em; - padding-left: .25em; -} - -ul>li p { - margin-top: 0; -} - -ul>li>ul { - margin-left: 1em; -} - -.rh { - color: #d33a2c; -} - -dt { - margin-bottom: .5em; -} - -dd { - padding: 0; - margin: 0; - margin-bottom: 1.5em; -} - -@media (max-width:40em) { - .vertical--horizontal-fallback { - max-width: 100%; - } - - .vertical--horizontal-fallback span { - padding-left: 1em; - } -} - -.pricetag--old { - position: relative; - color: #f6d8d5; - display: inline-block; - margin-left: .5em; -} - -.pricetag--old:before { - content: ""; - display: block; - position: absolute; - width: 100%; - height: 2px; - border-radius: 2px; - background: #ed968e; - top: 50%; - margin-top: -2px; - transform: rotate(-35deg); - left: 0; -} - -.event__ticket .pricetag { - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .event__ticket .pricetag { - font-family: Mija; -} - -.event__ticket .pricetag--old { - font-size: .75em; -} - -.event__ticket .pricetag--currency { - font-size: .75em; - color: #f6d8d5; -} - -.author-page__header, -.category__header { - background: #d33a2c; - padding: 1em 0; - color: #fff; -} - -.category__header--alt { - background: #fff; - padding: 2em 0 0 0; -} - -.author-page__header .author__image { - max-width: 75px; -} - -.category__section .right-lined { - background-image: linear-gradient(#ddd, #ddd); - margin-top: calc(1em + 1vw); -} - -.category__section .article--post:first-child { - margin: 3.5em 0; -} - -@media screen and (max-width:40em) { - .category__section .article--post:first-child { - margin: 1em 0; - } -} - -.header__title { - color: #fff; - max-width: calc(20em + 1vw); -} - -.author__title, -.book-details__title, -.category__title, -.header__title, -.search-results__title { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -@media (max-width:40em) { - .header__title { - padding: 0 .5em; - } -} - -.author__title-desc, -.books__header__title-desc, -.category__title-desc, -.header__title-desc, -.search-results__title-desc { - display: block; - margin-bottom: .5em; - letter-spacing: 2px; - color: #fff; - font-size: .35em; - font-weight: 400; - line-height: 1.2; - text-shadow: none; - text-transform: uppercase; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .author__title-desc, -.wf-loaded-stage2 .books__header__title-desc, -.wf-loaded-stage2 .category__title-desc, -.wf-loaded-stage2 .header__title-desc, -.wf-loaded-stage2 .search-results__title-desc { - font-family: Elena; -} - -.category__title-desc { - font-size: .3em; -} - -@media all and (min-width:1025px) { - .header--indent { - padding-left: 9rem; - } -} - -@media all and (min-width:1025px) { - .header-description--indent-author { - padding-left: 6.875rem; - } -} - -.header-description { - font-style: italic; - color: #fff; - font-size: calc(1.08rem + .55vw); - position: relative; - border-left: solid 1px transparent; - margin: 0 0 calc(1em + .5vw) 0; -} - -.header-description ol, -.header-description p, -.header-description ul { - margin: 0 0 1em 0; -} - -.header-description ol:last-child, -.header-description p:last-child, -.header-description ul:last-child { - margin-bottom: 0; -} - -.header-description a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; -} - -.header-description .author__name { - font-style: normal; - background: 0 0; - text-shadow: none; - color: inherit; -} - -@media screen and (min-width:64em) { - - .author__related, - .category__related { - margin-top: -1.6em; - } -} - -.category__related--alt { - margin-top: 0; -} - -.author__related h6, -.category__related h6 { - letter-spacing: 2px; - margin-bottom: 2em; - color: #390c09; - font-size: .75em; -} - -.category__related--alt h6 { - margin-top: 1.5em; - margin-bottom: 0; -} - -.author__related a, -.category__related a { - font-weight: 700; - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; -} - -.category__related--alt a { - text-decoration: none; -} - -.author__related a:focus, -.author__related a:hover, -.category__related a:focus, -.category__related a:hover { - color: #000; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #000; - text-decoration-color: #000; - padding: 10px 0; - transition: color .1s ease-out; -} - -.author-page-description-container, -.category-page-description-container, -.internal-page-description-container { - display: flex; - flex-direction: column; -} - -.author-page-description-container a, -.category-page-description-container a, -.internal-page-description-container a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; -} - -.author__related__list, -.category__related__list { - list-style: none; - list-style-image: url(../images/bullet--dark.svg); - font-size: .85em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .author__related__list, -.wf-loaded-stage2 .category__related__list { - font-family: Mija; -} - -.author__related__list li, -.category__related__list li { - min-height: 1.75em; -} - -@media (max-width:64em) { - - .author__related__list li, - .category__related__list li { - float: left; - margin-right: 40px; - } -} - -@media (max-width:64em) { - - .author__related, - .category__related { - margin-left: 0; - } -} - -.enhanced #js-search-results-count { - color: #811d15; - font-size: .8em; - text-shadow: none; -} - -.enhanced #js-category-header { - padding-bottom: 1.5em; -} - -.enhanced .js-comments-count { - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; -} - -.enhanced .js-comments-count a { - background-position: center 72%; -} - -.logo { - font-size: 1em; - line-height: 0; - width: 3em; - flex-basis: 3em; - flex-shrink: 0; - position: relative; - z-index: 0; -} - -@media all and (min-width:1450px) { - .logo { - width: 10.5em; - flex-basis: 10.5em; - } - - .logo img { - transform: none; - } -} - -.logo a { - display: block; - background: 0 0; - outline: 0; - padding: 0; - color: transparent; - text-shadow: none; -} - -.logo a picture { - display: block; -} - -.logo img { - height: 3.5em; - transform: translate(0, 15%); -} - -.input { - border: none; - display: block; - color: #333; - background-color: #fff; - padding: .4em 15px; - border-radius: 5.5px; - outline: 0; - font-size: 1.15rem; - width: 100%; -} - -.input:-ms-input-placeholder, -.input::-webkit-input-placeholder, -.input::placeholder { - color: #666; -} - -.input::-moz-placeholder { - color: #000; -} - -.input::-ms-clear { - display: none; -} - -.search .search-input { - padding-left: calc(22px + 15px + 15px); - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgaGVpZ2h0PSIyNHB4IiB3aWR0aD0iMjRweCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIyMi4zMSIgeTE9IjIzLjYyIiB4Mj0iMy43MyIgeTI9IjMuMDUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNlOTM3MjIiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmODZmMjUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48dGl0bGU+TWFnbmlmaWVyPC90aXRsZT48cGF0aCBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiIGQ9Ik0yMy4zMyAyMC4xbC00LjczLTQuNzRhMTAuMDYgMTAuMDYgMCAxIDAtMy4yMyAzLjIzbDQuNzQgNC43NGEyLjI5IDIuMjkgMCAxIDAgMy4yMi0zLjIzem0tMTcuNDgtNS44NGE1Ljk0IDUuOTQgMCAxIDEgOC40MiAwIDYgNiAwIDAgMS04LjQyIDB6Ii8+PC9zdmc+); - background-repeat: no-repeat; - background-size: 22px auto; - background-position: 15px 45%; - font-size: calc(1em + .1vw); - border-radius: 11px; - padding-top: 1rem; - padding-bottom: 1rem; - font-weight: 700; - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - transition: box-shadow .2s ease-in-out; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .search .search-input { - font-family: Mija; -} - -.search .search-input:hover { - box-shadow: 0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025); -} - -.search-button { - width: 0; - height: 0; - padding: 0; -} - -.enhanced .search-button { - display: none; -} - -@media all and (max-width:700px) { - .jobs__search { - margin-top: calc(.5em + 6vh); - } -} - -@media (max-width:64em) { - .jobs__search { - margin-right: 5vw; - } -} - -@media all and (max-width:480px) { - .jobs__search { - margin-right: 0; - } -} - -.jobs__search input[type=text] { - border: 1px solid #d2dfe4; - display: block; - width: 100%; - color: #333; - background-color: #fff; - padding: .8em 1em; - padding-left: 2.5em; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgaGVpZ2h0PSIyNHB4IiB3aWR0aD0iMjRweCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIyMi4zMSIgeTE9IjIzLjYyIiB4Mj0iMy43MyIgeTI9IjMuMDUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNlOTM3MjIiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmODZmMjUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48dGl0bGU+TWFnbmlmaWVyPC90aXRsZT48cGF0aCBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiIGQ9Ik0yMy4zMyAyMC4xbC00LjczLTQuNzRhMTAuMDYgMTAuMDYgMCAxIDAtMy4yMyAzLjIzbDQuNzQgNC43NGEyLjI5IDIuMjkgMCAxIDAgMy4yMi0zLjIzem0tMTcuNDgtNS44NGE1Ljk0IDUuOTQgMCAxIDEgOC40MiAwIDYgNiAwIDAgMS04LjQyIDB6Ii8+PC9zdmc+); - background-repeat: no-repeat; - background-size: 1em auto; - background-position: .75em 50%; - border-radius: 11px; - outline: 0; -} - -@media all and (max-width:480px) { - .jobs__search input[type=text] { - font-size: .7em; - padding: .9em 1.2em; - padding-left: 2.5em; - background-position: .8em 50%; - } -} - -.jobs__search input[type=search]::-ms-clear, -.jobs__search input[type=text]::-ms-clear { - display: none; -} - -.jobs__search input[type=search]::-webkit-input-placeholder, -.jobs__search input[type=text]::-webkit-input-placeholder { - color: #666; -} - -.jobs__search input[type=search]::-moz-placeholder, -.jobs__search input[type=text]::-moz-placeholder { - color: #666; -} - -.jobs__search input[type=search]:-ms-input-placeholder, -.jobs__search input[type=text]:-ms-input-placeholder { - color: #666; -} - -.jobs__search input[type=submit] { - width: 0; - height: 0; - padding: 0; -} - -.enhanced .jobs__search input[type=submit] { - display: none; -} - -.jobs__search { - margin-top: 0; - width: 23%; - margin-right: 0; - font-size: calc(1.1rem + .25vw); - flex-grow: 1; -} - -@media all and (max-width:1024px) { - .enhanced .jobs__search { - width: 100%; - } -} - -@media all and (max-width:640px) { - .enhanced .jobs__search { - width: 100%; - } -} - -@media all and (max-width:500px) { - .jobs__search .search-form { - width: 100%; - } -} - -.jobs__search input[type=text] { - width: 100%; - font-size: 1em; - color: #333; - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .jobs__search input[type=text] { - font-family: Mija; -} - -.jobs__search input[type=text]:hover { - border: 1px solid transparent; -} - -.jobs__search input[type=text]:active, -.jobs__search input[type=text]:focus { - border: 1px solid #ddd; - box-shadow: none; -} - -.search-input-wrapper { - position: relative; -} - -.search-input-wrapper input:active, -.search-input-wrapper input:focus { - box-shadow: none; -} - -.search-clear-button { - background: 0 0; - border: none; - position: absolute; - right: 0; - top: 50%; - transition: opacity .2s ease-out; - transform: translate(-25%, -50%); - opacity: 0; - padding: .5em; -} - -.search-clear-button:hover { - cursor: pointer; -} - -.search-clear-button.enabled { - opacity: 1; -} - -.open .header__search:target { - color: #811d15; -} - -.main-nav { - position: relative; - display: block; - min-width: 0; - color: #fff; - grid-column: span 2; - font-size: 1.05em; -} - -.js-show-secondary .menu-text--sm, -.menu-text--lg, -.menu-text--lg--close, -.menu-text--sm--close { - display: none; -} - -.js-show-secondary .menu-text--sm--close { - display: block; -} - -@media (min-width:800px) { - .main-nav { - grid-column: auto; - } - - .js-show-secondary .menu-text--lg, - .js-show-secondary .menu-text--sm--close, - .menu-text--sm { - display: none; - } - - .js-show-secondary .menu-text--lg--close, - .menu-text--lg { - display: block; - } -} - -.secondary-nav { - position: relative; - grid-row-start: 2; - grid-column: 1/5; -} - -@media (min-width:800px) { - .secondary-nav { - grid-row: auto; - grid-column: auto; - } -} - -body:not(.enhanced) .main-nav { - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} - -.main-nav__primary { - display: flex; - list-style: none; - padding: .4em 0; - margin: 0; - flex-wrap: nowrap; - width: 100%; - flex-shrink: 1; - min-width: 0; - justify-content: flex-start; -} - -@media all and (min-width:53.125em) { - .main-nav__primary { - justify-content: space-between; - } -} - -.nav-item { - flex-grow: 0; - background: 0 0; - text-shadow: none; - color: inherit; - font-weight: 700; - display: flex; - align-items: center; - margin-bottom: 0; - padding-left: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .nav-item { - font-family: Mija; -} - -.nav-item--active { - background: rgba(0, 0, 0, .1); - border-radius: 11px; -} - -.nav-item-2.nav-item--active { - background-color: #d33a2c; -} - -.main-nav__secondary .nav-item--active { - background-color: transparent; - margin: 0; -} - -.main-nav-more-item { - position: relative; - width: 145px; -} - -@media (min-width:42.9375em) { - .main-nav-more-item { - margin-left: .35em; - } -} - -@media all and (max-width:52.5em) { - .main-nav-more-item { - justify-content: center; - } -} - -.main-nav-more-item__button { - padding: .4em .5rem .4em 1rem; - border: 1px solid rgba(0, 0, 0, .05); - color: inherit; - display: flex; - align-items: center; - justify-content: space-around; - line-height: 1; - background-color: rgba(0, 0, 0, .2); - border-radius: 11px; - box-shadow: 0 13px 7px -15px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - position: relative; -} - -.main-nav-more-item__button:hover { - background-color: rgba(0, 0, 0, .3); -} - -.main-nav-more-item__button:active, -.main-nav-more-item__button:focus { - box-shadow: 0 9px 30px -5px rgba(50, 50, 83, .25), 0 8px 8px -12px rgba(0, 0, 0, .2), 0 -6px 16px -6px rgba(0, 0, 0, .025); -} - -.main-nav-more-item__button, -.nav-item-link { - white-space: nowrap; -} - -.nav-item-link { - padding: .35em .9rem; - background: 0 0; - color: #fff; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - text-decoration: none; -} - -@media screen and (min-width:800px) { - .main-nav__secondary .nav-item-link { - color: #d33a2c; - } -} - -.nav-item-link:focus, -.nav-item-link:hover { - background-color: rgba(0, 0, 0, .15); - border-radius: 11px; -} - -.main-nav-more-item__button:active, -.main-nav-more-item__button:focus, -.nav-item-link:active, -.nav-item-link:focus { - outline-color: var(--THEME_COLOR_OUTLINE, #811d15); -} - -.secondary-nav .nav-item-link:active, -.secondary-nav .nav-item-link:focus { - outline-color: #811d15; -} - -.main-nav__secondary .nav-item-link { - text-shadow: none; - width: 100%; - text-decoration: none; - -webkit-text-decoration-color: #d33a2c; - text-decoration-color: #d33a2c; - padding: .25em .7rem; -} - -@media all and (min-width:31.25em) { - .main-nav__secondary .nav-item-link { - padding: .25em 1.1rem; - } -} - -.main-nav__secondary .nav-item-link:focus, -.main-nav__secondary .nav-item-link:hover { - background-color: transparent; - box-shadow: none; -} - -.main-nav-more-item__button:after { - content: ""; - display: block; - margin-left: 9px; - width: 30px; - height: 30px; - background-position: center center; - background-repeat: no-repeat; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.96 33.31'%3E%3Cellipse cx='17.98' cy='31.55' fill='rgba(60,60,60,0.3)' rx='14.75' ry='.57'/%3E%3Cpath fill='%23fff' d='M34.94 15v-.93c-.23-3-2.16-5.93-5.22-6.3-2.31-.28-3.39 1.45-2.4 3.84a.43.43 0 000 .05v.11a.14.14 0 010 .06.63.63 0 000 .09v.17c0 .08.06.18.09.29s0 0 0 .05a1 1 0 000 .17.64.64 0 010 .07c0 .18.1.38.14.6a.24.24 0 010 .08v.29c0 .03.06.33.08.5.37 2.58 0 6.27-4.73 7.37A12.74 12.74 0 0019.7 23c-.17-.65-.36-1.25-.55-1.77a5.16 5.16 0 002.05-2.56 11.26 11.26 0 01-.69 2.33c1.81-1.55 2-5.05 2-5.54a4.72 4.72 0 01.21 2c1.55-2.41-1.17-6-1.17-6a9.67 9.67 0 011.84 2.24C23 11.75 20.82 10 20.82 10c2.65-4 2.51-5.68 2.51-5.68-3.26-1.34-7 .73-7 .73a5.12 5.12 0 00-4-1.7 3.61 3.61 0 011.56 1 16.79 16.79 0 00-3.23-.74C10.41 3 9.4 1.16 6.22 1h-.58S5 3.64 5.61 5.19c-1.15.49-1.26.93-1.26.93l1.17-.25-.67 2.67a4.66 4.66 0 00-2.39 1.38 3 3 0 011.15-.07A5.11 5.11 0 001 13.05a1.32 1.32 0 01.87-.51c-1.47 2.69.49 3.76.49 3.76a3.8 3.8 0 010-.92 8.52 8.52 0 002.19 3.9 14.13 14.13 0 01-.24-1.59 5.46 5.46 0 001.93 2.7 6.25 6.25 0 01-.4-1.52 5.87 5.87 0 001.36 1.75c-.12.24-.24.47-.34.71a12 12 0 00-.7 2.13c0 .23-.09.45-.13.66a1.4 1.4 0 00-1-.31 1.4 1.4 0 00-1.09 1 3.1 3.1 0 000 1.57 9.48 9.48 0 001.8 3.92A2.92 2.92 0 004 30.06c-.56.16-1 .83-.72 1.34H22.6c.29-.51-.16-1.18-.72-1.34a2.92 2.92 0 00-1.71.24A9.48 9.48 0 0022 26.44 3.24 3.24 0 0022 25a15.89 15.89 0 012.87-.21 14.93 14.93 0 004.65-.69c3.72-1.24 5.38-5.25 5.38-9zm-12.49.42h-.05v-.07z'/%3E%3C/svg%3E"); -} - -.js-show-secondary .main-nav-more-item__button:before { - content: ""; - display: block; - margin-left: .35em; - width: 45px; - height: 30px; - background-position: center center; - background-repeat: no-repeat; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50.21 35.05'%3E%3Cellipse cx='27.8' cy='32.92' fill='rgba(60,60,60,0.5)' rx='19.64' ry='1.2'/%3E%3Cpath fill='%23fff' d='M46.48 15.53a5.2 5.2 0 00-2-.31 7 7 0 00-1.43.19 7.66 7.66 0 001.19-1.52 7.12 7.12 0 011.12-.13 5.18 5.18 0 012 .31h.05a2.82 2.82 0 011.44 1.24 2.75 2.75 0 01.18 2 2.36 2.36 0 00-.74-.46 2 2 0 01.86 1c.11.45-.23 1-.67.92a1.86 1.86 0 00-.22-1 2.65 2.65 0 00-.29-1 2.74 2.74 0 00-1.49-1.24zM16.56 28.07c.06-.21.37-1.29.19-1.47 0 0 5.18 5.08 7.22-2.7a6 6 0 001.16.62c-.75 7-6.44 3.43-6.44 3.43.22.13.14 1.25.12 1.47-.16 2.2-3 1.63-3.74.11a2.44 2.44 0 01-.14-.34 1.4 1.4 0 001.63-1.12z' class='cls-2'/%3E%3Cpath fill='%23fff' d='M1.26 14.52c.08.23.18.45.28.67v.05c1.26 2.67 3.76 5 6.81 4.61a12 12 0 003.51-1.05 8.6 8.6 0 013.64-1 7.28 7.28 0 00.1 2.65A9.82 9.82 0 0117 18.5s-.77 2.34-.41 3a1 1 0 00-.15-.18 1.28 1.28 0 00-.8-.4 1 1 0 00-.89.7c-.23.45-.24.83-.63 1.17-1 .87-2.17 2-1.79 3.47a2.64 2.64 0 002.06 1.82A1.39 1.39 0 0016 27c.06-.21.36-1.28.18-1.46 0 0 5.19 5.07 7.23-2.7a5.65 5.65 0 001.16.61c1.43.56 3.94.91 6.11-2.07a20.36 20.36 0 005.68 1.13s-1.55-.55-1.61-1.28c0 0 3.84 1 6 0l-2.43-.32a3.69 3.69 0 001.68-.42 5.24 5.24 0 012.46 0c.73.08 1.06-.31 1.54-.78a1.17 1.17 0 00.09.33 2.06 2.06 0 00.12.35 3.21 3.21 0 00.37.65 1.35 1.35 0 001.27.53.92.92 0 00.53-.28 1.2 1.2 0 00.19-1.16 2 2 0 00-.77-.94 1.85 1.85 0 011 1.76c.44.08.78-.48.67-.93a1.13 1.13 0 00-.13-.32 2.4 2.4 0 00-.72-.7 2.26 2.26 0 01.74.45 2.67 2.67 0 00.1-.64v-.3a2.59 2.59 0 00-.28-1A2.65 2.65 0 0046 16.32l-.14-.06-.08-.05h-.06a10.1 10.1 0 00-3.9-.54 6.3 6.3 0 001.59-2.45 3 3 0 01-.12.73s1.61-.69.71-2.95a1 1 0 01.63.49 4.17 4.17 0 00-1.74-2.81 2.35 2.35 0 01.88.17 3.64 3.64 0 00-1.72-1.34l-.27-2.21.88.31s0-.35-.89-.86a7.17 7.17 0 00.36-3.37C39.32 1 38.27 2.48 38 2.94a12.73 12.73 0 00-2.56.26 2.83 2.83 0 011.29-.62 3.87 3.87 0 00-3.23.94s-2.73-2-5.37-1.29c0 0-.27 1.36 1.42 4.77a6.37 6.37 0 00-2.31 2.67 7.38 7.38 0 011.63-1.59s-2.44 2.6-1.46 4.67a3.77 3.77 0 01.35-1.55c0 .4-.24 3.2 1 4.61a9.92 9.92 0 01-.32-2s.37 2.53 3.84 3.6a4.35 4.35 0 01-1.49-1.54 11.65 11.65 0 002.47 1.23c-.61.18-1 .31-1 .31l-.81.38a6.56 6.56 0 01-2.34-1.49h-.07a.58.58 0 01-.31.08.64.64 0 01-.46-.21 5.47 5.47 0 01-1.14-2.91.66.66 0 01-.33-.31 3.48 3.48 0 01-.19-2.24 6.84 6.84 0 00-6.5-.26 18.29 18.29 0 012.43.43s-4.84.26-7.22 3.71c0 0 1.93-2 2.77-1.7a8.44 8.44 0 00-2.1 3A9.13 9.13 0 0012 16c-3.7.78-5.2-1.7-5.79-3.65 0-.13-.08-.25-.11-.37a.14.14 0 000-.07v-.16a.14.14 0 010-.06q-.1-.24-.1-.47v-.05a.68.68 0 000-.14 2.4 2.4 0 010-.24v-.09a.09.09 0 000-.05v-.08a.28.28 0 010-.09v-.12c-.09-2-1.43-2.88-3-1.92C.82 9.6.44 12.35 1.26 14.52zm26.58-3.41v.05z' class='cls-2'/%3E%3C/svg%3E"); - order: 1; -} - -.js-show-secondary .main-nav-more-item__button:after { - width: 15px; - height: 15px; - order: 2; - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 13'%3E%3Cg filter='url(%23filter)'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M2.879 1.05a1 1 0 10-1.415 1.414l2.864 2.864-3.035 3.036a1 1 0 001.414 1.414l3.036-3.035 2.793 2.793A1 1 0 009.95 8.12L7.157 5.328l2.621-2.62a1 1 0 10-1.414-1.415L5.743 3.914 2.879 1.05z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter' width='11.243' height='11.314' x='0' y='.757' color-interpolation-filters='sRGB' filterUnits='userSpaceOnUse'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend in2='BackgroundImageFix' result='effect1_dropShadow'/%3E%3CfeBlend in='SourceGraphic' in2='effect1_dropShadow' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E"); -} - -.main-nav__secondary { - display: none; - color: #fff; - padding: .2em 0; - flex-wrap: wrap; - flex-direction: column; - justify-content: flex-start; - align-items: flex-start; - height: 10em; -} - -@media all and (min-width:31.25em) { - .main-nav__secondary { - padding: .2em .5em; - } -} - -@media (-webkit-min-device-pixel-ratio:1.3), -(min-resolution:124.8dpi) { - .main-nav__secondary { - height: 11em; - } -} - -@media (min-width:800px) { - .main-nav__secondary { - display: none; - } -} - -.js-show-secondary .main-nav__secondary { - display: flex; -} - -@media (min-width:800px) { - .main-nav__secondary { - position: absolute; - top: 0; - left: -80px; - transform: translate(-50%, 0); - max-width: unset; - background: #fff; - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - border-radius: 11px; - margin: 0; - padding: 14px 20px 10px 10px; - min-width: 180px; - color: #d33a2c; - flex-direction: row; - justify-content: space-between; - align-items: center; - height: auto; - } - - .main-nav__secondary:before { - content: ""; - display: block; - position: absolute; - top: 1px; - left: 50%; - transform: translate(-50%, -100%); - width: 0; - height: 0; - border-left: 15px solid transparent; - border-right: 15px solid transparent; - border-bottom: 15px solid #fff; - } - - .js-show-secondary .main-nav__secondary { - display: block; - top: 50px; - } -} - -.nav-item-1, -.nav-item-10, -.nav-item-11, -.nav-item-2, -.nav-item-3, -.nav-item-4, -.nav-item-5, -.nav-item-6, -.nav-item-7, -.nav-item-8, -.nav-item-9 { - display: none; -} - -.main-nav__secondary .nav-item-1, -.main-nav__secondary .nav-item-10, -.main-nav__secondary .nav-item-11, -.main-nav__secondary .nav-item-2, -.main-nav__secondary .nav-item-3, -.main-nav__secondary .nav-item-4, -.main-nav__secondary .nav-item-5, -.main-nav__secondary .nav-item-6, -.main-nav__secondary .nav-item-7, -.main-nav__secondary .nav-item-8, -.main-nav__secondary .nav-item-9 { - display: flex; -} - -@media (min-width:42.9375em) { - .nav-item-1 { - display: flex; - } - - .main-nav__secondary .nav-item-1 { - display: none; - } -} - -@media (min-width:52.5em) { - .nav-item-2 { - display: flex; - } - - .main-nav__secondary .nav-item-2 { - display: none; - } -} - -@media (min-width:56.5625em) { - .nav-item-3 { - display: flex; - } - - .main-nav__secondary .nav-item-3 { - display: none; - } -} - -@media (min-width:70em) { - .nav-item-4 { - display: flex; - } - - .main-nav__secondary .nav-item-4 { - display: none; - } -} - -@media (min-width:77.8125em) { - .nav-item-5 { - display: flex; - } - - .main-nav__secondary .nav-item-5 { - display: none; - } -} - -@media (min-width:104.375em) { - .nav-item-6 { - display: flex; - } - - .main-nav__secondary .nav-item-6 { - display: none; - } -} - -@media (min-width:113.4375em) { - .nav-item-7 { - display: flex; - } - - .main-nav__secondary .nav-item-7 { - display: none; - } -} - -@media (min-width:120.625em) { - .nav-item-8 { - display: flex; - } - - .main-nav__secondary .nav-item-8 { - display: none; - } -} - -@media (min-width:136.5625em) { - .nav-item-9 { - display: flex; - } - - .main-nav__secondary .nav-item-9 { - display: none; - } -} - -@media (min-width:179.6875em) { - .nav-item-10 { - display: flex; - } - - .main-nav__secondary .nav-item-10 { - display: none; - } - - .main-nav-more-item { - display: none; - } - - .main-nav__primary { - justify-content: flex-start; - } - - .nav-item { - padding: 0 .65em; - } - - .header, - .header.searchFocused { - grid-template-columns: -webkit-min-content minmax(140px, -webkit-max-content) 0 minmax(250px, 600px); - grid-template-columns: min-content minmax(140px, max-content) 0 minmax(250px, 600px); - } -} - -@media (max-width:480px) { - .header .search { - grid-column: 1/5; - margin-top: .5em; - } - - .main-nav__primary { - justify-content: flex-end; - } - - .main-nav-more-item { - justify-content: flex-end; - } -} - -.enhanced .slideDown { - transition: all .6s linear; -} - -.enhanced .slideDown.main-nav { - max-height: 50em; -} - -.enhanced .slideUp { - transition: all .3s linear; -} - -@media all and (min-width:901px) { - .enhanced .slideUp.main-nav { - max-height: 10em; - } -} - -@media all and (max-width:1025px) { - - .enhanced .article__summary.slideDown, - .enhanced .article__toc.slideDown { - max-height: 55em; - transition: max-height .8s ease-in-out; - } -} - -@media all and (min-width:1025px) { - - .enhanced .article__summary.slideDown, - .enhanced .article__toc.slideDown { - transition: none; - } -} - -@media all and (max-width:1025px) { - - .enhanced .article__summary.slideUp, - .enhanced .article__toc.slideUp { - transition: max-height .2s ease-in-out; - } -} - -@media all and (min-width:1025px) { - - .enhanced .article__summary.slideUp, - .enhanced .article__toc.slideUp { - transition: none; - max-height: inherit; - } -} - -.btn, -.toolbar-item { - display: inline-block; - border-radius: 11px; - padding: .5em 1em; - text-align: center; - text-decoration: none; - color: #fff; - border: none; - font-weight: 700; - background: 0 0; - background-color: #d33a2c; - background-image: linear-gradient(to bottom, #f88040, #d33a2c); - transition: all .2s ease-out; - font-size: .9em; - cursor: pointer; - outline: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .btn, -.wf-loaded-stage2 .toolbar-item { - font-family: Mija; -} - -.btn:not(.hidden)+.btn:not(.hidden), -.btn:not(.hidden)+.toolbar-item:not(.hidden), -.toolbar-item:not(.hidden)+.btn:not(.hidden), -.toolbar-item:not(.hidden)+.toolbar-item:not(.hidden) { - margin-right: 1em; -} - -.btn.hover, -.btn:active, -.btn:focus, -.btn:hover, -.hover.toolbar-item, -.toolbar-item:active, -.toolbar-item:focus, -.toolbar-item:hover { - background: #d33a2c; -} - -.btn--orange { - background-color: #d33a2c; - background-image: linear-gradient(to bottom, #f88040, #d33a2c); -} - -.btn span, -.toolbar-item span { - color: rgba(255, 255, 255, .7); - font-size: .8em; - margin-left: 5px; - margin-top: .5em; - line-height: 1; -} - -.btn span.ladda-label, -.toolbar-item span.ladda-label { - color: inherit; - font-size: inherit; - margin: 0; - line-height: inherit; -} - -.outline--none:focus { - outline: 0; -} - -.btn span.sup, -.toolbar-item span.sup { - display: inline-block; - font-size: .6em; - vertical-align: top; - line-height: 1.5; - position: relative; - top: 0; - left: -.4em; -} - -.btn--blue, -.btn--smashing { - background-color: #0168b8; - background-image: linear-gradient(#0d84e1, #0168b8); - color: #fff; -} - -.btn--blue:focus, -.btn--blue:hover, -.btn--smashing:focus, -.btn--smashing:hover { - background: #0168b8; -} - -.btn--blue span, -.btn--smashing span { - color: rgba(255, 255, 255, .7); -} - -.btn--navy { - background-color: #282634; - background-image: linear-gradient(#3f3c51, #282634); - color: #fff; -} - -.btn--navy:focus, -.btn--navy:hover { - background: #282634; -} - -.btn--navy span { - display: block; - color: #bbb; - font-weight: 400; -} - -.btn--green, -.btn--member { - background-color: #41b14f; - background-image: linear-gradient(#9ec14c, #41b14f); - color: #fff; -} - -.btn--green:focus, -.btn--green:hover, -.btn--member:focus, -.btn--member:hover { - background: #41b14f; - color: #fff; - border-color: #41b14f; -} - -.btn--green span, -.btn--member span { - color: rgba(255, 255, 255, .7); -} - -.btn--grey { - background-color: #dcdede; - background-image: linear-gradient(#fff, #dcdede); - color: #000; -} - -.btn--grey:focus, -.btn--grey:hover { - background: #fff; -} - -.btn--grey span { - display: block; - color: #666; -} - -.btn--white, -.toolbar-item { - background: #fff; - color: #267dcc; - border: 1px solid #fff; - text-shadow: none; -} - -.btn--white:focus, -.btn--white:hover, -.toolbar-item:focus, -.toolbar-item:hover { - text-shadow: none; - background: #fff; - color: #d33a2c; -} - -.btn--white span, -.toolbar-item span { - display: block; - color: #666; -} - -.btn--white span.sr-only, -.toolbar-item span.sr-only { - display: inline-block; -} - -.btn--white--bordered, -.btn--white--bordered:active, -.btn--white--bordered:focus, -.btn--white--bordered:hover, -.toolbar-item { - border: 1px solid #ddd; -} - -.btn--ghost--white.toolbar-item, -.btn.btn--ghost--white { - border: 1px solid #fff; - color: #fff; - text-shadow: none; - border-radius: 11px; - transition: all .2s ease-out; -} - -.btn--ghost--white.toolbar-item:active, -.btn--ghost--white.toolbar-item:hover, -.btn.btn--ghost--white:active, -.btn.btn--ghost--white:hover { - background: #fff; - color: #d33a2c; -} - -.btn--text-shadow, -a.btn.btn--text-shadow { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.btn--no-shadow { - text-shadow: none; -} - -.btn--disabled, -.btn--disabled:focus, -.btn--disabled:hover { - color: #767676; - cursor: not-allowed; -} - -.btn[disabled], -.toolbar-item[disabled] { - color: #f88040; - background: 0 0; - border: 1px solid #666; - opacity: .5; - cursor: not-allowed; -} - -.btn[disabled]:focus, -.btn[disabled]:hover, -.toolbar-item[disabled]:focus, -.toolbar-item[disabled]:hover { - text-shadow: none; -} - -.btn[disabled].ladda-button, -.toolbar-item[disabled].ladda-button { - background-color: #666; - color: #fff; - border-color: #666; - margin-top: 1em; - border: 0; - opacity: 1; -} - -.btn[disabled].ladda-button.btn--secure::before, -.toolbar-item[disabled].ladda-button.btn--secure::before { - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPHBhdGggZmlsbD0iI2FhYWFhYSIgZD0iTTE1IDIxLjkxNXYwYy0wLjU4My0wLjIwNi0xLTAuNzYyLTEtMS40MTUgMC0wLjgyOCAwLjY3Mi0xLjUgMS41LTEuNXMxLjUgMC42NzIgMS41IDEuNWMwIDAuNjUzLTAuNDE3IDEuMjA5LTEgMS40MTV2Mi41OTRjMCAwLjI2My0wLjIyNCAwLjQ5MS0wLjUgMC40OTEtMC4yNjggMC0wLjUtMC4yMi0wLjUtMC40OTF2LTIuNTk0ek04IDE0djAgMGMtMS42NTggMC4wMDUtMyAxLjM0LTMgMy4wMDl2OS45ODFjMCAxLjY2MiAxLjM0NiAzLjAwOSAzLjAwOSAzLjAwOWgxNC45ODJjMS42NjIgMCAzLjAwOS0xLjMzNyAzLjAwOS0zLjAwOXYtOS45ODFjMC0xLjY1OS0xLjM0MS0zLjAwNS0zLTMuMDA5di0zLjUwMWMwLTQuMTQyLTMuMzY2LTcuNDk5LTcuNS03LjQ5OS00LjE0MiAwLTcuNSAzLjM1Ny03LjUgNy40OTl2My41MDF6TTExIDE0di0zLjQ5OWMwLTIuNDkyIDIuMDE1LTQuNTAxIDQuNS00LjUwMSAyLjQ4IDAgNC41IDIuMDE1IDQuNSA0LjUwMXYzLjQ5OWgtOXoiIGNsYXNzPSJ3b3ciPjwvcGF0aD4KPC9zdmc+); -} - -.btn--load-comments.toolbar-item, -.btn.btn--load-comments { - display: block; - width: 66%; - margin: 2.5em 0 0; - margin-left: 4.6em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); -} - -@media (max-width:40em) { - - .btn--load-comments.toolbar-item, - .btn.btn--load-comments { - width: 100%; - margin-left: 0; - } -} - -.btn--full.toolbar-item, -.btn.btn--full { - display: block; - width: 100%; -} - -.btn--small.toolbar-item, -.btn.btn--small { - font-size: .9em; - border-radius: 6px; - margin: 0; - padding: .4em 1em; -} - -.btn--medium.toolbar-item, -.btn.btn--medium { - font-size: calc(.9em + .1vw); - padding: .75em 1em; -} - -.btn--large.toolbar-item, -.btn.btn--large { - font-size: calc(1em + .25vw); - padding: .75em 1em; -} - -button { - cursor: pointer; -} - -.btn--ghost--white { - border: 1px solid #666; - border-radius: 5.5px; - padding: .5em .75em; - background: 0 0; - margin-right: .5em; - outline: 0; - line-height: 1; -} - -a.btn, -a.toolbar-item { - text-shadow: none; -} - -a.btn--blue, -a.btn--green, -a.btn--navy, -a.btn--orange { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -a.btn--white, -a.toolbar-item { - background: #fff; - transition: color .1s ease-out; -} - -a.btn--white:focus, -a.btn--white:hover, -a.toolbar-item:focus, -a.toolbar-item:hover { - color: #d33a2c; -} - -.btn button, -.toolbar-item button { - border: none; - padding: 0; - background: 0 0; - margin: 0; - color: inherit; -} - -.btn--membership-option.toolbar-item, -.btn.btn--membership-option { - padding-bottom: .7em; - margin-top: 1.4em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - font-size: 1.4rem; -} - -.btn--membership-option--heading.toolbar-item, -.btn.btn--membership-option--heading { - margin-top: 2em; - font-size: 1.1em; - margin-bottom: 2em; -} - -.feature-comparison__category--button .btn--membership-option.toolbar-item, -.feature-comparison__category--button .btn.btn--membership-option { - margin-top: 0; - margin-bottom: 0; -} - -.btn--membership-status { - background: #fff; - color: #333; - border: 1px solid #ddd; - padding: 0; - border-radius: 11px; - font-weight: 700; - margin: 2em 0; - font-size: 1.1em; - width: 100%; - overflow: hidden; - display: flex; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .btn--membership-status { - font-family: Mija; -} - -.btn--membership-status__tick { - display: block; - height: 100%; - width: 35%; - float: left; - padding: 1em; -} - -.btn--membership-status__tick .tick-wrapper { - display: inline-block; - margin-top: .25em; - width: 100%; -} - -.btn--membership-status__tick svg { - width: 100%; - height: 100%; -} - -.btn--membership-status__content { - padding: .7em 1em; - text-align: center; - float: left; - width: 65%; - border-left: 1px solid #ddd; - display: flex; - flex-direction: column; - align-content: center; - justify-content: center; -} - -.btn--membership-status__content span { - display: block; -} - -.btn--lined { - display: block; - text-align: center; - background-image: linear-gradient(#ddd, #ddd); - background-size: 100% .06em; - background-repeat: no-repeat; - background-position: center center; - margin: 2em 0; -} - -.btn--lined .btn, -.btn--lined .toolbar-item { - display: inline-block; - box-shadow: 0 0 0 1em #fff; -} - -@media (max-width:40em) { - .btn--lined__options { - padding: 0 1em; - } -} - -.btn--lined__options .btn, -.btn--lined__options .toolbar-item { - margin-right: 1em; - box-sizing: border-box; -} - -@media (max-width:40em) { - - .btn--lined__options .btn, - .btn--lined__options .toolbar-item { - margin-bottom: 1em; - margin-right: 0; - width: 100%; - } -} - -.btn--lined__options .btn:last-of-type, -.btn--lined__options .toolbar-item:last-of-type { - margin-right: 0; -} - -.btn--lined--grey-border { - display: block; - text-align: center; - background-image: linear-gradient(#ddd, #ddd); - background-size: 100% .06em; - background-repeat: no-repeat; - background-position: center center; -} - -.btn--lined--grey-border .btn, -.btn--lined--grey-border .toolbar-item { - display: inline-block; - box-shadow: 0 0 0 1em #f6f6f6; -} - -.btn--secure::before { - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPHBhdGggZmlsbD0iIzNDODM0NSIgZD0iTTE1IDIxLjkxNXYwYy0wLjU4My0wLjIwNi0xLTAuNzYyLTEtMS40MTUgMC0wLjgyOCAwLjY3Mi0xLjUgMS41LTEuNXMxLjUgMC42NzIgMS41IDEuNWMwIDAuNjUzLTAuNDE3IDEuMjA5LTEgMS40MTV2Mi41OTRjMCAwLjI2My0wLjIyNCAwLjQ5MS0wLjUgMC40OTEtMC4yNjggMC0wLjUtMC4yMi0wLjUtMC40OTF2LTIuNTk0ek04IDE0djAgMGMtMS42NTggMC4wMDUtMyAxLjM0LTMgMy4wMDl2OS45ODFjMCAxLjY2MiAxLjM0NiAzLjAwOSAzLjAwOSAzLjAwOWgxNC45ODJjMS42NjIgMCAzLjAwOS0xLjMzNyAzLjAwOS0zLjAwOXYtOS45ODFjMC0xLjY1OS0xLjM0MS0zLjAwNS0zLTMuMDA5di0zLjUwMWMwLTQuMTQyLTMuMzY2LTcuNDk5LTcuNS03LjQ5OS00LjE0MiAwLTcuNSAzLjM1Ny03LjUgNy40OTl2My41MDF6TTExIDE0di0zLjQ5OWMwLTIuNDkyIDIuMDE1LTQuNTAxIDQuNS00LjUwMSAyLjQ4IDAgNC41IDIuMDE1IDQuNSA0LjUwMXYzLjQ5OWgtOXoiIGNsYXNzPSJ3b3ciPjwvcGF0aD4KPC9zdmc+); - content: ""; - display: inline-block; - margin-bottom: -2px; - margin-right: .5em; - width: 1em; - height: 1em; - background-size: 100% 100%; - background-repeat: no-repeat; -} - -.toolbar-item a { - text-shadow: #fff 3px 0, #fff 2px 0, #fff 1px 0, #fff -1px 0, #fff -2px 0, #fff -3px 0; -} - -.code-toolbar { - position: relative; -} - -.code-toolbar::-webkit-scrollbar { - display: none; -} - -.code-toolbar>.toolbar { - position: absolute; - top: .5em; - right: .5em; - transition: opacity .3s ease-in-out; - opacity: 0; -} - -.code-toolbar:hover>.toolbar { - opacity: 1; -} - -.code-toolbar>.toolbar .toolbar-item { - display: inline-block; -} - -.code-toolbar>.toolbar a { - cursor: pointer; -} - -.code-toolbar>.toolbar button { - background: 0 0; - border: 0; - color: inherit; - font: inherit; - line-height: normal; - overflow: visible; - padding: .75em 1.15em; -} - -.cookie-banner { - background-color: #fff; - border-radius: 11px; - position: fixed; - width: calc(19em + 1vw); - padding: 1em 1.5em; - font-size: 1em; - z-index: 99; - box-shadow: 0 6px 40px rgba(0, 0, 0, .3); - bottom: 1.25em; - right: 1.25em; -} - -.cookie-banner p { - font-size: .9em; - margin-top: 0; -} - -.cookie-banner__container { - display: flex; -} - -.cookie-banner button { - padding: .9em 1em; -} - -@media screen and (max-width:480px) { - .cookie-banner { - right: 0; - left: 0; - width: 100%; - border-radius: 0; - bottom: 0; - } - - .cookie-banner p { - margin-top: 1em; - } -} - -@media screen and (max-width:380px) { - .cookie-banner p { - margin-top: 0; - } -} - -.footer__topics { - text-align: center; - padding-bottom: 50px; -} - -.main-footer .footer__topics { - display: block; -} - -.footer__topics__title { - color: #fff; - font-size: .9em; - margin: 2em 0; - opacity: 1; - transform: translateY(0); -} - -@media (max-width:40em) { - .footer__topics__title { - text-align: left; - } -} - -.footer__topics__list { - padding: 0; -} - -.footer__topics__list:after, -.footer__topics__list:before { - content: " "; - display: table; - clear: both; -} - -.footer__topics__item { - display: inline-block; - padding-left: 0; - color: #fff; - margin: .25em 0; - transition: color .2s ease-out; - font-size: calc(1.3em + .2vw); -} - -.footer__topics__item::before { - content: "•"; - margin: 0 .25em 0 .25em; - display: inline-block; - color: var(--THEME_COLOR, #811d15); - font-size: calc(1em + (.4vw + .25vh)/ 2); - position: relative; - top: 2px; -} - -.footer__topics__item a { - text-decoration: none; - color: inherit; -} - -.footer__topics__item a:focus, -.footer__topics__item a:hover { - color: var(--THEME_HOVER_COLOR, #390c09); -} - -@media (max-width:64em) { - .footer__topics__item { - font-size: 1.25em; - margin-bottom: 5px; - } - - .footer__topics__item::after { - font-size: 30px; - top: 3px; - } -} - -@media (max-width:48em) { - .footer__topics__item { - font-size: 1.1em; - margin-bottom: .5em; - width: 33.33%; - float: left; - text-align: left; - } -} - -@media (max-width:40em) { - .footer__topics__item { - font-size: calc(.975em + .2vw); - width: 50%; - float: left; - text-align: left; - } -} - -.search-results { - background: var(--THEME_COLOR, #d33a2c); - color: #fff; -} - -.search-results .bio-image-image { - width: 75px; - height: 75px; -} - -.search-results .bio-image-wrapper { - border-radius: 11px; -} - -.search-results .article--post { - padding-top: 0; -} - -.search-results .article--post:first-child { - margin-top: 2em; -} - -@media all and (max-width:650px) { - .search-results .article--post { - margin-top: 1.5em; - } -} - -.search-results figure.author { - margin-right: 1em; -} - -.header__search-results { - max-width: calc(900px + 15vw); - margin: 0 auto; - overflow: hidden; - position: relative; -} - -.header__search-results.meow__content { - background: var(--THEME_COLOR, #d33a2c); -} - -.header__search-results.meow__content:not(.meow__content--small) a:not(.btn) { - text-shadow: none; -} - -.search-results figure a { - background-image: none; - display: block; -} - -.search-results img { - border-radius: 11px; - border: 4px solid #fff; -} - -.search-results ol img { - min-height: 100px; - height: auto; -} - -.search-results__full img { - border: none; -} - -.search-results img { - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - transition: all .2s ease-in-out; -} - -.search-results img:hover { - box-shadow: 0 0 3px -1px rgba(50, 50, 93, .25), 0 4px 12px -6px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); -} - -.search-results__full .article--post__comments-count, -.search-results__full .read-more-link { - display: none; -} - -@media all and (min-width:480px) { - .search-results .author__image-wrapper { - min-width: 60px; - min-height: auto; - } -} - -.search-results article:nth-child(15n) { - padding-bottom: 5em; - border-bottom: 8px solid #ddd; -} - -.header__search-results em { - color: #fff; - border-radius: 11px; - font-style: normal; - display: inline-block; - background-color: var(--THEME_HIGHLIGHT_COLOR, rgba(0, 0, 0, .25)); - padding: .1em .25em 0; -} - -.search-post-container em { - font-style: normal; - background-color: #8e2017; - padding: .1em .2em 0 .2em; -} - -.search-results .article--post__teaser em { - background-color: #ffd8d4; - color: #333; - font-style: normal; - border-radius: 11px; - padding: .25em .35em; -} - -.active .header__search-results { - max-height: 100em; - transition: max-height .4s ease-out; - overflow: hidden; - display: block; -} - -.header__search-results.no-results-found { - color: #61140f; - text-align: center; - padding: 0; -} - -.header__search-results.no-results-found ol { - margin: 0; -} - -.header__search-results .load-more { - padding-bottom: 50px; -} - -.header__search-results .load-more__link { - border-bottom: 5px solid #811d15; -} - -.header__search-results .load-more__link:focus, -.header__search-results .load-more__link:hover { - color: #000; -} - -.header__search-results h2 { - color: #fff; - font-size: calc(40px + .5vw); -} - -@media all and (max-width:640px) { - .header__search-results h2 { - font-size: 1.6em; - } -} - -.header__search-results h2 a { - text-decoration: none; - color: inherit; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .5); -} - -.header__search-results h2 a:focus, -.header__search-results h2 a:hover { - color: #111; - text-shadow: none; -} - -.header__search-results li { - padding-left: 0; -} - -.header__search-results li:first-child { - margin: 3em 0; -} - -.header__search-results li:last-child { - margin-bottom: 1.5em; -} - -@media all and (max-width:640px) { - .header__search-results li .author { - display: none; - } - - .header__search-results li h2 { - font-size: 1em; - } -} - -.header__search-results p { - margin: .75em 0; - font-size: calc(.9em + .3vw); -} - -@media all and (max-width:640px) { - .header__search-results p { - font-size: .8em; - } -} - -.header__search-results .article--post__time { - color: inherit; -} - -.article--post__url { - font-family: Fira Code, Menlo, Courier new, Consolas, monospace; - color: var(--THEME_DESC_COLOR, #111); - font-weight: 700; - padding-top: .2vw; - font-size: calc(.8em + .2vw); - display: block; -} - -.category__header.closed { - display: none; -} - -.header__search-logo { - margin-top: .8em; - position: absolute; - top: 0; - right: 0; -} - -.header__search-logo img { - float: right; - height: 16px; - width: 130px; - border: 0; -} - -.search-results a code { - text-decoration: none; - text-shadow: none; - color: inherit; -} - -.search-results__full { - transition: .3s all ease-in-out; -} - -.search-results__full.search-results { - background: #fff; - color: #333; - min-height: calc(100vh - 200px); -} - -.search-results__full .search-post-container em { - color: #fff; - background-color: #d33a2c; - border-radius: 11px; - padding: .2em .35em; - display: inline-block; - text-shadow: none; -} - -.search-results__full .header__search-results.meow__content { - background: #fff; - color: #333; - text-shadow: none; - margin-top: 2em; -} - -.search-results__full .header__search-results.meow__content h2 { - color: #333; - text-shadow: none; -} - -.search-results__full .header__search-results.meow__content .meow__intro { - text-shadow: none; -} - -.search-results__full .meow__content:not(.meow__content--small) a:not(.btn) { - color: #006fc6; - font-weight: 700; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: currentColor; - text-decoration-color: currentColor; - padding: 10px 0; -} - -.cart-active .back-to-top-wrapper { - display: none; -} - -a.back-to-top { - display: block; - background: 0 0; - width: 50px; - height: 50px; - opacity: .7; - text-shadow: none; - border-radius: 11px; - padding: 12.5px; - transform-origin: bottom left; - will-change: transform; - transform: rotate(-11deg); - transition: background-color .1s ease-out, transform .2s ease-out, opacity .1s ease-out; - background-color: #666; -} - -@media (max-width:64em) { - a.back-to-top { - opacity: .3; - } -} - -a.back-to-top:focus, -a.back-to-top:hover { - background-color: #282634; - opacity: 1; -} - -a.back-to-top svg { - display: block; -} - -.back-to-top-wrapper { - width: 50px; - height: 50px; - display: none; - position: fixed; - bottom: 20px; - right: 20px; - z-index: 9; -} - -.back-to-top-wrapper::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; -} - -.back-to-top-wrapper:hover a { - transform: rotate(0); -} - -.back-to-top-wrapper:hover::before { - opacity: 0; - transform: scaleX(0); -} - -@media (min-height:600px) { - .back-to-top-wrapper { - display: block; - } -} - -form fieldset { - border: none; - padding: 0; - margin: 3em 0 0; -} - -form fieldset:after, -form fieldset:before { - content: " "; - display: table; - clear: both; -} - -form fieldset legend { - font-weight: 700; - font-size: 1.2em; - margin-bottom: 1em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 form fieldset legend { - font-family: Mija; -} - -form fieldset legend.legend--notes+small { - display: block; - color: #666; - line-height: 1.5em; - padding: 1em 0 1.25em 0; - margin: 0 auto; -} - -@media all and (min-width:550px) { - form fieldset legend.legend--notes+small { - width: 70%; - } -} - -form fieldset:first-of-type { - margin-top: 0; -} - -form input[type=text], -form textarea { - color: #333; -} - -label { - max-width: 100%; -} - -.form__text { - font-size: .8em; -} - -.form__field { - display: block; - font-size: .9em; - width: 100%; - margin-bottom: 1.5em; -} - -.form__field img { - margin-top: 2.5em; -} - -.form__field .form__field__note { - color: #666; -} - -.field--suggestions { - position: absolute; - background: #d33a2c; - background-image: linear-gradient(to bottom, #f88040, #e33a2c); - color: #fff; - border-radius: 11px; - padding: .5em .5em; - width: 100%; - z-index: 11; - list-style-image: none; - top: 2.9em; - font-weight: 700; - font-size: 1em; - margin: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .field--suggestions { - font-family: Mija; -} - -.field--suggestion { - padding: .2em 1em; - margin: 0; - cursor: pointer; -} - -.field--suggestion__selected { - background: #fff; - border-radius: 11px; - color: #d33a2c; -} - -.field--suggestions:empty { - display: none; -} - -.error-msg { - display: block; - margin-top: .8em; - font-size: .8em; - margin-left: 1em; -} - -.form__field__note { - display: block; - margin-bottom: .8em; - margin-left: 0; - font-size: .8em; -} - -@media (max-width:40em) { - - .error-msg, - .form__field__note { - margin-left: 0; - } -} - -.error-msg.error-msg__standalone { - margin: 1em 0 0 0; -} - -.error-msg:not([value=""]) { - padding: .45em .75em; - border-radius: 11px; - display: inline-block; - background-color: #d33a2c; - color: #fff; - font-weight: 700; - line-height: 1.3em; - -webkit-animation-duration: .6s; - animation-duration: .6s; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - -webkit-animation-name: headShake; - animation-name: headShake; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .error-msg:not([value=""]) { - font-family: Mija; -} - -.error-msg:not([value=""]) a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; -} - -.error-msg:empty { - display: none; -} - -.animation-shake { - -webkit-animation-duration: .6s; - animation-duration: .6s; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - -webkit-animation-name: headShake; - animation-name: headShake; -} - -@-webkit-keyframes headShake { - 0% { - transform: translateX(0); - } - - 12.5% { - transform: translateX(-6px) rotateY(-9deg); - } - - 37.5% { - transform: translateX(5px) rotateY(7deg); - } - - 62.5% { - transform: translateX(-3px) rotateY(-5deg); - } - - 87.5% { - transform: translateX(2px) rotateY(3deg); - } - - 100% { - transform: translateX(0); - } -} - -@keyframes headShake { - 0% { - transform: translateX(0); - } - - 12.5% { - transform: translateX(-6px) rotateY(-9deg); - } - - 37.5% { - transform: translateX(5px) rotateY(7deg); - } - - 62.5% { - transform: translateX(-3px) rotateY(-5deg); - } - - 87.5% { - transform: translateX(2px) rotateY(3deg); - } - - 100% { - transform: translateX(0); - } -} - -.error-server:not([value=""]) { - display: block; - text-align: center; - color: #fff; - margin: 3em 0 1em 0; - font-size: .95em; -} - -.error-server::before { - content: "⚠️"; - margin-right: .45em; - position: relative; - top: 1px; -} - -.form__field__hidden { - display: none; -} - -.form__field--radio .form__field__note { - margin-left: 3em; -} - -.form__field--checkbox .form__field__note { - margin-left: 0; -} - -.form__field__input, -input[type=email], -input[type=password], -input[type=text], -textarea { - background-color: #effaff; - border: 1px solid #d2dfe4; - transition: box-shadow .3s ease-in-out, color .3s ease-in-out; - background-position: right 1.35em center; - background-size: .25em .25em; - background-repeat: no-repeat; - margin-bottom: 5px; - border-radius: 11px; - padding: .9em 2em .7em 1.1rem; - display: block; - width: 100%; - outline: 0; - box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, .2); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .form__field__input, -.wf-loaded-stage2 input[type=email], -.wf-loaded-stage2 input[type=password], -.wf-loaded-stage2 input[type=text], -.wf-loaded-stage2 textarea { - font-family: Elena; -} - -.form__field__input:hover+.show-password, -input[type=email]:hover+.show-password, -input[type=password]:hover+.show-password, -input[type=text]:hover+.show-password, -textarea:hover+.show-password { - border-color: #8fcbe2; -} - -.form__field__input[data-optional], -input[type=email][data-optional], -input[type=password][data-optional], -input[type=text][data-optional], -textarea[data-optional] { - border-color: #eee; -} - -.form__field__input:active, -.form__field__input:focus, -input[type=email]:active, -input[type=email]:focus, -input[type=password]:active, -input[type=password]:focus, -input[type=text]:active, -input[type=text]:focus, -textarea:active, -textarea:focus { - box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, .2), 0 5px 27px -5px rgba(50, 50, 93, .25), 0 8px 10px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .03); - outline: 0; - color: #333; -} - -.form__field__input:active+.show-password, -.form__field__input:focus+.show-password, -input[type=email]:active+.show-password, -input[type=email]:focus+.show-password, -input[type=password]:active+.show-password, -input[type=password]:focus+.show-password, -input[type=text]:active+.show-password, -input[type=text]:focus+.show-password, -textarea:active+.show-password, -textarea:focus+.show-password { - border-color: #f88040; -} - -.form__field__input.stripe-element { - padding: .75em 1em .75em 1em; -} - -.form__row__padded { - margin-bottom: 1.5em; -} - -.form__field__input.stripe-element.success { - padding: .75em 2em .75em 1em; -} - -@media screen and (max-width:450px) { - .form__field__input.stripe-element.success { - padding: .75em 1em; - } - - .form__field__input.stripe-element.success:after { - display: none; - } -} - -textarea { - height: 10em; - resize: both; - scroll: auto; - max-width: 100%; - padding: .75em 1em .85em 1em; -} - -.form__field__label { - display: block; - margin-bottom: .15em; - cursor: pointer; -} - -.form__field--checkbox .form__field__label, -.form__field--radio .form__field__label { - margin: 0; -} - -.lining-figures-tnum .form__field__label { - font-feature-settings: "tnum" 0, "lnum" 0, "smcp" 0, "c2sc" 0; -} - -.nl__form input:active, -.nl__form input:focus { - box-shadow: none; -} - -input { - border-color: #aaa; -} - -input[data-optional] { - border-color: #eee; -} - -.form__field input.error, -.form__field__input.error { - border-color: #d33a2c; -} - -.form__field input.success, -.form__field input:-webkit-autofill.success, -.form__field input[type=text].success { - border-color: transparent; - background-repeat: no-repeat; - background-position: right 1em center; - background-size: 1em 1em; - -webkit-transition: box-shadow .3s ease-in-out; - transition: box-shadow .3s ease-in-out; - font-feature-settings: normal; - background-color: #d6f7da; - box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .2); -} - -.form__field textarea.success, -.form__field textarea:-webkit-autofill.success { - border-color: transparent; - background-repeat: no-repeat; - background-position: right 1em center; - background-size: 1em 1em; - -webkit-transition: box-shadow .3s ease-in-out; - transition: box-shadow .3s ease-in-out; - font-feature-settings: normal; - -webkit-text-fill-color: #333; - background-color: #d6f7da; - box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .2); - font-weight: 400; - color: #333; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .form__field textarea.success, -.wf-loaded-stage2 .form__field textarea:-webkit-autofill.success { - font-family: Elena; -} - -.success .form__field__label { - color: #333; -} - -.form__field__input.success { - border-color: #41b14f; - background-repeat: no-repeat; - background-position: right 1em center; - background-size: 1em 1em; - color: #41b14f; - font-weight: 700; - transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out; - font-feature-settings: normal; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .form__field__input.success { - font-family: Mija; -} - -.form__field.comment__message-field input.success, -.form__field.comment__message-field input:-webkit-autofill.success, -.form__field.comment__message-field input[type=text].success, -.form__field.comment__message-field textarea.success, -.form__field.comment__message-field textarea:-webkit-autofill.success, -.form__field.comment__name-field input.success, -.form__field.comment__name-field input:-webkit-autofill.success, -.form__field.comment__name-field input[type=text].success, -.form__field.comment__name-field textarea.success, -.form__field.comment__name-field textarea:-webkit-autofill.success, -.form__field.comment__twitter-field input.success, -.form__field.comment__twitter-field input:-webkit-autofill.success, -.form__field.comment__twitter-field input[type=text].success, -.form__field.comment__twitter-field textarea.success, -.form__field.comment__twitter-field textarea:-webkit-autofill.success { - color: #41b14f; - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .form__field.comment__message-field input.success, -.wf-loaded-stage2 .form__field.comment__message-field input:-webkit-autofill.success, -.wf-loaded-stage2 .form__field.comment__message-field input[type=text].success, -.wf-loaded-stage2 .form__field.comment__message-field textarea.success, -.wf-loaded-stage2 .form__field.comment__message-field textarea:-webkit-autofill.success, -.wf-loaded-stage2 .form__field.comment__name-field input.success, -.wf-loaded-stage2 .form__field.comment__name-field input:-webkit-autofill.success, -.wf-loaded-stage2 .form__field.comment__name-field input[type=text].success, -.wf-loaded-stage2 .form__field.comment__name-field textarea.success, -.wf-loaded-stage2 .form__field.comment__name-field textarea:-webkit-autofill.success, -.wf-loaded-stage2 .form__field.comment__twitter-field input.success, -.wf-loaded-stage2 .form__field.comment__twitter-field input:-webkit-autofill.success, -.wf-loaded-stage2 .form__field.comment__twitter-field input[type=text].success, -.wf-loaded-stage2 .form__field.comment__twitter-field textarea.success, -.wf-loaded-stage2 .form__field.comment__twitter-field textarea:-webkit-autofill.success { - font-family: Mija; -} - -.comment__message-field .input-wrapper textarea.success { - color: #666; -} - -.comment__message-field textarea { - padding-top: 1.5em; - line-height: 1.3em; - padding-right: 50px; -} - -.form__field.comment__message-field.success .form__field__label { - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .form__field.comment__message-field.success .form__field__label { - font-family: Elena; -} - -.form__field input:-webkit-autofill:active, -.form__field input:-webkit-autofill:focus, -.form__field textarea:-webkit-autofill:active, -.form__field textarea:-webkit-autofill:focus { - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .form__field input:-webkit-autofill:active, -.wf-loaded-stage2 .form__field input:-webkit-autofill:focus, -.wf-loaded-stage2 .form__field textarea:-webkit-autofill:active, -.wf-loaded-stage2 .form__field textarea:-webkit-autofill:focus { - font-family: Elena; -} - -.form__field input:-webkit-autofill::selection { - background-color: #41b14f; - color: #fff; - padding: 2px; -} - -.form__field__input:-webkit-autofill::first-line { - font-weight: 700; - font-feature-settings: normal; - font-size: 1.125rem; - line-height: 1.15em; - color: #41b14f; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .form__field__input:-webkit-autofill::first-line { - font-family: Mija; -} - -.form__field__input.success:-webkit-autofill, -.form__field__input:-webkit-autofill { - -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .2), inset 0 0 0 1000px #e6f8e8; -} - -.form__field__input.fail:-webkit-autofill { - -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, .2), inset 0 0 0 1000px #feeef0; -} - -.form__field .fail { - background-color: #feeef0; - box-shadow: #feeef0 0 1px 1px 0 inset; - border: 2px dashed #fdadb7; - color: #811d15; - font-weight: 700; -} - -.form__field .input-wrapper, -.form__field.comment__message-field .input-wrapper, -.stripe-element.form__field__input { - position: relative; -} - -.form__field .input-wrapper:after, -.form__field.comment__message-field .input-wrapper:after, -.stripe-element.form__field__input:after { - content: ""; - position: absolute; - top: 50%; - right: .25em; - width: 1em; - height: 1em; - margin-top: -.5em; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4NCjxwYXRoIGZpbGw9IiM0MUIxNEYiIGZpbGwtb3BhY2l0eT0iMSIgZD0iTTE2IDBjLTguODM2IDAtMTYgNy4xNjQtMTYgMTZzNy4xNjQgMTYgMTYgMTYgMTYtNy4xNjQgMTYtMTYtNy4xNjQtMTYtMTYtMTZ6TTEzLjUyIDIzLjM4M2wtNy4zNjItNy4zNjMgMi44MjgtMi44MjggNC41MzMgNC41MzUgOS42MTctOS42MTcgMi44MjggMi44MjgtMTIuNDQ0IDEyLjQ0NXoiPjwvcGF0aD4NCjwvc3ZnPg0K); - background-repeat: no-repeat; - background-size: 1em 1em; - z-index: 2; - opacity: 0; - transition: opacity .15s ease-in-out, right .15s ease-in-out; -} - -.form__field.comment__message-field.success .input-wrapper, -.form__field.success .input-wrapper, -.stripe-element.form__field__input.success { - position: relative; -} - -.form__field.comment__message-field.success .input-wrapper:after, -.form__field.success .input-wrapper:after, -.stripe-element.form__field__input.success:after { - opacity: 1; - right: 1em; -} - -.form__field--inline .form__field.success .input-wrapper:after { - right: 6em; -} - -.form__field.comment__message-field.success .input-wrapper:after { - top: 2em; - background-size: 1.1em 1.1em; - width: 1.1em; - height: 1.1em; -} - -.form__field.success .password-with-show-wrapper.input-wrapper:after { - right: 133px; -} - -.form__field.success.cc-number .input-wrapper:after { - right: 123px; -} - -.form__field--checkbox { - margin-bottom: .4em; -} - -.form__field--checkbox input { - height: 1px; - width: 1px; - opacity: 0; - float: left; - padding: 0; -} - -.form__field--checkbox input:focus+.form__field__label, -.form__field--checkbox input:focus+label { - outline: 2px dotted #811d15; -} - -.form__field--checkbox .form__field__label { - display: block; - padding: .4em 0; - padding-left: 2.5em; - position: relative; - cursor: pointer; - font-size: 1em; - z-index: 2; - transition: all .2s ease-out; -} - -.form__field--checkbox .form__field__label>span { - display: block; - margin-top: -2px; -} - -.form__field--checkbox .form__field__label::before { - display: inline-block; - content: ""; - background-color: #fff; - width: 1.6em; - height: 1.6em; - border-radius: 4px; - border: 1px solid #bbb; - transition: border-color .2s ease-in-out; - position: absolute; - left: 0; - top: .25em; - z-index: 1; -} - -.form__field--checkbox .form__field__label:focus::before, -.form__field--checkbox .form__field__label:hover::before { - border-color: #777; -} - -.form__field--checkbox input:checked+.form__field__label::before { - border: none; - background-color: #d33a2c; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTQgMTEiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI2ZmZiIgZD0iTTAsNWw2LDZsOC05bC0yLTJMNiw3TDIsM0wwLDV6Ii8+Cjwvc3ZnPgo=), linear-gradient(to bottom, #f88040, #d33a2c); - background-repeat: no-repeat; - background-position: center center, center center; -} - -.enhanced input[type=checkbox].section-hider { - height: 1px; - width: 1px; - opacity: 0; - float: left; - padding: 0; -} - -.enhanced input[type=checkbox].section-hider:focus+.form__field__label, -.enhanced input[type=checkbox].section-hider:focus+label { - outline: 2px dotted #811d15; -} - -input[type=checkbox]:checked+.form__field--checkbox--hider .form__field__label::before { - border: none; - background-color: #d33a2c; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTQgMTEiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI2ZmZiIgZD0iTTAsNWw2LDZsOC05bC0yLTJMNiw3TDIsM0wwLDV6Ii8+Cjwvc3ZnPgo=), linear-gradient(to bottom, #f88040, #d33a2c); - background-repeat: no-repeat; - background-position: center center, center center; -} - -.section-hider:checked~.checkbox-controlled-section { - display: none; -} - -.checkbox-controlled-section--reversed { - display: none; -} - -.section-hider--reversed:checked~.checkbox-controlled-section--reversed { - display: block; -} - -.form__field--radio { - margin: 0 0 .4em; - padding: .5em 0; -} - -.form__field--radio input { - height: 1px; - width: 1px; - opacity: 0; - float: left; - padding: 0; -} - -.form__field--radio input:focus+.form__field__label, -.form__field--radio input:focus+label { - outline: 2px dotted #811d15; -} - -.form__field--radio .form__field__label { - display: block; - position: relative; - cursor: pointer; - line-height: 1; - z-index: 2; - padding: .2em 0; - transition: all .2s ease-out; -} - -.form__field--radio .form__field__label::before { - display: inline-block; - margin-bottom: -4px; - content: ""; - background-color: #fff; - width: 1.6em; - height: 1.6em; - border-radius: 50%; - border: 1px solid #bbb; - transition: border-color .2s ease-in-out; - vertical-align: middle; - position: relative; - top: -4px; - z-index: 1; - margin-right: .75em; -} - -.form__field--radio .form__field__label:focus::before, -.form__field--radio .form__field__label:hover::before { - border-color: #777; -} - -.form__field--radio input:checked+.form__field__label::before { - border: none; - background-color: #d33a2c; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNHB4IiBoZWlnaHQ9IjE0cHgiIHZpZXdCb3g9IjAgMCAxNCAxNCI+CjxjaXJjbGUgZmlsbD0iI2ZmZiIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNCIgLz4KPC9zdmc+Cg==); - background-repeat: no-repeat; - background-position: center center; -} - -.contact .form__field--textarea { - margin-top: 2em; -} - -.enhanced .form__field--floating { - position: relative; -} - -.enhanced .form__field--floating .form__field__input.success::-moz-selection { - color: #fff; -} - -.enhanced .form__field--floating .form__field__input.success::selection { - color: #fff; -} - -.enhanced .form__field--floating .form__field__input.success::-moz-selection { - color: #fff; -} - -.enhanced .form__field--floating .form__field__label, -.enhanced .success .form__field--floating .form__field__label { - position: absolute; - top: 8px; - left: 1.25em; - transition: all .3s ease-out; - color: #aaa; - font-size: calc(.8em + .1vw); - padding: 8px 0; - z-index: 1; -} - -@media all and (max-width:640px) { - .enhanced .form__field--floating .form__field__label { - font-size: .8em; - padding: 10px 0; - } -} - -.enhanced .form__field--floating.float .form__field__label { - transform: translateY(-12px); - font-size: .7em; - left: 1.5em; -} - -.enhanced .form__field--floating.blurred .form__field__label { - color: #8f979d; -} - -.enhanced .form__field--floating.focused .form__field__label { - color: #666; -} - -.form--setting__password legend { - margin-bottom: 0; -} - -.form--setting__password .form__field--floating { - width: 100%; -} - -@media all and (min-width:550px) { - - .form--resend__email .form__field--floating, - .form--setting__password .form__field--floating { - width: 80%; - margin-left: auto; - margin-right: auto; - } -} - -.password-with-show-wrapper { - position: relative; -} - -.show-password { - display: flex; - justify-content: center; - align-items: center; - position: absolute; - right: 0; - top: 0; - bottom: 0; - background-image: linear-gradient(to bottom, #f88040, #e33a2c); - color: #fff; - font-weight: 700; - border-radius: 0 11px 11px 0; - border-left: none; - padding: 0 1em; - cursor: pointer; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - z-index: 10; - transition: all .2s ease-in-out; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; -} - -.show-password a { - background-position: center 72%; -} - -@media all and (max-width:640px) { - .show-password { - font-size: .85em; - padding: 1em .5em 1em .3em; - } -} - -@media screen and (min-width:40em) { - .show-password { - min-width: 105px; - padding: 0 1.25em; - } -} - -.show-password__checkbox { - visibility: hidden; - width: 1px; - height: 1px; - position: absolute; -} - -.show-password__checkbox+span:before { - content: ""; - display: inline-block; - vertical-align: middle; - margin-right: .3em; - margin-top: -.05em; - width: 1em; - height: 1em; - background-size: 100% 100%; - background-repeat: no-repeat; -} - -.show-password__checkbox:not(:checked)+span:before { - background: url(../../images/smashing-cat/paw_01.svg); -} - -.show-password__checkbox:checked+span:before { - background: url(../../images/smashing-cat/paw_02.svg); -} - -input[type=password]::-ms-reveal { - display: none; -} - -.form__row:after, -.form__row:before { - content: " "; - display: table; - clear: both; -} - -.field--half { - width: 50%; - float: left; - margin-right: 2%; -} - -.field--half:last-child { - margin-right: 0; -} - -.field--half:nth-last-child(2):first-child { - width: 49%; - margin-right: 1%; -} - -@media all and (max-width:650px) { - .field--half:nth-last-child(2):first-child { - float: none; - width: 100%; - margin-right: 0; - margin-left: 0; - } -} - -.field--half:nth-last-child(2):first-child~.field--half { - width: 49%; - margin-left: 1%; -} - -@media all and (max-width:650px) { - .field--half:nth-last-child(2):first-child~.field--half { - float: none; - width: 100%; - margin-right: 0; - margin-left: 0; - } -} - -@media all and (max-width:780px) { - .field--half { - width: 100%; - margin-right: 0; - } -} - -.field--two-thirds { - width: 64.6666%; - float: left; - margin-right: 2%; -} - -@media (max-width:48em) { - .field--two-thirds { - width: 100%; - margin-right: 0; - } -} - -.field--one-third { - width: 33.3333%; - float: left; - margin-right: 2%; -} - -.field--one-third:last-of-type { - margin-right: 0; -} - -@media (max-width:48em) { - .field--one-third { - width: 100%; - margin-right: 0; - } -} - -.label--secure { - display: block; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBmaWxsPSIjNzc3IiBkPSJNMTUgMjEuOTE1Yy0uNTgzLS4yMDYtMS0uNzYyLTEtMS40MTUgMC0uODI4LjY3Mi0xLjUgMS41LTEuNXMxLjUuNjcyIDEuNSAxLjVjMCAuNjUzLS40MTcgMS4yMDktMSAxLjQxNXYyLjU5NGMwIC4yNjMtLjIyNC40OTEtLjUuNDkxLS4yNjggMC0uNS0uMjItLjUtLjQ5MXYtMi41OTR6bS03LTcuOTE1Yy0xLjY1OC4wMDUtMyAxLjM0LTMgMy4wMDl2OS45ODFjMCAxLjY2MiAxLjM0NiAzLjAwOSAzLjAwOSAzLjAwOWgxNC45ODJjMS42NjIgMCAzLjAwOS0xLjMzNyAzLjAwOS0zLjAwOXYtOS45ODFjMC0xLjY1OS0xLjM0MS0zLjAwNS0zLTMuMDA5di0zLjUwMWMwLTQuMTQyLTMuMzY2LTcuNDk5LTcuNS03LjQ5OS00LjE0MiAwLTcuNSAzLjM1Ny03LjUgNy40OTl2My41MDF6bTMgMHYtMy40OTljMC0yLjQ5MiAyLjAxNS00LjUwMSA0LjUtNC41MDEgMi40OCAwIDQuNSAyLjAxNSA0LjUgNC41MDF2My40OTloLTl6Ii8+PC9zdmc+); - background-repeat: no-repeat; - background-size: 1em 1em; - background-position: left top 45%; - padding-left: 1.25em; -} - -.form__field input[type=text].ccv-input-field { - padding-right: 3em; - background: #fff url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCA0MCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNjZGNkY2Q7fS5jbHMtMntmaWxsOiM0MjQxNDM7fS5jbHMtM3tmaWxsOiNmZmY7fS5jbHMtNHtmaWxsOm5vbmU7c3Ryb2tlOiNlOTU2NGI7c3Ryb2tlLW1pdGVybGltaXQ6MTA7c3Ryb2tlLXdpZHRoOjJweDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPkFydGJvYXJkIDQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTYwLDM1YTUsNSwwLDAsMS01LDVINWE1LDUsMCwwLDEtNS01VjVBNSw1LDAsMCwxLDUsMEg1NWE1LDUsMCwwLDEsNSw1WiIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeT0iNi4yOSIgd2lkdGg9IjYwIiBoZWlnaHQ9IjgiLz48cmVjdCBjbGFzcz0iY2xzLTMiIHg9IjMuMjIiIHk9IjE4LjI5IiB3aWR0aD0iMzUuNTYiIGhlaWdodD0iOCIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNi4xOSIgeT0iMjEuMjkiIHdpZHRoPSIyOC42NCIgaGVpZ2h0PSIyIi8+PHJlY3QgY2xhc3M9ImNscy0zIiB4PSI0Ni4xNyIgeT0iMTguMjkiIHdpZHRoPSI3LjkiIGhlaWdodD0iOCIvPjxyZWN0IGNsYXNzPSJjbHMtMiIgeD0iNDcuMTYiIHk9IjIxLjI5IiB3aWR0aD0iNS45MyIgaGVpZ2h0PSIyIi8+PGVsbGlwc2UgY2xhc3M9ImNscy00IiBjeD0iNTAiIGN5PSIyMi4xOSIgcng9IjcuNjUiIHJ5PSI3Ljc1Ii8+PC9zdmc+); - background-repeat: no-repeat; - background-size: auto 1em; - background-position: right 1em center; -} - -.increment-decrement-input-wrapper { - font-feature-settings: "smcp" 1, "c2sc" 1, "tnum" 1, "lnum" 1, "frac" 1, "sups" 1, "subs" 1; - font-size: 1em; - float: right; - position: relative; - top: .15em; -} - -.increment-decrement-input-wrapper input[type=number] { - padding: 0 .25em; - display: block; - width: 5.5em; - text-align: center; - height: 1.5em; - border: 1px solid #ddd; - border-radius: 20px; - line-height: 0; - background-color: #fff; - box-shadow: none; -} - -.increment-decrement-input-wrapper input[type=number]::-webkit-inner-spin-button, -.increment-decrement-input-wrapper input[type=number]::-webkit-outer-spin-button { - margin: 0; - -webkit-appearance: none; -} - -.increment-decrement-input-wrapper button { - background: #eee; - border: 1px solid #ddd; - font-size: inherit; - text-align: center; - width: 1.75em; - line-height: .6; - height: 1.5em; - z-index: 1; - padding: 0; - cursor: pointer; - position: absolute; - top: 0; -} - -.increment-decrement-input-wrapper .increment-button { - float: right; - margin-left: -1px; - border-radius: 0 100% 100% 0; - padding-right: .1em; - right: 0; -} - -.increment-decrement-input-wrapper .decrement-button { - float: left; - margin-right: -1px; - padding-left: .1em; - border-radius: 50% 0 0 50%; - left: 0; -} - -.grecaptcha-badge { - display: none; -} - -.homepage .main-footer { - position: relative; - z-index: 1; -} - -.footer__notes { - text-align: center; - color: #fff; -} - -.footer__notes p { - margin: 0; -} - -.footer__notes p:first-of-type { - font-style: italic; -} - -.footer__links { - margin: 0 auto; - padding: 1em 0; - text-align: center; - max-width: 30em; -} - -.footer__links li { - margin: .5em 0; - padding: 0; - display: inline-block; - margin-right: 1em; -} - -.footer__links a, -.footer__notes a { - color: #fff; - -webkit-text-decoration-line: #fff; - text-decoration-line: #fff; -} - -.main-footer { - padding: 2em 0; - padding-bottom: 14em; - background-repeat: no-repeat; - background-image: url(../images/footer/tablet__left.svg); - background-position: left 1em bottom 1em; - background-size: 12em auto; - background-color: var(--THEME_SECONDARY_COLOR, #d33a2c); - font-size: .8em; - color: #fff; - z-index: 0; -} - -@media all and (max-width:480px) and (max-height:600px) { - .main-footer { - padding-bottom: 13em; - background-repeat: no-repeat; - background-image: url(../images/footer/mobile__left.svg), url(../images/footer/mobile__right.svg); - background-position: left .5em bottom .5em, right 6% bottom; - background-size: 12em auto, 12em auto; - } -} - -@media all and (min-width:480px) { - .main-footer { - padding-bottom: 12em; - background-size: 12em auto, 12em auto; - } -} - -@media all and (min-width:768px) { - .main-footer { - padding-bottom: 3em; - background-image: url(../images/footer/tablet__left.svg); - background-position: left .5em bottom 3em; - background-size: 13.5em auto; - } -} - -@media screen and (min-width:64rem) { - .main-footer { - padding-bottom: 3em; - background-image: url(../images/footer/laptop__left.svg), url(../images/smashing-cat/cat-the-behemoth.svg); - background-position: left 6% bottom 2em, right 3vw bottom 2.75em; - background-size: 11em auto, 14em auto; - } -} - -@media all and (min-width:1264px) { - .main-footer { - padding-bottom: 3em; - background-image: url(../images/footer/laptop__left.svg), url(../images/smashing-cat/cat-the-behemoth.svg); - background-position: left 15% bottom 1em, right 12% bottom 2em; - background-size: 11em auto, 14em auto; - } -} - -@media all and (min-width:1450px) { - .main-footer { - background-image: url(../images/footer/large-screen__left.svg); - background-position: left 15% bottom 2em; - background-size: 12em auto; - } -} - -@media (max-width:64rem) { - .jobs .main-footer { - position: relative; - z-index: 2; - } -} - -html:not(.enhanced) .overlay[aria-hidden=true] { - display: none; - margin: 2em auto; - max-width: 600px; - padding: 1em; -} - -html:not(.enhanced) .overlay[aria-hidden=true]:target { - display: block; -} - -html:not(.enhanced) .overlay[aria-hidden=true] .overlay-close-button { - display: none; -} - -.overlay--btn-options { - margin-top: 2em; -} - -.overlay--btn-options .btn { - white-space: nowrap; -} - -@media all and (max-width:550px) { - .overlay--btn-options.btn--lined { - background: 0 0; - } -} - -.overlay--btn-options .btn { - margin: 0 1em; -} - -@media all and (max-width:550px) { - .overlay--btn-options .btn { - display: block; - width: 100%; - margin: 1em 0; - } -} - -.enhanced .overlay { - margin: 0; - padding: 1em; - text-align: center; - max-width: 100%; - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - width: 100%; - height: 100%; - background-color: rgba(255, 255, 255, 0); - z-index: 10; - display: block; - transform: translateX(-100%); - transform-origin: bottom left; - transform: rotateZ(-90deg); - transition: transform 0s ease-out, background-color .3s ease-out; -} - -@media all and (max-width:500px) { - .enhanced .overlay { - padding: 0; - margin: 0; - } -} - -.enhanced .overlay.show { - background-color: rgba(40, 38, 52, .98); - transform: translateX(0); - transform: rotateZ(0); -} - -.enhanced .overlay.show .overlay__content { - opacity: 1; - transform: translateY(-50%) translateX(-50%) rotateZ(0); -} - -.enhanced .overlay.hide { - transform: translateX(-100%); - transform: rotateZ(-90deg); -} - -.enhanced .overlay.hide .overlay__content { - opacity: 0; -} - -.enhanced .overlay__content-wrapper { - width: 100%; - height: 100%; -} - -.enhanced .overlay__content { - background: #fff; - overflow-y: scroll; - padding: 2em 2.25em; - max-width: 750px; - border-radius: 11px; - position: relative; - top: 50%; - left: 50%; - opacity: 0; - transform-origin: bottom left; - transform: translateY(-50%) translateX(-50%) rotateZ(-22deg); - transition: transform .4s ease-out .3s, opacity .2s ease-out .3s; -} - -@media all and (max-width:750px) { - .enhanced .overlay__content { - width: 100vw; - height: 100vh; - border-radius: 0; - } -} - -.enhanced .overlay__content br { - display: none; -} - -@media all and (min-width:650px) { - .enhanced .overlay__content br { - display: block; - } -} - -.enhanced .overlay__content .dashboard-membership__desc { - padding-top: 0; - padding-bottom: 0; -} - -.enhanced .overlay__content .dashboard-membership__desc .dashboard-membership__callout { - flex-direction: column; -} - -@media screen and (min-width:920px) { - .enhanced .overlay__content .dashboard-membership__desc .dashboard-membership__callout { - flex-direction: row; - } -} - -.enhanced .overlay__content .dashboard-membership__desc .dashboard-membership__callout .dashboard-membership__visuals { - display: none; -} - -@media screen and (min-width:920px) { - .enhanced .overlay__content .dashboard-membership__desc .dashboard-membership__callout .dashboard-membership__visuals { - display: block; - } -} - -.enhanced .overlay__content .dashboard-membership__desc .dashboard-membership__callout li { - max-width: 100%; - margin-bottom: .5em; -} - -.enhanced .overlay__content h2 { - margin-top: 0; - font-size: 1.65em; - color: #41b14f; -} - -@media all and (max-width:500px) { - .enhanced .overlay__content h2 { - padding-right: .75em; - } -} - -.enhanced .overlay__content p:not(.error-msg) { - color: #333; -} - -.enhanced .overlay__content .auth-modal__desc { - margin-bottom: 1.25em; -} - -@media all and (max-width:450px) { - .enhanced .overlay__content .auth-modal__desc { - display: flex; - flex-direction: column; - } -} - -.enhanced .overlay__content img { - max-height: 40vh; - min-height: 200px; - margin-top: 3vh; -} - -@media all and (max-width:500px) { - .enhanced .overlay__content img { - max-height: calc(130px + 25vw); - } -} - -.enhanced .overlay__content ul { - list-style-type: none; - list-style-image: none; - margin-bottom: 0; - margin-top: .5em; -} - -.enhanced .overlay__content ul li { - padding-left: 1.85em; - margin-bottom: 1em; - text-align: left; - max-width: 420px; - -webkit-animation: content-injection .3s forwards; - animation: content-injection .3s forwards; - color: #333; - background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPHBhdGggZmlsbD0iIzQxQjE0RiIgZD0iTTE2IDBjLTguODM2IDAtMTYgNy4xNjQtMTYgMTZzNy4xNjQgMTYgMTYgMTYgMTYtNy4xNjQgMTYtMTYtNy4xNjQtMTYtMTYtMTZ6TTEzLjUyIDIzLjM4M2wtNy4zNjItNy4zNjMgMi44MjgtMi44MjggNC41MzMgNC41MzUgOS42MTctOS42MTcgMi44MjggMi44MjgtMTIuNDQ0IDEyLjQ0NXoiPjwvcGF0aD4KPC9zdmc+Cg==); - background-repeat: no-repeat; - background-position: left .2em; - background-size: 1.2em 1.2em; -} - -@media all and (min-width:550px) { - .enhanced .overlay__content ul li { - flex-wrap: nowrap; - } -} - -@media all and (max-width:900px) { - .enhanced .overlay__content--verbose { - width: 100vw; - height: 100vh; - border-radius: 0; - } -} - -@media all and (max-height:700px) { - .enhanced .overlay__content--verbose { - width: 100vw; - height: 100vh; - border-radius: 0; - } -} - -.enhanced .overlay__content--wide { - max-width: 100%; - max-height: 100%; -} - -.enhanced .overlay-close-button { - position: absolute; - top: .5em; - right: .5em; - background: 0 0; - line-height: 0; - padding: .5em; - border: none; -} - -@media all and (max-width:600px) { - .enhanced .overlay-close-button { - top: calc(2.22em - 1vw); - right: 4vw; - background: #fff2cc; - border-radius: 11px; - padding: .5em .75em; - } -} - -.enhanced .overlay-close-button::before { - content: ""; - display: block; - width: .75em; - height: .75em; - background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zNSAxNS4zNiIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdGFiaW5kPSItMSI+PHRpdGxlPkNsZWFyIFNlYXJjaDwvdGl0bGU+PHBhdGggZmlsbD0iI2UzM2IyYSIgZD0iTTguMzggMTEuNDFjLS41LS41LS43OC0uNTItMS4zMyAwbC0zLjA1IDMuMDhjLTEuMTggMS4xOC0xLjcgMS4xOC0zLS4xNnMtMS4xOC0yLS4xOC0zbDMuMTgtMy4xOWEuNjkuNjkgMCAwIDAtLjA3LTEuMTRsLTMtM2MtMS0xLTEuMTMtMS44MSAwLTNzMS45LTEuMjEgMy4xMyAwbDIuOTQgM2EuNjYuNjYgMCAwIDAgMS4xMSAwYy42My0uNjUgMi40OS0yLjUxIDMuMjgtMy4zNWExLjQ2IDEuNDYgMCAwIDEgMi4zLS4xNWMuMjQuMjQuNDcuNDIuODkuODQuODYuODYuOTQgMS41Ny4wNSAyLjQ2bC0zLjI3IDMuMjZjLS4zNi4zNC0uNTIuNTgtLjE2Ljk0bDMuMjcgMy4yN2MxLjEgMS4xIDEuMjMgMS43LjA1IDIuODhsLS41OC41OGExLjU5IDEuNTkgMCAwIDEtMi40Ni0uMjF6Ii8+PC9zdmc+); - background-size: 100% 100%; - background-repeat: no-repeat; -} - -.highlighted { - background-color: #fff2cc; -} - -.transitioned { - transition: all 1s ease; -} - -.shake { - -webkit-animation-name: shake; - animation-name: shake; - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - transform: perspective(1px) translateZ(0); - box-shadow: 0 0 1px transparent; -} - -@-webkit-keyframes shake { - 16.65% { - transform: translateY(8px); - } - - 33.3% { - transform: translateY(-6px); - } - - 49.95% { - transform: translateY(4px); - } - - 66.6% { - transform: translateY(-2px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes shake { - 16.65% { - transform: translateY(8px); - } - - 33.3% { - transform: translateY(-6px); - } - - 49.95% { - transform: translateY(4px); - } - - 66.6% { - transform: translateY(-2px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@-webkit-keyframes wiggle { - 0% { - transform: rotate(4deg); - } - - 50% { - transform: rotate(-4deg); - } - - 100% { - transform: rotate(4deg); - } -} - -@keyframes wiggle { - 0% { - transform: rotate(4deg); - } - - 50% { - transform: rotate(-4deg); - } - - 100% { - transform: rotate(4deg); - } -} - -.wiggler:hover { - -webkit-animation: wiggle .5s infinite; - animation: wiggle .5s infinite; -} - -@-webkit-keyframes content-injection { - 100% { - transform: translateX(0); - opacity: 1; - } - - 0% { - transform: translateX(40px); - opacity: 0; - } -} - -@keyframes content-injection { - 100% { - transform: translateX(0); - opacity: 1; - } - - 0% { - transform: translateX(40px); - opacity: 0; - } -} - -@-webkit-keyframes fade-in { - 100% { - opacity: 1; - } - - 0% { - opacity: 0; - } -} - -@keyframes fade-in { - 100% { - opacity: 1; - } - - 0% { - opacity: 0; - } -} - -@-webkit-keyframes adding-to-cart-animation { - 16.65% { - transform: translateY(8px); - } - - 33.3% { - transform: translateY(-6px); - } - - 49.95% { - transform: translateY(4px); - } - - 66.6% { - transform: translateY(-2px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes adding-to-cart-animation { - 16.65% { - transform: translateY(8px); - } - - 33.3% { - transform: translateY(-6px); - } - - 49.95% { - transform: translateY(4px); - } - - 66.6% { - transform: translateY(-2px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@-webkit-keyframes adding-to-cart-animation--wide-screens { - 16.65% { - transform: translateY(32px); - } - - 33.3% { - transform: translateY(-19px); - } - - 49.95% { - transform: translateY(4px); - } - - 66.6% { - transform: translateY(-2px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes adding-to-cart-animation--wide-screens { - 16.65% { - transform: translateY(32px); - } - - 33.3% { - transform: translateY(-19px); - } - - 49.95% { - transform: translateY(4px); - } - - 66.6% { - transform: translateY(-2px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@-webkit-keyframes cart-reminder-animation { - 16.65% { - transform: translateY(14px) rotateZ(-11deg) scale(.87); - } - - 33.3% { - transform: translateY(-8px); - } - - 49.95% { - transform: translateY(10px); - } - - 66.6% { - transform: translateY(-4px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes cart-reminder-animation { - 16.65% { - transform: translateY(14px) rotateZ(-11deg) scale(.87); - } - - 33.3% { - transform: translateY(-8px); - } - - 49.95% { - transform: translateY(10px); - } - - 66.6% { - transform: translateY(-4px); - } - - 83.25% { - transform: translateY(1px); - } - - 100% { - transform: translateY(0); - } -} - -.adding-to-cart-animation, -.cart-reminder-animation { - will-change: transform; - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; -} - -.cart-reminder-animation { - will-change: transform; - -webkit-animation-name: cart-reminder-animation; - animation-name: cart-reminder-animation; -} - -.adding-to-cart-animation { - -webkit-animation-name: adding-to-cart-animation; - animation-name: adding-to-cart-animation; -} - -@media all and (min-width:1200px) { - .adding-to-cart-animation { - -webkit-animation-name: adding-to-cart-animation--wide-screens; - animation-name: adding-to-cart-animation--wide-screens; - } -} - -@-webkit-keyframes cd-qty-enter { - 0% { - opacity: 0; - visibility: hidden; - transform: translateX(-50%) translateY(0); - } - - 100% { - opacity: 1; - visibility: visible; - transform: translateX(-50%) translateY(-50%); - } -} - -@keyframes cd-qty-enter { - 0% { - opacity: 0; - visibility: hidden; - transform: translateX(-50%) translateY(0); - } - - 100% { - opacity: 1; - visibility: visible; - transform: translateX(-50%) translateY(-50%); - } -} - -@-webkit-keyframes cd-qty-leave { - 0% { - opacity: 1; - visibility: visible; - transform: translateX(-50%) translateY(-50%); - } - - 100% { - opacity: 0; - visibility: hidden; - transform: translateX(-50%) translateY(-100%); - } -} - -@keyframes cd-qty-leave { - 0% { - opacity: 1; - visibility: visible; - transform: translateX(-50%) translateY(-50%); - } - - 100% { - opacity: 0; - visibility: hidden; - transform: translateX(-50%) translateY(-100%); - } -} - -@-webkit-keyframes cd-item-move-up-mobile { - 0% { - padding-top: 70px; - } - - 100% { - padding-top: 0; - } -} - -@keyframes cd-item-move-up-mobile { - 0% { - padding-top: 70px; - } - - 100% { - padding-top: 0; - } -} - -@-webkit-keyframes cd-item-move-up { - 0% { - padding-top: 104px; - } - - 100% { - padding-top: 0; - } -} - -@keyframes cd-item-move-up { - 0% { - padding-top: 104px; - } - - 100% { - padding-top: 0; - } -} - -@-webkit-keyframes cd-item-move-down-mobile { - 0% { - padding-top: 0; - } - - 100% { - padding-top: 70px; - } -} - -@keyframes cd-item-move-down-mobile { - 0% { - padding-top: 0; - } - - 100% { - padding-top: 70px; - } -} - -@-webkit-keyframes cd-item-move-down { - 0% { - padding-top: 0; - } - - 100% { - padding-top: 104px; - } -} - -@keyframes cd-item-move-down { - 0% { - padding-top: 0; - } - - 100% { - padding-top: 104px; - } -} - -@-webkit-keyframes cd-item-slide-out { - 0% { - transform: translateX(0); - opacity: 1; - } - - 100% { - transform: translateX(80px); - opacity: 0; - } -} - -@keyframes cd-item-slide-out { - 0% { - transform: translateX(0); - opacity: 1; - } - - 100% { - transform: translateX(80px); - opacity: 0; - } -} - -@-webkit-keyframes cd-item-slide-in { - 100% { - transform: translateX(0); - opacity: 1; - } - - 0% { - transform: translateX(80px); - opacity: 0; - } -} - -@keyframes cd-item-slide-in { - 100% { - transform: translateX(0); - opacity: 1; - } - - 0% { - transform: translateX(80px); - opacity: 0; - } -} - -.cart { - display: block; - z-index: 12; - width: 90%; - max-width: 440px; - height: 400px; - max-height: 90%; - pointer-events: none; -} - -.cart-wrapper { - color: #333; -} - -.cart-wrapper *, -.cart-wrapper ::after, -.cart-wrapper ::before { - box-sizing: border-box; -} - -.cart-wrapper html { - font-size: 62.5%; -} - -.cart-wrapper a { - text-decoration: none; -} - -.cart-wrapper img { - max-width: 100%; -} - -.cart-wrapper main { - text-align: center; - padding: 2em 5%; -} - -.cart-wrapper h1 { - font-size: 20px; - padding: 3em 0 .8em; -} - -@media only screen and (min-width:768px) { - .cart-wrapper h1 { - font-size: 32px; - } -} - -.cart-wrapper h2 { - color: #666; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .cart-wrapper h2 { - font-family: Elena; -} - -.cart-wrapper ul { - list-style-image: none; - padding: 0; - margin: 0; -} - -.back-to-top-wrapper { - will-change: transform; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: transform .2s; -} - -.js-cart-items .back-to-top-wrapper { - transform: translateY(150px); -} - -.cart, -.cart-trigger { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - position: fixed; - bottom: 20px; - right: 5%; - transition: transform .2s; - transform: translateZ(0); - will-change: transform; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - background: 0 0; -} - -.cart-container::before { - content: ""; - position: fixed; - z-index: 11; - height: 100vh; - width: 100vw; - top: 0; - left: 0; - background: rgba(0, 0, 0, .5); - opacity: 0; - visibility: hidden; - transition: opacity .4s, visibility .4s; -} - -.cart-container.cart-open::before { - opacity: 1; - visibility: visible; -} - -.empty .cart, -.empty .cart-trigger { - transform: translateY(150px); -} - -@media only screen and (min-width:1170px) { - - .cart, - .cart-trigger { - bottom: 40px; - font-size: 1.125rem; - } -} - -.cart-trigger { - z-index: 13; - height: 72px; - width: 72px; - text-indent: 100%; - color: transparent; - white-space: nowrap; - cursor: pointer; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .cart-trigger { - font-family: Mija; -} - -.cart-trigger::after, -.cart-trigger::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - bottom: auto; - right: auto; - transform: translateX(-50%) translateY(-50%); - height: 100%; - width: 100%; - background: url(/images/cart/cd-icons-cart-close.svg) no-repeat 0 0; - transition: opacity .2s, transform .2s; -} - -.cart-trigger::after { - background-position: -72px 0; - opacity: 0; - transform: translateX(-50%) translateY(-50%) rotate(90deg); -} - -.cart-open .cart-trigger::before { - opacity: 0; -} - -.cart-open .cart-trigger::after { - opacity: 1; - transform: translateX(-50%) translateY(-50%); -} - -.cart-trigger .count { - position: absolute; - top: -10px; - right: -10px; - height: 28px; - width: 28px; - margin: 0; - padding: 0; - background: #e94b35; - color: #fff; - font-weight: 700; - border-radius: 50%; - text-indent: 0; - transition: transform .2s .5s; - font-size: 15px; - line-height: 15px; -} - -.cart-trigger .count li { - position: absolute; - padding: 0; - margin: 0; - line-height: 15px; - text-shadow: none; - left: 50%; - top: 50%; - bottom: auto; - right: auto; - transform: translateZ(0) translateX(-50%) translateY(-50%); -} - -.cart-trigger .count li:last-of-type { - visibility: hidden; -} - -.cart-open .cart-trigger .count { - transition: transform .2s 0s; - transform: scale(0); -} - -.empty .cart-trigger .count { - transform: scale(1); -} - -.cart-trigger:hover+div .wrapper { - box-shadow: 0 6px 40px rgba(0, 0, 0, .3); -} - -.cart-open .cart-trigger:hover+div .wrapper { - box-shadow: 0 4px 30px rgba(0, 0, 0, .17); -} - -@media (max-width:40em) { - .cart { - max-width: 100%; - height: auto; - max-height: 100%; - box-sizing: border-box; - bottom: 20px; - top: 20px; - } -} - -.cart .wrapper { - position: absolute; - bottom: 0; - right: 0; - z-index: 12; - overflow: hidden; - height: 72px; - width: 72px; - border-radius: 11px; - transition: height .4s .1s, width .4s .1s, box-shadow .3s; - transition-timing-function: cubic-bezier(.67, .17, .32, .95); - background: #fff; - box-shadow: 0 4px 30px rgba(0, 0, 0, .17); - pointer-events: auto; -} - -.cart footer, -.cart header { - position: absolute; - z-index: 12; - left: 0; - width: 100%; -} - -.cart .body, -.cart header { - opacity: 0; -} - -.cart header { - border-radius: 11px 11px 0 0; - padding: .75em 1.5em; - height: 50px; - line-height: 1.7; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-size: 1em; - font-weight: 700; - background-color: #fff; - transition: opacity .2s 0s; - border-bottom: 1px solid #ddd; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .cart header { - font-family: Elena; -} - -.cart header a { - background-position: center 72%; -} - -.cart header:after, -.cart header:before { - content: " "; - display: table; - clear: both; -} - -@supports (display:flex) { - .cart header { - display: flex; - flex-direction: row; - align-items: center; - } -} - -.cart footer { - bottom: 0; - border-radius: 0 0 11px 11px; - box-shadow: 0 -2px 20px rgba(0, 0, 0, .15); - background: #fff; -} - -.cart footer small { - color: rgba(255, 255, 255, .7); - display: block; - font-size: .5em; - padding: 0; -} - -@media screen and (min-width:40em) { - .cart footer small span { - display: inline; - } -} - -.cart h2 { - text-transform: uppercase; - display: inline-block; - font-size: 1em; - font-weight: 700; - letter-spacing: 1px; - color: #333; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .cart h2 { - font-family: Elena; -} - -@media all and (max-width:370px) { - .cart h2 { - display: none; - } -} - -.cart .clear-the-cart { - position: absolute; - top: -.1em; - right: 1.5em; - font-size: 1.1em; - color: #444; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #767676; - text-decoration-color: #767676; - padding: 10px 0; - transition: color .1s ease-out; - -webkit-text-decoration-skip: ink; - text-decoration-skip-ink: auto; - text-decoration-thickness: 1px; - text-underline-offset: 1px; - text-decoration-offset: initial; -} - -.cart .clear-the-cart::after { - content: " × "; -} - -.cart .undo { - float: right; - font-size: 12px; - opacity: 0; - visibility: hidden; - transition: opacity .2s, visibility .2s; - color: tint(#2da2c5, 40%); -} - -.cart .undo a { - color: #2da2c5; -} - -.cart .undo.visible { - opacity: 1; - visibility: visible; -} - -.cart .cart-options:after, -.cart .cart-options:before { - content: " "; - display: table; - clear: both; -} - -.cart .checkout { - display: block; - height: 72px; - padding-top: 11px; - line-height: 28px; - margin-right: 72px; - background: linear-gradient(to bottom, #f88040, #d33a2c); - color: #fff; - text-shadow: none; - text-align: center; - font-size: 1.55em; - font-weight: 600; - transition: all .2s 0s; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .cart .checkout { - font-family: Mija; -} - -.cart .checkout:hover { - background: #d33a2c; -} - -.cart .body { - position: relative; - height: calc(100% - 50px); - padding: 20px 0 10px; - margin: 40px 0 10px; - overflow: auto; - transition: opacity .2s; - padding-bottom: 3em; -} - -.cart .body ul { - overflow: hidden; - padding: 0 1em; - position: relative; -} - -.cart .body li { - position: relative; - opacity: 0; - transform: translateX(80px); - transition: opacity 0s .2s, transform 0s .2s; - border-bottom: 1px solid #ddd; - padding: .5em; -} - -.cart .body li:after, -.cart .body li:before { - content: " "; - display: table; - clear: both; -} - -.cart .body li:last-of-type { - border-bottom: none; -} - -.cart .body li:not(:last-of-type) { - margin-bottom: 20px; -} - -.cart .body li.deleted { - position: absolute; - left: 1.4em; - width: calc(100% - 2.8em); - opacity: 0; - -webkit-animation: cd-item-slide-out .3s forwards; - animation: cd-item-slide-out .3s forwards; -} - -.cart .body li.deleted+li { - -webkit-animation: cd-item-move-up-mobile .3s; - animation: cd-item-move-up-mobile .3s; - -webkit-animation-fill-mode: forwards; - animation-fill-mode: forwards; -} - -.cart .product-image { - display: inline-block; - float: left; - width: 50px; -} - -.cart .product-image img { - display: block; -} - -.cart .product-details { - position: relative; - display: inline-block; - float: right; - width: calc(100% - 50px); - padding: .3em 0 0 .5em; -} - -.cart .product-details:after, -.cart .product-details:before { - content: " "; - display: table; - clear: both; -} - -.cart .price, -.cart .product-title { - font-weight: 700; -} - -.cart .product-title { - width: 100%; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; - margin: 0; - font-size: calc(16px + .25vw); -} - -.cart .product-title a { - color: #006fc6; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; - padding: 10px 0; - transition: color .1s ease-out; - -webkit-text-decoration-skip: ink; - text-decoration-skip-ink: auto; - text-decoration-thickness: 1px; - text-underline-offset: 1px; - text-decoration-offset: initial; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -.cart .product-title a:active, -.cart .product-title a:focus { - color: #d33a2c; - -webkit-text-decoration-color: #d33a2c; - text-decoration-color: #d33a2c; -} - -.cart .product-description { - font-size: 1em; -} - -.cart .product-amount { - font-size: 1em; - float: left; -} - -.cart .product-counter { - float: right; - width: auto; - padding: 0; - margin: 0; -} - -.cart .product-controls:after, -.cart .product-controls:before { - content: " "; - display: table; - clear: both; -} - -.cart .price { - float: left; - width: 30%; - text-align: right; -} - -.cart .actions { - font-size: 14px; - height: 22.4px; - line-height: 22.4px; - float: left; - margin-top: 1em; -} - -.cart .actions:after, -.cart .actions:before { - content: " "; - display: table; - clear: both; -} - -.cart .quantity { - float: left; - cursor: pointer; - color: tint(#2da2c5, 40%); - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - padding: 0; - text-decoration: none; - background: 0 0; -} - -.cart-open .cart .wrapper { - height: calc(100% - 125px); - width: 100%; - transition-delay: 0s; -} - -@media all and (min-width:640px) { - .cart-open .cart .wrapper { - height: 100%; - } -} - -.cart-open .cart .body, -.cart-open .cart header { - opacity: 1; -} - -.cart-open .cart header { - transition: opacity .2s .2s; -} - -.cart-open .cart .body { - transition: opacity 0s; -} - -.cart-open .cart .body li { - transition: transform .3s .2s, opacity .3s .2s; - opacity: 1; - transform: translateX(0); -} - -.cart-open .cart .body li:nth-of-type(2) { - transition-duration: .4s; -} - -.cart-open .cart .body li:nth-of-type(3) { - transition-duration: .5s; -} - -.cart-open .cart .body li:nth-of-type(4), -.cart-open .cart .body li:nth-of-type(5) { - transition-duration: .55s; -} - -.cart-open .cart .checkout { - color: #fff; - transition: color .2s .3s; - cursor: pointer; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -@media only screen and (min-width:768px) { - .cart .body li:not(:last-of-type) { - margin-bottom: 14px; - } - - .cart .body li.deleted+li { - -webkit-animation: cd-item-move-up .3s; - animation: cd-item-move-up .3s; - } - - .cart .checkout { - font-size: 24px; - } - - .cart .product-image { - width: 90px; - } - - .cart .product-details { - padding: 0 0 0 1em; - width: calc(100% - 90px); - } - - .cart .price, - .cart .product-title { - font-size: 1.1em; - } -} - -[data-component=Login] { - min-height: 295px; -} - -[data-component=Amnesia] { - min-height: 140px; -} - -[data-component=Signup] { - min-height: 320px; -} - -[data-component=MemberSubscriptionCheckout] { - padding-top: .75em; -} - -.auth-modal-wrapper { - margin: 1em auto; - width: 100%; - max-width: 600px; -} - -.auth-modal-wrapper::after { - content: " "; - display: table; -} - -@media screen and (min-width:40em) { - .auth-modal-wrapper { - margin: 3.25em auto; - } -} - -@media all and (min-width:1450px) { - .auth-modal-wrapper { - max-width: 50%; - } -} - -@media all and (min-height:850px) { - .auth-modal-wrapper { - margin: calc(3.25em + 3vh) auto; - } -} - -@media screen and (min-width:1025px) { - .auth-modal-wrapper.auth-modal-wrapper--tilted { - position: relative; - } - - .auth-modal-wrapper.auth-modal-wrapper--tilted::before { - display: block; - content: ""; - height: 90%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; - width: 150%; - top: initial; - bottom: -81%; - left: -35%; - } -} - -.auth-modal-wrapper.auth-modal-wrapper--recover-password::before { - bottom: -75%; -} - -.auth-modal-wrapper.auth-modal-wrapper--membership-checkout { - max-width: 800px; -} - -.auth-modal-wrapper.auth-modal-wrapper--membership-checkout::before { - width: 140%; - top: 96%; - left: -42%; -} - -@media (max-width:40em) { - .auth-modal-wrapper::before { - display: none; - } -} - -.auth-modal-wrapper.hover::before, -.auth-modal-wrapper:hover::before { - transition-duration: .2s; - opacity: 0; - transform: scaleX(0); -} - -.auth-modal { - border-radius: 11px; - padding: 2em 2em 4em; - width: 100%; - background: #f6f6f6; - transform-origin: bottom left; - transition: all .2s ease-in-out; -} - -@media screen and (min-width:1025px) { - .auth-modal.auth-modal--tilted { - transform: rotate(-6deg); - } -} - -.auth-modal.auth-modal--white { - background: #fff; -} - -.auth-modal.auth-modal--white p.auth-modal__hint { - margin: 2em .15em 1em .15em; - color: #333; - font-size: .75em; - background: #fff2cc; - padding: .5em 1em; - border-radius: 11px; -} - -.auth-modal.auth-modal--white p.auth-modal__hint:not(.auth-modal__hint--left-aligned) { - text-align: center; -} - -.auth-modal:hover, -.hover .auth-modal { - transform: rotate(0); -} - -.auth-modal .btn--lined { - margin: 2em auto 0 auto; -} - -.auth-modal .btn--lined input { - margin-bottom: 0; -} - -.auth-modal .btn--lined .btn--green { - transition: margin-top .2s ease-in-out; -} - -.auth-modal .btn--lined input.btn[disabled] { - background-color: #666; - opacity: 1; - color: #fff; - margin-top: 1em; - border: 0; -} - -.auth-modal .btn--lined input.password-recovery { - margin-top: .5em; -} - -.auth-modal .btn--lined.btn--lined__membership { - margin-bottom: calc(4em + 4vw); -} - -.auth-modal .auth-modal__passphrase, -.auth-modal .auth-modal__signup { - align-self: flex-end; -} - -@media (max-width:40em) { - .auth-modal { - transform: rotate(0); - padding: 2em 1em; - } -} - -@media all and (max-width:480px) { - .auth-modal { - padding: 2em .75em; - } -} - -.auth-modal-title { - text-align: center; - margin: .75em 0; - color: #41b14f; -} - -.auth-modal__desc { - display: flex; - flex-direction: row; - justify-content: center; - align-items: center; - margin: 0 auto 2em auto; - text-align: center; -} - -.auth-modal__desc small { - color: #333; - font-size: .85em; - line-height: 1.6em; -} - -.auth-modal__desc small.auth-modal__desc--textblock { - display: inline-block; - padding-bottom: 1em; -} - -.auth-modal__desc img { - -webkit-animation: content-injection .3s forwards; - animation: content-injection .3s forwards; -} - -.auth-modal__desc img:not(.auth-modal__passphrase) { - min-width: 40%; - padding-left: 1em; - align-self: flex-end; -} - -@media all and (min-width:650px) { - .auth-modal__desc img:not(.auth-modal__passphrase) { - padding-left: 1.5em; - } -} - -.auth-modal__desc img.auth-modal__passphrase { - min-width: 38%; - padding-left: 1em; - height: auto; -} - -@media all and (min-width:650px) { - .auth-modal__desc img.auth-modal__passphrase { - padding-left: 1.5em; - } -} - -.auth-modal__desc img.auth-modal__signup { - min-width: 46%; -} - -.auth-modal__desc--hint { - background-color: #fff2cc; - border-radius: 11px; - padding: .4em .75em; - text-align: left; - display: inline-block; - line-height: 1.4em; -} - -.auth-modal__desc--hint em { - white-space: nowrap; -} - -.btn--lined.signing-up { - margin-top: 2em; -} - -.auth-modal-wrapper--membership-checkout label[for=ccv-info-trigger] { - margin-top: -1em; - margin-bottom: .5em; - font-size: .75em; -} - -.auth-modal-links { - display: flex; - list-style: none; - padding: 0 .1em; - margin: 1em 0 0 0; - -webkit-animation: fade-in .5s forwards; - animation: fade-in .5s forwards; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - justify-content: center; -} - -.auth-modal-links:after, -.auth-modal-links:before { - content: " "; - display: table; - clear: both; -} - -.auth-modal-links li { - padding: 0; - margin: 0; - margin-right: 0; - float: none; - display: inline-block; - text-transform: uppercase; - font-size: .65em; - letter-spacing: 1px; -} - -.auth-modal-links li::before { - display: none; -} - -.auth-modal-links li::after { - content: "•"; - font-size: .8em; - color: #d33a2c; - display: inline-block; - margin: 0 .4em 0 .4em; -} - -.auth-modal-links li:last-of-type::after { - display: none; -} - -.auth-modal-links>p { - color: #666; - font-size: .8em; - margin: 0; -} - -.auth-modal-links li:not(:last-child) { - padding-right: .5em; -} - -.auth-modal-links li:not(:last-child):after { - content: " ●"; - color: #ccc; - padding-left: .5em; -} - -.auth-modal__progress-wrapper { - list-style-type: none; - list-style-image: none; - margin-bottom: 2.5em; - margin-top: 2.5em; -} - -.auth-modal__progress-wrapper li { - padding-left: 1.85em; - margin-bottom: 1.25em; - display: flex; - flex-direction: row; - align-items: flex-end; - flex-wrap: wrap; -} - -@media all and (min-width:550px) { - .auth-modal__progress-wrapper li { - flex-wrap: nowrap; - } -} - -.auth-modal__progress-wrapper li button { - margin-left: 0; - margin-top: 1em; -} - -@media all and (min-width:550px) { - .auth-modal__progress-wrapper li button { - margin-left: auto; - } -} - -.auth-modal__progress-wrapper .auth-modal__progress-done { - background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPHBhdGggZmlsbD0iIzQxQjE0RiIgZD0iTTE2IDBjLTguODM2IDAtMTYgNy4xNjQtMTYgMTZzNy4xNjQgMTYgMTYgMTYgMTYtNy4xNjQgMTYtMTYtNy4xNjQtMTYtMTYtMTZ6TTEzLjUyIDIzLjM4M2wtNy4zNjItNy4zNjMgMi44MjgtMi44MjggNC41MzMgNC41MzUgOS42MTctOS42MTcgMi44MjggMi44MjgtMTIuNDQ0IDEyLjQ0NXoiPjwvcGF0aD4KPC9zdmc+Cg==); - background-repeat: no-repeat; - background-position: left .2em; - background-size: 1.2em 1.2em; - color: #41b14f; -} - -.auth-modal__progress-wrapper .auth-modal__progress-to-do { - background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPHBhdGggZmlsbD0iI0RCREJEQiIgZD0iTTE2IDBjLTguODM2IDAtMTYgNy4xNjQtMTYgMTZzNy4xNjQgMTYgMTYgMTYgMTYtNy4xNjQgMTYtMTYtNy4xNjQtMTYtMTYtMTZ6TTEzLjUyIDIzLjM4M2wtNy4zNjItNy4zNjMgMi44MjgtMi44MjggNC41MzMgNC41MzUgOS42MTctOS42MTcgMi44MjggMi44MjgtMTIuNDQ0IDEyLjQ0NXoiPjwvcGF0aD4KPC9zdmc+Cg==); - background-repeat: no-repeat; - background-position: left .2em; - background-size: 1.2em 1.2em; - color: #bfbfbf; -} - -.auth__container--checkout .btn--green { - transition: margin-top .2s ease-in-out; -} - -.btn[disabled].ladda-button { - background-color: #666; - color: #fff; - margin-top: 1em; - border: 0; -} - -.search-loader { - display: block; - margin: 1.5em auto; - width: 3.5em; -} - -.loader { - width: .75em; - height: .75em; - margin-right: .25em; - border-radius: 3px; - background: #fff; - display: inline-block; - transform: translateY(.5em); - opacity: 0; - -webkit-animation: loading 1.5s ease-out forwards infinite; - animation: loading 1.5s ease-out forwards infinite; - transform-origin: bottom left; - -webkit-animation-delay: .2s; - animation-delay: .2s; -} - -.loader-wrapper--inline, -.loader-wrapper--inline .search-loader { - display: inline-block; - margin: 0; - width: auto; -} - -.search-loader--red .loader { - background: #d33a2c; -} - -.loader:nth-of-type(2) { - -webkit-animation-delay: .3s; - animation-delay: .3s; -} - -.loader:nth-of-type(3) { - -webkit-animation-delay: .4s; - animation-delay: .4s; -} - -@-webkit-keyframes loading { - 0% { - opacity: 0; - transform: translateY(10px); - } - - 20% { - opacity: 1; - transform: translate(0); - } - - 60% { - opacity: 1; - transform: translate(0); - } - - 90% { - opacity: 0; - transform: translateY(-1px) translateX(-1px) rotateZ(-11deg); - } - - 100% { - opacity: 0; - transform: translateY(-1px) translateX(-1px) rotateZ(-11deg); - } -} - -@keyframes loading { - 0% { - opacity: 0; - transform: translateY(10px); - } - - 20% { - opacity: 1; - transform: translate(0); - } - - 60% { - opacity: 1; - transform: translate(0); - } - - 90% { - opacity: 0; - transform: translateY(-1px) translateX(-1px) rotateZ(-11deg); - } - - 100% { - opacity: 0; - transform: translateY(-1px) translateX(-1px) rotateZ(-11deg); - } -} - -.not-found { - padding: 4em 0; - margin: 0 auto; - display: flex; - align-items: center; - justify-content: center; - float: none; -} - -.not-found-wrapper { - width: 100%; -} - -.not-found__image { - width: 100%; - margin-top: 1em; -} - -.not-found__content { - margin: 3em auto; -} - -abbr:not([title]) { - cursor: help; - border-bottom: 1px dotted; -} - -[data-handler=Tooltip] { - position: relative; -} - -[data-handler=Tooltip] [role=status] { - position: absolute; - bottom: calc(100% + 6px); - left: -50%; - right: -50%; - background: green; - background-color: #41b14f; - background-image: linear-gradient(#9ec14c, #41b14f); - color: #fff; - padding: .75em 1.25em; - border-radius: 11px; - min-width: 250px; -} - -[data-handler=Tooltip] [role=status]:empty { - display: none; -} - -[data-handler=Tooltip] [role=status]::before { - content: ""; - display: inline-block; - background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000…0,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E"); - background-size: 100% auto; - width: 18px; - border: 0; - height: 6px; - position: absolute; - bottom: 0; - left: 50%; - margin-bottom: 6px; - transform: translate(-50%, 12px); - transform-origin: top; - opacity: 0; - pointer-events: auto; - z-index: 10; -} - -.cookies { - background-color: #fff; - border-radius: 11px; - position: fixed; - width: calc(10em + 1vw); - padding: 1em; - z-index: 99; - box-shadow: 0 6px 40px rgba(0, 0, 0, .3); - bottom: 1em; - left: 1em; -} - -.cookies p { - margin-top: 0; - font-size: .75em; -} - -@media screen and (max-width:420px) { - .cookies { - right: 0; - left: 0; - width: 100%; - border-radius: 0; - bottom: 0; - } - - .cookies p { - margin-top: 1em; - } -} - -@media screen and (max-width:380px) { - .cookies p { - margin-top: 0; - } -} - -.cookies--image { - display: none; - margin: 0 auto; - max-width: 100px; - float: left; - margin-right: 1em; - margin-bottom: 1em; -} - -.cookies--btn { - width: 100%; -} - -.CookieDeclarationTable { - font-size: .75em; - line-height: 150%; -} - -.article--grid__container .advertisement-container { - background-color: transparent; -} - -.article--grid__container .advertisement-container a { - color: #666; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #c2c2c2; - text-decoration-color: #c2c2c2; - transition: color .1s ease-out; - padding: 0; -} - -.advertisement-container { - display: none; -} - -@media screen and (min-width:64em) { - .advertisement-container { - overflow: hidden; - display: block; - text-align: center; - } -} - -.advertisement-container ul { - padding: 0; - display: flex; - flex-direction: row; -} - -.article--grid__container .advertisement-container ul { - flex-direction: column; -} - -@media all and (min-width:1025px) { - .advertisement-container ul { - flex-direction: column; - } -} - -.advertisement-container li { - line-height: 1.3em; -} - -@media (max-width:64em) { - .advertisement-container li:not(:last-child) { - margin-right: 2em; - } -} - -@media all and (min-width:1025px) { - .advertisement-container li:not(:last-child) { - margin-bottom: 1.75em; - } -} - -.advertisement-container li img { - border: 4px solid #fff; - border-radius: 11px; - transition: all .3s ease-in-out; - padding: 0; -} - -.advertisement-container li img:hover { - border: 4px solid #d33a2c; -} - -.advertisement-container:after, -.advertisement-container:before { - content: " "; - display: table; - clear: both; -} - -@media (max-width:64em) { - .article--grid__container .advertisement-container { - margin: 0; - padding: 0; - } -} - -.ad ul, -.advertisement-container ul { - list-style: none; - margin: 0; -} - -.ad li, -.advertisement-container li { - padding: 0; - margin-bottom: 0; -} - -.ad a, -.advertisement-container a { - font-size: .75em; - text-align: center; - font-style: italic; - display: inline-block; - margin: 0; - padding: 0; - color: #666; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #666; - text-decoration-color: #666; -} - -.sponsors ul { - padding-left: 0; - text-align: center; -} - -.sponsors ul li { - display: inline-block; - margin-bottom: 3em; - font-size: .85em; - padding: 0; - padding-right: 0; - vertical-align: top; - border-radius: 11px; - max-width: 25rem; - border: 1px solid #ddd; - min-height: 90px; -} - -@media (max-width:64em) { - .sponsors ul li { - margin-left: 0; - margin-right: 0; - } -} - -.sponsors ul li .sponsors--image-wrapper { - width: 100%; - max-width: 250px; - box-sizing: border-box; - border-radius: 11px; - margin-bottom: 1em; - margin-top: 1em; - padding: 0 .5em; -} - -.sponsors ul li .sponsors--image-wrapper img { - width: 100%; - border-radius: 0; - display: block; - margin: 0 auto; -} - -.sponsors ul li .sponsors--content-wrapper { - margin-bottom: 1.5em; -} - -.sponsors ul li .sponsors--title { - margin-bottom: .5em; - text-transform: uppercase; - letter-spacing: 2px; - font-size: 1em; - font-weight: 900; -} - -.sponsors ul li .sponsors--text { - letter-spacing: .25px; - font-weight: 300; - line-height: 1.4; - font-feature-settings: normal; -} - -.sponsors ul li .sponsors--cta { - padding: 10px 14px; - border-radius: 3px; - box-shadow: 0 6px 13px 0 rgba(0, 0, 0, .15); - text-transform: uppercase; - white-space: nowrap; - letter-spacing: 1px; - font-weight: 900; - font-size: 14px; - transition: all .3s ease-in-out; - transform: translateY(-1px); - margin-bottom: 1em; - margin-top: 1em; -} - -.sponsors ul li a { - display: block; - padding: 1em 1em 2em 1em; - margin: 0 auto; - text-decoration: none; - background-image: none; - text-shadow: none; - font-size: 1.1em; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif; -} - -.wf-loaded-stage2 .sponsors ul li a { - font-family: Elena; -} - -@media all and (max-width:600px) { - .sponsors ul li { - margin-bottom: 2em; - margin-right: 0; - } - - .sponsors ul li a { - text-align: center; - } -} - -.sponsors__lead { - position: relative; -} - -.sponsors__lead::before { - position: absolute; - border-bottom: 8px solid #eee; - left: 0; - transform: translate(0, -100%); - top: -12px; - content: "More after jump! Continue reading below ↓"; - font-size: .7em; - color: #666; - padding-bottom: 10px; - width: 100%; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .sponsors__lead::before { - font-family: Mija; -} - -.sponsors__native ul.bnnr-list li { - border: 0; - max-width: 85%; - margin: 0 auto; -} - -.sponsors__native ul.bnnr-list li:first-child { - padding-bottom: 2.5em; -} - -.sponsors__native ul.bnnr-list li img { - max-width: none; - width: 100%; - height: auto; -} - -.sponsors__native ul.bnnr-list li a { - padding: 0; - background-image: none; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; -} - -.sponsors__row li { - margin: 0 2em; -} - -.sponsors.sponsors-leaderboard, -.sponsors.sponsors__lead { - width: 100%; - grid-column-start: 2; - grid-column-end: 14; - margin: 4.5em auto 1em; -} - -.sponsors.sponsors-leaderboard ul li, -.sponsors.sponsors__lead ul li { - max-width: 100%; - width: 100%; - margin-bottom: 0; -} - -.sponsors.sponsors-leaderboard ul li a, -.sponsors.sponsors__lead ul li a { - display: flex; - justify-content: space-between; - align-items: center; - padding: 1em 2em; -} - -.sponsors.sponsors-leaderboard ul li .sponsors--content-wrapper, -.sponsors.sponsors__lead ul li .sponsors--content-wrapper { - flex-direction: column; - text-align: left; - flex-grow: 1; - margin-bottom: 0; -} - -.sponsors.sponsors-leaderboard ul li .sponsors--image-wrapper, -.sponsors.sponsors__lead ul li .sponsors--image-wrapper { - margin: 0; - flex-shrink: 1; - flex-grow: 0; - margin-right: 1em; -} - -#sponsors-main-page .sponsors--image-wrapper { - margin-left: auto; - margin-right: auto; -} - -.sponsors.sponsors-leaderboard ul li .sponsors--cta, -.sponsors.sponsors__lead ul li .sponsors--cta { - margin-left: 1em; - display: inline; -} - -@media screen and (max-width:600px) { - - .sponsors.sponsors-leaderboard ul li a, - .sponsors.sponsors__lead ul li a { - display: block; - } - - .sponsors.sponsors-leaderboard ul li .sponsors--content-wrapper, - .sponsors.sponsors__lead ul li .sponsors--content-wrapper { - margin-top: 1em; - } - - .sponsors.sponsors-leaderboard ul li .sponsors--cta, - .sponsors.sponsors__lead ul li .sponsors--cta { - margin-top: 2em; - margin-left: 0; - display: block; - } -} - -.sponsors.sponsors-leaderboard { - margin-top: 2em; -} - -.sponsors__mobile { - display: none; -} - -.sponsors__lead.sponsors__video { - margin: 1em 0; - height: 250px; -} - -@media all and (max-width:1099px) { - - .sponsor__homepage, - .sponsors:not(.sponsors__lead):not(.sponsors-leaderboard):not(#sponsors-article-end):not(.sponsors__mobile) { - display: none; - } - - .sponsors__mobile { - display: block; - } -} - -.c-promotion-box--ad.sponsors li { - width: auto; -} - -@font-face { - font-family: DinMedium; - src: url(/fonts/DinMedium.woff2) format("woff2"); - font-weight: 400; - font-style: normal; - font-display: swap; -} - -#sponsors-main-page { - align-self: center; -} - -img { - position: relative; -} - -img::before { - height: 2.5em; - display: block; - top: 2em; - content: " "; - width: 100%; - z-index: 2; - left: 0; -} - -img::after { - content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJtYXJnaW4tcmlnaHQ6IDEwcHg7Ij4KPHBhdGggZmlsbD0iIzc3NyIgZD0iTTI2IDI4aC0yMHYtNGw2LTEwIDguMjE5IDEwIDUuNzgxLTR2OHoiPjwvcGF0aD4KPHBhdGggZmlsbD0iIzc3NyIgZD0iTTI2IDE1YzAgMS42NTctMS4zNDMgMy0zIDNzLTMtMS4zNDMtMy0zIDEuMzQzLTMgMy0zYzEuNjU3IDAgMyAxLjM0MyAzIDN6Ij48L3BhdGg+CjxwYXRoIGZpbGw9IiM3NzciIGQ9Ik0yOC42ODEgNy4xNTljLTAuNjk0LTAuOTQ3LTEuNjYyLTIuMDUzLTIuNzI0LTMuMTE2cy0yLjE2OS0yLjAzMC0zLjExNi0yLjcyNGMtMS42MTItMS4xODItMi4zOTMtMS4zMTktMi44NDEtMS4zMTloLTE1LjVjLTEuMzc4IDAtMi41IDEuMTIxLTIuNSAyLjV2MjdjMCAxLjM3OCAxLjEyMiAyLjUgMi41IDIuNWgyM2MxLjM3OCAwIDIuNS0xLjEyMiAyLjUtMi41di0xOS41YzAtMC40NDgtMC4xMzctMS4yMy0xLjMxOS0yLjg0MXpNMjQuNTQzIDUuNDU3YzAuOTU5IDAuOTU5IDEuNzEyIDEuODI1IDIuMjY4IDIuNTQzaC00LjgxMXYtNC44MTFjMC43MTggMC41NTYgMS41ODQgMS4zMDkgMi41NDMgMi4yNjh6TTI4IDI5LjVjMCAwLjI3MS0wLjIyOSAwLjUtMC41IDAuNWgtMjNjLTAuMjcxIDAtMC41LTAuMjI5LTAuNS0wLjV2LTI3YzAtMC4yNzEgMC4yMjktMC41IDAuNS0wLjUgMCAwIDE1LjQ5OS0wIDE1LjUgMHY3YzAgMC41NTIgMC40NDggMSAxIDFoN3YxOS41eiI+PC9wYXRoPgo8L3N2Zz4K) " " attr(alt); - font-size: .9em; - display: block; - color: #666; - line-height: 1.5; - position: absolute; - font-style: italic; - z-index: 2; - top: calc(2em - 35px); - text-align: center; - width: 104%; - left: -2%; - padding: 2.25em 1em; - text-shadow: none; - background-color: #eee; - border-radius: 11px; -} - -/*! - * Ladda - * http://lab.hakim.se/ladda - * MIT licensed - * - * Copyright (C) 2016 Hakim El Hattab, http://hakim.se - */ - -.ladda-button { - position: relative; -} - -.btn.ladda-button--fixed[disabled] { - margin-top: 0; -} - -.ladda-button .ladda-spinner { - position: absolute; - z-index: 2; - display: inline-block; - width: 32px; - height: 32px; - top: 50%; - margin-top: 0; - opacity: 0; - pointer-events: none; -} - -.ladda-button .ladda-label { - position: relative; - z-index: 3; -} - -.ladda-button .ladda-progress { - position: absolute; - width: 0; - height: 100%; - left: 0; - top: 0; - background: rgba(0, 0, 0, .2); - visibility: hidden; - opacity: 0; - transition: .1s linear all; -} - -.ladda-button[data-loading] .ladda-progress { - opacity: 1; - visibility: visible; -} - -.ladda-button, -.ladda-button .ladda-label, -.ladda-button .ladda-spinner { - transition: .3s cubic-bezier(.175, .885, .32, 1.275) all; -} - -.ladda-button[data-style=zoom-in], -.ladda-button[data-style=zoom-in] .ladda-label, -.ladda-button[data-style=zoom-in] .ladda-spinner, -.ladda-button[data-style=zoom-out], -.ladda-button[data-style=zoom-out] .ladda-label, -.ladda-button[data-style=zoom-out] .ladda-spinner { - transition: .3s ease all; -} - -.ladda-button[data-style=expand-right] .ladda-spinner { - right: -6px; -} - -.ladda-button[data-style=expand-right][data-size=s] .ladda-spinner, -.ladda-button[data-style=expand-right][data-size=xs] .ladda-spinner { - right: -12px; -} - -.ladda-button[data-style=expand-right][data-loading] { - padding-right: 56px; -} - -.ladda-button[data-style=expand-right][data-loading] .ladda-spinner { - opacity: 1; -} - -.ladda-button[data-style=expand-right][data-loading][data-size=s], -.ladda-button[data-style=expand-right][data-loading][data-size=xs] { - padding-right: 40px; -} - -.ladda-button[data-style=expand-left] .ladda-spinner { - left: 26px; -} - -.ladda-button[data-style=expand-left][data-size=s] .ladda-spinner, -.ladda-button[data-style=expand-left][data-size=xs] .ladda-spinner { - left: 4px; -} - -.ladda-button[data-style=expand-left][data-loading] { - padding-left: 56px; -} - -.ladda-button[data-style=expand-left][data-loading] .ladda-spinner { - opacity: 1; -} - -.ladda-button[data-style=expand-left][data-loading][data-size=s], -.ladda-button[data-style=expand-left][data-loading][data-size=xs] { - padding-left: 40px; -} - -.ladda-button[data-style=expand-up] { - overflow: hidden; -} - -.ladda-button[data-style=expand-up] .ladda-spinner { - top: -32px; - left: 50%; - margin-left: 0; -} - -.ladda-button[data-style=expand-up][data-loading] { - padding-top: 54px; -} - -.ladda-button[data-style=expand-up][data-loading] .ladda-spinner { - opacity: 1; - top: 26px; - margin-top: 0; -} - -.ladda-button[data-style=expand-up][data-loading][data-size=s], -.ladda-button[data-style=expand-up][data-loading][data-size=xs] { - padding-top: 32px; -} - -.ladda-button[data-style=expand-up][data-loading][data-size=s] .ladda-spinner, -.ladda-button[data-style=expand-up][data-loading][data-size=xs] .ladda-spinner { - top: 4px; -} - -.ladda-button[data-style=expand-down] { - overflow: hidden; -} - -.ladda-button[data-style=expand-down] .ladda-spinner { - top: 62px; - left: 50%; - margin-left: 0; -} - -.ladda-button[data-style=expand-down][data-size=s] .ladda-spinner, -.ladda-button[data-style=expand-down][data-size=xs] .ladda-spinner { - top: 40px; -} - -.ladda-button[data-style=expand-down][data-loading] { - padding-bottom: 54px; -} - -.ladda-button[data-style=expand-down][data-loading] .ladda-spinner { - opacity: 1; -} - -.ladda-button[data-style=expand-down][data-loading][data-size=s], -.ladda-button[data-style=expand-down][data-loading][data-size=xs] { - padding-bottom: 32px; -} - -.ladda-button[data-style=slide-left] { - overflow: hidden; -} - -.ladda-button[data-style=slide-left] .ladda-label { - position: relative; -} - -.ladda-button[data-style=slide-left] .ladda-spinner { - left: 100%; - margin-left: 0; -} - -.ladda-button[data-style=slide-left][data-loading] .ladda-label { - opacity: 0; - left: -100%; -} - -.ladda-button[data-style=slide-left][data-loading] .ladda-spinner { - opacity: 1; - left: 50%; -} - -.ladda-button[data-style=slide-right] { - overflow: hidden; -} - -.ladda-button[data-style=slide-right] .ladda-label { - position: relative; -} - -.ladda-button[data-style=slide-right] .ladda-spinner { - right: 100%; - margin-left: 0; - left: 16px; -} - -.ladda-button[data-style=slide-right][data-loading] .ladda-label { - opacity: 0; - left: 100%; -} - -.ladda-button[data-style=slide-right][data-loading] .ladda-spinner { - opacity: 1; - left: 50%; -} - -.ladda-button[data-style=slide-up] { - overflow: hidden; -} - -.ladda-button[data-style=slide-up] .ladda-label { - position: relative; -} - -.ladda-button[data-style=slide-up] .ladda-spinner { - left: 50%; - margin-left: 0; - margin-top: 1em; -} - -.ladda-button[data-style=slide-up][data-loading] .ladda-label { - opacity: 0; - top: -1em; -} - -.ladda-button[data-style=slide-up][data-loading] .ladda-spinner { - opacity: 1; - margin-top: 0; -} - -.ladda-button[data-style=slide-down] { - overflow: hidden; -} - -.ladda-button[data-style=slide-down] .ladda-label { - position: relative; -} - -.ladda-button[data-style=slide-down] .ladda-spinner { - left: 50%; - margin-left: 0; - margin-top: -2em; -} - -.ladda-button[data-style=slide-down][data-loading] .ladda-label { - opacity: 0; - top: 1em; -} - -.ladda-button[data-style=slide-down][data-loading] .ladda-spinner { - opacity: 1; - margin-top: 0; -} - -.ladda-button[data-style=zoom-out] { - overflow: hidden; -} - -.ladda-button[data-style=zoom-out] .ladda-spinner { - left: 50%; - margin-left: 32px; - transform: scale(2.5); -} - -.ladda-button[data-style=zoom-out] .ladda-label { - position: relative; - display: inline-block; -} - -.ladda-button[data-style=zoom-out][data-loading] .ladda-label { - opacity: 0; - transform: scale(.5); -} - -.ladda-button[data-style=zoom-out][data-loading] .ladda-spinner { - opacity: 1; - margin-left: 0; - transform: none; -} - -.ladda-button[data-style=zoom-in] { - overflow: hidden; -} - -.ladda-button[data-style=zoom-in] .ladda-spinner { - left: 50%; - margin-left: -16px; - transform: scale(.2); -} - -.ladda-button[data-style=zoom-in] .ladda-label { - position: relative; - display: inline-block; -} - -.ladda-button[data-style=zoom-in][data-loading] .ladda-label { - opacity: 0; - transform: scale(2.2); -} - -.ladda-button[data-style=zoom-in][data-loading] .ladda-spinner { - opacity: 1; - margin-left: 0; - transform: none; -} - -.ladda-button[data-style=contract] { - overflow: hidden; - width: 100px; -} - -.ladda-button[data-style=contract] .ladda-spinner { - left: 50%; - margin-left: 0; -} - -.ladda-button[data-style=contract][data-loading] { - border-radius: 50%; - width: 52px; -} - -.ladda-button[data-style=contract][data-loading] .ladda-label { - opacity: 0; -} - -.ladda-button[data-style=contract][data-loading] .ladda-spinner { - opacity: 1; -} - -.ladda-button[data-style=contract-overlay] { - overflow: hidden; - width: 100px; - box-shadow: 0 0 0 2000px transparent; -} - -.ladda-button[data-style=contract-overlay] .ladda-spinner { - left: 50%; - margin-left: 0; -} - -.ladda-button[data-style=contract-overlay][data-loading] { - border-radius: 50%; - width: 52px; - box-shadow: 0 0 0 2000px rgba(0, 0, 0, .8); -} - -.ladda-button[data-style=contract-overlay][data-loading] .ladda-label { - opacity: 0; -} - -.ladda-button[data-style=contract-overlay][data-loading] .ladda-spinner { - opacity: 1; -} - -.alert, -.membership__discount { - margin: 0 auto; -} - -.alert.membership__discount--workshop, -.membership__discount.membership__discount--workshop { - margin: 1em auto; -} - -.alert small, -.membership__discount--note { - background-color: #fff2cc; - border-radius: 11px; - font-size: .8em; - padding: .75em 1em; - display: block; - margin-top: 0; - line-height: 1.5em; - color: #333; - text-align: center; - transition: all .3s ease-in-out; -} - -.alert small::before, -.membership__discount--note::before { - content: "🎪"; - margin-right: .35em; -} - -.membership__discount--note__simplified { - text-align: left; -} - -.membership__discount--note__simplified::before { - display: none; -} - -.alert small a, -.membership__discount .membership__discount--note a { - text-shadow: none; - color: #006fc6; -} - -.alert small strong, -.membership__discount .membership__discount--note strong { - color: #d33a2c; -} - -.alert:not(.alert__centered) small { - text-align: left; -} - -.alert small:before { - display: none; -} - -ul.leaders { - max-width: 30em; - padding: 1em 0 1em 0; - margin: 0; - overflow-x: hidden; - list-style: none; -} - -ul.leaders .leaders__header { - font-weight: 700; - color: #d33a2c; - font-size: 1.05em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 ul.leaders .leaders__header { - font-family: Mija; -} - -ul.leaders .leaders__header::before { - color: #d33a2c; -} - -ul.leaders li { - padding-left: 0; -} - -ul.leaders li::before { - float: left; - width: 0; - white-space: nowrap; - color: #ccc; - font-weight: 400; - content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "; -} - -ul.leaders span:first-child { - padding-right: .25em; - background: #fff; -} - -ul.leaders span+span { - float: right; - padding-left: .33em; - background: #fff; -} - -.featured-articles-container { - position: relative; - background-color: #d33a2c; - display: flex; - flex-wrap: wrap; - min-height: 0; -} - -.featured-articles__teaser { - text-align: center; - margin-top: 50px; - position: absolute; - left: 50%; - margin-left: -190px; - width: 15em; - letter-spacing: -1px; - z-index: 11; -} - -.featured-articles__teaser { - font-size: 1.625em; -} - -@media screen and (min-width:40em) { - .featured-articles__teaser { - font-size: calc(.625vw + 1.375em); - } -} - -@media screen and (min-width:80em) { - .featured-articles__teaser { - font-size: 1.875em; - } -} - -.featured-articles__teaser span { - background-color: #fff; - padding: .3em .4em; - line-height: 1.5em; - -webkit-box-decoration-break: clone; - box-decoration-break: clone; -} - -.featured-articles__teaser.sticky { - position: fixed; - margin-top: 0; - top: 50px; - left: initial; - right: initial; - z-index: 11; - box-shadow: none; -} - -.enhanced .featured-articles__teaser { - left: 0; - margin-left: 50%; - transform: translateX(-50%); -} - -@media all and (max-width:350px) { - .featured-articles__teaser { - width: 300px; - left: 50%; - margin-left: -150px; - } - - .enhanced .featured-articles__teaser { - left: 0; - margin-left: 0; - transform: none; - width: 100%; - text-align: center; - } -} - -@media all and (max-width:1025px) { - .featured-articles__teaser { - top: 1em; - margin-top: 20px; - } - - .featured-articles__teaser.sticky { - position: absolute; - } -} - -.featured-articles__teaser::after { - content: ""; - background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-repeat: no-repeat; - background-position: 60% 30%; - background-size: 60% auto; - display: block; - width: 100%; - height: 100%; - position: absolute; - top: 100%; - opacity: .9; - pointer-events: none; -} - -.featured-article { - color: #fff; - position: relative; - font-weight: 700; - display: block; - padding: 10em 5vw 7em; - display: flex; - flex-direction: column; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .featured-article { - font-family: Mija; -} - -.featured-article:after, -.featured-article:before { - content: " "; - display: table; - clear: both; -} - -@media all and (max-width:1919px) { - - .featured-article:nth-of-type(3), - .featured-article:nth-of-type(4) { - padding-top: 3em; - } -} - -@media all and (max-width:1025px) { - .featured-article { - padding: 3em 5vw 4em; - } -} - -@media (max-width:64em) { - - .featured-article:first-of-type, - .featured-article:nth-of-type(2) { - padding-top: 10em; - } -} - -@media all and (max-width:767px) { - .featured-article { - min-width: 100%; - } - - .featured-article:nth-of-type(2) { - padding-top: 3em; - } -} - -.featured-article a { - background: 0 0; - text-shadow: none; - color: inherit; - padding: 0; - color: inherit; - position: relative; - z-index: 1; -} - -.featured-article:nth-of-type(3n + 1) { - background-color: #bc3428; -} - -.featured-article:nth-of-type(3n + 2) { - background-color: #c7372a; -} - -.featured-article:nth-of-type(3n + 3) { - background-color: #b13125; -} - -@media all and (min-width:768px) { - .featured-article { - width: 50%; - } -} - -@media all and (min-width:1920px) { - .featured-article { - width: 33.33%; - } - - .featured-article:nth-of-type(3n + 3) { - display: none; - } -} - -@media all and (min-width:3000px) { - .featured-article { - width: 25%; - } - - .featured-article:nth-of-type(3n + 3) { - display: block; - } -} - -.featured-article__tags { - clear: both; - padding-top: 1em; - margin: 1em 0; - padding-left: 0; - line-height: 1.8; -} - -.featured-article .wrote { - font-style: italic; - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .featured-article .wrote { - font-family: Elena; -} - -.featured-article__tag { - margin: 0; - margin-right: 1em; - padding: 0; - font-size: .8em; - line-height: 1.6; - font-weight: 700; - display: inline-block; - white-space: nowrap; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .featured-article__tag { - font-family: Mija; -} - -.featured-article__tag__count { - color: inherit; - font-weight: 700; - font-size: .7em; - position: relative; - top: -.5em; -} - -.featured-article__time .article-header--meta-item__date, -.featured-article__time time { - display: none; - vertical-align: middle; - color: #390c09; -} - -.featured-article__time .article-header--meta-item__date::before, -.featured-article__time time::before { - content: ""; - display: inline-block; - vertical-align: middle; - height: 2px; - background-color: #390c09; - width: 70px; - margin-right: .5em; - font-weight: 400; -} - -@media all and (max-width:1200px) { - - .featured-article__time .article-header--meta-item__date, - .featured-article__time time { - display: none; - } -} - -.featured-article__intro { - display: inline-block; - float: none; - vertical-align: middle; - white-space: initial; - margin: 1em 0 0 .6em; -} - -a.featured-article__author-name { - color: #fff; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.featured-article__title { - margin: .5em 0 -.25em; -} - -.featured-article__title code { - color: inherit; - text-shadow: inherit; -} - -@media screen and (-ms-high-contrast:active), -screen and (-ms-high-contrast:none) { - .featured-article__title .featured-article__title__a { - font-weight: 600; - } -} - -.featured-article__title .featured-article__title__a { - color: #fff; - text-shadow: none; - background: 0 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - position: static; -} - -.featured-article__title .featured-article__title__a:before { - content: ""; - display: block; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 0; -} - -.featured-article__title .featured-article__title__a::after { - content: "→"; - display: block; - width: 100px; - color: #fff; - font-size: 1em; - padding: 0; - position: absolute; - bottom: 1em; -} - -a.featured-article__comments-count { - display: inline-block; - vertical-align: middle; - color: #fff; - line-height: 1; - padding: 5px; - font-size: .35em; - margin: .625em 0; - padding-left: 1.75em; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNyAyOC43MyIgd2lkdGg9IjI4cHgiIGhlaWdodD0iMjhweCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5jb21tZW50PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik05NjAuMzMgMjUyLjMzaC00LjUybC4wNiA3LjczLTYuNjktNy43M2gtOS44NWEzIDMgMCAwIDEtMy0zdi0xNWEzIDMgMCAwIDEgMy0zaDIxYTMgMyAwIDAgMSAzIDN2MTVhMyAzIDAgMCAxLTMgM3oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC05MzYuMzMgLTIzMS4zMykiLz48L3N2Zz4=); - background-position: left top 70%; - background-size: 1.25em auto; - background-repeat: no-repeat; -} - -@media (max-width:40em) { - a.featured-article__comments-count { - font-size: .55em; - margin: .625em .25em; - } -} - -.membership-popup { - z-index: 1; - padding: 1.5em 0; - background: #282634; - background-image: linear-gradient(#282634, #123456); - color: #fff; - position: relative; -} - -.membership-popup a:active, -.membership-popup a:focus { - outline: 3px dotted #e7e7e7; -} - -.membership-popup .container { - display: flex; - justify-content: flex-start; - align-items: center; - flex-direction: column; - max-width: 55em; -} - -@media all and (min-width:850px) { - .membership-popup .container { - flex-direction: row; - } -} - -.membership-popup .membership-popup__content { - width: 100%; -} - -@media all and (min-width:850px) { - .membership-popup .membership-popup__content { - width: calc(70% - 2vw); - margin-bottom: calc(1em + .5vw); - padding-right: 4em; - } -} - -.membership-popup .membership-popup__illustration { - position: relative; - order: -1; -} - -.membership-popup .membership-popup__illustration::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(/images/shadow.png); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; -} - -.membership-popup .membership-popup__illustration a { - background: 0 0; -} - -@media all and (min-width:850px) { - .membership-popup .membership-popup__illustration { - order: 0; - text-align: center; - max-width: 300px; - align-self: flex-start; - position: relative; - top: -4em; - } -} - -.membership-popup p a { - color: #eee; -} - -.membership-popup ul { - color: #e7e7e7; - list-style-image: url(/images/bullet--white.svg); -} - -.membership-popup li a { - color: #fff; - font-weight: 700; -} - -.membership-popup .btn { - margin: .75em 0 0 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .5); -} - -.membership-popup__close-button { - background: 0 0; - border: none; - position: absolute; - top: 1em; - right: 1em; - display: none; -} - -.membership-popup__close-button .x { - fill: #666; -} - -.membership-popup__close-button:focus .x, -.membership-popup__close-button:hover .x { - fill: #e33b2a; - transition: fill .1s ease-out; -} - -.membership-popup__close-button:active, -.membership-popup__close-button:focus { - outline: 3px dotted #e7e7e7; -} - -.enhanced .membership-popup__close-button { - display: block; -} - -.promo-box { - --promo-background: #d33a2c; - --promo-text: white; - --promo-highlight: #b13125; - --promo-highlight-text: white; - --promo-highlight--hover: #87251c; - --promo-shadow: #350f0b; -} - -.promo-box--green { - --promo-background: #f1fdf8; - --promo-text: #333; - --promo-highlight: #18a46f; - --promo-highlight-text: #fff; - --promo-highlight--hover: #18a46f; -} - -.promo-box--lightyellow { - --promo-background: #fdffe5; - --promo-text: #000; - --promo-highlight: #ff6411; - --promo-highlight--hover: #ff6411; -} - -.promo-box--blue { - --promo-background: #e7f8ff; - --promo-text: #000; - --promo-highlight-text: #e7f8ff; - --promo-highlight: #006fc6; - --promo-highlight--hover: #006fc6; -} - -.promo-box--red { - --promo-background: #ffe5e2; - --promo-text: #000; - --promo-highlight: #e62143; - --promo-highlight--hover: #e62143; -} - -.promo-box--lightgreen { - --promo-background: #e3f7e5; - --promo-text: #000; - --promo-highlight: #41b14f; - --promo-highlight--hover: #41b14f; -} - -.promo-box { - background: var(--promo-background); - color: var(--promo-text); - position: relative; - padding: 125px 1.5em 2em 1.5em; - margin-top: 125px; - text-align: center; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - border-radius: 11px; - width: 100%; -} - -.promo-box--nl-page { - padding: 2em; - margin-top: 0; -} - -.article--grid .promo-box__image-link, -.promo-box__image-link { - position: absolute; - display: flex; - top: 0; - padding: 0; - left: 50%; - transform: translate(-50%, -50%); - width: 250px; - height: 250px; - text-decoration: none; - background: 0 0; - align-items: center; - justify-content: center; -} - -.promo-box__image { - width: 100%; -} - -.promo-box__cta { - background: #fff; - color: #d33a2c; - text-decoration: none; - padding: .5em .8em; - border-radius: 11px; - box-shadow: 0 0 1px 1px rgba(0, 0, 0, .15); - background-image: none; - font-weight: 700; - font-size: 1.2em; - margin: 0; - box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .12); - transition: background .4s ease-in-out, color .4s ease-in-out; - position: relative; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .promo-box__cta { - font-family: Mija; -} - -.promo-box__cta:active, -.promo-box__cta:focus { - outline: 0; - background: #d33a2c; - color: #fff; - box-shadow: inset 0 3px 3px rgba(0, 0, 0, .3); - top: 1px; -} - -.promo-box__heading { - line-height: 1.2; - font-size: 1.5em; - font-weight: 700; - margin: 1.25em 0 0 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .promo-box__heading { - font-family: Elena; -} - -.promo-box__button { - background: var(--promo-highlight); - border-radius: 11px; - padding: .8em .5em; - font-size: 1.15em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); - color: #fff; - font-weight: 700; - display: flex; - justify-content: center; - width: 100%; - transition: all .2s ease-in-out; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .promo-box__button { - font-family: Mija; -} - -.promo-box__button:focus, -.promo-box__button:hover { - background: var(--promo-highlight--hover); -} - -.promo-box__button:active, -.promo-box__button:focus, -.promo-box__button:hover { - border-bottom: none; - cursor: pointer; - border-color: #dadada; -} - -.promo-box__button:active, -.promo-box__button:focus { - outline: 0; - box-shadow: inset 0 3px 3px rgba(0, 0, 0, .3); -} - -.promo-box__footer { - color: var(--promo-highlight-text); - line-height: 1.5em; - margin-top: 1em; -} - -.promo-box--smashing-tv__figure { - margin-bottom: -2em; -} - -.promo-box--smashing-tv__figure a { - background-image: none; -} - -.col--article--meow { - color: #fff; - flex: 2; - flex-direction: column; - padding: 0; - font-size: 1em; - flex-basis: 100%; -} - -.col--article--meow small a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #666; - text-decoration-color: #666; -} - -.col--article--grid.col--article--meow__membership { - margin-bottom: calc(1.5em + 3vw); -} - -.col--article--meow__membership { - border-radius: 11px; -} - -@media all and (min-width:750px) { - .col--article--meow__membership { - min-width: 21em; - } -} - -.col--article--meow__membership.article--grid { - padding-bottom: 50px; -} - -.col--article--meow__membership .meow__illustration--nosplit { - padding-bottom: 1em; -} - -.col--article--meow__membership .meow__content { - padding: 0 1.5em 0 1.5em; -} - -.meow__masthead { - text-align: center; - display: flex; - flex-direction: column; - flex-wrap: nowrap; - align-items: center; - justify-items: center; -} - -.meow__masthead .col--article--meow { - color: #fff; -} - -.meow__masthead .h2, -.meow__masthead h2 { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.meow__illustration--split { - background-color: #fff; - padding: 2em; - text-align: center; -} - -.meow__illustration--split img { - box-shadow: none; -} - -@media all and (min-width:1000px) { - .meow__illustration--split img { - max-width: 22em; - } -} - -@media all and (max-width:1000px) { - .meow__illustration--split img { - max-width: 18em; - } -} - -@media all and (max-width:500px) { - .meow__illustration--split img { - max-width: 70%; - } -} - -.meow__illustration a { - background-image: none; -} - -.meow__illustration--nosplit { - max-width: 12em; - padding-top: 1em; - padding-bottom: 2em; -} - -.meow__content { - padding: 2em 1.5em 2em 1.5em; - text-align: center; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - border-radius: 11px; - background-color: #d33a2c; - width: 100%; -} - -.meow__content .meow__intro { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - max-width: 30em; -} - -.meow__content:not(.meow__content--small) a:not(.btn) { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #e58980; - text-decoration-color: #e58980; -} - -.meow__content small { - font-size: calc(.7em + .1vw); - padding: 1.5em 1.5em 0 1.5em; - line-height: 1.5; - color: #fff; - z-index: 2; -} - -.meow__content small.meow__content--membership-box { - padding-top: .5em; - color: #fff; -} - -.meow__content a.btn { - margin: .5em 0; -} - -.col--article--meow .nl__form-wrapper, -.meow__content--small .nl__form-wrapper { - margin-right: 0; -} - -.col--article--meow .nl__form .form__field, -.meow__content--small .nl__form .form__field { - margin-bottom: 0; -} - -.col--article--meow .nl__form, -.meow__content--small .nl__form { - display: flex; - flex-direction: row; - justify-content: center; - align-items: flex-start; - flex-wrap: wrap; -} - -.col--article--meow .nl__form .form__field__label, -.meow__content--small .nl__form .form__field__label { - color: #333; - top: calc((4rem + 1vw)/ 7); -} - -@media (min-width:1024px) { - - .col--article--meow .nl__form .form__field__label, - .meow__content--small .nl__form .form__field__label { - top: calc((2.6rem + 1vw)/ 7); - } -} - -@media (min-width:1450px) and (max-width:1600px) { - - .col--article--meow .nl__form .form__field__label, - .meow__content--small .nl__form .form__field__label { - font-size: .75em; - top: -.15rem; - } -} - -.col--article--meow small br, -.meow__content--small small br { - display: none; -} - -.meow__content--small .nl__form button.btn:active, -.meow__content--small .nl__form button.btn:focus { - position: relative; - top: 0; - color: #fff; -} - -.col--article--meow .nl__form button.btn:active, -.col--article--meow .nl__form button.btn:focus { - background-color: #2da2c5; - color: #fff; -} - -@media all and (min-width:1100px) { - .full-width-panel.meow__illustration--nosplit { - max-width: 16em; - } - - .col--article--meow .nl__form, - .meow__content--small .nl__form { - width: 100%; - } - - .col--article--meow small br, - .meow__content--small small br { - display: block; - } -} - -@media all and (min-width:1600px) { - .col--article--meow { - flex-basis: 100%; - } -} - -@media all and (min-width:750px) { - .col--article--meow { - flex-basis: auto; - } -} - -.full-width-panel { - position: relative; - text-align: center; - overflow: hidden; - color: #fff; - width: 100%; -} - -.full-width-panel .meow__content { - max-width: 600px; -} - -.full-width-panel .nl__form-wrapper { - width: 90%; -} - -.full-width-panel .nl__form { - flex-wrap: nowrap; - width: 100%; -} - -.full-width-panel .nl__form .form__field__input { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - border-right: 1px solid #bbb; -} - -.full-width-panel .nl__form button.btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - border-left-width: 0; -} - -.full-width-panel small br { - display: block; -} - -.full-width-panel--red { - background-color: #d33a2c; - padding: 3.5em 0; -} - -.meow__content--large .nl__form-wrapper button.btn::after, -.meow__content--small .nl__form-wrapper button.btn::after, -.promo-newsletter--article .btn--promo-newsletter::after, -.promo-newsletter--newsletter .btn--promo-newsletter::after { - content: "190.000 friends"; - font-feature-settings: initial; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - display: inline; - white-space: pre; - line-height: 1.6em; - font-size: .9em; -} - -.meow__content--large .nl__form__content .form__field__label, -.meow__content--small .nl__form__content .form__field__label { - top: calc(.3rem + .2vw); - left: 1rem; - font-size: calc(.9em + .1vw); -} - -@media screen and (min-width:64rem) { - - .meow__content--large .nl__form__content .form__field__label, - .meow__content--small .nl__form__content .form__field__label { - top: calc(.2rem + .2vw); - } -} - -@media all and (max-width:380px) { - - .meow__content--large .nl__form__content .form__field__label, - .meow__content--small .nl__form__content .form__field__label { - font-size: calc(.75em + .1vw); - } -} - -.meow__content--large .nl__form__content.float .form__field__label, -.meow__content--small .nl__form__content.float .form__field__label { - top: calc(.5rem + .1vw); - left: 1.15rem; - font-size: .75em; -} - -@media screen and (min-width:64rem) { - - .meow__content--large .nl__form__content.float .form__field__label, - .meow__content--small .nl__form__content.float .form__field__label { - top: calc(.1rem + .1vw); - } -} - -.btn span.nl__form__arrow { - color: inherit; - margin-left: .35em; - margin-right: .25em; -} - -@media all and (min-width:1101px) { - .col--article--meow .nl__form { - flex-wrap: nowrap; - } -} - -.meow__content--large .meow__illustration { - width: 100%; -} - -.meow__content--large .meow__illustration--nosplit { - max-width: calc(20em + 4vw); -} - -@media all and (min-width:600px) { - .meow__content--large small br { - display: block; - } -} - -.meow__content--large .nl__form input[type=email] { - border: 1px solid transparent; - margin-bottom: 0; -} - -.meow__content--large .nl__form .nl__form__content, -.meow__content--large .nl__form button.btn { - max-width: 75%; -} - -.meow__content--large .nl__form .nl__form__content::after, -.meow__content--large .nl__form button.btn::after { - display: none; -} - -@media all and (min-width:1100px) { - - .meow__content--large .nl__form .nl__form__content, - .meow__content--large .nl__form button.btn { - max-width: 60%; - } -} - -.meow__content--large .nl__form button.btn { - white-space: nowrap; - min-height: calc(3rem + 1vw); -} - -@media all and (max-width:1100px) { - .meow__content--large .nl__form button.btn { - background-color: #d33a2c; - color: #fff; - border: 3px solid #fff; - } -} - -.meow__content--large .nl__form button.btn span { - display: inline; -} - -@media all and (max-width:1100px) { - .meow__content--large .nl__form button.btn::after { - font-size: 1em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - } - - .meow__content--large .nl__form button.btn:active:not(.disabled) .nl__form__arrow, - .meow__content--large .nl__form button.btn:focus:not(.disabled) .nl__form__arrow { - color: inherit; - } -} - -@media all and (min-width:1101px) { - .meow__content--large .nl__form button.btn { - border-left: 1px solid #ddd; - } - - .meow__content--large .nl__form button.btn::after { - display: none; - } -} - -.meow__content--large .nl__form button.btn .disabled.nl__form__arrow, -.meow__content--large .nl__form button.btn .nl__form__arrow { - color: #fff; -} - -.meow__content--large .nl__form button.btn:not(.disabled) .nl__form__arrow { - color: inherit; -} - -.meow__content--large .nl__form .nl__form__content .form__field__label { - top: calc((2rem + 1vw)/ 7); -} - -.meow__content--small { - background: #f7f7f7; - text-align: left; - margin: 2em auto; - padding: 2em 2em 1em 2em; - position: relative; -} - -@media all and (max-width:1099px) { - .meow__content--small { - display: none; - } -} - -.meow__content--small small { - padding: 0 0 1.5em 0; - text-align: center; - color: #666; -} - -.meow__content--small .meow__intro { - text-shadow: none; - text-align: left; -} - -.meow__content--small .meow__content__picture { - transition: width .3s ease-in-out; - top: -4.5vw; - width: calc(40% + .5vw); -} - -@media all and (max-width:779px) { - .meow__content--small .meow__content__picture { - display: none; - } -} - -@media (max-width:64rem) { - .meow__content--small .meow__content__picture { - max-width: 120px; - position: absolute; - top: -45px; - right: calc(5px + 2.5vw); - } -} - -@media all and (min-width:1025px) { - .meow__content--small .meow__content__picture { - float: right; - padding: 0 0 .25em calc(.6em + .5vw); - shape-outside: circle(5vw); - } -} - -.meow__content--small .nl__form-wrapper { - width: 100%; - margin: 0 auto; - text-align: center; -} - -.meow__content--small .nl__form-wrapper label { - padding-top: 5px; -} - -.meow__content--small .nl__form-wrapper .form__field__input { - border: 1px solid #ccc; - padding: .75em 2em .8em 1em; -} - -.meow__content--small .nl__form-wrapper button.btn { - width: 100%; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.meow__content--small .nl__form-wrapper button.btn::after { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -@media screen and (min-width:64rem) { - .meow__content--small .nl__form-wrapper { - transition: all .3s ease-in-out; - } - - .meow__content--small .nl__form-wrapper label { - padding-top: 0; - } -} - -.product-panel .nl__form button, -.product-panel .nl__form label { - display: inline-block; -} - -.product-panel .nl__form button { - padding: .45em 1em; - vertical-align: middle; -} - -.product-panel .nl__form label { - max-width: 60%; -} - -.product-panel .nl__form label.float input[type=email] { - padding: .75em 2em .85em 1em; -} - -.meow__content--inlined .meow__content { - left: auto; - display: block; -} - -.meow__content--inlined .meow__content small { - text-align: center; - display: block; -} - -.meow__content--inlined .meow__content .meow__content__picture { - max-width: 30%; -} - -@media (max-width:64rem) { - .meow__content--inlined .meow__content .meow__content__picture { - max-width: 15%; - } -} - -@media all and (min-width:1200px) { - .meow__content--inlined .meow__content .nl__form { - width: 130%; - max-width: 280%; - } -} - -@media all and (min-width:1350px) { - .meow__content--inlined .meow__content .nl__form { - margin-top: -1em; - } -} - -@media all and (max-width:1024px) { - .meow__content--inlined .meow__content .nl__form { - width: 100%; - } -} - -@media all and (max-width:680px) { - .input-wrapper--append { - flex-direction: column; - } - - .meow__content--large .nl__form .nl__form__content, - .meow__content--large .nl__form button.btn { - max-width: 100%; - } - - input.input--append { - border-radius: 11px; - } - - .meow__content--large .nl__form button.btn { - margin-top: .5em; - border-radius: 11px; - } - - .meow__content--homepage { - padding: 0; - } -} - -.internal__page__wrapper .meow__content--inlined .meow__content { - width: 100%; - max-width: 100%; -} - -.internal__page__wrapper .meow__content--inlined .meow__content .nl__form { - width: 100%; -} - -.promo-box__image-link { - background-image: none; - text-decoration: none; -} - -.meow__content--homepage .nl__form button.btn:active, -.meow__content--homepage .nl__form button.btn:focus { - background-color: #0168b8; -} - -.conf-panel { - position: relative; - color: #fff; - text-align: center; - overflow: hidden; - padding: 3.5em 0; -} - -.conf-panel--blue { - background-color: #0085ff; - background-image: linear-gradient(#007aea 20%, #0085ff 100%); -} - -.conf-panel--blue ::-moz-selection { - color: #fff; - background: #0e6fc7; - text-shadow: none; -} - -.conf-panel--blue ::selection { - color: #fff; - background: #0e6fc7; - text-shadow: none; -} - -.conf-panel--blue ::-moz-selection { - color: #fff; - background: #2da2c5; - text-shadow: none; -} - -.conf-panel--pink { - background-color: #1b75bb; - background-image: linear-gradient(#ce05a9 10%, #3e62ff 100%); -} - -.conf-panel--pink ::-moz-selection { - color: #fff; - text-shadow: none; - background: #2da2c5; -} - -.conf-panel--pink ::selection { - color: #fff; - text-shadow: none; - background: #2da2c5; -} - -.conf-panel--pink ::-moz-selection { - color: #fff; - text-shadow: none; - background: #2da2c5; -} - -.conf-panel--green { - background-color: #009245; - background-image: linear-gradient(#009245 50%, #8bc53f 100%); -} - -.conf-panel--darkgreen { - background-color: #76d0a4; - background-image: linear-gradient(#76d0a4 50%, #7ab99a 100%); - text-shadow: 1px 1px 1px rgba(0, 0, 0, .6); -} - -.conf-panel__meta--darkgreen { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .4); -} - -.conf-panel--green ::-moz-selection { - color: #fff; - background: #009245; - text-shadow: none; -} - -.conf-panel--green ::selection { - color: #fff; - background: #009245; - text-shadow: none; -} - -.conf-panel--green ::-moz-selection { - color: #fff; - background: #009245; - text-shadow: none; -} - -.conf-panel--darkblue { - background-color: #1b71bb; - background-image: linear-gradient(#1b71bb 45%, #4399d9 100%); - text-shadow: 1px 1px 1px rgba(0, 0, 0, .6); -} - -.conf-panel__meta { - margin-bottom: 1.87em; -} - -.conf-panel__meta { - color: #fff; - display: block; - letter-spacing: 2px; - text-transform: uppercase; - font-size: .8em; - font-weight: 700; -} - -@media (max-width:40em) { - .conf-panel__meta { - font-size: .6em; - } -} - -.conf-panel__meta .bullet { - margin: 0 .8em; - color: #47aeff; -} - -.conf-panel__meta .conf-bullet { - margin: 0 .8em; - color: #fff; -} - -.conf-panel__meta .article-header--meta-item__date, -.conf-panel__meta time { - color: inherit; - font-size: 1.3em; -} - -.conf-panel__conf-name { - color: #fff; -} - -.conf-panel__conf--blue-name { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.conf-panel__conf--darkgreen-name { - color: #182f23; - text-shadow: none; -} - -.conf-panel__conf--blue-name a { - padding: 20px 0; - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #55a6f1; - text-decoration-color: #55a6f1; - text-shadow: none; -} - -.conf-panel__conf--darkgreen-name a { - padding: 20px 0 25px 0; - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #adeccc; - text-decoration-color: #adeccc; - text-shadow: 1px 2px 2px #383636; - font-size: 1.1em; -} - -.conf-panel__conf--darkblue-name a { - padding: 20px 0 25px 0; - color: #fff; - text-decoration: none; - background-repeat: no-repeat; - background-position: center bottom 29%; - background-origin: padding-box; - transition: color .1s ease-out; - background-image: linear-gradient(#4399d9, #4399d9); - background-size: 100% 4px; - text-shadow: 1px 2px 2px #383636; - font-size: 1.1em; -} - -.conf-panel__conf--pink-name a { - padding: 30px 0; - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #ed60d3; - text-decoration-color: #ed60d3; -} - -.conf-panel__conf--green-name a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #74c49a; - text-decoration-color: #74c49a; - transition: color .1s ease-out; - padding: 20px 0; -} - -.conf-panel__desc { - max-width: 55vw; - margin: 1em auto 2em; - font-size: 1.2em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.conf-panel__desc a { - color: #fff; -} - -.conf-panel__desc--darkblue { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .5); -} - -.conf-panel__desc--darkgreen { - color: #111; - text-shadow: none; -} - -@media (max-width:64em) { - .conf-panel__desc { - max-width: 80vw; - } -} - -@media (max-width:40em) { - .conf-panel__desc { - max-width: 90vw; - } -} - -.conf-panel__image { - display: block; - width: 100%; - max-width: 920px; - margin: 2.5em auto; - margin-bottom: -4em; - height: auto; -} - -.conf-panel__image--green { - margin-bottom: -3.5em; -} - -.author { - padding: 0; - margin: 0 0 .5em 0; - display: block; - --author-bio-border-width: 8px; -} - -@media screen and (min-width:40em) { - .author { - display: flex; - --author-bio-border-width: 5px; - } -} - -@media screen and (min-width:64em) { - .author { - display: block; - } -} - -@media screen and (min-width:40em) { - .author__desc { - margin-left: 1em; - } -} - -@media screen and (min-width:64em) { - .author__desc { - margin-left: 0; - } -} - -.author>a { - display: block; - width: 100%; - padding: 0; - background: 0 0; - text-shadow: none; - color: inherit; -} - -.author .show-more-link { - font-size: .9em; - display: inline; - color: #666; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: currentColor; - text-decoration-color: currentColor; - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .author .show-more-link { - font-family: Mija; -} - -.author--small { - width: 80px; - max-width: 100%; - min-width: 60px; - float: left; -} - -.author--small:after, -.author--small:before { - content: " "; - display: table; - clear: both; -} - -@media all and (max-width:480px) { - .author--small { - margin-right: .5em; - width: 60px; - } -} - -.author--small .author__image, -.col-1 .author__image { - border-width: 5px; - border-radius: 11px; -} - -.author--medium { - width: 125px; -} - -.article--multi__authors .show-more-link { - display: inline; -} - -.header__search-results .author__image { - border-color: #fff; -} - -.author__image { - transform-origin: 0 100%; - overflow: hidden; - border-radius: 11px; -} - -.author__image img { - display: block; - width: 100%; - border-radius: 11px; - transition: height .2s ease-in-out; - -o-object-fit: cover; - object-fit: cover; -} - -.author__image .js-gravatar { - width: 100%; -} - -.author__image { - transform: translateX(15%) rotateZ(0) scale(.87); - transition: all .3s ease-in-out; - background: #d33a2c; - background: #d33a2c; - border-style: solid; - border-color: #d33a2c; - border-width: var(--author-bio-border-width, 8px); - border-radius: 22px; -} - -.author__desc { - font-size: .8em; - position: relative; - font-style: normal; - color: #333; - padding: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .author__desc { - font-family: Elena; -} - -.author__desc p { - margin: 1em 0; -} - -.author__desc__title { - color: #666; - text-transform: uppercase; - letter-spacing: 2px; - font-size: .9em; - margin: 0; - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .author__desc__title { - font-family: Elena; -} - -.author__name { - color: #000; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #2da2c5; - text-decoration-color: #2da2c5; - padding: 10px 0; - transition: color .1s ease-out; -} - -.author__image-wrapper { - top: 0; - left: 0; - border-radius: 11px; - overflow: visible; - position: relative; -} - -.author__image-wrapper .author__image { - transform: translateX(15%) rotateZ(-11deg) scale(.87); - transition: transform .2s ease-out; -} - -.author__image-wrapper .author__image img { - transition: transform .2s ease-out; - transform-origin: 0 100%; - transform: scale(1.2) translateX(-16%) translateY(-3%) rotateZ(11deg); -} - -.author__image-wrapper::after { - transition-duration: .2s; - opacity: 1; - transform: scaleX(1); -} - -.author__image-wrapper::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; -} - -.author__image-wrapper:hover .author__image, -a:active .author__image-wrapper .author__image, -a:focus .author__image-wrapper .author__image, -a:hover .author__image-wrapper .author__image { - transform: translateX(15%) rotateZ(0) scale(.87); -} - -.author__image-wrapper:hover img, -a:active .author__image-wrapper img, -a:focus .author__image-wrapper img, -a:hover .author__image-wrapper img { - transform: scale(1.2) translateX(-10%) translateY(6%) rotateZ(0); -} - -.author__image-wrapper:hover::before, -a:active .author__image-wrapper::before, -a:focus .author__image-wrapper::before, -a:hover .author__image-wrapper::before { - opacity: 0; - transform: scaleX(0); -} - -.author--full, -.author--full--small { - margin-right: 0; - width: 100%; -} - -@media all and (max-width:480px) { - - .author--full, - .author--full--small { - width: 100%; - max-width: 250px; - margin: 0 auto; - } -} - -.author__image-wrapper.tilt .author__image { - transform: translateX(15%) rotateZ(-11deg) scale(.87); - transition: transform .2s ease-out; -} - -.author__image-wrapper.tilt .author__image img { - transition: transform .2s ease-out; - transform-origin: 0 100%; - transform: scale(1.2) translateX(-16%) translateY(-3%) rotateZ(11deg); -} - -.author__image-wrapper.tilt::after { - transition-duration: .6s; - opacity: 1; - transform: scaleX(1); -} - -.author>a:active .tilt, -.author>a:focus .tilt, -.author__image-wrapper.tilt:hover { - transition-duration: .2s; -} - -.author>a:active .tilt .author__image, -.author>a:focus .tilt .author__image, -.author__image-wrapper.tilt:hover .author__image { - transform: translateX(15%) rotateZ(0) scale(.87); - transition-duration: .2s; -} - -.author>a:active .tilt img, -.author>a:focus .tilt img, -.author__image-wrapper.tilt:hover img { - transform: scale(1.2) translateX(-10%) translateY(6%) rotateZ(0); - transition-duration: .2s; -} - -.author>a:active .tilt::before, -.author>a:focus .tilt::before, -.author__image-wrapper.tilt:hover::before { - opacity: 0; - transform: scaleX(0); - transition-duration: .2s; -} - -@media (max-width:40em) { - .author__desc { - width: 100%; - } -} - -.author__desc__image-placeholder { - background: #bc3428; - width: 100%; -} - -.author__desc__image-placeholder[data-src] { - min-height: 0; - padding-top: 100%; -} - -.author__desc__image-placeholder[src] { - padding-top: 0; -} - -.author__image-wrapper::before, -.books__book__image::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; -} - -.author--full--small>a { - width: 80px; - max-width: 100%; - min-width: 60px; -} - -@media all and (max-width:480px) { - .author--full--small>a { - min-width: 40px; - width: 50px; - } -} - -.author--full--small .author__desc { - margin-top: .5em; -} - -.author--white .author__image { - background-color: #fff; - border-color: #fff; -} - -.author--white .author__desc { - color: #fff; -} - -.author--white .author__desc a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; -} - -.author--white .author__desc__title { - color: #811d15; -} - -.author--light-grey .author__image { - background-color: #fff; - border-color: #d33a2c; -} - -.article-container .author--full>a { - width: auto; - margin-bottom: 3em; - margin-top: .5em; - max-width: 180px; - flex-basis: 100px; - flex-shrink: 0; -} - -@media screen and (min-width:48em) { - .article-container .author--full>a { - flex-basis: 160px; - } -} - -.article-container figure.limit-width img { - max-width: 500px; - margin: 0 auto; -} - -.l-author-bio { - display: flex; - flex-wrap: wrap; - align-items: center; -} - -.l-author-bio-content { - flex-grow: 1; - flex-shrink: 1; - flex-basis: 300px; -} - -.feature-panel-container { - grid-column-start: 3; - grid-column-end: 15; - margin-top: 5em; - margin-bottom: 2.5em; -} - -.feature-panel::before { - position: absolute; - left: 0; - transform: translate(0, -100%); - top: -12px; - content: "More after jump! Continue reading below ↓"; - font-size: .7em; - color: #666; - padding-bottom: 10px; - border-bottom: 8px solid #eee; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .feature-panel::before { - font-family: Mija; -} - -@media (min-width:1000px) { - .feature-panel::before { - width: 73%; - } -} - -.feature-panel { - position: relative; - border-radius: 11px; - padding: 2.5em 2em; - display: flex; - flex-wrap: wrap; - background-color: #f6f6f6; - background: radial-gradient(128.42% 48.36% at 72.89% 25.8%, rgba(89, 94, 94, .09) 0, rgba(89, 94, 94, 0) 100%); -} - -@media (min-width:1000px) { - .feature-panel { - padding: 2.5em 3.5em; - } -} - -.feature-panel--red::before { - display: none; -} - -.feature-panel--red { - display: flex; - background-color: #d33a2c; - border-radius: 0; - color: #fff; - padding: 2.5em 1em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -@media screen and (min-width:40em) { - .feature-panel--red { - padding: 2.5em 3.5em; - } -} - -.feature-panel-left-col, -.feature-panel-right-col { - flex-basis: 100%; - position: relative; - padding: 0; - flex-shrink: 0; -} - -.feature-panel-left-col h3 { - margin-top: 0; -} - -.feature-panel-right-col { - order: -1; - display: flex; - align-items: flex-start; - margin-bottom: 1em; - justify-content: center; - align-items: center; - margin-top: 2em; -} - -@media (min-width:800px) { - .feature-panel-left-col { - flex-basis: 65%; - } - - .feature-panel-right-col { - order: 0; - flex-basis: 35%; - margin: 0; - justify-content: center; - } -} - -.feature-panel-meta { - text-transform: uppercase; - letter-spacing: 2px; - font-size: .8em; - font-weight: 700; - display: block; - margin-bottom: .75em; -} - -.feature-panel-title a, -.feature-panel-title a:hover, -.feature-panel-title a:visited { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #ff958b; - text-decoration-color: #ff958b; - text-decoration-thickness: 4px; - padding: 20px 0; - text-underline-offset: initial; -} - -.feature-panel-description { - margin-bottom: calc(1em + .5vw); -} - -.feature-panel-description> :first-child { - margin-top: 0; -} - -.feature-panel-description> :last-child { - margin-bottom: 0; -} - -.feature-panel-image-link { - position: relative; - text-decoration: none; - width: 100%; - max-width: 210px; - transition: scale, opacity .2s ease-out; - padding-left: 2.5em; - background-image: none; -} - -.feature-panel-image-link::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; - top: 85%; - left: -33%; -} - -@media (min-width:1000px) { - .feature-panel-image-link { - position: absolute; - max-width: 19.375rem; - top: -160px; - right: 0; - } -} - -@media (min-width:1000px) { - .feature-panel--breakout-small .feature-panel-image-link { - top: -100px; - } -} - -.feature-panel-image-link:focus::before, -.feature-panel-image-link:hover::before { - transform: scaleX(0); - opacity: 0; -} - -.feature-panel-image { - width: 100%; - max-width: 19.375rem; - margin: 0 auto; - display: block; - transition: all .2s ease-out; - will-change: transform; - transform-origin: 0 100%; - transform: rotate(-11deg); -} - -.feature-panel-image-img { - height: auto; -} - -.feature-panel-image-link:focus .feature-panel-image, -.feature-panel-image-link:hover .feature-panel-image { - transform: rotate(0); -} - -.feature-panel-image img { - height: auto; - border-radius: 11px; -} - -.sponsor-panel { - display: flex; - justify-content: center; - align-items: center; -} - -.sponsor-panel-image { - display: none; -} - -@media screen and (min-width:1100px) { - .sponsor-panel-image { - display: block; - background-image: none; - margin-left: 1.5em; - flex: 1; - } -} - -.sponsor-panel-content { - flex: 3; -} - -.f-article-highlights { - display: flex; - flex-wrap: wrap; -} - -.f-article-highlights__person { - margin-bottom: 3em; -} - -.f-article-item { - flex-basis: 100%; -} - -@media screen and (min-width:64rem) { - .f-article-item { - flex-basis: 50%; - } -} - -.f-article-item .article--post__content { - width: 90%; -} - -.f-article-item .article--post { - margin: 2em 0; -} - -@media screen and (min-width:64rem) { - .f-article-item .article--post { - margin: 3em 0; - } -} - -.f-article-item:nth-child(1) .article--post, -.f-article-item:nth-child(2) .article--post { - margin-top: 0; -} - -.bio-image { - --bio-image-border-width: 5px; -} - -.bio-image__large .bio-image { - --bio-image-border-width: 8px; -} - -.bio-image, -.bio-image *, -.bio-image :after, -.bio-image :before { - box-sizing: border-box; -} - -.bio-image { - padding: 0; - margin: 0; - display: block; - width: auto; - height: auto; - border-radius: inherit; - position: relative; -} - -.bio-image::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transform-origin: 30% 50%; - pointer-events: none; - opacity: 1; - transition: opacity .3s ease-in-out; -} - -.bio-image:hover::before { - opacity: 0; -} - -.bio-image--white { - --bio-image-border-color: #fff; -} - -.bio-image--white a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; -} - -a.bio-image-link { - background: 0 0; - text-shadow: none; - color: inherit; - padding: 0; - display: block; - border-radius: inherit; - width: auto; - height: auto; -} - -a.bio-image-link::before { - display: block; - content: ""; - height: 120%; - width: 120%; - position: absolute; - top: -10%; - left: -12%; -} - -.bio-image-wrapper { - background: var(--bio-image-background-color, var(--bio-image-border-color, #d33a2c)); - border: solid var(--bio-image-border-width, 8px) var(--bio-image-border-color, #d33a2c); - border-radius: inherit; - transform: scale(.84) translateX(15%) rotateZ(calc(-1 * (11 * 1deg))); - transform-origin: 0 100%; - transition: transform .2s ease-out; - overflow: hidden; - width: auto; - height: auto; -} - -.bio-image-image { - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover; - display: block; - transform: scale(1.2) rotateZ(calc(11 * 1deg)); - transition: transform .2s ease-out; -} - -.bio-image-link:active .bio-image-wrapper, -.bio-image-link:focus .bio-image-wrapper, -.bio-image:hover .bio-image-wrapper { - transform: scale(.84) translateX(15%) rotateZ(0); -} - -.bio-image-link:active .bio-image-image, -.bio-image-link:focus .bio-image-image, -.bio-image:hover .bio-image-image { - transform: scale(1.2) rotateZ(0); -} - -.tilted-featured-article { - margin-top: 1em; - position: relative; - z-index: 1; -} - -.tilted-featured-article:after, -.tilted-featured-article:before { - content: " "; - display: table; - clear: both; -} - -.tilted-featured-article header:after, -.tilted-featured-article header:before { - content: " "; - display: table; - clear: both; -} - -.tilted-featured-article__teaser { - float: left; - margin: 2em 2em 0 0; - position: relative; -} - -.tilted-featured-article__teaser::before { - display: block; - content: ""; - height: 90%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; - width: 70%; - top: 94%; - left: -18%; -} - -.tilted-featured-article__title a:hover { - color: #d33a2c; -} - -.tilted-featured-article__teaser:active::before, -.tilted-featured-article__teaser:focus::before, -.tilted-featured-article__teaser:hover::before { - background: 0 0; -} - -.tilted-featured-article__teaser>a { - background: 0 0; -} - -.tilted-featured-article__teaser img { - transform-origin: 0 100%; - border-radius: 11px; - width: 100%; - will-change: transform; - transform: rotate(-11deg); - transition: transform .2s ease-out; -} - -.tilted-featured-article__teaser img:hover { - transform: rotate(0); -} - -@media all and (max-width:1024px) { - .tilted-featured-article__teaser { - display: none; - } -} - -@media all and (min-width:1025px) { - .tilted-featured-article__teaser { - width: 32%; - padding-left: 1%; - } -} - -.tilted-featured-article__content { - float: left; -} - -.tilted-featured-article__content p { - margin-top: 0; - color: #333; -} - -.tilted-featured-article__content .author { - width: 45px; - min-width: 0; - margin-right: .5em; -} - -.tilted-featured-article__content .author .author__image-wrapper { - min-width: 0; - min-height: auto; -} - -.tilted-featured-article__content .author .author__image-wrapper .author__image { - border-width: 4px; - border-radius: 3px; -} - -@media all and (max-width:1024px) { - .tilted-featured-article__content { - width: 100%; - } -} - -@media all and (min-width:1025px) { - .tilted-featured-article__content { - width: 50%; - padding: .25em 0; - } -} - -.tilted-featured-article__title { - font-size: 1.4em; - margin-bottom: 20px; -} - -.tilted-featured-article__title::before { - content: "Featured Article"; - text-transform: uppercase; - color: #666; - font-size: .45em; - display: block; - font-weight: 400; - letter-spacing: 2px; - padding: 3em 0 1.5em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .tilted-featured-article__title::before { - font-family: Elena; -} - -.tilted-featured-article__title a { - color: #333; - background: 0 0; - text-shadow: none; -} - -.tilted-featured-article__author-name { - color: #666; - font-weight: 700; - font-size: .75em; - float: left; - padding: .625em 3em 1.625em 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .tilted-featured-article__author-name { - font-family: Mija; -} - -.tilted-featured-article__author-name span { - color: #666; -} - -.pagination { - margin: 0; - margin: 2.5em auto 3em; - text-align: center; -} - -.pagination ul { - margin: 0 auto; - padding: 0; - list-style: none; - display: inline-block; -} - -.pagination ul:after, -.pagination ul:before { - content: " "; - display: table; - clear: both; -} - -.pagination ul li { - float: left; - flex: 1; - margin: .5em; - padding: 0; - text-align: center; - border-radius: 11px; - border: 1px solid #ddd; - width: 2.5em; - height: 2.5em; - color: #333; - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .pagination ul li { - font-family: Mija; -} - -.pagination ul li a { - text-decoration: none; - border-radius: 11px; - display: block; - width: 100%; - height: 100%; - color: inherit; - transition: none; -} - -.pagination ul li a:focus, -.pagination ul li a:hover { - background: #d33a2c; - background: #d33a2c; - color: #fff; - border-color: #d33a2c; -} - -.pagination ul li a:focus svg, -.pagination ul li a:hover svg { - fill: #fff; - stroke: #fff; -} - -.pagination ul li.pagination__ellipsis { - padding: .25em; -} - -.pagination ul li.pagination__current { - padding: .5em; - background: #ddd; - border-color: #ddd; - word-break: keep-all; -} - -.pagination ul li.pagination__current a:focus, -.pagination ul li.pagination__current a:hover { - background: #ddd; - color: #000; -} - -.pagination__next a, -.pagination__prev a { - padding: 0; -} - -.pagination__next a svg, -.pagination__prev a svg { - display: inline; - margin: .75em auto 0; - fill: #333; - stroke: #333; -} - -.dashboard .auth-modal-wrapper.auth-modal-wrapper--recover-password { - max-width: 600px; -} - -.dashboard__header { - background: #d33a2c; - padding-top: 0; - min-height: 15em; -} - -.dashboard__header a:not(.btn) { - text-shadow: none; - color: #fff; -} - -@media all and (min-height:750px) { - .dashboard__header { - min-height: 15em; - } -} - -.dashboard__empty-state { - text-align: center; - max-width: 800px; - margin: 1em auto 2em; - min-height: 50vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; -} - -.dashboard__empty-state h2 { - color: #f88040; -} - -.dashboard__empty-state img { - margin-top: 2em; -} - -.dashboard__header__greeting { - font-weight: 700; - color: #fff; - margin: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .dashboard__header__greeting { - font-family: Mija; -} - -.dashboard__header__greeting a { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - transition: color .1s ease-out; - padding: 15px 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.dashboard__header__actions { - display: flex; - justify-content: center; - flex-wrap: wrap; - margin: 1em 0; - padding: 0; - list-style: none; - font-size: .85em; - text-transform: uppercase; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .dashboard__header__actions { - font-family: Elena; -} - -.dashboard__header__actions:after, -.dashboard__header__actions:before { - content: " "; - display: table; - clear: both; -} - -.dashboard__header__actions .btn { - font-size: 1.4em; - text-transform: initial; -} - -.dashboard__header__actions li { - text-align: center; - font-size: .85em; - padding: 0; - color: #811d15; -} - -.dashboard__header__actions li:not(:last-child):after { - content: "●"; -} - -@media all and (min-width:480px) { - .dashboard__header__actions li { - float: left; - } -} - -.dashboard__header__actions a:not(.btn) { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; - padding: 10px 0; - transition: color .1s ease-out; - opacity: .8; - margin-right: 15px; - margin-left: 15px; - letter-spacing: 1px; - white-space: nowrap; - word-wrap: break-word; -} - -.dashboard__header__actions a:not(.btn):focus, -.dashboard__header__actions a:not(.btn):hover { - color: #000; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #000; - text-decoration-color: #000; - padding: 10px 0; - transition: color .1s ease-out; - opacity: 1; -} - -.dashboard__header__actions a:not(.btn).active { - color: #000; - -webkit-text-decoration-color: #000; - text-decoration-color: #000; -} - -@media (max-width:64em) { - .dashboard__header__actions li { - width: auto; - text-align: center; - } -} - -@media all and (max-width:400px) { - .dashboard__header__actions { - display: inline-block; - } -} - -.dashboard__header__tab { - flex: 1; - float: left; - background: #811d15; - color: #fff; - padding: 0; - text-transform: uppercase; - font-weight: 700; - margin: 0; - margin-right: 1em; - transition: all .2s ease-in-out; - border-radius: 11px 11px 0 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .dashboard__header__tab { - font-family: Mija; -} - -.dashboard__header__tab:focus, -.dashboard__header__tab:hover, -.dashboard__header__tab[aria-selected=true] { - background: #2da2c5; - color: #fff; -} - -.dashboard__header__tab:last-of-type { - margin-right: 0; -} - -.dashboard__header__tab:nth-of-type(3n + 1) { - background-color: #8a1f16; -} - -.dashboard__header__tab:nth-of-type(3n + 2) { - background-color: #922118; -} - -.dashboard__header__tab:nth-of-type(3n + 3) { - background-color: #9b2319; -} - -.dashboard__header__tab.active { - color: #000; - background: #fff; -} - -.dashboard__header__tab a:focus, -.dashboard__header__tab a:hover { - color: #000; - background: #fff; -} - -.dashboard__header__tab a { - display: block; - width: 100%; - height: 100%; - padding: .9em; - text-align: center; - border-radius: 11px 11px 0 0; - text-shadow: none; - background: 0 0; - color: inherit; - letter-spacing: 1px; - font-size: .95em; - transition: all .2s ease-in-out; -} - -@media all and (max-width:850px) { - .dashboard__header__tab { - flex: none; - width: 50%; - margin: 0; - border-radius: 0; - } - - .dashboard__header__tab a { - border-radius: 0; - } - - .dashboard__header__tab:first-of-type { - border-radius: 11px 0 0 0; - } - - .dashboard__header__tab:first-of-type a { - border-radius: 11px 0 0 0; - } - - .dashboard__header__tab:nth-of-type(2) { - border-radius: 0 11px 0 0; - } - - .dashboard__header__tab:nth-of-type(2) a { - border-radius: 0 11px 0 0; - } - - .dashboard__header__tab:last-of-type { - flex-grow: 9999; - } -} - -@media all and (max-width:480px) { - .dashboard__header__tab { - width: 100%; - } - - .dashboard__header__tab:first-of-type { - border-radius: 0; - } - - .dashboard__header__tab:first-of-type a { - border-radius: 0; - } - - .dashboard__header__tab:nth-of-type(2) { - border-radius: 0; - } - - .dashboard__header__tab:nth-of-type(2) a { - border-radius: 0; - } -} - -.dashboard__tab-section { - padding: 2em 0; - min-height: 50vh; -} - -.dashboard__table { - width: 100%; - border-collapse: collapse; - margin-bottom: 4em; -} - -.dashboard__table .article-header--meta-item__date, -.dashboard__table time { - color: inherit; - font-size: 1em; - font-weight: 400; -} - -.dashboard__table .order-details__sum-total td, -.dashboard__table .order-details__sum-total th { - border-bottom: 1px solid #fff; -} - -.dashboard__table .order-details__subitem th { - padding-left: 3em; - font-size: .9em; -} - -.dashboard__table td:last-of-type() { - text-transform: uppercase; - letter-spacing: 1px; -} - -.dashboard__table tbody td { - text-align: left; - line-height: 1.5em; - color: rgba(0, 0, 0, .7); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .dashboard__table tbody td { - font-family: Elena; -} - -.dashboard__table tbody td:first-of-type() { - font-size: 1.15em; -} - -.dashboard__table thead th { - color: #d33a2c; - font-size: 1em; -} - -.dashboard__table .order__type small { - background-color: #41b14f; - background-image: linear-gradient(#9ec14c, #41b14f); - color: #fff; - font-size: .75em; - letter-spacing: 1px; - text-transform: uppercase; - font-weight: 700; - border-radius: 11px; - display: inline-block; - padding: .75em 1em; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .dashboard__table .order__type small { - font-family: Mija; -} - -@media all and (min-width:650px) { - .dashboard__table .order__type small { - display: inline; - padding: .45em .75em; - white-space: nowrap; - } -} - -.dashboard__table .order__total { - font-feature-settings: normal; - color: #41b14f; - font-weight: 700; -} - -.dashboard__table .order__nb { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .dashboard__table .order__nb { - font-family: Mija; -} - -.dashboard__table .order__nb a { - font-size: .9em; - font-weight: 700; - color: #41b14f; - background: #fff2cc; - border-radius: 11px; - padding: .5em .75em; - text-shadow: none; -} - -.dashboard__table .order__nb a:active, -.dashboard__table .order__nb a:focus { - background-color: #41b14f; - color: #fff; -} - -.dashboard__table .download__desc, -.dashboard__table .order__title { - width: 250px; -} - -.dashboard__table .download__desc a, -.dashboard__table .order__title a { - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .dashboard__table .download__desc a, -.wf-loaded-stage2 .dashboard__table .order__title a { - font-family: Mija; -} - -.dashboard__table .download__desc small, -.dashboard__table .order__title small { - font-style: italic; - color: #666; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .dashboard__table .download__desc small, -.wf-loaded-stage2 .dashboard__table .order__title small { - font-family: Elena; -} - -.dashboard__membership__header { - text-align: center; - padding-top: 1em; - padding-bottom: 2em; -} - -.dashboard-membership__heading { - font-size: calc(22px + 1.75vw); - color: #41b14f; - margin-bottom: 1em; -} - -.dashboard-membership__heading .supporter { - color: #2da2c5; -} - -.dashboard-membership__heading .member { - color: #41b14f; -} - -.dashboard-membership__heading .smashing { - color: #e85e38; -} - -.dashboard-membership__heading--main { - color: #f88040; -} - -.dashboard-membership__heading--landing-page { - color: #41b14f; - margin-bottom: 0; -} - -.dashboard__membership-sell { - max-width: 900px; - margin: 0 auto; - padding-top: calc(.5em + .5vw); -} - -@media all and (min-width:1150px) { - .dashboard__membership-sell { - padding-bottom: calc(.5em + .5vw); - } -} - -.dashboard__membership-sell a { - color: #006fc6; -} - -.dashboard__membership-sell br { - display: none; -} - -@media all and (min-width:750px) { - .dashboard__membership-sell br { - display: block; - } -} - -.dashboard section[aria-hidden=true] { - visibility: hidden; -} - -.dashboard-membership__desc a:not(.btn) { - color: #006fc6; -} - -/*! - * Modified version of: Tabby v11.1.0: Simple, mobile-first toggle tabs. - * (c) 2016 Chris Ferdinandi - * MIT License - * http://github.com/cferdinandi/tabby - */ - -.js-tabby .tabs-pane { - display: none; -} - -.js-tabby .tabs-pane.active { - display: block; -} - -.js-tabby .tabs-pane:focus { - outline: 0; -} - -.membership__masthead { - flex-direction: column; - flex-wrap: nowrap; - color: #fff; - display: flex; - justify-content: center; - text-align: center; -} - -@media all and (min-width:750px) { - .membership__masthead { - flex-direction: row; - flex-wrap: wrap; - } -} - -.membership__illustration { - padding-bottom: 1em; - order: -1; - max-width: 300px; -} - -@media all and (min-width:750px) { - .membership__illustration { - order: 0; - padding-bottom: 0; - } -} - -@media all and (max-height:850px) { - .membership__illustration { - max-width: 280px; - } -} - -.membership__illustration a { - background-image: none; -} - -.membership__illustration img { - max-width: 300px; -} - -@media all and (min-width:750px) { - .membership__illustration img { - width: calc(93% + 1.2vw); - max-width: calc(93% + 1.2vw); - height: auto; - padding: 1.5em 0; - } -} - -@media all and (min-height:900px) { - .membership__illustration img { - width: 80%; - max-width: 375px; - } -} - -@media all and (min-width:1500px) { - .membership__illustration img { - padding: 0; - width: calc(100% + 2.5vw); - max-width: 110%; - position: relative; - left: .75vw; - } -} - -.pricing__card__features li:first-child { - -webkit-animation: content-injection .1s forwards; - animation: content-injection .1s forwards; -} - -.pricing__card__features li:nth-child(2) { - -webkit-animation: content-injection .2s forwards; - animation: content-injection .2s forwards; -} - -.pricing__card__features li:nth-child(3) { - -webkit-animation: content-injection .3s forwards; - animation: content-injection .3s forwards; -} - -.pricing__card__features li:nth-child(4) { - -webkit-animation: content-injection .4s forwards; - animation: content-injection .4s forwards; -} - -.pricing__card__features li:nth-child(5) { - -webkit-animation: content-injection .5s forwards; - animation: content-injection .5s forwards; -} - -.pricing__card__features li:nth-child(6) { - -webkit-animation: content-injection .6s forwards; - animation: content-injection .6s forwards; -} - -.pricing__card__features li:nth-child(7) { - -webkit-animation: content-injection .7s forwards; - animation: content-injection .7s forwards; -} - -.pricing__card__features li:nth-child(8) { - -webkit-animation: content-injection .8s forwards; - animation: content-injection .8s forwards; -} - -.membership__tagline { - padding: .5em 1em; - transition: .3s all ease-in-out; -} - -@media all and (min-height:850px) { - .membership__tagline { - padding: calc(.5em + 1vw) 1em; - } -} - -@media all and (min-width:1500px) { - .membership__tagline { - max-width: 55%; - } -} - -@media all and (max-height:750px) { - .membership__tagline p span { - display: none; - } -} - -@media all and (max-width:930px) { - .membership__tagline p span { - display: none; - } -} - -@media all and (max-height:750px) and (min-width:930px) { - .membership__tagline p span { - display: inline; - } -} - -.membership__tagline h1, -.membership__tagline p { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.sort-controls { - margin: 1em 0 2em 0; -} - -.sort-controls .sort-control { - display: inline-block; - color: #fff; - margin-right: 1em; - letter-spacing: 1px; - font-size: .85em; - text-transform: uppercase; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.sort-controls .sort-control.active { - background-color: #41b14f; - background-image: linear-gradient(#9ec14c, #41b14f); -} - -.webinar-list li { - margin-bottom: 1.25em; -} - -.job__company { - font-weight: 400; - font-size: .85em; - background: 0 0; -} - -.job__location { - color: #666; - font-weight: 400; - font-size: .85em; -} - -.dashboard__table--downloads .dashboard__table--downloads__type, -.dashboard__table--downloads th.download__format { - text-align: center; - margin: 0 auto; -} - -.dashboard__table--downloads .dashboard__table--downloads__type { - width: calc(110px + 6vw); -} - -.dashboard__table--downloads th:nth-child(2) { - display: none; -} - -@media all and (min-width:700px) { - .dashboard__table--downloads th:nth-child(2) { - display: table-cell; - } -} - -th.dashboard__table--downloads__downloads { - display: flex; -} - -.dashboard__table--downloads tbody .download__action { - width: 220px; -} - -.download__action ul { - list-style-image: none; - display: flex; - gap: .5em; -} - -.dashboard__table--downloads td, -.dashboard__table--downloads th { - padding: 1em 1.5em; -} - -.download__action .btn { - background-image: var(--format-type, linear-gradient(#9ec14c, #41b14f)); -} - -.download__action-pdf { - --format-type: linear-gradient(#3ea2f1, #006fc6); -} - -.download__action-epub { - --format-type: linear-gradient(#9ec14c, #41b14f); -} - -.download__action-mobi { - --format-type: linear-gradient(#f56092, #e91e63); -} - -.dashboard__table--downloads tbody .download__action span { - display: inline; - font-size: 1em; - color: #fff; - margin-left: 0; - padding-left: 0; -} - -@media all and (min-width:700px) { - .dashboard__table--downloads tbody .download__action span:nth-child(1) { - display: inline; - } -} - -.dashboard__table--downloads tbody .download__desc { - color: #767676; -} - -.dashboard__table--downloads tbody .download__desc ins { - text-transform: uppercase; - text-decoration: none; -} - -.dashboard__table--downloads tbody .download__desc .article-header--meta-item__date, -.dashboard__table--downloads tbody .download__desc time { - display: block; - font-size: .9em; -} - -.dashboard__table--downloads .btn { - text-align: center; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.dashboard__table--order-details { - font-weight: 400; -} - -.dashboard__table--order-details thead th { - text-transform: uppercase; - letter-spacing: 1px; - font-size: .8em; - width: 10vw; - color: #333; -} - -.dashboard__table--order-details tbody td, -.dashboard__table--order-details tbody th { - font-weight: 400; -} - -.dashboard__table--order-details td:last-child, -.dashboard__table--order-details td:nth-child(3), -.dashboard__table--order-details td:nth-child(4), -.dashboard__table--order-details td:nth-child(5), -.dashboard__table--order-details th:nth-child(3), -.dashboard__table--order-details th:nth-child(4), -.dashboard__table--order-details th:nth-child(5) { - text-align: center; -} - -.dashboard__table--order-details .order-details__item__icon { - width: 90px; - text-align: center; - vertical-align: top; -} - -.dashboard__table--order-details .order-details__item__name { - padding-left: 1.5rem; - font-weight: 700; - line-height: 1.4em; - font-size: 1em; - width: 33%; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .dashboard__table--order-details .order-details__item__name { - font-family: Mija; -} - -.dashboard__table--order-details .order-details__item__name .order-details__item__desc { - font-style: italic; - font-weight: 400; - color: #666; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .dashboard__table--order-details .order-details__item__name .order-details__item__desc { - font-family: Elena; -} - -.dashboard__table--order-details .order-details__item--faded { - opacity: .3; -} - -.dashboard__table--order-details .order-details__qty { - text-align: center; - color: #333; -} - -.c-orders__books { - font-weight: 400; - font-size: .9em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .c-orders__books { - font-family: Elena; -} - -.c-orders__attendees { - font-weight: 400; - font-size: calc(18px + .25vw); - padding-left: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .c-orders__attendees { - font-family: Elena; -} - -.c-orders__attendees .separator { - color: #d33a2c; -} - -.c-orders__attendees .article-header--meta-item__date, -.c-orders__attendees time { - color: rgba(0, 0, 0, .7); - background-color: #fff2cc; - padding: .15em .35em; - border-radius: 11px; -} - -.c-orders__product-meta { - font-style: italic; - color: #777; -} - -.c-orders__product-meta--link { - color: inherit; -} - -.c-orders__product-attendee, -.c-orders__product-authors, -.c-orders__product-coach { - font-style: italic; -} - -.c-orders__product-workshop { - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .c-orders__product-workshop { - font-family: Mija; -} - -.order__date .article-header--meta-item__date, -.order__date time { - color: #666; -} - -@media all and (min-width:750px) { - - .order__date .article-header--meta-item__date, - .order__date time { - white-space: nowrap; - } -} - -.dashboard__table { - font-weight: 400; -} - -.dashboard__table thead th { - text-transform: uppercase; - letter-spacing: 1px; - font-size: .8em; - text-align: left; - color: #333; - background-color: #f6f3f2; - padding-top: 1.5em; - padding-bottom: 1.25em; -} - -.dashboard__table tbody td, -.dashboard__table tbody th { - font-weight: 400; - text-align: left; -} - -@media all and (min-width:641px) { - - .dashboard__table--orders tbody td:nth-child(1), - .dashboard__table--orders tbody th:nth-child(1), - .dashboard__table--orders thead th:nth-child(1) { - padding-left: .75em; - padding-right: .75em; - max-width: 250px; - } -} - -.dashboard__table--orders td:nth-child(1), -.dashboard__table--orders td:nth-child(3), -.dashboard__table--orders th:nth-child(1), -.dashboard__table--orders th:nth-child(3) { - text-align: center; -} - -.dashboard__table--orders tbody td:nth-child(1) { - color: #666; - font-size: .9em; -} - -@media all and (min-width:641px) { - .dashboard__table--orders tbody td:nth-child(1) { - width: 7.5em; - } -} - -@media all and (min-width:641px) { - .dashboard__table--orders thead th:nth-child(4) { - width: 7.5em; - } -} - -.order__item.error { - color: #333; -} - -.order__item.error td, -.order__item.error th { - font-weight: 700; -} - -.order__item.in-progress { - color: #333; -} - -.order__item.pending .order__nb a { - background-color: #f88040; - color: #fff; -} - -.order__item.pending .order__nb a:active, -.order__item.pending .order__nb a:focus { - background-color: #d33a2c; - color: #fff; -} - -.order__item.fulfilled, -.order__item.paid { - color: #333; -} - -.order__nb a { - font-size: .9em; - font-weight: 700; - color: #2da2c5; -} - -.order__nb .order__nb--details { - text-transform: uppercase; - letter-spacing: 1px; - font-size: .65em; -} - -.order__nb .order__nb--id { - display: inline-block; - margin-left: .5em; - font-weight: 700; - font-size: .9em; - color: #767676; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .order__nb .order__nb--id { - font-family: Mija; -} - -.order-details__header { - display: flex; - align-items: stretch; - margin-bottom: 1em; -} - -@media (max-width:64em) { - .order-details__header { - display: block; - padding: 0; - } -} - -.order-details__order-nb-wrapper { - display: flex; - flex-direction: column; - padding: 0; -} - -@media (max-width:64em) { - .order-details__order-nb-wrapper { - margin-bottom: 1em; - padding: 1em; - } -} - -.order-details__order-nb-wrapper::after { - content: ""; - background: url(/images/smashing-cat/cat-with-bottle-mouse.svg); - visibility: hidden; - width: 1px; - height: 1px; -} - -.order-details__order-nb { - margin-bottom: 1.1em; - margin-left: 0; -} - -.order-details__order-nb h2 { - font-size: 1.5em; -} - -.order-details__order-nb span { - color: #666; - text-transform: uppercase; -} - -.order-details__secondary-actions { - display: block; - position: relative; - font-size: .8em; - left: -1em; - margin-bottom: 3em; - flex-grow: 1; - margin-top: 1.75em; -} - -.order-details__secondary-actions a:first-child { - margin-bottom: .75em; -} - -.order-details__address { - font-size: .8em; - background-color: #f6f6f6; - border-radius: 11px; - padding: .5em 2em; - margin: 0 0 2em 0; -} - -.order-details__address--blank { - background: 0 0; - margin: 0; -} - -.order-details__address p { - line-height: 1.3; -} - -.order-details__address h3 { - color: #d33a2c; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-size: 1.3em; - margin: .8em 0 1.3em 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .order-details__address h3 { - font-family: Mija; -} - -.order-details__address h3 a { - background-position: center 72%; -} - -.order-details__address .billing-status, -.order-details__address .shipping-status { - font-weight: 700; -} - -.order-details__address .billing-status span, -.order-details__address .shipping-status span { - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-size: 1.2em; - padding: .15em .5em; - margin-left: .2em; - display: inline-block; - border-radius: 11px; -} - -.order-details__address .billing-status span a, -.order-details__address .shipping-status span a { - background-position: center 72%; -} - -.order-details__address .billing-status .pending, -.order-details__address .shipping-status .pending { - background-color: #fff2cc; - color: #d33a2c; -} - -.order-details__address .billing-status .paid, -.order-details__address .shipping-status .paid { - background-color: #41b14f; - color: #fff; -} - -.order-details__address .billing-status .cancelled, -.order-details__address .shipping-status .cancelled { - background-color: #d33a2c; - color: #fff; -} - -.order-details--success .billing-status span, -.order-details--success .order-details__order-nb h2, -.order-details--success .shipping-status span { - color: #41b14f; -} - -@media (max-width:64em) { - .order-details__address-wrapper { - width: 50%; - float: left; - padding: 0; - } -} - -@media (max-width:40em) { - .order-details__address-wrapper { - width: 100%; - float: none; - clear: both; - margin: 1em 0; - } -} - -.order-details__shipping .free-shipping { - font-weight: 700; - color: #41b14f; -} - -.order-details__discount td, -.order-details__discount th { - color: #d33a2c; -} - -.dashboard__table--order-details thead { - background-color: #f6f3f2; -} - -.order-details__footer { - border-top: 8px solid #ddd; - color: #666; -} - -.order-details__footer th { - font-size: 1.1em; - color: #666; - letter-spacing: 1px; - padding-top: .3em; -} - -.order-details__footer td, -.order-details__footer th { - font-weight: 400; - padding-top: .75em; - padding-bottom: .75em; -} - -.order-details__sum-total td, -.order-details__sum-total th { - font-weight: 700; -} - -.order-details__sum-total th { - color: #333; - font-size: 1.3em; - padding-left: 1em; -} - -.order-details__sum-total td { - color: #41b14f; - font-size: 1.3em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .order-details__sum-total td { - font-family: Mija; -} - -@media all and (min-width:770px) { - - .btn--lined__membership, - .membership-checkout__hint { - display: none; - } - - fieldset#set-up-credentials { - margin-top: 0; - } -} - -.membership-checkout__hint small { - display: block; - line-height: 1.5em; - padding: 1em 0; - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .membership-checkout__hint small { - font-family: Elena; -} - -.membership-checkout-summary { - margin: 2em auto; - display: flex; - flex-direction: column; -} - -@media (min-width:550px) { - .membership-checkout-summary { - flex-direction: row; - } -} - -.membership-checkout-form { - display: flex; - flex-direction: column; -} - -.membership-checkout-form, -.membership-checkout-summary { - padding: 0 1.5em; -} - -.membership-checkout-plan { - min-width: 50%; -} - -@media (min-width:650px) { - .membership-checkout-plan { - display: flex; - flex-direction: column; - } -} - -.membership-checkout-summary__heading { - color: #41b14f; -} - -.membership-checkout-summary__visuals { - margin: -1em 0 0 0; -} - -@media all and (min-width:550px) { - .membership-checkout-summary__visuals .pricing__card__image.member-option { - left: 0; - } -} - -@media (min-width:650px) { - .membership-checkout-summary__visuals { - min-width: 300px; - margin-left: calc(-.5em - 2vw); - } -} - -.membership-checkout-summary__visuals svg text { - font-weight: 700; - text-transform: uppercase; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .membership-checkout-summary__visuals svg text { - font-family: Mija; -} - -.membership-checkout-summary__visuals .membership-checkout-summary__thanks { - position: relative; - left: 2.25em; - max-width: 260px; -} - -.membership-checkout-summary__visuals .pricing-image-svg-container { - width: 90%; - margin: 0 auto; - padding-top: calc(100% + 4vw); -} - -@media (min-width:550px) { - .membership-checkout-summary__visuals .pricing-image-svg-container { - width: calc(200px + 8vw); - left: calc(2em + 2vw); - padding-top: 90%; - } -} - -@media screen and (min-width:48em) { - .membership-checkout-summary__visuals .pricing-image-svg-container { - left: 2em; - } -} - -@media (min-width:1024px) { - .membership-checkout-summary__visuals .pricing-image-svg-container { - left: 3em; - } -} - -.pricing { - width: 100vw; - position: relative; - left: 50%; - right: 50%; - margin-left: -50vw; - margin-right: -50vw; -} - -.article .pricing, -.dashboard .pricing { - width: 100vw; - position: relative; - left: 50%; - right: 50%; - margin-left: -50vw; - margin-right: -50vw; -} - -.article .pricing .cards, -.dashboard .pricing .cards { - background-position: top left; - background-repeat: no-repeat; - background-size: 100% auto; - margin-bottom: 0; -} - -.article .pricing a, -.dashboard .pricing a { - color: #2da2c5; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #2da2c5; - text-decoration-color: #2da2c5; - padding: 10px 0; - transition: color .1s ease-out; -} - -.article .pricing { - width: 100vw; - position: relative; - left: 50%; - right: 50%; - margin-left: -50vw; - margin-right: calc(-50vw + 38%); -} - -@media all and (max-width:1025px) { - .article .pricing { - margin-left: -50vw; - margin-right: -50vw; - } -} - -.article .pricing .cards { - margin-bottom: 2em; -} - -ul.pricing__cards { - list-style: none; - padding: 0; -} - -.pricing__card { - cursor: pointer; - margin-bottom: 0; - border: 2px dashed transparent; - display: inline-block; - margin-right: -4px; - vertical-align: bottom; - transition: all .2s ease-in-out; -} - -@media all and (min-width:450px) { - .pricing__card { - padding: 0 2em 2em 2em; - } -} - -@media all and (min-width:1024px) { - .pricing__card { - padding-top: 2em; - } -} - -@media all and (min-width:1025px) { - .pricing__card { - margin-right: 0; - } -} - -.pricing__card:after, -.pricing__card:before { - content: " "; - display: table; - clear: both; -} - -.pricing__card h3, -.pricing__card h4 { - text-transform: none; - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .pricing__card h3, -.wf-loaded-stage2 .pricing__card h4 { - font-family: Mija; -} - -.pricing__card h4 { - font-size: 1.2em; - margin: 0; - margin-bottom: 10px; -} - -.pricing__card--active { - border-radius: 11px; - transform: scale(1.05); - background-color: #f3fbee; - border: 2px dashed #d6f1c5; -} - -.membership__color--supporter { - color: #e85e38; -} - -.membership__color--member { - color: #41b14f; -} - -.membership__color--smashing { - color: #2da2c5; -} - -.pricing__card__description { - font-size: 1.15em; - line-height: 1.3; - font-weight: 700; - text-align: center; -} - -.wf-loaded-stage2 .pricing__card__description { - font-family: Mija; -} - -.pricing__card--supporter .pricing__card__description { - color: #e85e38; -} - -.pricing__card--member .pricing__card__description { - color: #31853b; -} - -.pricing__card--smashing .pricing__card__description { - color: #1b75bc; -} - -.pricing__card__features { - font-size: calc(.86em + .05vw); -} - -.pricing__card__features abbr[title] { - border-bottom: 1px dotted #767676; - text-decoration: none; -} - -.pricing__card__features ul { - padding-left: .5em; - list-style-image: url(../images/bullet--grey--dark.svg); - margin: 0; - margin-left: .35em; - padding-top: 1vw; -} - -.pricing__card__features ul li { - margin-bottom: .5em; -} - -.membership__price { - display: block; - font-size: .9em; - color: rgba(0, 0, 0, .5); -} - -.pricing__card__image { - display: flex; - flex-direction: column; - justify-content: space-around; - align-items: space-around; - margin: 0 auto; - transition: all .3s ease-in-out; - position: relative; - left: 1vw; -} - -.pricing__card__image.member-option { - position: relative; - margin: 0 auto; - padding-top: .5em; - left: 0; - display: block; -} - -@media all and (min-width:1024px) { - .pricing__card__image.member-option { - padding-top: 0; - } -} - -.auth-modal .pricing__card__image.member-option { - position: absolute; -} - -@media all and (min-width:1025px) { - .pricing__card__image { - width: calc(105% + 1.5vw); - } - - .pricing__card__image.member-option { - left: 0; - margin-left: -1.25vw; - } -} - -@media all and (max-width:1024px) { - .pricing__card__body { - width: 45%; - margin-right: calc(-1em - 1vw); - margin-top: calc(1em + 1vw); - } - - .pricing__card--member .pricing__card__body { - margin-right: 0; - } -} - -@media all and (max-width:640px) { - - .pricing__card--member .pricing__card__body, - .pricing__card__body { - width: 100%; - margin: 0; - } - - .pricing__card__button { - width: 100%; - margin-bottom: 1em; - } -} - -.pricing-image-svg-container { - height: 0; - width: 100%; - padding-top: 110%; - position: relative; -} - -.pricing-image-svg-container svg { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; -} - -@media all and (max-width:1024px) { - .pricing-image-svg-container { - width: 50%; - padding-top: 44.8022%; - float: left; - } -} - -@media all and (max-width:640px) { - .pricing-image-svg-container { - width: calc(100% + 5vw); - padding-top: 84.2442%; - float: none; - } -} - -@media all and (max-width:1024px) { - .pricing__card--member .pricing-image-svg-container { - float: right; - } -} - -svg text.option { - text-transform: uppercase; - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 svg text.option { - font-family: Mija; -} - -svg text.option--title { - font-size: .85em; -} - -svg text.text-shadow { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -svg text.option--price { - font-size: 2em; -} - -svg text.option--price.yearly { - font-size: 1.6em; -} - -@media all and (min-width:1500px) { - svg text.option--price { - font-size: 1.6em; - } - - svg text.option--price.yearly { - font-size: 1.3em; - } -} - -.dashboard-membership__desc--full-width { - margin-bottom: 5em; - width: 100%; -} - -.dashboard-membership__desc { - margin: 0; - padding: 2em .5em 1em .5em; - --box-yellow: #fff9e6; - --box-blue: #f0f9fc; - --box-green: #f2faf3; - --box-orange: #fef6f1; -} - -.dashboard__tab-section .dashboard-membership__desc { - padding: 2em .5em 2.5em .5em; -} - -.dashboard-membership__desc.what-members-say { - padding-top: 2em; -} - -@media all and (min-width:1100px) { - .dashboard-membership__desc { - margin: 0 auto; - } - - .dashboard-membership__desc:not(.dashboard-membership__desc--full-width) { - max-width: 75%; - } -} - -.dashboard-membership__desc .dashboard-membership__heading { - text-align: left; -} - -.dashboard-membership__desc .for-guests, -.dashboard-membership__desc .for-users:not(.for-guests) { - --box-background: var(--box-yellow); -} - -.dashboard-membership__desc .for-supporters:not(.for-users) { - --box-background: var(--box-orange); -} - -.dashboard-membership__desc .for-members:not(.for-supporters) { - --box-background: var(--box-green); -} - -.dashboard-membership__desc .for-smashing:not(.for-members) { - --box-background: var(--box-blue); -} - -.dashboard-membership__desc .dashboard-membership__callout__coming-up { - padding-left: 0; -} - -.dashboard-membership__callout__coming-up li:focus { - background-color: #f2faf3; -} - -.dashboard-membership__desc .dashboard-membership__callout__coming-up li .article-header--meta-item__date::after, -.dashboard-membership__desc .dashboard-membership__callout__coming-up li time::after { - padding: .15em .5em; - font-weight: 700; - font-size: .9em; - border-radius: 11px; - margin-left: .5em; -} - -.dashboard-membership__desc.for-guests li.for-supporters:not(.for-guests), -.dashboard-membership__desc.for-users li.for-supporters:not(.for-users) { - opacity: .35; - transition: opacity .1s ease-in-out; -} - -.dashboard-membership__desc.for-guests li.for-supporters:not(.for-guests):active, -.dashboard-membership__desc.for-guests li.for-supporters:not(.for-guests):focus, -.dashboard-membership__desc.for-guests li.for-supporters:not(.for-guests):hover, -.dashboard-membership__desc.for-users li.for-supporters:not(.for-users):active, -.dashboard-membership__desc.for-users li.for-supporters:not(.for-users):focus, -.dashboard-membership__desc.for-users li.for-supporters:not(.for-users):hover { - opacity: 1; -} - -.dashboard-membership__desc.for-guests li.for-supporters:not(.for-guests) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-guests li.for-supporters:not(.for-guests) time::after, -.dashboard-membership__desc.for-users li.for-supporters:not(.for-users) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-users li.for-supporters:not(.for-users) time::after { - content: "Supporters+"; - background-color: #feece2; - color: #cb4b07; -} - -.dashboard-membership__desc.for-guests li.for-members:not(.for-supporters), -.dashboard-membership__desc.for-supporters li.for-members.for-smashing:not(.for-supporters), -.dashboard-membership__desc.for-users li.for-members:not(.for-supporters) { - opacity: .35; - transition: opacity .1s ease-in-out; -} - -.dashboard-membership__desc.for-guests li.for-members:not(.for-supporters):active, -.dashboard-membership__desc.for-guests li.for-members:not(.for-supporters):focus, -.dashboard-membership__desc.for-guests li.for-members:not(.for-supporters):hover, -.dashboard-membership__desc.for-supporters li.for-members.for-smashing:not(.for-supporters):active, -.dashboard-membership__desc.for-supporters li.for-members.for-smashing:not(.for-supporters):focus, -.dashboard-membership__desc.for-supporters li.for-members.for-smashing:not(.for-supporters):hover, -.dashboard-membership__desc.for-users li.for-members:not(.for-supporters):active, -.dashboard-membership__desc.for-users li.for-members:not(.for-supporters):focus, -.dashboard-membership__desc.for-users li.for-members:not(.for-supporters):hover { - opacity: 1; -} - -.dashboard-membership__desc.for-guests li.for-members:not(.for-supporters) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-guests li.for-members:not(.for-supporters) time::after, -.dashboard-membership__desc.for-supporters li.for-members.for-smashing:not(.for-supporters) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-supporters li.for-members.for-smashing:not(.for-supporters) time::after, -.dashboard-membership__desc.for-users li.for-members:not(.for-supporters) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-users li.for-members:not(.for-supporters) time::after { - content: "Members+"; - background-color: #d8f1db; - color: #26662e; -} - -.dashboard-membership__desc.for-guests li.for-smashing:not(.for-members), -.dashboard-membership__desc.for-members li.for-smashing:not(.for-members), -.dashboard-membership__desc.for-supporters li.for-smashing:not(.for-members), -.dashboard-membership__desc.for-users li.for-smashing:not(.for-members) { - opacity: .35; - transition: opacity .1s ease-in-out; -} - -.dashboard-membership__desc.for-guests li.for-smashing:not(.for-members):active, -.dashboard-membership__desc.for-guests li.for-smashing:not(.for-members):focus, -.dashboard-membership__desc.for-guests li.for-smashing:not(.for-members):hover, -.dashboard-membership__desc.for-members li.for-smashing:not(.for-members):active, -.dashboard-membership__desc.for-members li.for-smashing:not(.for-members):focus, -.dashboard-membership__desc.for-members li.for-smashing:not(.for-members):hover, -.dashboard-membership__desc.for-supporters li.for-smashing:not(.for-members):active, -.dashboard-membership__desc.for-supporters li.for-smashing:not(.for-members):focus, -.dashboard-membership__desc.for-supporters li.for-smashing:not(.for-members):hover, -.dashboard-membership__desc.for-users li.for-smashing:not(.for-members):active, -.dashboard-membership__desc.for-users li.for-smashing:not(.for-members):focus, -.dashboard-membership__desc.for-users li.for-smashing:not(.for-members):hover { - opacity: 1; -} - -.dashboard-membership__desc.for-guests li.for-smashing:not(.for-members) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-guests li.for-smashing:not(.for-members) time::after, -.dashboard-membership__desc.for-members li.for-smashing:not(.for-members) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-members li.for-smashing:not(.for-members) time::after, -.dashboard-membership__desc.for-supporters li.for-smashing:not(.for-members) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-supporters li.for-smashing:not(.for-members) time::after, -.dashboard-membership__desc.for-users li.for-smashing:not(.for-members) .article-header--meta-item__date::after, -.dashboard-membership__desc.for-users li.for-smashing:not(.for-members) time::after { - content: "Smashing"; - background-color: #d3edf5; - color: #1a5e72; -} - -.dashboard-membership__desc.for-guests li:not(.for-guests):active, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover, -.dashboard-membership__desc.for-members li:not(.for-members):active, -.dashboard-membership__desc.for-members li:not(.for-members):focus, -.dashboard-membership__desc.for-members li:not(.for-members):hover, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover, -.dashboard-membership__desc.for-users li:not(.for-users):active, -.dashboard-membership__desc.for-users li:not(.for-users):focus, -.dashboard-membership__desc.for-users li:not(.for-users):hover { - background-color: var(--box-background); - border-radius: 11px; -} - -.dashboard-membership__desc.for-guests li:not(.for-guests):active a .article-header--meta-item__date, -.dashboard-membership__desc.for-guests li:not(.for-guests):active a time, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus a .article-header--meta-item__date, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus a time, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover a .article-header--meta-item__date, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover a time, -.dashboard-membership__desc.for-members li:not(.for-members):active a .article-header--meta-item__date, -.dashboard-membership__desc.for-members li:not(.for-members):active a time, -.dashboard-membership__desc.for-members li:not(.for-members):focus a .article-header--meta-item__date, -.dashboard-membership__desc.for-members li:not(.for-members):focus a time, -.dashboard-membership__desc.for-members li:not(.for-members):hover a .article-header--meta-item__date, -.dashboard-membership__desc.for-members li:not(.for-members):hover a time, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active a .article-header--meta-item__date, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active a time, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus a .article-header--meta-item__date, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus a time, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover a .article-header--meta-item__date, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover a time, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active a .article-header--meta-item__date, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active a time, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus a .article-header--meta-item__date, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus a time, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover a .article-header--meta-item__date, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover a time, -.dashboard-membership__desc.for-users li:not(.for-users):active a .article-header--meta-item__date, -.dashboard-membership__desc.for-users li:not(.for-users):active a time, -.dashboard-membership__desc.for-users li:not(.for-users):focus a .article-header--meta-item__date, -.dashboard-membership__desc.for-users li:not(.for-users):focus a time, -.dashboard-membership__desc.for-users li:not(.for-users):hover a .article-header--meta-item__date, -.dashboard-membership__desc.for-users li:not(.for-users):hover a time { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: var(--box-background); - text-decoration-color: var(--box-background); -} - -.dashboard-membership__desc.for-guests li:not(.for-guests):active a strong, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus a strong, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover a strong, -.dashboard-membership__desc.for-members li:not(.for-members):active a strong, -.dashboard-membership__desc.for-members li:not(.for-members):focus a strong, -.dashboard-membership__desc.for-members li:not(.for-members):hover a strong, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active a strong, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus a strong, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover a strong, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active a strong, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus a strong, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover a strong, -.dashboard-membership__desc.for-users li:not(.for-users):active a strong, -.dashboard-membership__desc.for-users li:not(.for-users):focus a strong, -.dashboard-membership__desc.for-users li:not(.for-users):hover a strong { - color: #006fc6; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: currentColor; - text-decoration-color: currentColor; -} - -.dashboard-membership__desc.for-guests li:not(.for-guests):active span, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus span, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover span, -.dashboard-membership__desc.for-members li:not(.for-members):active span, -.dashboard-membership__desc.for-members li:not(.for-members):focus span, -.dashboard-membership__desc.for-members li:not(.for-members):hover span, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active span, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus span, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover span, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active span, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus span, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover span, -.dashboard-membership__desc.for-users li:not(.for-users):active span, -.dashboard-membership__desc.for-users li:not(.for-users):focus span, -.dashboard-membership__desc.for-users li:not(.for-users):hover span { - color: #333; - background-position: calc(-100% - 1px); -} - -.dashboard-membership__desc.for-guests li:not(.for-guests):active span a, -.dashboard-membership__desc.for-guests li:not(.for-guests):active span code, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus span a, -.dashboard-membership__desc.for-guests li:not(.for-guests):focus span code, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover span a, -.dashboard-membership__desc.for-guests li:not(.for-guests):hover span code, -.dashboard-membership__desc.for-members li:not(.for-members):active span a, -.dashboard-membership__desc.for-members li:not(.for-members):active span code, -.dashboard-membership__desc.for-members li:not(.for-members):focus span a, -.dashboard-membership__desc.for-members li:not(.for-members):focus span code, -.dashboard-membership__desc.for-members li:not(.for-members):hover span a, -.dashboard-membership__desc.for-members li:not(.for-members):hover span code, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active span a, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):active span code, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus span a, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):focus span code, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover span a, -.dashboard-membership__desc.for-smashing li:not(.for-smashing):hover span code, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active span a, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):active span code, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus span a, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):focus span code, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover span a, -.dashboard-membership__desc.for-supporters li:not(.for-supporters):hover span code, -.dashboard-membership__desc.for-users li:not(.for-users):active span a, -.dashboard-membership__desc.for-users li:not(.for-users):active span code, -.dashboard-membership__desc.for-users li:not(.for-users):focus span a, -.dashboard-membership__desc.for-users li:not(.for-users):focus span code, -.dashboard-membership__desc.for-users li:not(.for-users):hover span a, -.dashboard-membership__desc.for-users li:not(.for-users):hover span code { - opacity: 1; -} - -.dashboard-membership__desc.for-guests li:not(.for-guests) .reveal-details, -.dashboard-membership__desc.for-members li:not(.for-members) .reveal-details, -.dashboard-membership__desc.for-smashing li:not(.for-smashing) .reveal-details, -.dashboard-membership__desc.for-supporters li:not(.for-supporters) .reveal-details, -.dashboard-membership__desc.for-users li:not(.for-users) .reveal-details { - background-image: linear-gradient(to right, #ccc 50%, #fff 50%); - background-image: linear-gradient(to right, #ccc 50%, var(--box-background) 50%); - background-position: 0; - background-size: calc(200% + 2px); - transition: background-position .25s, color .65s; - color: #ccc; - text-shadow: none; - position: relative; -} - -.dashboard-membership__desc.for-guests li:not(.for-guests) .reveal-details a, -.dashboard-membership__desc.for-members li:not(.for-members) .reveal-details a, -.dashboard-membership__desc.for-smashing li:not(.for-smashing) .reveal-details a, -.dashboard-membership__desc.for-supporters li:not(.for-supporters) .reveal-details a, -.dashboard-membership__desc.for-users li:not(.for-users) .reveal-details a { - text-shadow: none; -} - -.dashboard-membership__desc.for-guests li:not(.for-guests) .reveal-details a, -.dashboard-membership__desc.for-guests li:not(.for-guests) .reveal-details code, -.dashboard-membership__desc.for-members li:not(.for-members) .reveal-details a, -.dashboard-membership__desc.for-members li:not(.for-members) .reveal-details code, -.dashboard-membership__desc.for-smashing li:not(.for-smashing) .reveal-details a, -.dashboard-membership__desc.for-smashing li:not(.for-smashing) .reveal-details code, -.dashboard-membership__desc.for-supporters li:not(.for-supporters) .reveal-details a, -.dashboard-membership__desc.for-supporters li:not(.for-supporters) .reveal-details code, -.dashboard-membership__desc.for-users li:not(.for-users) .reveal-details a, -.dashboard-membership__desc.for-users li:not(.for-users) .reveal-details code { - opacity: 0; - transition: all .65s, opacity .7s; - z-index: 0; -} - -.dashboard-membership__explanation-with-form p { - margin-bottom: 2em; -} - -.dashboard .dashboard-membership__callout { - display: flex; - flex-direction: column; - flex-wrap: wrap; -} - -@media all and (min-width:700px) { - .dashboard .dashboard-membership__callout { - flex-direction: row; - flex-wrap: nowrap; - } -} - -.dashboard .dashboard-membership__callout p { - text-align: left; - margin-top: 1em; -} - -.dashboard .dashboard-membership__callout p:first-child { - margin-top: 0; - margin-bottom: 0; -} - -.dashboard .dashboard-membership__callout li.coming-up::before, -.dashboard .dashboard-membership__callout li.new::before { - background: #41b14f; - color: #fff; - padding: .35em .65em; - font-weight: 700; - font-size: .75em; - border-radius: 11px; - margin-right: .5em; - text-transform: uppercase; - letter-spacing: 1px; -} - -.dashboard .dashboard-membership__callout li.new::before { - content: "New ↬"; -} - -.dashboard .dashboard-membership__callout li.coming-up::before { - content: "Coming up ↬"; -} - -.dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up { - flex-shrink: 1; - margin-left: 0; - list-style-image: none; - display: flex; - flex-direction: row; - flex-wrap: wrap; -} - -.dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up a .article-header--meta-item__date, -.dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up a time { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; -} - -.dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up .article-header--meta-item__date, -.dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up time { - font-size: .95em; - color: #333; - text-shadow: none; -} - -.dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up li { - flex: 1; - padding: calc(.75em + .35vh) calc(1em + 1vw); - margin-bottom: calc(.75em + .5vh); - min-width: 340px; - margin-right: calc(1em + .75vw); -} - -@media all and (min-width:700px) { - .dashboard .dashboard-membership__callout .dashboard-membership__callout__coming-up { - margin-left: calc(1em + .75vw); - } -} - -.dashboard .dashboard-membership__callout .dashboard-membership__visuals { - margin-top: 2em; -} - -@media all and (min-width:700px) { - .dashboard .dashboard-membership__callout .dashboard-membership__visuals { - margin-top: 0; - } -} - -.dashboard-membership__callout p+* { - margin-top: 1.25em; - margin-bottom: 1.25em; -} - -.dashboard .dashboard-membership__callout ul.webinar-list { - margin-bottom: 2.25em; -} - -.dashboard .dashboard-membership__callout figure a { - background: 0 0; -} - -.dashboard .dashboard-membership__callout figcaption a { - color: #006fc6; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; - padding: 10px 0; - transition: color .1s ease-out; -} - -.dashboard .dashboard-membership__callout.dashboard-membership__callout-no-visuals { - max-width: 26em; -} - -.dashboard .dashboard-membership__callout.dashboard-membership__callout--password form { - max-width: 20em; -} - -.dashboard .dashboard-membership__callout.dashboard-membership__callout--password form small { - color: #666; - background-color: #fff2cc; - padding: .5em 1em; - border-radius: 11px; - display: block; - line-height: 1.5em; - margin-bottom: 2em; -} - -.dashboard-membership__visuals { - border-radius: 11px; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} - -@media all and (min-width:600px) { - .dashboard-membership__visuals { - padding: 0 0 1em 3em; - } -} - -.dashboard-membership__visuals figure { - transition: .3s all ease-in-out; - width: calc(220px + 2vw); -} - -.dashboard-membership__visuals figure figcaption { - font-size: .85em; - color: #666; - font-style: italic; - display: block; - text-align: center; -} - -.dashboard-membership__visuals figure figcaption.padding { - position: relative; - top: 20px; -} - -.dashboard-membership__visuals figure figcaption a { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #2da2c5; - text-decoration-color: #2da2c5; - padding: 10px 0; - transition: color .1s ease-out; -} - -.dashboard-membership__visuals figure.update-settings__personal { - width: calc(170px + 4vw); -} - -@media all and (min-width:550px) { - .dashboard-membership__visuals figure.update-settings__personal { - width: calc(210px + 4vw); - } -} - -@media all and (min-width:800px) { - .dashboard-membership__visuals figure.update-settings__personal { - width: calc(250px + 2vh); - } -} - -@media all and (min-width:900px) { - .dashboard-membership__visuals figure.update-settings__personal { - width: calc(280px + 2vh); - } -} - -@media all and (min-width:900px) and (min-height:850px) { - .dashboard-membership__visuals figure.update-settings__personal { - width: calc(365px + 2vh); - } -} - -.dashboard-membership__visuals figure.update-settings__password { - display: none; -} - -@media all and (min-width:700px) { - .dashboard-membership__visuals figure.update-settings__password { - display: block; - width: calc(150px + 4vw); - } -} - -@media all and (min-width:800px) { - .dashboard-membership__visuals figure.update-settings__password { - width: calc(220px + 2vw); - } -} - -@media all and (min-width:900px) and (min-height:850px) { - .dashboard-membership__visuals figure.update-settings__password { - width: calc(250px + 2vh); - } -} - -.dashboard-membership__visuals figure.update-settings__plan { - width: calc(220px + 4vw); - margin-top: 1.5em; -} - -@media all and (min-width:520px) { - .dashboard-membership__visuals figure.update-settings__plan { - margin-top: 0; - width: calc(130px + 4vw); - } -} - -@media all and (min-width:700px) { - .dashboard-membership__visuals figure.update-settings__plan { - width: calc(220px + 2vw); - } -} - -@media all and (min-width:900px) and (min-height:850px) { - .dashboard-membership__visuals figure.update-settings__plan { - width: calc(250px + 2vh); - } -} - -.dashboard-membership__visuals.update-settings { - justify-content: flex-start; -} - -.dashboard-membership__visuals--coming-up { - padding-left: 0; - margin-bottom: 2.5em; -} - -.dashboard-membership__visuals--coming-up figure figcaption { - margin-top: 0; -} - -.dashboard-membership__visuals--welcome figure { - min-width: 290px; -} - -.pricing__card a { - text-shadow: none; -} - -.pricing__card--active, -.pricing__card--suggested { - position: relative; -} - -.pricing__card--suggested .pricing__card__body header:before { - content: "Meow! ↓"; - position: absolute; - top: 0; - left: 4vw; - display: block; - width: auto; - height: auto; - padding: .3em .7em; - border-radius: 11px; - text-transform: uppercase; - letter-spacing: 1px; - color: #fff; - font-weight: 700; - background-color: #41b14f; - transition: all .2s ease-in-out; - transform-origin: 0 100%; - transform: scale(1.1) translateX(-16%) translateY(-3%) rotateZ(-11deg); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .pricing__card--suggested .pricing__card__body header:before { - font-family: Mija; -} - -@media all and (min-width:550px) { - .pricing__card--suggested .pricing__card__body header:before { - top: 0; - left: calc(20% + 4vw); - } -} - -@media all and (min-width:1024px) { - .pricing__card--suggested .pricing__card__body header:before { - top: 1em; - left: 0; - } -} - -.pricing__card--suggested:hover header:after, -.pricing__card--suggested:hover header:before { - transition: all .2s ease-in-out; - transform-origin: 0 100%; - transform: scale(1.1) translateX(0) translateY(0) rotateZ(0); -} - -@supports (-ms-ime-align:auto) { - .pricing__card--suggested .pricing__card__body header:before { - font-size: calc(1em + .2vw); - } -} - -g.pricing__label { - transition: all .2s ease-in-out; -} - -@media all and (min-width:650px) { - - .pricing__card--member g.pricing__label--member, - .pricing__card--smashing g.pricing__label--smashing, - .pricing__card--supporter g.pricing__label--supporter { - transition: all .2s ease-in-out; - transform: translateX(0) translateY(0) rotateZ(-6deg); - z-index: 9; - } -} - -@media all and (min-width:650px) { - - .pricing__card--member:hover g.pricing__label--member, - .pricing__card--smashing:hover g.pricing__label--smashing, - .pricing__card--supporter:hover g.pricing__label--supporter { - transform: translateX(-8%) translateY(-3%) rotateZ(0); - transition: all .2s ease-in-out; - } -} - -.view__switcher--container { - width: auto; - display: flex; - align-items: center; - justify-content: center; - margin-top: 0; - margin-bottom: 2em; -} - -.view__switcher--container:not(.content-tabs) .btn:first-of-type { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} - -.view__switcher--container:not(.content-tabs) .btn:last-of-type { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} - -.view__switcher--container .btn--selected:hover { - cursor: not-allowed; -} - -.feature-comparison { - margin-top: 0; - margin-bottom: 0; - width: 100%; - font-size: calc(.8rem + .5vw); - line-height: 1.5; - border-collapse: collapse; - clear: both; - table-layout: fixed; -} - -.feature-comparison td, -.feature-comparison th { - text-align: center; - padding: 1em; - border: none; - border-bottom: 1px solid #ddd; -} - -.feature-comparison th span { - display: block; - font-size: .8em; -} - -.feature-comparison th span span { - display: inline-block; -} - -.feature-comparison th ins { - text-decoration: none; -} - -.feature-comparison thead .btn--membership-option { - margin-top: 0; -} - -.feature-comparison tbody td { - color: #d33a2c; - font-weight: 700; - font-size: 1.2em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .feature-comparison tbody td { - font-family: Mija; -} - -.feature-comparison tbody td:not(:first-child) { - text-align: center; -} - -.feature-comparison tbody td:nth-of-type(2), -.feature-comparison tbody td:nth-of-type(3), -.feature-comparison tbody td:nth-of-type(4) { - width: 20%; -} - -.feature-comparison tbody th { - text-align: left; - font-weight: 400; - color: #333; - width: 40%; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .feature-comparison tbody th { - font-family: Elena; -} - -.feature-comparison tbody td:first-child, -.feature-comparison tbody th:first-child { - text-align: left; - font-weight: 400; - color: #333; - line-height: 1.5; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .feature-comparison tbody td:first-child, -.wf-loaded-stage2 .feature-comparison tbody th:first-child { - font-family: Elena; -} - -.feature-comparison tfoot tr { - border-bottom: none; -} - -.feature-comparison tfoot tr td { - padding-top: 0; - border-bottom: none; -} - -.feature-comparison tfoot th { - border-bottom: none; -} - -.no-js .feature-comparison { - display: block; - max-width: 100%; - overflow-x: auto; - border-collapse: collapse; - border-spacing: 0; -} - -.feature-comparison .feature-comparison__options th:first-child, -.feature-comparison .feature-comparison__options th:not(:first-child) { - transition: all .3s ease-in-out; -} - -@media all and (min-width:640px) and (max-width:1024px) { - .feature-comparison .feature-comparison__options th:first-child { - min-width: 36%; - } - - .feature-comparison .feature-comparison__options th:not(:first-child) { - min-width: 21%; - } -} - -@media all and (min-width:1024px) { - .feature-comparison .feature-comparison__options th:first-child { - width: 41.5%; - } - - .feature-comparison .feature-comparison__options th:not(:first-child) { - width: 19.5%; - } -} - -.feature-comparison .feature-comparison__options td { - vertical-align: baseline; -} - -.feature-comparison .feature-comparison__options td a { - display: flex; - margin-top: auto; - background-image: none; - justify-content: center; -} - -.feature-comparison .feature-comparison__options img { - transform: scale(1.4); -} - -.feature-comparison .feature-comparison__options button { - margin-top: 1.25em; -} - -.feature-comparison th.feature-comparison__feature small { - color: #333; -} - -.feature-comparison .feature-comparison__category { - font-size: 1.6em; -} - -.feature-comparison .feature-comparison__category .feature-comparison__category--button { - padding: 1em 1em; - font-size: .65em; -} - -@media all and (min-width:640px) { - .feature-comparison .feature-comparison__category { - border: 4px solid #fff; - } -} - -.feature-comparison .feature-comparison__category:not(:first-child) { - border-top: 2.5em solid #fff; -} - -.feature-comparison .feature-comparison__category th.feature-comparison__feature { - font-weight: 700; - color: #333; - padding-top: .75em; - padding-bottom: .75em; - white-space: nowrap; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .feature-comparison .feature-comparison__category th.feature-comparison__feature { - font-family: Mija; -} - -@media all and (min-width:640px) { - .feature-comparison .feature-comparison__category th.feature-comparison__feature { - color: #d33a2c; - padding-left: .625em; - } -} - -@media all and (min-width:640px) { - .feature-comparison .feature-comparison__category { - background-color: #fff2cc; - } -} - -.tick-wrapper { - display: inline-block; - position: relative; - transition: all .3s ease-in-out; -} - -.tick-wrapper::before { - display: block; - content: ""; - height: 90%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; - width: 80%; - left: 0; -} - -@media all and (min-width:1400px) { - .tick-wrapper svg { - transform: scale(1.3, 1.3); - } -} - -@media all and (max-width:450px) { - .feature-comparison__options th .membership__price span { - display: none; - } -} - -.feature-comparison__category th ins { - font-size: calc(.9em + .5vw); -} - -.feature-comparison__category th .membership__price { - font-size: calc(.8em + .5vw); -} - -@media all and (max-width:740px) { - .membership-plans__container .tablesaw-bar { - padding-right: 1em; - } - - .feature-comparison__category th:nth-child(2), - .feature-comparison__category th:nth-child(3), - .feature-comparison__category th:nth-child(4), - .feature-comparison__options th:nth-child(2), - .feature-comparison__options th:nth-child(3), - .feature-comparison__options th:nth-child(4) { - width: 20%; - } - - .feature-comparison__category th ins, - .feature-comparison__options th ins { - display: none; - } - - .feature-comparison__category th .membership__price, - .feature-comparison__options th .membership__price { - color: #fff; - text-align: center; - margin: 0 auto; - font-size: calc(.9em + .5vw); - } -} - -@media all and (max-width:740px) and (max-width:375px) { - - .feature-comparison__category th .membership__price, - .feature-comparison__options th .membership__price { - position: relative; - left: -.4em; - } -} - -@media all and (max-width:740px) { - - .feature-comparison__category th .membership__price span, - .feature-comparison__options th .membership__price span { - font-size: .7em; - margin-left: 0; - white-space: nowrap; - } - - .feature-comparison__category th .membership__price { - font-size: calc(1em + .5vw); - } - - .feature-comparison__category th .membership__price span { - white-space: pre-wrap; - } - - .feature-comparison.tablesaw-bar::after { - content: "All options include access to a monthly webinar, conference videos, workshop slides and Smashing TV — that, and invite to all SmashingConf parties. Booo-yah! 🎉 "; - border-radius: 11px; - padding: .85em 1em; - line-height: 1.5em; - background-color: #fff2cc; - color: #333; - margin: 1em 0; - display: inline-block; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; - } - - .wf-loaded-stage2 .feature-comparison.tablesaw-bar::after { - font-family: Elena; - } - - .feature-comparison th ins { - text-decoration: none; - } -} - -.membership-options-comparison { - display: block; - margin: 2em auto 0 auto; - padding: .5em 1em .5em 1em; -} - -.btn--lined__upgrade { - background-image: none; -} - -.btn--lined__upgrade .btn { - box-shadow: none; - margin: 1.25em .5em; -} - -@media all and (min-width:1024px) { - .btn--lined__upgrade .btn { - margin-right: 1em; - } -} - -@media all and (min-width:600px) { - .btn--lined__upgrade { - background-image: linear-gradient(#ddd, #ddd); - } -} - -.pricing-toggle-container { - text-align: center; - margin-bottom: 3em; - padding-right: .5em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .pricing-toggle-container { - font-family: Mija; -} - -.pricing-toggle-container .vh { - clip: rect(1px, 1px, 1px, 1px); - -webkit-clip-path: inset(100%); - clip-path: inset(100%); - height: 1px; - overflow: hidden; - position: absolute; - white-space: nowrap; - width: 1px; -} - -.pricing-toggle-container .chooser { - display: flex; - justify-content: center; - align-items: center; -} - -.pricing-toggle-container .chooser input+label { - filter: grayscale(100%); - transition: filter .15s cubic-bezier(.17, .67, .83, .67); -} - -.pricing-toggle-container .chooser label { - font-size: 1.5rem; - color: #7d7d7d; - font-weight: 700; - padding: .65em .4em; - text-align: center; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .pricing-toggle-container .chooser label { - font-family: Mija; -} - -.pricing-toggle-container .chooser label:hover { - cursor: pointer; -} - -.pricing-toggle-container .chooser input:checked+label { - color: #41b14f; - text-decoration: underline; - text-decoration-thickness: .125em; - filter: none; -} - -.pricing-toggle-container .chooser input:focus+label { - outline: 2px dotted; - outline-offset: .125em; -} - -.pricing-toggle-container .toggle { - width: 90px; - height: 45px; - background-color: #41b14f; - border-radius: 100px; - margin: 0 1.5em; - display: block; - position: relative; - transition: background-color .5s ease; -} - -.pricing-toggle-container .toggle:hover { - cursor: pointer; -} - -.pricing-toggle-container .toggle.on { - background-color: #41b14f; -} - -.pricing-toggle-container .switch { - position: absolute; - top: 2px; - left: 2px; - right: calc(100% - 45px); - border-radius: 50%; - background-color: #fff; - height: 41px; - transition: .25s cubic-bezier(.785, .135, .15, .86); - transition-property: left, right; - transition-delay: 0s, 30ms; - pointer-events: none; -} - -.pricing-toggle-container input:not(:checked)~.toggle .switch { - transition-delay: 30ms, 0s; -} - -.pricing-toggle-container input:not(:checked)~.toggle .switch { - right: 2px; - left: calc(100% - 45px); -} - -.pricing-toggle-container fieldset { - all: initial; - display: block; -} - -::-moz-range-track, -::-ms-track, -input[type=range] { - background-color: #3f91e5; - width: 100%; -} - -.membership-slider { - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; - margin-bottom: 2em; -} - -.output--wrapper { - margin: 0 0 .125em 0; - width: calc(100% - 1.5em); - padding: 1.5em 1em; - text-align: center; -} - -@media all and (min-width:560px) { - .output--wrapper { - width: calc(23em + 2vw); - padding-left: 3em; - padding-right: 3em; - } -} - -@media all and (min-width:750px) { - .output--wrapper { - width: calc(30em + 3vw); - } -} - -.output--wrapper output { - font-weight: 700; - width: 100%; - font-size: calc(2.3em + 2vw); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .output--wrapper output { - font-family: Mija; -} - -@media all and (min-width:750px) { - .output--wrapper output { - font-size: calc(3.65em + 2vw); - } -} - -.output--wrapper output::before { - content: "$"; -} - -.output--wrapper output::after { - content: " / month"; - font-size: .5em; -} - -.output--wrapper .output__desc { - display: block; - font-weight: 700; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; -} - -.output--wrapper .output__desc a { - background-position: center 72%; -} - -.slider { - position: relative; - width: 100%; - font-feature-settings: "smcp" 1, "c2sc" 1, "tnum" 1, "frac" 1, "sups" 1, "subs" 1; -} - -.slider datalist { - display: flex; - flex-direction: row; - justify-content: space-between; - width: 100%; - padding-top: 0; - color: #777; - position: relative; - top: -1.75em; - z-index: 1; - margin-top: -2em; -} - -.slider datalist option { - box-sizing: border-box; - display: flex; - align-items: flex-end; - justify-content: center; - font-size: .9em; - width: 25px; - height: 2em; - position: relative; - top: -2em; - padding-top: 2em; - background: linear-gradient(90deg, #e5e5e5 1px, #e5e5e5 1px, transparent 1px) no-repeat border-box; - background-size: 12% 15px; - background-position: center 0, center; -} - -.slider datalist option:nth-child(1n + 4) { - background: linear-gradient(90deg, #41b14f 1px, #fff 1px, #fff 1px) no-repeat border-box; - background-size: 12% 15px; - background-position: center 0, center; -} - -.slider datalist option:nth-child(1n + 10) { - background: linear-gradient(90deg, #2da2c5 1px, #fff 1px, #fff 1px) no-repeat border-box; - background-size: 12% 15px; - background-position: center 0, center; -} - -.slider--track { - box-sizing: border-box; - padding: .375rem 0; - width: 100%; - height: 2.25em; - border-radius: 1.125em; - box-shadow: inset 0 -1px 1px #fff, inset 0 -1px 1px #e5e5e5, inset 0 -1px 1px #e5e5e5, inset 0 -2px 1px #767676; - background: #f6f3f2; - background: linear-gradient(#f5f5f5, #eee 42.857%, #bfbfbf); - position: relative; - top: -.5em; -} - -.slider--filling { - display: block; - content: ""; - position: absolute; - top: 0; - left: 0; - box-sizing: border-box; - padding: .375rem 0; - width: 0%; - height: 2.15em; - border-radius: 1.125em 0 0 1.125em; - background: linear-gradient(to right, #9ec14c, #41b14f 13em, #2da2c5); - background-size: 100% 100%; -} - -.slider input[type=range] { - position: relative; - top: -2.1em; - margin-top: calc(16px - 2.5em); - align-self: center; - padding-bottom: 2.5em; - background: inherit; - cursor: pointer; - width: 100%; - border: solid 2.1rem transparent; - border-left: none; - border-right: none; - z-index: 2; -} - -.slider input[type=range]::-webkit-slider-runnable-track { - background: 0 0; -} - -.slider input[type=range]::-moz-range-track { - background: 0 0; -} - -.slider input[type=range]::-ms-track { - background: 0 0; - color: transparent; -} - -.slider input[type=range]::-ms-fill-lower { - background: 0 0; -} - -.slider input[type=range]::-ms-fill-upper, -.slider input[type=range]::-ms-tooltip { - display: none; -} - -.slider input[type=range]::-webkit-slider-thumb { - margin-top: -.375em; - box-sizing: border-box; - border: none; - padding: .375em; - width: 2.25em; - height: 2.25em; - border-radius: 50%; - box-shadow: 0 .375em .5em -.125em grey, inset 0 -.25em .5em -.125em #bbb; - background: linear-gradient(#9ec14c, #41b14f) content-box, linear-gradient(#fdfdfd, #c4c4c4) border-box; - cursor: pointer; -} - -.slider input[type=range]::-moz-range-thumb { - box-sizing: border-box; - border: none; - padding: .375em; - width: 2.25em; - height: 2.25em; - border-radius: 50%; - box-shadow: 0 .375em .5em -.125em grey, inset 0 -.25em .5em -.125em #bbb; - background: linear-gradient(#9ec14c, #41b14f) content-box, linear-gradient(#fdfdfd, #c4c4c4) border-box; - cursor: pointer; -} - -.slider input[type=range]::-ms-thumb { - box-sizing: border-box; - border: none; - padding: .375em; - width: 2.25em; - height: 2.25em; - border-radius: 50%; - box-shadow: 0 .375em .5em -.125em grey, inset 0 -.25em .5em -.125em #bbb; - background: linear-gradient(#9ec14c, #41b14f) content-box, linear-gradient(#fdfdfd, #c4c4c4) border-box; - cursor: pointer; -} - -.slider input[type=range] :hover, -.slider input[type=range]:active, -.slider input[type=range]:focus { - outline: 0; -} - -@media all and (min-width:1024px) { - .slider input[type=range] { - border: solid 2.5rem transparent; - } -} - -.membership-calculator .slider { - max-width: 35em; -} - -.membership-calculator .slider input[type=range] { - border-right-width: 0; - border-left-width: 0; -} - -.membership-calculator .output--wrapper { - background-color: #f6f3f2; -} - -.membership-calculator output { - color: #41b14f; -} - -.membership-calculator output::after { - color: #41b14f; -} - -.membership-calculator .output__desc { - color: #41b14f; -} - -@media all and (min-width:750px) { - .membership-calculator datalist { - width: 35em; - border-left: solid .5em transparent; - border-right: solid .5em transparent; - } -} - -.membership-calculator datalist option { - color: #666; -} - -.membership-calculator datalist option:nth-child(1n + 4) { - color: #41b14f; -} - -.membership-calculator datalist option:nth-child(1n + 10) { - color: #2da2c5; -} - -.membership-desc { - position: relative; - top: -1.5em; -} - -.membership-desc section { - display: flex; - flex-direction: column-reverse; - align-items: center; - justify-content: center; - color: #333; -} - -@media all and (min-width:550px) { - .membership-desc section { - flex-direction: row-reverse; - } -} - -.membership-desc section img { - max-width: 70%; -} - -@media all and (min-width:550px) { - .membership-desc section img { - margin-left: 1em; - width: 100%; - min-width: 250px; - height: auto; - align-self: flex-start; - justify-content: flex-start; - } -} - -.membership-desc section h2 { - color: #41b14f; -} - -.membership-desc section p { - text-align: left; -} - -.checkout__tabs-wrapper { - background-image: linear-gradient(#ddd, #ddd); - background-size: 100% 1px; - background-repeat: no-repeat; - background-position: left center; - margin: 0 0 calc(.75em + 2vw) 0; -} - -@media (max-width:40em) { - .checkout__tabs-wrapper { - margin: 0; - } -} - -@media (max-width:48em) { - .checkout__tabs-wrapper .container { - padding: 0; - width: 100%; - } -} - -@media all and (max-width:300px) { - .checkout__tabs-wrapper { - background: #eee; - } -} - -.auth-modal-wrapper input[type=number]::-webkit-inner-spin-button, -.auth-modal-wrapper input[type=number]::-webkit-outer-spin-button, -.checkout input[type=number]::-webkit-inner-spin-button, -.checkout input[type=number]::-webkit-outer-spin-button { - -webkit-appearance: none; - appearance: none; - display: none; - margin: 0; -} - -@media (max-width:40em) { - .checkout__tabs__breadcrumbs { - display: flex; - flex-direction: row; - } -} - -.checkout__tabs { - width: 100%; - display: flex; - justify-content: space-between; - margin: 0; - padding: 0 .75vw; -} - -@media all and (max-width:300px) { - .checkout__tabs { - flex-direction: column; - } -} - -@media all and (max-width:500px) { - .checkout__tabs { - max-width: 50%; - } -} - -.checkout__tabs__breadcrumbs .btn[disabled] { - color: #767676; - border: 1px solid #ddd; - background: #fff; - opacity: 1; -} - -.checkout__tabs__breadcrumbs__mobile-nav { - display: none; -} - -.checkout__tabs__breadcrumbs__mobile-nav a.disabled { - background-image: none; -} - -@media (max-width:40em) { - .checkout__tabs__breadcrumbs__mobile-nav { - display: flex; - flex-direction: row; - min-width: 200px; - white-space: nowrap; - margin-left: auto; - } - - .checkout__tabs__breadcrumbs__mobile-nav li { - display: inline-block; - } -} - -.checkout__tab { - margin: 0 1em; - padding: .5em; - display: inline-block; - line-height: 1; - background: #fff; - color: #333; - font-size: 1.1em; -} - -.checkout__tab .lining-figures-tnum { - font-size: .8em; -} - -.checkout__tab:first-of-type { - margin-left: 0; -} - -@media (max-width:40em) { - .checkout__tab { - display: none; - } -} - -@media (max-width:40em) { - .checkout__tab:nth-child(1).active a:before { - content: "Step 1/3:"; - } -} - -@media (max-width:40em) { - .checkout__tab:nth-child(2).active a:before { - content: "Step 2/3:"; - } -} - -@media (max-width:40em) { - .checkout__tab:nth-child(3).active a:before { - content: "Step 3/3:"; - } -} - -.checkout__tab.active { - display: block; - color: #41b14f; -} - -@media all and (max-width:300px) { - .checkout__tab.active { - background: #41b14f; - color: #fff; - } -} - -@media (max-width:40em) { - .checkout__tab.active a { - font-size: 1.5em; - } - - .checkout__tab.active a .lining-figures-tnum { - display: none; - } - - .checkout__tab.active a:before { - color: #333; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-weight: 700; - display: block; - } - - .checkout__tab.active a:before a { - background-position: center 72%; - } -} - -.checkout__tab a { - display: block; - padding: .35em; - font-feature-settings: "smcp" 1, "c2sc" 1; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - color: inherit; - text-decoration: none; - font-weight: 700; - letter-spacing: .5px; - width: 100%; - text-align: center; - background-image: none; -} - -@media (max-width:40em) { - .checkout__tab { - text-align: center; - font-size: .7em; - line-height: 1.2; - } -} - -@media all and (max-width:300px) { - .checkout__tab { - display: block; - text-align: center; - background: #eee; - font-size: .9em; - line-height: 1.2; - } -} - -.checkout__tab-section { - padding: 2em 0 4em; -} - -.title--secure { - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48cGF0aCBmaWxsPSIjNDFCMTRGIiBkPSJNMTUgMjEuOTE1Yy0uNTgzLS4yMDYtMS0uNzYyLTEtMS40MTUgMC0uODI4LjY3Mi0xLjUgMS41LTEuNXMxLjUuNjcyIDEuNSAxLjVjMCAuNjUzLS40MTcgMS4yMDktMSAxLjQxNXYyLjU5NGMwIC4yNjMtLjIyNC40OTEtLjUuNDkxLS4yNjggMC0uNS0uMjItLjUtLjQ5MXYtMi41OTR6bS03LTcuOTE1Yy0xLjY1OC4wMDUtMyAxLjM0LTMgMy4wMDl2OS45ODFjMCAxLjY2MiAxLjM0NiAzLjAwOSAzLjAwOSAzLjAwOWgxNC45ODJjMS42NjIgMCAzLjAwOS0xLjMzNyAzLjAwOS0zLjAwOXYtOS45ODFjMC0xLjY1OS0xLjM0MS0zLjAwNS0zLTMuMDA5di0zLjUwMWMwLTQuMTQyLTMuMzY2LTcuNDk5LTcuNS03LjQ5OS00LjE0MiAwLTcuNSAzLjM1Ny03LjUgNy40OTl2My41MDF6bTMgMHYtMy40OTljMC0yLjQ5MiAyLjAxNS00LjUwMSA0LjUtNC41MDEgMi40OCAwIDQuNSAyLjAxNSA0LjUgNC41MDF2My40OTloLTl6Ii8+PC9zdmc+); - background-repeat: no-repeat; - background-size: 1em 1em; - background-position: left top -.025em; - padding-left: 1.25em; -} - -.cvv-more a { - float: right; - clear: both; - color: #006fc6; - width: auto; -} - -.ccv-info { - clear: both; - float: right; - font-size: .85em; - max-width: 30em; - padding: 0 1.5em .5em 1em; - margin: 1em 0; - background: #fff2cc; - border-radius: 11px; - -webkit-animation: content-injection .3s forwards; - animation: content-injection .3s forwards; -} - -.ccv-info:after, -.ccv-info:before { - content: " "; - display: table; - clear: both; -} - -.ccv-info p { - line-height: 1.5; -} - -.ccv-more:after, -.ccv-more:before { - content: " "; - display: table; - clear: both; -} - -.checkout__receipt__update input[type=submit] { - margin: 0; -} - -.checkout__success { - padding: 3em 0; -} - -.checkout__success h3 { - text-transform: none; -} - -.checkout__success__content { - margin: 2em auto; - max-width: 650px; -} - -.checkout__success__content form { - display: block; - text-align: left; - width: 100%; - border-radius: 11px; - margin: 1em 0; - background: #f6f6f6; - padding: 2em; -} - -.checkout__success__content form label { - color: #666; - margin-bottom: 0; -} - -.checkout__success__content form input[type=submit] { - display: inline-block; - margin: 0 auto; -} - -.checkout__success__downloads .meta { - color: #444; -} - -.checkout__success__content__container { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} - -@media all and (min-width:1150px) { - .checkout__success__content__container { - flex-direction: row; - } -} - -.checkout__success__visual { - min-width: 320px; - width: 60%; - max-width: 780px; - margin: 0; - padding: 0; -} - -@media all and (min-width:1150px) { - .checkout__success__visual { - min-width: 360px; - width: 33%; - padding: 0 .5em 0 .5em; - } -} - -.checkout__success__visual a { - background-image: none; -} - -.checkout__confirmation { - margin: 2em auto .5em; - max-width: 400px; - text-align: center; - font-size: 1.2em; -} - -input[type=text].input__coupon { - box-sizing: border-box; -} - -input[type=text].input__coupon:focus { - box-shadow: none; -} - -input[type=text].input__coupon.success { - color: #41b14f; - border-color: #41b14f; - font-weight: 700; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 input[type=text].input__coupon.success { - font-family: Mija; -} - -.checkout__receipt__discount.success .btn.success { - background: linear-gradient(#9ec14c, #41b14f); - color: #fff; - border-color: #41b14f; -} - -.checkout__receipt__discount.success .btn.success span { - color: #fff; -} - -.checkout__coupon .coupon-sum { - color: #d33a2c; -} - -.checkout__coupon .coupon-code { - background-color: #fff2cc; - font-family: monospace; - padding: .15em .6em .35em .6em; - line-height: 1.1em; - display: inline; - border-radius: 11px; - white-space: nowrap; -} - -.checkout__coupon .membership-coupon { - padding: .15em .6em .35em .6em; - line-height: 1.4em; - display: inline; - border-radius: 11px; - white-space: nowrap; - color: #fff; - font-weight: 700; - background-color: #d33a2c; - background-image: linear-gradient(to bottom, #f88040, #d33a2c); -} - -.checkout__coupon .membership-emoji { - position: relative; - top: .2em; - text-decoration: none; -} - -.checkout__coupon_remove { - text-decoration: none; - font-size: .5em; - color: #d33a2c; - background-image: none; - border: 1px solid #d33a2c; - padding: 2px 4px; - vertical-align: middle; - border-radius: 50%; -} - -.checkout__coupon .coupon-code::after { - content: ""; - width: 2em; - margin-left: .2em; - margin-right: -1em; - height: .9em; - vertical-align: middle; - display: inline-block; - background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4KPHBhdGggZmlsbD0iIzQxQjE0RiIgZD0iTTE2IDBjLTguODM2IDAtMTYgNy4xNjQtMTYgMTZzNy4xNjQgMTYgMTYgMTYgMTYtNy4xNjQgMTYtMTYtNy4xNjQtMTYtMTYtMTZ6TTEzLjUyIDIzLjM4M2wtNy4zNjItNy4zNjMgMi44MjgtMi44MjggNC41MzMgNC41MzUgOS42MTctOS42MTcgMi44MjggMi44MjgtMTIuNDQ0IDEyLjQ0NXoiPjwvcGF0aD4KPC9zdmc+Cg==); - background-repeat: no-repeat; - background-position: right 1em center; - background-size: .9em .9em; -} - -.stripe-button--apple-pay { - display: inline-block; - cursor: pointer; - height: 1.25em; - vertical-align: middle; -} - -.checkout .trumpet { - margin-bottom: 3em; -} - -.checkout__receipt__dispenser { - position: relative; - top: 1.4em; -} - -.checkout__receipt__dispenser:after, -.checkout__receipt__dispenser:before { - content: " "; - display: table; - clear: both; -} - -.checkout__receipt__dispenser::before { - content: ""; - display: block; - height: 25px; - width: 105%; - position: relative; - left: -2.5%; - bottom: -20px; - border-radius: 11px; - background: #eee; - z-index: -1; -} - -.checkout__receipt__dispenser::after { - content: ""; - display: block; - height: 10px; - width: 96%; - position: absolute; - top: 28px; - left: 2%; - border-radius: 11px; - background: #000; - z-index: -1; -} - -@media (max-width:64em) { - - .checkout__receipt__dispenser::after, - .checkout__receipt__dispenser::before { - display: none; - } -} - -.checkout__receipt__wrapper { - overflow-y: hidden; - margin-top: .3em; - margin-bottom: 3em; - border-radius: 11px 11px 0 0; - -webkit-clip-path: inset(0 0 0 0 round 11px 11px 11px 11px); - clip-path: inset(0 0 0 0 round 11px 11px 11px 11px); -} - -@media (max-width:64em) { - .checkout__receipt__wrapper { - border-radius: 0; - } -} - -.checkout__receipt { - width: 98%; - margin: 0 auto; - padding: 2em 1em; - font-size: calc(.8em + .1vw); - margin-bottom: 1em; - background: #fff; - position: relative; - box-shadow: inset 0 3px 2px #eee; - border: 1px solid #ddd; - border-radius: 11px 11px 0 0; - filter: drop-shadow(rgba(0, 0, 0, .15) 0 1px 2px); -} - -.checkout__receipt.checkout__review { - font-size: calc(.8em + .25vw); - border-radius: 0; - box-shadow: none; - transform: none; - max-width: calc(400px + 6vw); - -webkit-animation: none; - animation: none; - margin: 2em auto; -} - -@media (max-width:64em) { - .checkout__receipt { - border-radius: 0; - box-shadow: none; - } -} - -@media screen and (min-width:64em) { - .checkout__receipt { - transform: translateY(-110%); - -webkit-animation: receipt 3s ease-out forwards; - animation: receipt 3s ease-out forwards; - } -} - -.checkout__receipt::after { - content: ""; - display: block; - position: absolute; - bottom: -10px; - left: 0; - width: 100%; - height: 10px; - transform: rotateX(180deg); - background: linear-gradient(45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%), linear-gradient(-45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%); - background-size: 20px 40px; -} - -.checkout__receipt .form__field { - margin: 0; -} - -@-webkit-keyframes receipt { - to { - transform: translateY(0); - } -} - -@keyframes receipt { - to { - transform: translateY(0); - } -} - -.checkout__receipt__items { - padding: 0; - list-style: none; - margin: 0; - font-feature-settings: "tnum" 1, "lnum" 1, "frac" 1, "sups" 1, "subs" 1; -} - -.checkout__receipt__item-image { - width: 75px; - margin: 0 1em 0 0; - float: left; -} - -.checkout__receipt__item { - padding: 1em 0; - border-bottom: 1px solid #ddd; - overflow: hidden; - margin: 0; -} - -.checkout__receipt__item__title { - font-size: inherit; - margin-bottom: .2em; - line-height: 1.3; - margin-top: 0; - font-style: normal; -} - -.checkout__receipt__item__desc { - color: #666; - font-size: .9em; - margin: 0; - margin-bottom: 1em; - line-height: 1.4; -} - -.checkout__receipt__amount { - width: auto; - float: right; - margin: 0; - padding: 0; -} - -.receipt__row { - border-bottom: 1px solid #ddd; - padding: 1em 0; - position: relative; -} - -.receipt__row.checkout__receipt__total { - border-bottom: none; -} - -.checkout__receipt__discount { - overflow: hidden; -} - -.checkout__receipt__discount .error-msg { - margin-left: 6px; - padding: .45em 1em; -} - -.checkout__receipt__discount input { - padding: 1em; - margin: 0; - font-size: 1em; - float: left; - border: 1px solid #ddd; -} - -.checkout__receipt__discount input[type=text] { - max-width: calc(60% - 6px); - border-radius: 11px 0 0 11px; - color: #666; - background-color: #fff; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .checkout__receipt__discount input[type=text] { - font-family: Elena; -} - -.checkout__receipt__discount input[type=text]:focus { - outline: 0; - box-shadow: 0 4px 15px #bebebe; - border: 1px solid #dadada; -} - -.checkout__receipt__discount button { - margin: 1em 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - min-width: 40%; - box-sizing: border-box; -} - -.checkout__receipt__discount button.input__coupon__submit { - font-weight: 700; - font-size: 1em; - transition: background .2s ease-in-out; - border-radius: 0 11px 11px 0; - cursor: pointer; - border-left: none; - text-shadow: none; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .checkout__receipt__discount button.input__coupon__submit { - font-family: Mija; -} - -.checkout__receipt__discount button.input__coupon__submit.btn--grey--bordered { - border-top: 1px solid #ddd; - border-right: 1px solid #ddd; - color: #666; - background-color: #eee; -} - -.checkout__receipt__discount button.input__coupon__submit[disabled] { - cursor: not-allowed; -} - -.checkout__receipt__discount button.input__coupon__submit[data-loading] { - background-color: #666; - color: #fff; -} - -@supports (display:flex) { - .input__coupon__wrapper { - display: flex; - padding-left: 6px; - } - - .input__coupon__wrapper .input__coupon { - width: auto; - margin: 1em 0; - color: #f6f6f6; - } - - .input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown) { - font-weight: 700; - letter-spacing: 1px; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; - } - - .wf-loaded-stage2 .input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown) { - font-family: Mija; - } - - .input__coupon__wrapper .input__coupon:not(:placeholder-shown) { - font-weight: 700; - letter-spacing: 1px; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; - } - - .wf-loaded-stage2 .input__coupon__wrapper .input__coupon:not(:placeholder-shown) { - font-family: Mija; - } - - .input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown):active, - .input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown):focus { - color: #333; - } - - .input__coupon__wrapper .input__coupon:not(:placeholder-shown):active, - .input__coupon__wrapper .input__coupon:not(:placeholder-shown):focus { - color: #333; - } - - .input__coupon__wrapper input[type=submit] { - width: auto; - margin: 1em 0; - } -} - -table.checkout__receipt__costs { - table-layout: fixed; - color: #666; - margin: 0; - padding: 0; - font-feature-settings: "smcp" 1, "c2sc" 1, "tnum" 1, "lnum" 1, "frac" 1; -} - -table.checkout__receipt__costs tr { - border: none; - padding: 0; -} - -table.checkout__receipt__costs tr td, -table.checkout__receipt__costs tr th { - padding: .5em 0; - color: inherit; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-size: 1.1em; - font-weight: 400; - background: 0 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 table.checkout__receipt__costs tr td, -.wf-loaded-stage2 table.checkout__receipt__costs tr th { - font-family: Elena; -} - -table.checkout__receipt__costs tr td a, -table.checkout__receipt__costs tr th a { - background-position: center 72%; -} - -table.checkout__receipt__costs th { - width: 60%; -} - -table.checkout__receipt__costs td { - width: 40%; - text-align: right; -} - -table.checkout__receipt__costs .delivery-highlight, -table.checkout__receipt__costs .shipping-highlight-costs { - color: #41b14f; -} - -.checkout__emoji { - font-size: .8em; - position: relative; - top: .15em; - left: -.25em; -} - -.checkout__receipt__total { - overflow: hidden; - font-size: 1.4em; -} - -.checkout__receipt__total small { - font-size: .55em; -} - -.checkout__receipt__currency { - color: #aaa; -} - -.checkout__receipt__total-price { - display: block; - float: right; - color: #41b14f; - font-weight: 700; - font-size: 1.3em; - font-feature-settings: "smcp" 1, "c2sc" 1, "lnum" 1, "frac" 1, "sups" 1, "subs" 1; -} - -.checkout__review .btn--full { - margin: 0 0 1em; -} - -.checkout__review__edit-address { - position: absolute; - top: 1em; - right: 0; - padding-top: .25em; - padding-bottom: .25em; -} - -.checkout__receipt-container span.btn--full { - margin: 0 0 1.5em 0; -} - -.btn.checkout__receipt-toggle { - display: none; -} - -.checkout__receipt__dispenser.open { - max-height: 50em; -} - -@media (max-width:64em) { - .checkout__receipt__dispenser { - max-height: 0; - overflow: hidden; - transition: max-height .3s ease-in-out; - } - - .btn.checkout__receipt-toggle { - display: block; - } -} - -.checkout__review__email-wrapper { - max-width: calc(400px + 6vw); - min-height: 54px; - margin: 0 auto; - position: relative; - text-align: left; - font-size: 1em; -} - -.checkout__review__email-wrapper span { - line-height: 1.3em; -} - -@media all and (max-width:480px) { - .checkout__review__email-wrapper { - height: auto; - margin-top: 0; - text-align: center; - } - - .checkout__review__email-wrapper .form__field input.success { - text-align: center; - } - - .checkout__review__email-wrapper .form__field .input-wrapper:after { - background-image: none; - } - - .checkout__review__email-wrapper .form__field { - margin-bottom: 0; - } -} - -.checkout__review__email { - display: block; - max-width: calc(400px + 6vw); - position: relative; - font-size: 1em; - font-weight: 700; - left: 0; - transition: transform .4s ease-out; - background: #fff2cc; - border-radius: .5em; - padding: .75em 5em .75em 1em; -} - -.checkout__review__email.editing { - transform: translateX(1em); -} - -@media all and (max-width:480px) { - .checkout__review__email { - position: static; - display: block; - text-align: center; - padding: .75em 1em; - } - - .checkout__review__email .form__field input { - text-align: center; - } -} - -.btn.checkout__review__email-editor { - font-size: .9em; - line-height: 1; - margin: 0 auto; - position: absolute; - right: 1em; - top: .6em; -} - -@media all and (max-width:480px) { - .btn.checkout__review__email-editor { - position: static; - display: inline-block; - margin-top: 1em; - } -} - -.content-tabs { - display: flex; - flex-direction: row; - min-width: 200px; - white-space: nowrap; - margin-left: auto; - justify-content: center; - border-radius: 11px; - min-height: 4.5em; - background-image: linear-gradient(#ddd, #ddd); - background-size: 100% 1px; - background-repeat: no-repeat; - background-position: center center; -} - -.content-tabs ul { - padding-left: 0; -} - -.content-tabs li { - display: inline-block; - margin-right: 0; - margin-bottom: 0; -} - -.content-tabs li:first-child { - padding-left: 0; -} - -.content-tabs .content-tabs__current .btn { - background-color: #41b14f; - color: #fff; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - border: 0; - box-shadow: inset 0 2px 1px rgba(0, 0, 0, .2); -} - -@media all and (min-width:481px) { - .content-tabs.content-tabs--books { - display: none; - } -} - -@media screen and (min-width:64em) { - - .content-tabs.content-tabs--internal, - .content-tabs.content-tabs--membership { - display: none; - } -} - -@media all and (max-width:480px) { - .content-tab--content.slideDown:not(.hidden) { - -webkit-animation: content-injection .4s forwards; - animation: content-injection .4s forwards; - } -} - -.books__header, -.internal__header { - background: #bc3428; - margin-bottom: 0; - padding: 2.5em 1em 1em 1em; - position: relative; - z-index: 2; -} - -.books__header figure.author, -.internal__header figure.author { - height: 120px; -} - -.books__header__sidebar img, -.header__sidebar img { - display: none; -} - -.articles__header__graphic img { - display: none; -} - -@media all and (min-width:1025px) { - - .articles__header__graphic img, - .books__header__sidebar img, - .header__sidebar img { - display: block; - width: 100%; - height: auto; - } - - .books__header__sidebar, - .header__sidebar { - position: relative; - } - - .books__header__graphic { - margin-top: -30%; - position: relative; - } - - .header__graphic { - margin-top: -30%; - padding-left: 1em; - } - - .header__graphic img { - max-width: 82%; - } - - .nl__header__graphic { - margin-top: -30%; - } - - .nl__header__graphic img { - max-width: 90%; - } - - .ebooks__header__graphic { - margin-top: -40%; - } - - .articles__header__graphic { - width: 230px; - margin-top: -1em; - } -} - -.books__splits { - margin: 0 auto; - max-width: 1700px; - padding: 1em 0; - width: 100%; - list-style: none; - display: flex; - align-items: stretch; -} - -.books__splits:after, -.books__splits:before { - content: " "; - display: table; - clear: both; -} - -@media (max-width:64em) { - .books__splits { - flex-direction: column; - } -} - -.books__split { - float: left; - min-height: calc(100vh - 300px); - background: #c13125; - color: #fff; - margin-top: 2em; - margin-left: 1em; - transition: all .2s ease-in-out; - border-radius: 11px; - position: relative; - padding: 4em 1.5em 300px; - display: flex; - flex-direction: column; - align-items: flex-start; -} - -.books__split:first-of-type { - width: calc(60% - 1.5em); - padding: 4em 2em 350px; -} - -.books__split:first-of-type::before { - content: ""; - display: block; - position: absolute; - background-size: 100% auto; - background-repeat: no-repeat; - background-image: url(../images/smashing-cat/peeking-down.svg); - top: -45px; - left: 100px; - width: 120px; - height: 55px; -} - -@media (max-width:40em) { - .books__split:first-of-type { - padding: 4em 1em 300px; - } -} - -.books__split:last-of-type { - width: calc(40% - 1.5em); - padding: 4em 1.5em 350px; - margin-right: 0; -} - -@media (max-width:40em) { - .books__split:last-of-type { - padding: 4em 1em 300px; - } -} - -.books__split ul { - list-style-image: url(../images/bullet-dark.svg); - margin-left: 0; - padding: 0; - padding-left: .5em; -} - -.books__split ul li { - padding-left: .5em; -} - -.books__split a { - color: inherit; -} - -.books__split h2 { - margin-bottom: .75em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .books__split h2 { - font-family: Mija; -} - -@media (max-width:64em) { - - .books__split:first-of-type, - .books__split:last-of-type { - float: none; - width: calc(100% - 1em); - margin: .5em; - height: auto; - } -} - -a.book__split__explore { - text-shadow: none; - color: #2da2c5; - margin-top: 3em; -} - -.books__split__flexer { - flex: 1; -} - -.printed-books__illustration { - height: 1.5em; - position: relative; - vertical-align: bottom; - margin-left: .5em; - top: -.15em; - display: none; -} - -.books__split__illustration { - position: absolute; - bottom: 0; - left: 50%; - transform: translateX(-50%); - width: 600px; -} - -.books__split__highlight-image { - display: block; - background: 0 0; - text-shadow: none; - color: inherit; - padding: 0; - margin-right: 1em; - float: left; - position: relative; - top: -.2em; -} - -@media all and (max-width:480px) { - .books__split__highlight-image { - width: 100%; - max-height: 100%; - float: none; - } -} - -.books__split__highlight-image img { - max-width: 200px; -} - -.books__tabs { - margin: calc(.75em + .5vw) 0 0; - width: 100%; - padding: 0; - list-style: none; - background: #d33a2c; - display: flex; -} - -.books__tabs:after, -.books__tabs:before { - content: " "; - display: table; - clear: both; -} - -.books__tab { - flex: 1; - float: left; - background: #811d15; - color: #fff; - padding: 0; - text-transform: uppercase; - font-weight: 700; - margin: 0; - margin-right: .5em; - transition: background .2s ease-in-out, color .2s ease-in-out, text-shadow .2s ease-in-out; - border-radius: 11px 11px 0 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .books__tab { - font-family: Mija; -} - -.books__tab a { - display: block; - width: 100%; - height: 100%; - padding: .75em; - text-align: center; - border-radius: 11px 11px 0 0; - text-decoration: none; - color: inherit; - letter-spacing: 1px; - font-size: .95em; - transition: background .2s ease-in-out, color .2s ease-in-out, text-shadow .2s ease-in-out; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.books__tab a:focus, -.books__tab a:hover, -.books__tab a[aria-selected=true] { - background: #fff; - color: #d33a2c; - text-shadow: none; -} - -@media all and (max-width:500px) { - .books__tab a span { - display: none; - } -} - -.books__tab:last-of-type { - margin-right: 0; -} - -.books__tab.active { - color: #fff; - background: #bc3428; -} - -.books__tab.active a:focus, -.books__tab.active a:hover { - color: #fff; - background: #bc3428; -} - -.books__book__wrapper { - padding: 5em 2em; -} - -.internal__page__wrapper { - padding: calc(1.5em + 2vw) 4vw; -} - -@media screen and (min-width:64em) { - .internal__page__wrapper { - padding: 2.5em 2em; - } -} - -.internal__content--newsletter .img>a { - background: 0 0; -} - -.internal__content--newsletter .img em { - color: #666; -} - -.internal__content p:first-child, -.internal__content--newsletter h3:first-child, -.internal__content--newsletter p:first-child { - margin-top: 0; -} - -.internal__content--newsletter+.internal__summary { - font-style: normal; -} - -@media screen and (min-width:64em) { - .internal__content--newsletter+.internal__summary { - padding-left: 3em; - font-size: .9em; - } -} - -.internal__content--newsletter .promo-newsletter--newsletter .promo-newsletter { - margin-top: 0; -} - -.internal__content--newsletter+.internal__summary li:before { - left: 0; -} - -.books__book__wrapper, -.internal__page__wrapper { - background: #fff; - border-radius: 11px; -} - -.books__book__wrapper:after, -.books__book__wrapper:before, -.internal__page__wrapper:after, -.internal__page__wrapper:before { - content: " "; - display: table; - clear: both; -} - -@media (max-width:40em) { - .books__book__wrapper { - padding: calc(1.5em + 2vw) 1vw; - } -} - -.books__book__image { - margin: 0 0 2rem 3rem; - padding: 0; - background: 0 0; - max-width: 300px; - transition: all .2s ease-out; - position: relative; -} - -.books__book__image::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; - top: 84%; - left: -45%; -} - -.books__book__image:hover::before { - transform: scaleX(0); - opacity: 0; -} - -@media (max-width:64em) { - .books__book__image { - display: block; - } -} - -@media (max-width:40em) { - .books__book__image { - max-width: 250px; - } -} - -.books__book__img { - width: 100%; - max-width: 250px; - will-change: transform; - transform-origin: 0 100%; - transform: rotate(-11deg); - transition: transform .2s ease-out; -} - -.books__book__img:hover { - transform: rotate(0); -} - -@media (max-width:40em) { - .books__book__img { - margin-top: 1em; - margin-left: 1em; - padding-bottom: 1.25em; - } -} - -.books__book__img img { - height: auto; -} - -.books__bundle__title { - font-size: calc(1.25em + .25vw); -} - -.books__book__description { - float: left; -} - -.books__book__description a { - color: #006fc6; -} - -.books__book__footer { - clear: both; - float: none; - margin: 1em 0 0 0; -} - -.books__book__title { - margin: 0; - font-size: calc(1.5em + .25vw); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .books__book__title { - font-family: Mija; -} - -.books__book__title a { - transition: all .1s ease-out; - color: #006fc6; -} - -.books__bundle__cta .free { - color: #41b14f; -} - -.internal__content a:not(.btn) { - color: #006fc6; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; -} - -.internal__content figure a { - background-image: initial; -} - -.internal__page__wrapper span:target { - background-color: #fff2cc; -} - -.books__bundle { - margin: .3em 0; -} - -.books__bundle__wrapper { - background: #fff; - border-radius: 11px; - padding: 3vh 2em; -} - -.books__bundle__wrapper:after, -.books__bundle__wrapper:before { - content: " "; - display: table; - clear: both; -} - -@media (max-width:48em) { - .books__bundle__wrapper { - padding: 1em .5em; - display: flex; - flex-direction: column; - } - - .books__bundle__wrapper .books__bundle__description { - order: -1; - } - - .books__bundle__wrapper .books__bundle__desc__learn__more { - text-align: center; - } -} - -.books__bundle__image { - text-align: center; - margin-top: 2em; - padding: 0; - background: 0 0; -} - -@media (max-width:64em) { - .books__bundle__image { - margin: 0 auto 2em; - } -} - -.books__bundle__img { - max-width: 300px; - margin: 0 auto; -} - -.books__bundle__figure { - float: left; - width: 40%; - padding: 1em; -} - -@media (max-width:64em) { - .books__bundle__figure { - width: 100%; - float: none; - display: flex; - flex-wrap: wrap; - } -} - -.books__bundle__description { - float: left; - width: 60%; - padding: 1em; -} - -.books__bundle__description a { - color: #006fc6; -} - -@media (max-width:64em) { - .books__bundle__description { - width: 100%; - float: none; - } -} - -.books__bundle__title { - font-size: 1.5em; - margin: 0 0 .5em 0; - text-transform: initial; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .books__bundle__title { - font-family: Mija; -} - -.books__bundle__title a { - transition: all .1s ease-out; - color: #006fc6; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; -} - -.books__bundle__cta { - text-align: center; - margin: 2em 0; -} - -.books__bundle__cta.books__bundle__cta--ebooks { - max-width: 250px; - margin: 0 auto; -} - -@media (max-width:64em) { - .books__bundle__cta.books__bundle__cta--ebooks { - align-self: center; - } -} - -.books__bundle__cta.books__bundle__cta--ebooks .btn--full { - margin-top: .75em; - padding: .75em .8em .75em .8em; -} - -.books__bundle__cta .btn { - font-size: 1em; -} - -.bundle__contents-wrapper { - border: 1px solid #ddd; - border-radius: 11px; -} - -.books__bundle .accordion-item, -.books__bundle .accordion-item:first-child { - margin: 0; - border: none; - color: #2da2c5; -} - -.books__bundle .accordion-item:first-child[aria-expanded=true], -.books__bundle .accordion-item:first-child[aria-expanded=true]+.accordion-desc, -.books__bundle .accordion-item:first-child[aria-selected=true], -.books__bundle .accordion-item[aria-expanded=true], -.books__bundle .accordion-item[aria-expanded=true]+.accordion-desc, -.books__bundle .accordion-item[aria-selected=true] { - border: none; - max-height: 2000px; -} - -.books__bundle .accordion-item:active, -.books__bundle .accordion-item:first-child:active, -.books__bundle .accordion-item:first-child:hover, -.books__bundle .accordion-item:hover { - color: #d33a2c; -} - -.bundle__contents { - list-style: none; - margin: 0; - padding: 0; -} - -.bundle__contents__item { - margin: 0; - padding: 1em; - border-bottom: 1px solid #ddd; -} - -.bundle__contents__item:after, -.bundle__contents__item:before { - content: " "; - display: table; - clear: both; -} - -a.bundle__contents__title { - background: 0 0; - text-shadow: none; - color: inherit; - padding: 0; - font-weight: 700; - display: block; - width: 80%; - float: left; -} - -a.bundle__contents__title:active, -a.bundle__contents__title:hover { - color: #2da2c5; -} - -.bundle__contents__price { - display: block; - width: 20%; - float: right; - text-align: right; -} - -.bundle__contents__footer ul { - list-style: none; - padding: 0 1em; - float: right; - text-align: right; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; -} - -.bundle__contents__footer ul a { - background-position: center 72%; -} - -.bundle__contents__footer ul li { - margin: 0; - padding: 0; - font-weight: 700; -} - -.bundle-price__label, -.total-value__label { - font-weight: 400; - margin-right: 1em; -} - -.total-value__price { - display: inline-block; - position: relative; -} - -.total-value__price::before { - content: ""; - display: block; - position: absolute; - width: 100%; - height: 2px; - border-radius: 2px; - background: #d33a2c; - top: 50%; - margin-top: -2px; - transform: rotate(-35deg); -} - -.bundle__cta { - margin-top: 1.5em; - margin-left: 1em; - float: left; -} - -.book-details { - padding: calc(1em + 4vh) 2vw 0 2vw; -} - -.book-details a:not(.btn):not(.toolbar-item), -.book-details__about a:not(.btn), -.book-details__cta-row a:not(.btn) { - color: #006fc6; -} - -.book-cta__price .monthly { - font-size: .6em; - color: #858585; -} - -.book-details__title { - margin: 0; - text-shadow: none; -} - -.book-details__book-author { - margin: 1.75em 0 .5em 0; - font-size: .85em; - letter-spacing: 1px; - font-weight: 700; - text-transform: uppercase; - display: inline-block; - color: #d33a2c; -} - -@media all and (max-width:800px) { - .book-details__book-author { - max-width: 65%; - } -} - -@media (max-width:40em) { - .book-details__book-author { - max-width: 100%; - } -} - -.book-details__book-description>p:first-child:first-line { - font-weight: 700; - font-variant: all-small-caps; - text-transform: lowercase; - letter-spacing: .5px; - font-size: 1.1em; -} - -.book-details__book-image { - display: block; - max-width: 410px; - margin: 0 auto; - padding: 3em 2em 0 3.4em; - position: relative; -} - -.book-details__book-image::before { - display: block; - content: ""; - height: 90%; - width: 145%; - position: absolute; - background-image: url(../images/shadow-books.png); - background-size: 100% auto; - background-repeat: no-repeat; - top: 87%; - left: -23%; - right: 0; - pointer-events: none; -} - -.book-details__book-image img { - height: auto; -} - -.book-details__book-image:hover::before { - display: none; -} - -.book-details__book-image img { - will-change: transform; - transform-origin: 0 100%; - transform: rotate(-11deg); - transition: transform .2s ease-out; -} - -.book-details__book-image:hover img { - transform: rotate(0); -} - -.book-details__book-image[data-new]::after { - content: ""; - display: block; - position: absolute; - left: -42px; - top: 25px; - background-image: url(../images/smashing-cat/new_left.svg); - background-repeat: no-repeat; - background-size: 100% auto; - width: 100px; - height: 110px; -} - -@media (max-width:64em) { - .book-details__book-image[data-new]::after { - background-image: url(../images/smashing-cat/new_top.svg); - left: auto; - top: calc(-20px - 2.0736vw); - right: -.5vw; - width: calc(65px + 6vw); - } -} - -@media all and (max-width:319px) { - .book-details__book-image[data-new]::after { - display: none; - } -} - -.book-details__cta { - display: flex; - flex-direction: column; - margin: 2em 0 1em; -} - -.book-details__cta:after, -.book-details__cta:before { - content: " "; - display: table; - clear: both; -} - -@media all and (min-width:480px) { - .book-details__cta { - flex-direction: row; - } -} - -.book-details__cta .btn { - margin: 1em 0 0; - font-size: 1.15em; -} - -.book-details__cta .btn span { - display: block; - color: #811d15; - margin-top: .5em; - font-size: .7em; -} - -.book-details__meta { - color: #595959; - font-size: .9em; - background-image: url(../images/icons/author.svg); - padding-left: 27px; - background-size: auto 20px; - background-repeat: no-repeat; - background-position: left .25em; - font-style: italic; -} - -.book-details__about { - margin-top: 3em; -} - -@media all and (min-width:1025px) { - .book-details__about { - margin-top: 0; - } -} - -.book-details__about__title, -.book-details__author__desc__title { - font-size: 1.5em; - margin-top: calc(1em + 2vh); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .book-details__about__title, -.wf-loaded-stage2 .book-details__author__desc__title { - font-family: Mija; -} - -.book__testimonial { - position: relative; - margin: 0; - text-align: left; - padding-top: calc(1em + 2vh); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .book__testimonial { - font-family: Elena; -} - -.book__testimonial__content { - padding: 0; - margin: 1.5em 1em 1.5em 0; - position: relative; - padding-left: 30px; -} - -.book__testimonial__cite { - font-style: normal; - font-size: .9em; - color: initial; - padding-left: 34px; -} - -.book__testimonial__cite p { - margin: 0; -} - -.book__testimonial__cite .testimonial__author { - color: #555; - font-weight: 700; -} - -.book__testimonial__cite .testimonial__author__desc { - color: #555; - font-size: .9em; - font-weight: 400; - font-style: italic; -} - -.book-details__tech-details ul { - list-style: none; - padding: 0; - margin-left: 0; - font-size: .9em; -} - -.book-details__tech-details h3 { - font-size: .9em; - text-transform: uppercase; - letter-spacing: 1px; -} - -.book-details__author { - max-width: 100%; -} - -.book-details__author .author__image-wrapper { - margin: 0 auto; - width: 70%; -} - -.book-details__author .author__image { - border-width: 11px; - margin: 2vh 0; -} - -@media (max-width:64em) { - .book-details__author>a { - margin: 0 auto; - float: none; - } -} - -.figure--left-caption img { - border-radius: 22px; -} - -@media (min-width:768px) and (max-width:1024px) { - .book-image-col { - float: right; - width: 50%; - } - - .book-description-col { - float: left; - width: 50%; - } -} - -.book__toc { - font-size: 1em; -} - -.book__toc:after, -.book__toc:before { - content: " "; - display: table; - clear: both; -} - -.book__toc__header { - color: #d33a2c; - overflow: hidden; - font-weight: 700; - padding: .5em 0; -} - -.book__toc__author-col { - color: #666; -} - -.book__toc__chapter-col { - padding-left: 0; -} - -.chapter__keywords ul { - margin: 0; - padding: 0; - font-size: .9em; - color: #666; -} - -.chapter__keywords ul li { - display: inline-block; - margin-bottom: 0; - padding-left: 0; -} - -@media (max-width:40em) { - .chapter__keywords ul { - text-align: left; - } -} - -.chapter__keywords>ul>li::before { - content: "•"; - font-size: .8em; - color: #d33a2c; - display: inline-block; - margin: 0 .4em 0 .4em; -} - -.book__toc .accordion-item, -.book__toc .accordion-item[aria-expanded=true]+.accordion-desc, -.book__toc__header { - border: none; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .book__toc .accordion-item, -.wf-loaded-stage2 .book__toc .accordion-item[aria-expanded=true]+.accordion-desc, -.wf-loaded-stage2 .book__toc__header { - font-family: Elena; -} - -.chapter__author, -.chapter__title { - background: #fff; - padding-right: 5px; -} - -.book__toc .accordion-item:hover .chapter__author { - color: #333; -} - -@media (max-width:40em) { - .book__toc .accordion-item:hover .chapter__author { - color: #666; - } -} - -.accordion-item[aria-expanded=true] .chapter__author { - color: #333; -} - -.accordion-item[aria-expanded=true]:hover .chapter__title { - color: #d33a2c; -} - -.book__toc__accordion-text { - display: flex; - margin-right: 30px; - overflow: hidden; - flex-wrap: wrap; -} - -.accordion-list .book__toc__accordion-text::before { - float: left; - width: 0; - white-space: nowrap; - color: #ccc; - font-weight: 400; - content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "; -} - -.accordion-item:hover .book__toc__accordion-text::before { - color: #d33a2c; -} - -.ebook-details { - padding: calc(.5em + 3vw) 2vw 0 2vw; -} - -.ebook-details a:not(.btn):not(.toolbar-item) { - color: #006fc6; -} - -.ebook-cta { - max-width: 500px; - margin: 2em auto; -} - -.book-cta { - display: block; - margin: 1em auto; -} - -.book-cta__title { - max-width: 280px; - margin: 0 auto 1em auto; -} - -.book-cta__price--old { - text-shadow: none; -} - -.book-cta .btn { - margin-top: .5em; - font-size: calc(1em + .1vw); -} - -.ebook-details__title { - margin: 0 auto; - text-shadow: none; -} - -@media all and (min-width:1025px) { - .ebook-details__title { - margin-bottom: 0; - } -} - -.ebook-details__book-image { - display: block; - width: 100%; - margin: 1em auto; - position: relative; - transition: all .4s ease; -} - -@media all and (min-width:1025px) { - .ebook-details__book-image { - padding-top: calc(2em + 1vh); - } -} - -.ebook-details__book-image[data-new]::after { - content: ""; - display: block; - position: absolute; - left: -40px; - top: 25px; - background-image: url(../images/smashing-cat/new_left.svg); - background-repeat: no-repeat; - background-size: 100% auto; - width: 100px; - height: 110px; -} - -@media (max-width:64em) { - .ebook-details__book-image[data-new]::after { - background-image: url(../images/smashing-cat/new_top.svg); - left: auto; - top: -41px; - right: 50px; - width: 120px; - } -} - -.ebook-details__about { - padding-bottom: 2em; -} - -.ebook-details__about__title { - font-size: 1.5em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .ebook-details__about__title { - font-family: Mija; -} - -.ebook-technical-details { - background: #f6f6f6; - padding: 1px 0 1px .75em; - margin-bottom: 1em; - border-radius: 11px; - font-size: .9em; -} - -.bundle-details { - padding-top: calc(1em + 1vw); - padding-bottom: 2em; - margin-bottom: 1em; - background: #d33a2c; - color: #fff; -} - -.bundle-details .book-cta { - display: block; - margin: 1em auto; -} - -.bundle-details .book-cta .book-cta__title { - max-width: 280px; - margin: 0 auto 1em auto; -} - -.bundle-details .book-cta .book-cta__price { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.bundle-details .book-cta .book-cta__price--old { - text-shadow: none; -} - -.bundle-details .book-cta .btn { - margin-top: .5em; - font-size: calc(1em + .1vw); -} - -.bundle-details__title { - text-align: center; - margin: .5em 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.bundle-details__book-image { - display: block; - width: 100%; - max-width: 350px; - margin: 1.5em auto; - position: relative; -} - -.bundle-details__book-image[data-new]::after { - content: ""; - display: block; - position: absolute; - left: -40px; - top: 25px; - background-image: url(../images/smashing-cat/new_left.svg); - background-repeat: no-repeat; - background-size: 100% auto; - width: 100px; - height: 110px; -} - -@media (max-width:64em) { - .bundle-details__book-image[data-new]::after { - background-image: url(../images/smashing-cat/new_top.svg); - left: auto; - top: -41px; - right: 50px; - width: 120px; - } -} - -.bundle-details__accordion__item { - padding: .75em 1em; - position: relative; - padding-right: 50px; - font-size: 1.1em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .bundle-details__accordion__item { - font-family: Mija; -} - -.bundle-details__accordion__item .accordion__expand-btn { - font-size: 30px; - position: absolute; - right: 25px; - top: .6em; -} - -.bundle-details__accordion__list [aria-expanded=true]+dd { - padding: 1em; - max-height: 1500px; -} - -.book-grid { - display: flex; - flex-wrap: wrap; -} - -.book-grid__heading { - margin: 2vh 0; - width: 20em; -} - -@media all and (max-width:1025px) { - .book-grid__heading { - margin: 2em 1em 1em; - } -} - -@media all and (max-width:1025px) { - .book-grid__heading { - margin: 2em 0 1em; - } -} - -@media (max-width:40em) { - .book-grid__heading { - text-align: left; - } - - .book-grid__heading span { - padding: 0; - } -} - -.book--featured { - padding: 1em; - text-align: center; - vertical-align: bottom; - margin: 1em -4px 3em 0; - width: 33%; - border-radius: 11px; - display: flex; - flex-direction: column; - align-items: center; - justify-content: flex-start; -} - -@media (max-width:48em) { - .book--featured { - width: 50%; - } -} - -@media all and (max-width:480px) { - .book--featured { - width: 100%; - } -} - -@media (max-width:48em) { - .book--featured { - width: 50%; - } -} - -.book--featured figcaption { - color: #333; - font-size: 1em; - flex-basis: 100%; -} - -.book--featured__image { - margin: 1em 0; - max-width: 200px; - padding: 0 20px; - left: .5em; - display: inline-block; - flex-shrink: 0; - position: relative; - max-height: 240px; - height: auto; -} - -.book--featured__image::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; - top: 85%; - left: -42%; -} - -.book--featured__image a { - background-image: none; -} - -.book--featured__image img { - will-change: transform; - transform-origin: 0 100%; - transform: rotate(-11deg); - transition: transform .2s ease-out; - height: 100%; -} - -.book--featured__image:hover img { - transform: rotate(0); -} - -.book--featured__image:hover::before { - display: none; -} - -.book--featured__title { - font-size: 1.1em; - line-height: 1.45; - font-weight: 700; - margin: .5em 0 .5em 0; - text-transform: initial; - color: inherit; - letter-spacing: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .book--featured__title { - font-family: Mija; -} - -.book--featured__title a { - color: #006fc6; - text-shadow: none; -} - -.book--featured__desc { - margin: .5em 0; - font-size: .85em; - color: #666; - font-style: italic; - line-height: 1.4; -} - -.book-grid__in-post figcaption::before { - display: none; -} - -.book-grid__in-post h4 a { - font-style: normal; - color: #006fc6; - background-image: none; - text-decoration: underline; -} - -.book-cta { - display: inline-block; - width: 100%; - text-align: center; -} - -.book-cta__single { - margin: 0 auto; - text-align: center; -} - -@media all and (min-width:1100px) { - .book-cta { - grid-column-start: 2; - grid-column-end: 14; - } -} - -.book-cta__ebook, -.book-cta__hardcover { - width: 48%; - float: left; - margin-right: 4%; -} - -@media all and (max-width:480px) { - - .book-cta__ebook, - .book-cta__hardcover { - width: 100%; - margin: 0; - } -} - -.book-cta__inverted { - grid-column-start: 2; - grid-column-end: 14; -} - -.book-cta__inverted .book-cta__hardcover { - float: right; - margin-right: 0; -} - -.book-cta__inverted .book-cta__hardcover .btn { - background-color: #41b14f; - background-image: linear-gradient(#9ec14c, #41b14f); - color: #fff; -} - -.book-cta__inverted .book-cta__hardcover .btn:focus, -.book-cta__inverted .book-cta__hardcover .btn:hover { - background: #41b14f; - color: #fff; - border-color: #41b14f; -} - -.book-cta__inverted .book-cta__hardcover .btn span { - color: rgba(0, 0, 0, .5); -} - -.book-cta__ebook { - margin-right: 0; -} - -.book-cta .btn--full { - margin-top: .75em; -} - -.book-cta__title { - display: block; - text-align: center; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #ddd; - text-decoration-color: #ddd; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - line-height: 1; - color: #767676; - font-size: 1em; - margin: 1em auto 1em; - background-image: linear-gradient(#ddd, #ddd); - background-size: 100% .06em; - background-repeat: no-repeat; - background-position: center 72%; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .book-cta__title { - font-family: Elena; -} - -.book-cta__title a { - background-position: center 72%; -} - -.book-cta__title span { - display: inline-block; - padding: 0 .6em; - background-color: #fff; - position: relative; - top: .1em; - color: #666; -} - -.book-cta--on-red .book-cta__title { - display: block; - text-align: center; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #390c09; - text-decoration-color: #390c09; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - line-height: 1; - margin: 0; - margin-bottom: 1em; -} - -.book-cta--on-red .book-cta__title a { - background-position: center 72%; -} - -.book-cta--on-red .book-cta__title span { - display: inline-block; - padding: 0 .6em; - position: relative; - top: .1em; - background-color: #d33a2c; - color: #390c09; -} - -@media all and (max-width:480px) { - .book-cta__title { - display: none; - } -} - -.book-cta__price { - color: #d33a2c; - display: block; - font-weight: 700; - margin: .5em 0; - font-size: calc(1.6em + .25vw); - text-align: center; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .book-cta__price { - font-family: Mija; -} - -.book-cta--on-red .book-cta__price { - color: #fff; -} - -.book-cta__price .currency-sign { - font-size: .5em; -} - -.book-cta__price .sup { - font-size: .5em; - vertical-align: top; - line-height: 1.5; -} - -.book-cta__price--del { - font-size: .6em; - color: #666; - -webkit-text-decoration: through; - text-decoration: through; - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .book-cta__price--del { - font-family: Mija; -} - -.book-cta__price--old { - display: inline-block; - font-size: .65em; - font-weight: 700; - color: #666; - position: relative; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .book-cta__price--old { - font-family: Mija; -} - -.book-cta__price--old::before { - content: ""; - display: block; - position: absolute; - width: 100%; - height: 2px; - border-radius: 2px; - background: #d33a2c; - top: 50%; - margin-top: -2px; - transform: rotate(-35deg); -} - -.book-cta--on-red .book-cta__price--old { - color: #390c09; - position: relative; -} - -.book-cta--on-red .book-cta__price--old::before { - content: ""; - display: block; - position: absolute; - width: 100%; - height: 2px; - border-radius: 2px; - background: #390c09; - top: 50%; - margin-top: -2px; - transform: rotate(-35deg); -} - -.book-cta__desc { - font-size: .8em; - text-align: center; - line-height: 1.4; - margin: 25px 0; -} - -.book-cta--on-red .book-cta__desc { - color: #fff; -} - -.book-cta__desc a { - text-shadow: none; -} - -.book-cta__desc--light a { - color: #006fc6; -} - -.delivery-times { - padding: 4em 0; -} - -@media (max-width:40rem) { - .delivery-times { - padding: 2em 0; - } -} - -figure.webinars__visuals { - margin: 0 auto; -} - -figure.webinars__visuals img { - max-width: 350px; -} - -.webinar-author-image { - padding: 0 1.5em; - margin-bottom: 2em; -} - -h3.webinars__about { - font-size: 1.5em; - color: #333; - margin-top: calc(1em + 2vh); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 h3.webinars__about { - font-family: Mija; -} - -.author__image--webinar { - background: 0 0; - border: 8px solid #d33a2c; -} - -.webinars__bio { - color: #444; - font-size: .9em; - line-height: calc(1.5em + .2vw); - margin: calc(1.5em + .2vw) 0; -} - -.smashing-tv-host, -.smashing-tv-speaker { - background-color: #d0eed4; - color: #005f2d; - border-radius: 11px; - font-size: .75em; - padding: .4em .35em; - font-weight: 700; - display: inline-block; - text-align: center; - vertical-align: baseline; - margin-top: 0; - line-height: 1.2em; - letter-spacing: 1px; - transition: all .3s ease-in-out; - margin-right: .5em; - text-transform: uppercase; -} - -.smashing-tv-host { - background-color: #fff2cc; - color: #d44119; -} - -.webinar-details { - padding: calc(1em + 2vh) 2vw calc(1em + 2vh) 2vw; - color: #fff; -} - -.webinar-details__title { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.webinar-details__author { - padding: calc(2em + 2vh) 0; -} - -.webinar-details__desc a { - color: #006fc6; -} - -.webinar .article-header--meta-item__date, -.webinar time { - font-size: 1em; -} - -.webinar-time { - color: inherit; - text-transform: none; - letter-spacing: 0; - font-variant: none; -} - -.webinar-title-time { - display: block; - margin-bottom: .25em; -} - -.transcript .webinar-details p a { - text-shadow: none; - color: #fff; - font-style: italic; -} - -.transcript .author__image-wrapper { - max-width: 150px; - margin-top: 2em; - margin-bottom: 2em; -} - -.newsletter { - background: #f6f6f6; - border-radius: 11px; - padding: 2em 5%; -} - -@media (max-width:40em) { - .newsletter { - padding: 1.5em 5%; - } -} - -.newsletter:after, -.newsletter:before { - content: " "; - display: table; - clear: both; -} - -.article .newsletter { - margin: 1em 0; - padding: 1.5em; - background-color: #f6f3f2; -} - -.form__field__label--extra { - display: inline; -} - -@media (max-width:64em) { - .form__field__label--extra { - display: none; - } -} - -@media all and (min-width:1025px) { - .article .newsletter { - margin: 2em 0; - } -} - -ol.internal__toc--newsletter { - counter-reset: listCounter 189; -} - -ol.internal__toc--newsletter li { - counter-increment: listCounter -1; - padding-left: 2em; -} - -.contact-container { - padding: 1em 0; -} - -.contact-container fieldset { - background: #fff9e6; - border-radius: 11px; - padding: 1em 2em; -} - -.contact-container fieldset legend { - background: #fff2cc; - padding: .5em 1em; - border-radius: 11px; - position: relative; - top: -.3em; - color: #d33a2c; -} - -.contact-container .btn--lined { - margin-top: 3em; -} - -.contact__form { - margin-top: 1.25em; -} - -.contact__form .form__field__input, -.contact__form input[type=email], -.contact__form input[type=password], -.contact__form input[type=text], -.contact__form textarea { - background-color: #fff; -} - -.event__header { - color: #fff; - padding: 1em 0; - position: relative; - overflow: hidden; - background: #d33a2c; - background: #d33a2c; -} - -.event__date { - margin-bottom: 0; -} - -@media all and (min-width:1025px) { - .event__date { - margin-top: 0; - } -} - -.event__cta { - margin-top: 1em; - margin-bottom: 1em; -} - -.event__cta p.small { - background-color: #bc3428; - padding: .5em .85em; - border-radius: 11px; - display: inline-block; - margin: 0; -} - -.event__cta p.small::before { - content: "🎪"; - margin-right: .5em; -} - -.event__cta p.small a { - white-space: nowrap; - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; -} - -.event__cta .btn { - margin: 0 0 1em 0; -} - -@media (max-width:64em) { - .event__cta .btn { - display: inline-block; - } -} - -.event__social { - list-style: none; - padding: 0; - margin-top: 1.5em; - text-align: center; -} - -.event__img { - width: 100%; - max-width: 400px; - margin: 0 auto; - max-height: 250px; - display: block; -} - -@media (max-width:64em) { - - .event__img, - .event__social { - display: none; - } -} - -.event__social li { - padding: 0; -} - -.event__social li a { - font-weight: 700; - font-size: 1.1em; - background: 0 0; - padding: 0; - color: #fff; - transition: all .2s ease-out; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .event__social li a { - font-family: Mija; -} - -.event__social li a:active, -.event__social li a:focus, -.event__social li a:hover { - color: #390c09; - text-shadow: none; -} - -.event__highlights { - color: #fff; - padding: 4em 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .8); -} - -.event__highlights p a:not(.btn) { - color: #fff; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #fff; - text-decoration-color: #fff; -} - -.event__highlights .btn { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.event__highlights .btn--white { - color: #006fc6; - margin-bottom: 1em; -} - -.event__highlights__title { - color: #fff; - margin-bottom: .5em; -} - -.event__highlights__image-grid { - margin: 2em 0; -} - -.event__highlights__image-grid img { - width: 100%; - float: left; -} - -@media all and (min-width:480px) { - .event__highlights__image-grid img { - width: 50%; - } - - .event__highlights__image-grid img:last-of-type { - display: none; - } -} - -@media screen and (min-width:40em) { - .event__highlights__image-grid img { - width: 33.33%; - } - - .event__highlights__image-grid img:last-of-type { - display: block; - } -} - -@media screen and (min-width:64em) { - .event__highlights__image-grid img { - width: 33.33%; - } -} - -.event__highlights__image-grid .caption { - clear: both; - font-style: italic; - font-size: .8em; - padding: 1em 0; - color: #aaa; -} - -.event__highlights__image-grid .caption a { - color: #aaa; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #aaa; - text-decoration-color: #aaa; -} - -.event__highlights__cyb { - margin: 0 auto; - max-width: 300px; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .8); -} - -.event__highlights__cyb>a { - background: 0 0; - text-shadow: none; - color: inherit; - padding: 0; -} - -.event__highlights__cyb figcaption { - font-size: .85em; - font-style: italic; - color: #9a97a9; -} - -.event__highlights__cyb figcaption a { - color: #9a97a9; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #9a97a9; - text-decoration-color: #9a97a9; -} - -.event__expectations { - -moz-columns: 2; - columns: 2; - -moz-column-gap: 3em; - column-gap: 3em; -} - -.events__title { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); -} - -.events { - margin-top: 4em; - margin-bottom: 2em; -} - -@supports (display:flex) { - .events ul { - list-style-image: none; - display: flex; - flex-direction: row; - flex-wrap: wrap; - align-content: center; - justify-content: center; - align-items: center; - justify-items: center; - margin: 2em; - } - - .events ul li { - flex: 1 1 420px; - margin: 0 1.5em; - height: 100%; - } -} - -@supports (display:grid) { - .events ul { - list-style-image: none; - display: grid; - grid-template-columns: repeat(auto-fit, minmax(300px, 60%)); - grid-gap: 2.5em; - align-content: center; - justify-content: center; - align-items: center; - justify-items: center; - margin: 0; - padding: 0 1em; - } - - .events ul li { - margin: 0; - } - - @media screen and (min-width:750px) { - .events ul { - margin: 2em; - } - } - - @media screen and (min-width:1100px) { - .events ul { - grid-template-columns: repeat(auto-fit, minmax(35ch, 1fr)); - grid-gap: 3em; - max-width: 120ch; - margin: 0 auto; - padding: 0 2em; - } - } -} - -.events__current { - position: relative; -} - -.events .events__blue { - background-color: #1b528a; - background-image: linear-gradient(#1b528a 60%, #003d5b 100%); -} - -.events .events__video-course { - background-color: #213744; - background-image: linear-gradient(#213744 12%, #184155 100%); -} - -.events .events__ow { - background-color: #48a08f; - background-image: linear-gradient(#48a08f 10%, #1a7362 100%); -} - -.events .events__freiburg { - background: #0a1e2d; -} - -.events .events__antwerp { - background-color: #49241c; - background-image: linear-gradient(#49241c 40%, #3a1c17 100%); -} - -.events .events__ny { - background-color: #39408f; - background-image: linear-gradient(#39408f 40%, #4f49ab 100%); -} - -.events .events__meets { - background-color: #2d808e; - background-image: linear-gradient(#2a97af 40%, #226d79 100%); -} - -.events .events__antwerp { - background-color: #49241c; - background-image: linear-gradient(#49241c 40%, #3a1c17 100%); -} - -.events .events__hour { - background-color: #475b22; - background-image: linear-gradient(#658430 40%, #475b22 100%); -} - -.events__current .content { - padding: 2em; -} - -.events__tip { - position: absolute; - top: 0; - left: 4vw; - display: block; - width: auto; - height: auto; - padding: .3em .7em; - border-radius: 11px; - text-transform: uppercase; - letter-spacing: 1px; - color: #fff; - font-weight: 700; - transition: all .2s ease-in-out; - transform-origin: 0 100%; - transform: scale(1.1) translateX(-16%) translateY(-3%) rotateZ(-11deg); - z-index: 9; - box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .25); - background-color: #e63d31; - font-family: Arial, serif; -} - -.wf-loaded-stage2 .events__tip { - font-family: Mija; -} - -.events li { - margin: 0 auto; - padding: 1em 0; - background-color: #1b75bb; - background-image: linear-gradient(#1b75bb 40%, #2b388f 100%); - border-radius: 11px; -} - -.events li img { - background: 0 0; - display: block; - text-align: center; -} - -.events__img { - width: 100%; - height: auto; -} - -.events h2 { - margin: .75em 0 .25em; - color: #fff; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); -} - -.events h2 img { - height: 47px; - display: inline-block; - vertical-align: middle; - position: relative; - top: -4px; -} - -.event__summary { - border-bottom: 0; - color: #fff; - font-style: normal; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .4); -} - -.event__desc { - padding: 0 2em 2em 2em; -} - -.event__desc h2 a { - color: #fff; - background-image: none; - text-decoration: none; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .9); -} - -.event__tagline a { - color: #fff; - font-weight: 700; - text-shadow: none; -} - -.events__cal { - display: flex; - align-items: center; - flex-wrap: wrap; -} - -.icon-container { - display: flex; - margin-right: 1em; -} - -.events__cal a { - color: #fff; - font-weight: 700; - text-decoration: underline; - -webkit-text-decoration-color: rgba(255, 255, 255, .3); - text-decoration-color: rgba(255, 255, 255, .3); - background: 0 0; - text-shadow: none; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .events__cal a { - font-family: Mija; -} - -.events__cal svg { - width: 1.4em; - height: 1.4em; - margin: .5em .3em .5em 0; - fill: #fff; - fill-opacity: .65; - transform: rotateZ(-11deg); - transition: all .2s ease-in; -} - -.icon-container:hover svg { - fill-opacity: 1; - cursor: pointer; - transform: rotateZ(0); -} - -.save-the-date { - font-weight: 700; - color: #fff; - margin-bottom: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .save-the-date { - font-family: Mija; -} - -.events__current, -.events__navy, -.events__yellow { - --bg-color: rgba(222, 222, 222, 0.2); - --text-color: rgba(255, 255, 255, 0.8); -} - -.events__blue, -.events__green, -.events__lightblue { - --bg-color: rgba(0, 0, 0, 0.18); - --text-color: rgba(255, 255, 255, 0.9); -} - -.events__cal .btn--save-the-date, -.events__cal .btn--save-the-date:hover { - cursor: not-allowed; - background: 0 0; - color: #fff; - border: none; - padding: 0; - align-self: center; -} - -.event__note a { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - background: initial; - color: #fff; - text-decoration: underline; -} - -.event__note { - display: inline-block; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - border-radius: 11px; - font-size: .8em; - padding: .35em .85em; - margin: 1.25em 0 0 0; - background: var(--bg-color, #fff); - color: var(--text-color, #333); -} - -.event__note::before { - content: "🎪"; - margin-right: .25em; -} - -.jobs__header { - padding: 0 0 3vh; - margin-bottom: 0; -} - -.jobs__header .jobs__description { - font-size: calc(1em + .25vw); - max-width: 80ch; - padding: 0 2em; - align-content: center; - font-style: normal; - margin-bottom: 0; -} - -@media (max-width:64em) { - .jobs-page-description-container { - padding-top: 1em; - } -} - -.jobs__cta { - text-align: center; - margin-bottom: 0; - flex-basis: 100%; -} - -.btn.jobs__cta__btn { - margin: 0; - vertical-align: top; - margin-top: .5em; - margin-bottom: .5em; - display: inline-block; - padding: .6em 1.5em; - position: relative; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.btn.jobs__cta__btn+.btn { - margin-left: 1em; -} - -@media all and (max-width:480px) { - .btn.jobs__cta__btn+.btn { - margin-left: 0; - } -} - -@media all and (max-width:480px) { - .btn.jobs__cta__btn { - margin-bottom: 1em; - } -} - -.btn.jobs__cta__btn span { - font-size: .6em; -} - -.btn.jobs__cta__btn svg path { - fill: currentColor; - transition: fill .2s ease-out; -} - -.btn--find-a-job svg { - position: absolute; - top: 75%; - left: 50%; - margin-left: -.5em; - opacity: 0; - transition: all .2s ease-out; -} - -.btn--post-a-job svg { - position: absolute; - top: 50%; - margin-top: -.5em; - left: 85%; - margin-left: -.5em; - opacity: 0; - transition: all .2s ease-out; -} - -.jobs__list { - list-style: none; - margin: 1em auto; - max-width: 1000px; - padding-left: 0; -} - -@media (max-width:64em) { - .jobs__list { - margin: 1em 0; - } -} - -.jobs__list li { - padding: 1.5em 0; - margin-bottom: 0; -} - -.jobs__list li:not(:empty) { - border-bottom: 2px dotted #ddd; -} - -.jobs__list li:not(:empty) li { - border-bottom: none; -} - -.job { - clear: both; - padding: 0; - transition: background-color .1s ease-in-out; -} - -.job>[data-href] { - cursor: pointer; - display: block; - padding: 1em 0; - text-shadow: none; - background: 0 0; -} - -.job>[data-href]:after, -.job>[data-href]:before { - content: " "; - display: table; - clear: both; -} - -@supports (display:flex) { - .job>[data-href] { - display: flex; - } -} - -@media (max-width:64em) { - .job>[data-href] { - flex-direction: column; - padding: 0 1.5em 0 1em; - } - - .job>[data-href] .job__meta__wrapper { - display: block; - } -} - -.job>[data-href] .job__meta__wrapper { - display: flex; - flex-direction: column; - flex: 1; - order: -1; - padding: 0 1.5em 0 1em; -} - -@media all and (min-width:34.375em) and (max-width:48em) { - .job>[data-href] .job__meta__wrapper { - flex-direction: row; - } -} - -@media all and (min-width:64.0625em) { - .job>[data-href] .job__meta__wrapper { - order: 1; - } -} - -.job[data-featured] { - background-color: #f3f5f3; - padding-top: .75em; -} - -.job.hidden { - display: none; -} - -.job__author { - margin: 0 calc(1em + .25vw) 0 2em; -} - -@media screen and (min-width:48em) { - .job__author { - margin: 0 calc(1em + .25vw) 0 0; - } -} - -.job__author .author__image-wrapper { - margin-bottom: 0; - max-width: 85px; - min-width: 75px; -} - -@media (max-width:48em) { - .job__author { - display: none; - } -} - -.job__author img { - width: 67px; - height: 73px; - -o-object-fit: cover; - object-fit: cover; -} - -.job__details { - float: left; - line-height: 1.4; - width: 67%; - padding: 0 1em 0 2vw; -} - -@media (max-width:64em) { - .job__details { - float: none; - width: 100%; - padding: 0 2.5em 0 1em; - } -} - -@media (max-width:48em) { - .job__details { - width: 100%; - padding: 0 1.5em 0 1em; - } -} - -@media (max-width:64em) { - .job__details p { - max-width: 65ch; - } -} - -.job__details h3, -.job__details p:empty { - display: none; -} - -.job-details__image, -.job-details__image img { - max-width: 85px; -} - -.job__title, -a.job__title { - display: block; - font-weight: 700; - display: block; - font-size: calc(1em + .25vw); - letter-spacing: -.5px; - color: #444; - text-decoration: none; - background-image: none; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .job__title, -.wf-loaded-stage2 a.job__title { - font-family: Mija; -} - -[data-new] .job__title::after, -[data-new] a.job__title::after { - content: "New"; - display: inline-block; - text-shadow: none; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-size: .9em; - padding: 0 .25em .1em; - line-height: 1.2; - background: #d33a2c; - border-radius: 4px; - margin-right: 1em; - margin-left: 1em; - position: relative; - top: -.1em; - vertical-align: middle; - color: #fff; -} - -[data-new] .job__title::after a, -[data-new] a.job__title::after a { - background-position: center 72%; -} - -.job__company { - font-size: .9em; - color: #333; -} - -.job__meta { - text-align: right; - display: block; - color: #333; - font-size: .9em; -} - -@media (max-width:64em) { - .job__meta { - display: inline-block; - float: none; - text-align: left; - } -} - -@media (max-width:40em) { - .job__meta { - display: block; - margin-right: 0; - } -} - -@media (max-width:48em) { - .job__meta { - order: -1; - flex-direction: row; - } - - .job__meta:not(:last-child)::after { - content: " —"; - color: #999; - margin-right: .25em; - } -} - -.job__meta--floated { - float: right; -} - -@media (max-width:64em) { - .job__meta--floated { - float: none; - } -} - -.jobs__list .job__location { - display: inline-block; - padding-left: 0; -} - -.jobs__list .job__duration, -.jobs__list .job__location { - font-size: inherit; - font-weight: inherit; -} - -@media (max-width:40em) { - - .jobs__list .job__duration, - .jobs__list .job__location { - text-align: left; - } -} - -.jobs__list .job__location { - background-size: auto .95em; - background-position: right top .4em; - background-repeat: no-repeat; -} - -.jobs__list .job__duration { - text-transform: uppercase; - font-size: .9em; - font-weight: 700; - letter-spacing: .1em; -} - -.jobs__filters-placeholder { - height: 4em; - transition: height .2s ease-out; -} - -.jobs__filters-placeholder.closed { - transition: max-height .2s ease-out; -} - -@media (max-width:64em) { - .jobs__filters-placeholder { - height: auto; - } -} - -@media screen and (min-width:48em) { - .jobs__filters-placeholder { - height: auto; - } -} - -@media (max-width:40em) { - .jobs__filters-placeholder { - height: auto; - } -} - -.jobs__filters { - font-size: calc(.9rem + .25vw); - padding: 1em 0; - background-color: #f6f6f6; - transition: background-color .2s ease-in-out; - height: auto; -} - -@media (max-width:64em) { - .jobs__filters { - padding: 1em 1em 0 1em; - font-size: 100%; - } -} - -.jobs__filters .jobs__filters__wrapper { - display: flex; - align-items: center; - margin: .5rem 0 .5rem 0; - order: -1; -} - -@media (max-width:64em) { - .jobs__filters .jobs__filters__wrapper { - flex-direction: column; - padding-bottom: 1rem; - } -} - -.jobs__filters.sticky { - background-color: #d33a2c; - padding: .6em .8em; -} - -.jobs__filters.sticky .container { - display: flex; - flex-direction: column; - align-items: center; -} - -.jobs__filters.sticky .container .jobs__filters__wrapper { - order: -1; -} - -@media (max-width:64em) { - .jobs__filters.sticky { - bottom: 0; - top: initial; - z-index: 10; - } -} - -.jobs__filters__switch { - margin: .35em .35em .35em 1em; - display: inline-block; - display: inline-flex; - flex-direction: row; - flex-wrap: nowrap; -} - -.jobs__filters__switch:after, -.jobs__filters__switch:before { - content: " "; - display: table; - clear: both; -} - -.jobs__filters__switch label { - padding: 0; - cursor: pointer; - float: left; -} - -.jobs__filters__switch label .label { - padding: .75em 1em; - white-space: nowrap; - display: inline-block; - border: 1px solid #ddd; - transition: background-color .1s ease-in-out; -} - -.sticky .jobs__filters__switch label .label { - border-color: #d33a2c; -} - -.jobs__filters__switch label:first-of-type .label { - border-radius: 11px 0 0 11px; -} - -.jobs__filters__switch label:nth-of-type(2) .label { - border-radius: 0; - border-right-width: 0; - border-left-width: 0; -} - -.jobs__filters__switch label:last-of-type .label { - border-radius: 0 11px 11px 0; -} - -.jobs__filters__switch input[type=radio] { - width: 0; - height: 0; - opacity: 0; - margin-right: -.5em; - position: absolute; -} - -.jobs__filters__switch input[type=radio]~span { - font-weight: 700; - color: #4f4f4f; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .jobs__filters__switch input[type=radio]~span { - font-family: Mija; -} - -.jobs__filters__switch input[type=radio]:checked~span { - background-color: #d33a2c; - color: #fff; - border-color: #d33a2c; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - box-shadow: inset 0 0 50px rgba(0, 0, 0, .1); -} - -.sticky .jobs__filters__switch input[type=radio]:checked~span { - background-color: #811d15; - border-color: #811d15; -} - -.jobs__filters__switch input[type=radio]:focus~span { - outline: 2px dotted #811d15; - z-index: 1; - position: relative; -} - -@media (max-width:64em) { - .jobs__filters__switch { - margin-top: 1em; - } -} - -.jobs__filters__switches-dropdown { - display: flex; - text-align: right; - transition: max-height .2s ease-out; - overflow: hidden; - position: relative; - z-index: 10; - display: inline-flex; - align-items: center; - flex-wrap: wrap; - justify-content: center; - width: auto; - margin: 0; - height: auto; -} - -.enhanced .jobs__filters__switches-dropdown.closed { - padding: 0; - height: 0; - transition: max-height .1s ease-in-out; -} - -@media (max-width:64em) { - .enhanced .jobs__filters__switches-dropdown { - clear: both; - float: none; - transition: max-height .2s ease-in-out; - text-align: left; - float: left; - margin-top: .5em; - } -} - -@media (max-width:64em) { - .jobs__filters__switches-dropdown .jobs__filters__switch { - margin-left: .3em; - } -} - -@media screen and (max-width:1024px) { - .jobs__filters { - position: relative; - } - - .jobs__filters__wrapper { - width: 100%; - } - - .jobs__search .search-form { - padding: 0 2vw 0; - } -} - -@media all and (min-width:550px) { - .jobs__filters__trigger { - position: absolute; - top: .15em; - right: 2vw; - } -} - -@media all and (max-width:550px) { - .jobs__filters__trigger { - width: calc(100% - 2vw - 2vw); - margin: 0 auto; - } -} - -@media screen and (min-width:550px) and (max-width:1024px) { - .jobs__search .search-form { - width: 70%; - } -} - -@media all and (max-width:550px) { - .jobs__search .search-form { - width: 100%; - } -} - -@supports (display:flex) { - .jobs__filters__switches-dropdown { - margin-left: 0; - } - - .jobs__filters__switch { - padding-left: 0; - } -} - -.jobs__filters__switches-dropdown:target { - display: block; - max-height: 300px; -} - -.jobs__filters__trigger { - font-weight: 700; - font-size: calc(1.2rem + .25vw); - display: none; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .jobs__filters__trigger { - font-family: Mija; -} - -@media (max-width:64em) { - .enhanced .jobs__filters__trigger { - display: flex; - } -} - -.jobs__filters__trigger span.plus { - transition: all .1s ease-in-out; - display: inline-block; - color: #fff; - margin-top: .35rem; - font-size: .9em; -} - -.jobs__filters__trigger span.plus-wrapper { - font-size: 1.2em; - position: relative; - margin-top: -.2em; -} - -.jobs__filters__trigger span.plus-wrapper::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(/images/shadow.png); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transition: all .1s ease-out; - transform-origin: 30% 50%; - pointer-events: none; -} - -.jobs__filters__trigger span.plus-wrapper::before { - top: 80%; - width: 140%; - left: 0; -} - -.jobs__filters__trigger.open span.plus { - transform: rotate(-45deg); -} - -.jobs__companies { - padding: 2em 0; - overflow: hidden; -} - -.jobs__companies__heading { - letter-spacing: 1px; - margin-bottom: .5em; - color: #666; - font-size: .9em; - margin-top: .5em; - font-weight: 400; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - text-align: center; - color: #000; -} - -.jobs__companies__heading a { - background-position: center 72%; -} - -.jobs__companies__logos { - list-style: none; - margin: 0; - padding: 0; - text-align: center; -} - -.jobs__companies__logo { - float: left; - max-width: 150px; - margin: 0; - padding: 0; -} - -.job-posting .content-tabs--job-posting { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 100; - background-color: #fff; - background-image: none; - border-radius: 0; -} - -@media screen and (min-width:1025px) { - .job-posting .content-tabs--job-posting { - display: none; - } -} - -.job-posting .container { - max-width: 100%; - width: 100%; - display: flex; -} - -.job-posting .container:after { - content: ""; - width: 100%; - height: 2em; - position: absolute; - z-index: -1; - top: 0; -} - -.job-posting .job-posting--form { - padding: 2em calc(1em + 1vw); - position: relative; - z-index: 50; - background-color: #fff; - border-radius: 0 1em 1em 0; - top: 1em; - float: none; - vertical-align: top; - box-shadow: rgba(0, 0, 0, .2) 0 0 1em; -} - -@media (max-width:64em) { - .job-posting .job-posting--form { - border-radius: 0; - box-shadow: none; - } -} - -.job-posting .job-posting--form form fieldset { - margin-top: 2em; -} - -.job-posting .job-posting--form form h2 { - font-size: calc(22px + 1vw); -} - -.job-posting .job-posting--preview { - padding: 0 0 0 1em; - float: none; - vertical-align: top; -} - -.job-posting .job-posting--preview .row { - width: 100%; -} - -.job-posting .job-posting--preview .job-details__teaser { - font-size: .75em; - text-align: center; - width: 100%; - margin-bottom: 2em; -} - -.job-posting .job-posting--preview .job-details__teaser span { - background-color: #fff2cc; - border-radius: 11px; - padding: .5em 1em; -} - -.job-posting .job-posting--preview form { - width: 100%; - position: -webkit-sticky; - position: sticky; - top: 0; -} - -@media (max-width:64em) { - .job-posting .job-posting--preview form { - position: static; - } -} - -.w-24 { - width: 6rem; -} - -.ml-5 { - margin-left: 1.25rem; -} - -.mb-5 { - margin-bottom: 1.25rem; -} - -.h-24 { - height: 6rem; -} - -.rounded-lg { - border-radius: .694rem; -} - -.mb-3 { - margin-bottom: .75rem; -} - -.mr-3 { - margin-right: .75rem; -} - -.h-32 { - height: 8rem; -} - -.w-32 { - width: 8rem; -} - -.job-details { - padding-top: 1.5em; - margin-bottom: 0; -} - -.job-details__intro { - padding: 2em 0; -} - -.job-details__intro:after, -.job-details__intro:before { - content: " "; - display: table; - clear: both; -} - -.job-details__company-call { - float: left; - vertical-align: middle; - margin: 1em 1em 0 .5em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .job-details__company-call { - font-family: Mija; -} - -.job-details__company-call .author { - float: left; -} - -.job-details__job-title { - clear: both; - margin: 0; - max-width: 800px; - padding: 0; - margin: .25em 0 .5em; -} - -.job-details__meta { - list-style: none; - clear: both; - margin: 0; - padding: 0; -} - -.job-details__meta:after, -.job-details__meta:before { - content: " "; - display: table; - clear: both; -} - -.job-details-meta-item { - float: left; - background-size: 1em auto; - background-position: left center; - background-repeat: no-repeat; - text-align: left; - background-position: left top 40%; - font-size: .95em; - margin-right: 1.5em; -} - -.job-details-time { - background-image: url(https://www.smashingmagazine.com/images/icons/published.svg); - line-height: 1.4; - padding-left: 30px; - background-size: auto 20px; - background-repeat: no-repeat; - background-position: left -3px; - font-size: .9em; - letter-spacing: 0; - font-variant: none; - color: inherit; - text-transform: none; - color: #656565; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .job-details-time { - font-family: Mija; -} - -.job__location { - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiI+CjxwYXRoIGZpbGw9IiNFMzNBMkMiIGQ9Ik0xNiAwYy01LjUyMyAwLTEwIDQuNDc3LTEwIDEwIDAgMTAgMTAgMjIgMTAgMjJzMTAtMTIgMTAtMjJjMC01LjUyMy00LjQ3Ny0xMC0xMC0xMHpNMTYgMTYuMTI1Yy0zLjM4MyAwLTYuMTI1LTIuNzQyLTYuMTI1LTYuMTI1czIuNzQyLTYuMTI1IDYuMTI1LTYuMTI1IDYuMTI1IDIuNzQyIDYuMTI1IDYuMTI1LTIuNzQyIDYuMTI1LTYuMTI1IDYuMTI1ek0xMi4xMjUgMTBjMC0yLjE0IDEuNzM1LTMuODc1IDMuODc1LTMuODc1czMuODc1IDEuNzM1IDMuODc1IDMuODc1YzAgMi4xNC0xLjczNSAzLjg3NS0zLjg3NSAzLjg3NXMtMy44NzUtMS43MzUtMy44NzUtMy44NzV6Ij48L3BhdGg+Cjwvc3ZnPgo=); - background-size: auto 1.05em; - background-position: left .2em; - background-repeat: no-repeat; - padding: 0 1.25em; - font-size: .9em; - color: #656565; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .job__location { - font-family: Mija; -} - -.job__type { - font-size: .9em; - text-transform: capitalize; - background-color: #41b14f; - color: #fff; - padding: .2em .75em; - border-radius: 11px; - font-weight: 700; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); - margin: -.15em 0 0 0; - display: inline-block; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .job__type { - font-family: Mija; -} - -.job-details__related-jobs { - font-size: .9em; - padding: 1.25em 0; - border-left: 8px solid #ddd; - padding: 0 0 0 calc(1em + .5vw); -} - -.job-details__related-jobs-title { - font-size: inherit; - margin: 1em 0; -} - -.job-details__related-jobs-list { - list-style: none; - padding-left: 0; -} - -.job-details__related-jobs-list-item { - margin-bottom: 1.5em; - padding-left: 0; - line-height: 1.5; - position: relative; -} - -.job-details__cta { - margin: 2em auto; - text-align: center; -} - -.job-details__cta__large { - margin: 2em auto; - text-align: center; -} - -@media (max-width:64em) { - .job-details__cta__large { - display: none; - } -} - -.job-listing { - padding: 3em 0; -} - -.job-listing h2 { - margin-bottom: 1em; -} - -.job-listing fieldset { - margin: 2em 0; -} - -.job-listing .form__field__input { - font-size: 1.3em; -} - -.job-listing .form__field--checkbox, -.job-listing .form__field--radio { - font-size: 1em; -} - -.job-listing .form__field--radio .form__field__note { - margin-left: calc(3.25em - .25vw); -} - -.job-listing .dashed { - border-bottom: 2px dashed #eee; - padding-bottom: 2em; - padding-top: 2em; -} - -.dropzone, -.dropzone * { - box-sizing: border-box; -} - -.dropzone { - height: 100px; - border: 1px dashed #bbb; - border-radius: 0 11px 11px 0; - background: #f6f6f6; - width: calc(100% - 100px); - position: relative; - left: 100px; - padding: 1.5em; -} - -@media screen and (min-width:64em) { - .dropzone { - padding: 1.8em; - } -} - -.dropzone:before { - display: block; - content: "Image preview"; - color: #aaa; - font-size: .7em; - text-align: center; - padding: 2em .5em; - position: absolute; - left: -100px; - top: -1px; - width: 100px; - height: 100px; - border: 1px dashed #bbb; - border-radius: 11px 0 0 11px; -} - -.dropzone .droptarget { - cursor: pointer; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - text-align: center; - vertical-align: middle; - line-height: 100px; - overflow: hidden; -} - -.dropzone .droptarget * { - cursor: pointer; -} - -.dropzone .droptarget .form__field { - display: flex; - height: 100%; -} - -.dropzone .droptarget .form__field__label { - width: 100%; - text-align: center; - margin: auto 0; -} - -.dropzone .droptarget input[type=file] { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: #eff; - opacity: 0; -} - -.dropzone.dragging { - border-style: solid; -} - -.dropzone.dragging .form__field__label { - opacity: .5; -} - -.dropzone .dz-preview { - display: inline-block; - vertical-align: top; - height: 100px; - position: absolute; - left: -100px; - top: -1px; - border: 1px dashed #bbb; - border-radius: 11px 0 0 11px; -} - -.dropzone .dz-preview:hover { - z-index: 1000; -} - -.dropzone .dz-preview:hover .dz-details { - opacity: 1; -} - -.dropzone .dz-preview.dz-file-preview .dz-image { - border-radius: 11px 0 0 11px; - background: linear-gradient(to bottom, #eee, #ddd); -} - -.dropzone .dz-preview.dz-file-preview .dz-details { - opacity: 1; -} - -.dropzone .dz-preview.dz-image-preview { - background: #fff; -} - -.dropzone .dz-preview.dz-image-preview .dz-details { - transition: opacity .2s linear; -} - -.dropzone .dz-preview .dz-remove { - font-size: 14px; - text-align: center; - display: block; - cursor: pointer; - border: none; -} - -.dropzone .dz-preview .dz-remove:hover { - text-decoration: underline; -} - -.dropzone .dz-preview .dz-details { - z-index: 20; - position: absolute; - top: 0; - left: 0; - opacity: 0; - font-size: 13px; - min-width: 100%; - max-width: 100%; - padding: 2em 1em; - text-align: center; - color: rgba(0, 0, 0, .9); - line-height: 150%; -} - -.dropzone .dz-preview .dz-details .dz-size { - margin-bottom: 1em; - font-size: 16px; -} - -.dropzone .dz-preview .dz-details .dz-filename { - white-space: nowrap; -} - -.dropzone .dz-preview .dz-details .dz-filename:hover span { - border: 1px solid rgba(200, 200, 200, .8); - background-color: rgba(255, 255, 255, .8); -} - -.dropzone .dz-preview .dz-details .dz-filename:not(:hover) { - overflow: hidden; - text-overflow: ellipsis; -} - -.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span { - border: 1px solid transparent; -} - -.dropzone .dz-preview .dz-details .dz-filename span, -.dropzone .dz-preview .dz-details .dz-size span { - background-color: rgba(255, 255, 255, .4); - padding: 0 .4em; - border-radius: 3px; -} - -.dropzone .dz-preview:hover .dz-image img { - transform: scale(1.05, 1.05); - filter: blur(8px); -} - -.dropzone .dz-preview .dz-image { - border-radius: 11px 0 0 11px; - overflow: hidden; - width: 100px; - height: 100px; - position: relative; - display: block; - z-index: 10; -} - -.dropzone .dz-preview .dz-image img { - display: block; -} - -.dropzone .dz-preview.dz-success .dz-success-mark { - -webkit-animation: passing-through 3s cubic-bezier(.77, 0, .175, 1); - animation: passing-through 3s cubic-bezier(.77, 0, .175, 1); -} - -.dropzone .dz-preview.dz-error .dz-error-mark { - opacity: 1; - -webkit-animation: slide-in 3s cubic-bezier(.77, 0, .175, 1); - animation: slide-in 3s cubic-bezier(.77, 0, .175, 1); -} - -.dropzone .dz-preview .dz-error-mark, -.dropzone .dz-preview .dz-success-mark { - pointer-events: none; - opacity: 0; - z-index: 500; - position: absolute; - display: block; - top: 50%; - left: 50%; - margin-left: -27px; - margin-top: -27px; -} - -.dropzone .dz-preview .dz-error-mark svg, -.dropzone .dz-preview .dz-success-mark svg { - display: block; - width: 54px; - height: 54px; -} - -.dropzone .dz-preview.dz-processing .dz-progress { - opacity: 1; - transition: all .2s linear; -} - -.dropzone .dz-preview.dz-complete .dz-progress { - opacity: 0; - transition: opacity .4s ease-in; -} - -.dropzone .dz-preview:not(.dz-processing) .dz-progress { - -webkit-animation: pulse 6s ease infinite; - animation: pulse 6s ease infinite; -} - -.dropzone .dz-preview .dz-progress { - opacity: 1; - z-index: 1000; - pointer-events: none; - position: absolute; - height: 16px; - left: 50%; - top: 50%; - margin-top: -8px; - width: 80px; - margin-left: -40px; - background: rgba(255, 255, 255, .9); - border-radius: 8px; - overflow: hidden; -} - -.dropzone .dz-preview .dz-progress .dz-upload { - background: linear-gradient(to bottom, #666, #444); - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 0; - transition: width .3s ease-in-out; -} - -.dropzone .dz-preview.dz-error .dz-error-message { - display: block; -} - -.dropzone .dz-preview.dz-error:hover .dz-error-message { - opacity: 1; - pointer-events: auto; -} - -.dropzone .dz-preview .dz-error-message { - pointer-events: none; - z-index: 1000; - position: absolute; - display: none; - opacity: 0; - transition: opacity .3s ease; - border-radius: 8px; - font-size: 13px; - top: 130px; - left: -10px; - width: 140px; - background: linear-gradient(to bottom, #be2626, #a92222); - padding: .5em 1.2em; - color: #fff; -} - -.dropzone .dz-preview .dz-error-message:after { - content: ""; - position: absolute; - top: -6px; - left: 64px; - width: 0; - height: 0; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #be2626; -} - -.accordion-list { - margin: 0 0 3em 0; -} - -.accordion-list:after, -.accordion-list:before { - content: " "; - display: table; - clear: both; -} - -.accordion-expand-btn-wrapper { - position: relative; - position: absolute; - right: 10px; - top: 50%; - margin-top: -15px; -} - -.accordion-expand-btn-wrapper::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transform-origin: 30% 50%; - pointer-events: none; - opacity: 1; - transition: opacity .3s ease-in-out; -} - -.accordion-expand-btn-wrapper::before { - width: 110%; - top: 76%; - left: -17%; -} - -.accordion-expand-btn { - font-size: 30px; - width: 20px; - transition: all .2s ease-in-out; - position: relative; - margin: 0; - float: right; - margin-right: .25em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .accordion-expand-btn { - font-family: Mija; -} - -[aria-expanded=true] .accordion-expand-btn { - transform: rotate(-45deg); - color: #d33a2c; - transition: all .2s ease-in-out; -} - -.accordion-item { - transition: max-height .4s linear, padding 0s linear 0s, color .2s ease-out; - overflow: hidden; - padding: .5em 2.35em; - font-size: 1em; - padding-top: 0; -} - -@media screen and (min-width:40em) { - .accordion-item { - padding: .5em; - } -} - -.accordion-desc { - transition: max-height .4s linear, padding 0s linear 0s, color .2s ease-out; - overflow: hidden; - padding: .5em .8em; - font-size: calc(16px + .35vw); -} - -@media screen and (min-width:40em) { - .accordion-desc { - padding: .5em; - } -} - -.accordion-item { - cursor: pointer; - font-weight: 700; - display: block; - margin: 0; - position: relative; - padding: calc(.5em + .5vw); - padding-right: 1.4em; -} - -.accordion-item:after, -.accordion-item:before { - content: " "; - display: table; - clear: both; -} - -.accordion-item:hover { - color: #d33a2c; -} - -@media screen and (min-width:40em) { - .accordion-item { - padding: .5em; - } -} - -@media all and (max-width:480px) { - .accordion-item { - padding-right: 5px; - } -} - -.bg--navy .accordion-item { - font-weight: 400; -} - -.accordion-item[aria-expanded=true] { - color: #d33a2c; -} - -.accordion-desc { - display: block; - margin: 0; - padding-top: 1em; - padding-bottom: 2em; -} - -.accordion-desc:after, -.accordion-desc:before { - content: " "; - display: table; - clear: both; -} - -.accordion-desc p:first-of-type { - margin-top: 0; -} - -.accordion-list [aria-expanded=false]+dd { - display: none; - max-height: 0; - overflow: hidden; - padding-top: 0; - padding-bottom: 0; - transition: max-height .4s linear, padding 0s linear .4s; -} - -.accordion-list [aria-expanded=true]+dd { - display: block; - max-height: 2000px; -} - -.accordion-list [aria-hidden=false] { - max-height: 2000px; -} - -.accordion-list .is-hidden, -.accordion-list [aria-hidden=true] { - max-height: 0; - overflow: hidden; - padding-top: 0; - padding-bottom: 0; -} - -.accordion-list .is-visible { - display: block; - max-height: 800px; -} - -.accordion-desc[aria-hidden=false] { - box-shadow: 0 9px 30px -5px rgba(50, 50, 83, .25), 0 8px 8px -12px rgba(0, 0, 0, .2), 0 -6px 16px -6px rgba(0, 0, 0, .025); - border-radius: 11px; - padding: 1.6em; - background-color: #fff; - margin: 1.25em 0 3em 0; -} - -@media print { - - .accordion-desc, - .accordion-list dd { - display: block; - max-height: 1200px; - } -} - -.cricket-pitch { - position: relative; -} - -.cricket-bat { - position: relative; - display: block; - font-style: normal; - width: 100%; - color: #000; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - letter-spacing: 3px; - font-size: .75em; - z-index: 2; - padding-left: calc(100px + 1em); - margin: 1em 0; -} - -.cricket-bat a { - background-position: center 72%; -} - -.cricket-bat::before { - content: ""; - position: absolute; - display: block; - width: 100px; - height: 1px; - background-color: currentColor; - left: 0; - top: 50%; -} - -.cricket-bat .cricket-bat-text { - color: #fff; -} - -@media screen and (min-width:64em) { - .cricket-bat { - color: #000; - position: absolute; - transform: translate(0, 100%) rotate(90deg); - transform-origin: top left; - left: 1em; - top: 0; - bottom: 0; - padding: 0; - margin: 0; - height: 100%; - } - - .cricket-bat::before { - width: 1px; - height: calc(100% - 1em); - top: 1px; - left: 5px; - transform: rotate(90deg); - transform-origin: top right; - } - - .cricket-bat .cricket-bat-text { - color: #000; - transform: translate(1em, -50%); - position: absolute; - } -} - -.article-header { - margin: 0 0 .5em 0; -} - -.l-garfield-the-cat .article-header { - margin: 0; -} - -.article-header--meta { - display: flex; - list-style: none; - padding: 0; - margin: 0; - margin: 0 0 .5em 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .article-header--meta { - font-family: Mija; -} - -.article-header--meta li { - padding: 0; - margin: 0; - margin-right: 0; -} - -.article-header--meta li::before { - display: none; -} - -.article-header--meta li::after { - content: "•"; - font-size: .8em; - color: #d33a2c; - display: inline-block; - margin: 0 .4em 0 .4em; -} - -.article-header--meta li:last-of-type::after { - display: none; -} - -.article-header--date { - color: #666; - font-size: 1.05em; - font-family: inherit; -} - -.article-header--updated { - padding: .4em .8rem; - margin-right: .5em; - color: #137d54; - background-color: #d6f3e7; - border: 1px solid #c6f2e0; - border-radius: 11px; - font-weight: 700; - text-transform: initial; - font-feature-settings: normal; - font-variant: none; - font-size: .9em; - letter-spacing: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .article-header--updated { - font-family: Mija; -} - -.article-header--meta-item { - font-size: .9em; - font-family: inherit; -} - -.article-header--meta-item__date a:not(.btn) { - color: #666; -} - -.article-header--comments { - font-size: .85em; -} - -.meta-box { - background: #f6f6f6; - padding: 1em; - margin: 0 0 2em 0; - list-style: none; - width: 100%; - border-radius: 11px; - font-size: .8em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .meta-box { - font-family: Mija; -} - -.meta-box li, -.meta-box--item { - line-height: 1.4; - padding-left: 1.5em; - background-size: auto 1em; - background-repeat: no-repeat; - background-position: left top; - margin-bottom: .5em; -} - -.meta-box li:last-child { - margin-bottom: 0; -} - -.meta-box--item:last-child { - margin-bottom: 0; -} - -.meta-box--author, -.meta-box--item--author { - background-image: url(/images/icons/author.svg); -} - -.meta-box--item--tags, -.meta-box--tags { - background-image: url(/images/icons/tags.svg); -} - -.meta-box--item--saved, -.meta-box--saved { - background-image: url(/images/icons/bookmark.svg); - background-position: left center; -} - -.meta-box--item--bird, -.meta-box--share { - background-image: url(/images/icons/tweets.svg); -} - -.meta-box--newsletter { - background-image: url(/images/icons/meta-head.svg); -} - -.meta-box--item--published, -.meta-box--published { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.84 26.6'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23e93e32%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' x='8.25' y='2.31' width='3.06' height='3.66' rx='1.03' ry='1.03'/%3E%3Crect class='cls-1' x='17.53' y='2.31' width='3.06' height='3.66' rx='1.03' ry='1.03'/%3E%3Cpath class='cls-1' d='M24.1 5.39h-2.56a2 2 0 01-2 1.59h-1a2 2 0 01-2-1.59h-4.28a2 2 0 01-2 1.59h-1a2 2 0 01-2-1.59H4.75a2.07 2.07 0 00-2.08 2.07v14.75a2.07 2.07 0 002.07 2.07H24.1a2.07 2.07 0 002.07-2.07V7.46a2.07 2.07 0 00-2.07-2.07zm-.29 16.15H5.23V8.45h18.58z'/%3E%3Cpath class='cls-1' d='M7.18 11.71h2.5v2.5h-2.5zM11.27 11.71h2.5v2.5h-2.5zM15.26 11.71h2.5v2.5h-2.5zM19.35 11.71h2.5v2.5h-2.5zM7.18 15.78h2.5v2.5h-2.5zM11.27 15.78h2.5v2.5h-2.5zM15.26 15.78h2.5v2.5h-2.5zM19.35 15.78h2.5v2.5h-2.5z'/%3E%3C/svg%3E"); -} - -.meta-box--published .article-header--meta-item__date, -.meta-box--published time { - font-family: inherit; - font-size: inherit; - color: inherit; - text-transform: none; - letter-spacing: 0; -} - -.meta-box--inline { - display: flex; - flex-wrap: wrap; - margin: 0 0 calc(1em + .5vw) 0; -} - -.meta-box--inline .book__meta-item:nth-child(1n + 3) { - margin-top: .5em; -} - -.meta-box--inline .book__meta-item { - padding-right: 1em; - margin-bottom: 0; - flex-basis: 40%; - flex-grow: 1; -} - -.promo-newsletter { - position: relative; - display: inline-block; - background: #f6f6f6; - padding: 1.5em 2em; - margin-top: 34%; - padding-top: 34%; - width: 100%; - border-radius: 11px; -} - -.promo-newsletter-image-wrapper { - position: absolute; - left: 50%; - top: 0; - transform: translate(-50%, -50%); - width: 80%; -} - -.promo-newsletter-image-link { - position: relative; - display: block; - width: 100%; - padding-top: calc(100% * .85); - background: 0 0; -} - -.promo-newsletter-image { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; - -o-object-fit: contain; - object-fit: contain; -} - -.promo-newsletter-title { - margin-top: 20px; - font-size: calc(1.25em + .5vw); -} - -.promo-newsletter--article { - grid-column-start: 2; - grid-column-end: 14; - margin: calc(10rem + ((.85 / 2) * 220px) - 1.5em) auto; -} - -@media screen and (max-width:1099px) { - .promo-newsletter--article { - max-width: 30em; - } -} - -.promo-newsletter--newsletter .promo-newsletter-button { - display: inline-block; - width: auto; -} - -.promo-newsletter--newsletter .promo-newsletter { - margin-top: calc(((.85 / 2) * 220px) - 1.25em); - padding-top: 1.25em; -} - -.promo-newsletter--newsletter .promo-newsletter-image-wrapper { - position: static; - transform: translate(0); - width: 220px; - padding: 0 0 1em 0; -} - -@media all and (min-width:1024px) { - .promo-newsletter--newsletter .promo-newsletter-image-wrapper { - float: right; - padding: 0 0 1em 1em; - } -} - -.promo-newsletter-form { - display: flex; - flex-direction: row; - justify-content: center; - align-items: flex-start; - flex-wrap: wrap; -} - -.promo-newsletter-form-field { - position: relative; - margin-bottom: 1em; - width: 100%; -} - -.promo-newsletter-form-label { - position: absolute; - display: block; - transform: translate(0, -50%); - top: 50%; - left: 1rem; - font-size: calc(.9em + .1vw); - transition: all .3s ease-out; - color: #aaa; - padding: 0; - z-index: 1; - line-height: calc(1.5em + .2vw); - word-break: break-word; - cursor: pointer; -} - -.float .promo-newsletter-form-label { - top: 5px; - transform: none; - font-size: .75em; -} - -.promo-newsletter-input-wrapper { - align-items: stretch; - min-height: calc(2.6rem + 1vw); - font-size: 1em; -} - -.promo-newsletter .form__field__input { - background-color: #fff; -} - -.promo-newsletter-input { - box-shadow: none; - outline: 0; -} - -.btn--promo-newsletter { - display: block; - width: 100%; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -.input-wrapper--append { - display: flex; - align-items: stretch; -} - -.label--append { - flex-basis: 60%; - flex-grow: 1; - display: flex; -} - -input.input--append { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.btn--append { - margin-left: 0; - padding-left: 0; - flex-grow: 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.promo-newsletter-caption { - text-align: center; - display: block; - text-align: center; - color: #666; - font-size: calc(.7em + .1vw); - padding: 1.5em 1.5em 0 1.5em; - line-height: 1.5; -} - -.promo-newsletter-caption a { - text-shadow: none; -} - -.breadcrumbs { - color: #444; - font-size: .7em; - background-color: #f6f6f6; - padding: .75em 1em; - border-radius: 11px; - margin-left: -1em; - margin-bottom: 0; - list-style: none; - display: inline-block; - letter-spacing: 1px; - margin-top: 0; -} - -.breadcrumb { - display: inline; - text-transform: uppercase; - padding-left: 0; -} - -.breadcrumb:not(:last-child)::after { - content: " / "; - color: #888; -} - -.breadcrumb-link { - text-shadow: none; -} - -.pull-quote { - font-weight: 700; - letter-spacing: -.75px; - color: #222; - font-size: 1.5em; - padding-left: 2.5em; - position: relative; - margin: 0; - word-break: nowrap; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .pull-quote { - font-family: Mija; -} - -.pull-quote__quotation { - position: relative; - position: absolute; - left: 0; - top: 5px; - width: 2em; -} - -.pull-quote__quotation::before { - display: block; - content: ""; - height: 90%; - width: 160%; - position: absolute; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC); - background-size: 100% auto; - background-repeat: no-repeat; - top: 89%; - left: -30%; - right: 0; - transform-origin: 30% 50%; - pointer-events: none; - opacity: 1; - transition: opacity .3s ease-in-out; -} - -.pull-quote__quotation::before { - opacity: 1; - transform: scaleX(1); - transition: transform .2s ease-out; - transition-delay: .2s; -} - -.pull-quote__link { - font-size: 1em; - padding: 0; - display: block; - line-height: 46px; - color: #333; - background: 0 0; - text-decoration: none; -} - -.pull-quote__link::after { - content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOCAyMyIgd2lkdGg9IjI4cHgiIGhlaWdodD0iMjNweCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSI3OTEuNTEiIHkxPSIyNzQuMzUiIHgyPSI3NzcuOCIgeTI9IjI1NC44NiIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2U5MzcyMiIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2Y4NmYyNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjx0aXRsZT5TaGFyZSB0aGlzIHF1b3RlIG9uIFR3aXR0ZXI8L3RpdGxlPjxwYXRoIGlkPSJwYXRoMzYxMSIgZmlsbD0idXJsKCNsaW5lYXItZ3JhZGllbnQpIiBkPSJNNzgwLjgxIDI3OC41N2MxMC41NyAwIDE2LjM0LTguODUgMTYuMzQtMTYuNTJ2LS43NWExMS43NSAxMS43NSAwIDAgMCAyLjg3LTMgMTEuMzYgMTEuMzYgMCAwIDEtMy4zLjkxIDUuODIgNS44MiAwIDAgMCAyLjUzLTMuMjEgMTEuNDUgMTEuNDUgMCAwIDEtMy42NSAxLjQxIDUuNzEgNS43MSAwIDAgMC00LjE5LTEuODMgNS43OCA1Ljc4IDAgMCAwLTUuNzUgNS44MSA1Ljg2IDUuODYgMCAwIDAgLjE1IDEuMzIgMTYuMjUgMTYuMjUgMCAwIDEtMTEuODEtNi4wOCA1Ljg1IDUuODUgMCAwIDAgMS43OCA3Ljc1IDUuNjYgNS42NiAwIDAgMS0yLjYtLjczdi4wN2E1Ljc5IDUuNzkgMCAwIDAgNC42MSA1LjY5IDUuNjggNS42OCAwIDAgMS0yLjU5LjEgNS43NiA1Ljc2IDAgMCAwIDUuMzcgNCAxMS41MiAxMS41MiAwIDAgMS04LjU3IDIuNDkgMTYuMTQgMTYuMTQgMCAwIDAgOC44MSAyLjYxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNzcyLjAxIC0yNTUuNTcpIi8+PC9zdmc+); - display: inline-block; - margin-left: .3em; -} - -@media screen and (min-width:80em) { - .pull-quote { - font-size: 32px; - } - - .pull-quote__link { - line-height: 42px; - } -} - -@media screen and (min-width:48em) { - .pull-quote { - font-size: 28px; - } - - .pull-quote__link { - line-height: 1.4; - } -} - -@media all and (max-width:480px) { - .pull-quote { - font-size: 24px; - } - - .pull-quote__link { - line-height: 38px; - } -} - -.pull-quote__bg { - width: 2em; - height: 2em; - background: #d33a2c; - background: #d33a2c; - border-radius: 11px; - transition: transform .3s ease-out; - transform-origin: bottom left; - transform: scale(1) rotateZ(-11deg); - text-align: center; - padding-top: .15em; -} - -.pull-quote__symbol { - display: block; - color: #fff; - font-size: 2.75em; - line-height: 1em; - transform: rotate(11deg) translateY(5px) translateX(-4px); -} - -.article { - padding-top: calc(.5em + 3vw); -} - -.article__summary { - font-size: 1.15em; -} - -.c-garfield-the-cat .article__summary { - position: initial; -} - -.article__summary { - align-self: center; - margin-top: 0; -} - -.article__summary, -.internal__summary { - line-height: 1.55em; - position: relative; - padding-bottom: 1.5em; - margin-bottom: .5em; -} - -.article__summary { - color: #666; -} - -.internal__summary { - font-style: italic; -} - -.article__summary { - border-bottom: 3px solid #e5e5e5; -} - -.article__summary p:first-child, -.internal__summary p:first-child { - margin-top: 0; -} - -.article__summary p:last-child, -.internal__summary p:last-child { - padding-bottom: .5em; -} - -.article__summary .internal__summary, -.internal__summary .internal__summary { - margin-bottom: 3.5em; -} - -.article__summary .article__summary__title, -.article__summary .internal__summary__title, -.internal__summary .article__summary__title, -.internal__summary .internal__summary__title { - color: #666; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-style: normal; - font-weight: 400; -} - -.article__summary .article__summary__title a, -.article__summary .internal__summary__title a, -.internal__summary .article__summary__title a, -.internal__summary .internal__summary__title a { - background-position: center 72%; -} - -.article__summary .article__summary__title, -.internal__summary .article__summary__title { - margin-bottom: -.5em; -} - -.article__summary .internal__summary__title, -.internal__summary .internal__summary__title { - margin-bottom: 0; -} - -@media screen and (min-width:64em) { - - .article__summary .internal__summary__title, - .internal__summary .internal__summary__title { - margin-top: -4px; - } -} - -.article__summary .internal__summary__title+p, -.internal__summary .internal__summary__title+p { - margin-top: 1em; -} - -.article__toc { - background-color: #f7f7f7; - padding: .5em 1.5em; - border-radius: 11px; - margin-top: 2em; - margin-bottom: 2em; -} - -.article__toc .tablesaw-enhanced { - position: absolute; - top: 5.85em; - right: 1em; -} - -@media all and (min-width:1025px) { - .article__toc .tablesaw-enhanced { - top: 1.75em; - right: 2.5em; - } -} - -.article__toc__title { - margin-top: .5em; -} - -.article__toc__list { - padding-bottom: .25em; - font-size: .87em; -} - -.article__toc__list a { - color: #666; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #e5e5e5; - text-decoration-color: #e5e5e5; -} - -.article__toc__list ol { - margin-left: 0; -} - -.article__toc__list ol ol { - margin-left: 0; -} - -.article__toc__list li { - margin: .5em 0; -} - -.article__toc__list li:last-child { - padding-bottom: .1em; - margin-bottom: 0; -} - -.article__toc__title, -.internal__toc__title { - color: #666; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - font-weight: 400; - margin-bottom: 0; - font-style: normal; -} - -.article__toc__title a, -.internal__toc__title a { - background-position: center 72%; -} - -.article__comments-count { - font-size: 1rem; -} - -.article__comment .author { - display: block; -} - -@media (max-width:64em) { - .article__comment .author { - display: none; - } -} - -.job-board--featured { - position: relative; - padding: 30em 0; -} - -.job-board--featured h4 { - text-transform: capitalize; - letter-spacing: 0; - padding: 2em 0 1em 3.5em; - margin-top: 0; - margin-bottom: 1.5em; - background-image: url(../images/job-board--red.svg); - background-repeat: no-repeat; - background-position: left bottom; - background-size: auto 70%; - font-size: calc(.8em + .25vw); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .job-board--featured h4 { - font-family: Mija; -} - -.job-board--featured dd, -.job-board--featured dt { - font-size: .85em; -} - -.job-board--featured .btn { - font-size: .8em; - margin-bottom: 1em; - line-height: 2em; -} - -@media (max-width:64em) { - .job-board--featured { - padding: 2.5em 0; - } -} - -@media all and (max-width:1025px) { - - .article .job-board--featured::after, - .article .job-board--featured::before { - content: ""; - display: block; - position: absolute; - margin-top: .75em; - margin-bottom: .75em; - height: 7px; - width: 100%; - background: #d33a2c; - background: #d33a2c; - border-radius: 11px; - } - - .article .job-board--featured::before { - top: 0; - } - - .article .job-board--featured::after { - bottom: 0; - } -} - -@media all and (max-width:420px) { - .article__content { - margin-top: 0; - } -} - -.article__content video { - max-width: 100%; -} - -.article__content [data-src], -[data-src] { - display: block; - width: 100%; -} - -.article__content [data-src]:not([data-component]) { - min-height: 350px; -} - -.article__content .job-board--featured { - padding-top: 1.5em; - margin-top: -.2em; -} - -@media all and (min-width:1025px) { - .article__content .job-board--featured { - width: 57%; - margin-right: -74%; - float: right; - } -} - -@media (max-width:64em) { - .article__content .job-board--featured { - padding-bottom: 2em; - } -} - -.article__content .job-board--featured h4 { - margin-top: 0; -} - -.article__related-posts--mini { - position: relative; - padding: 30em 0; - padding-top: 1.5em; - font-size: .9em; -} - -.article__related-posts--mini h4 { - color: #666; - font-size: .9em; - font-weight: 400; -} - -@media (max-width:64em) { - .article__related-posts--mini { - padding: 2.5em 0; - } -} - -@media all and (max-width:1025px) { - - .article .article__related-posts--mini::after, - .article .article__related-posts--mini::before { - content: ""; - display: block; - position: absolute; - margin-top: .75em; - margin-bottom: .75em; - height: 7px; - width: 100%; - background: #d33a2c; - background: #d33a2c; - border-radius: 11px; - } - - .article .article__related-posts--mini::before { - top: 0; - } - - .article .article__related-posts--mini::after { - bottom: 0; - } -} - -@media (max-width:64em) { - .article__related-posts--mini { - padding-top: 2em; - } -} - -@media all and (min-width:1025px) { - .article__content .article__related-posts--mini { - width: 57%; - margin-right: -74%; - float: right; - } -} - -.article__content .article__related-posts--mini h4 { - margin-top: .1em; -} - -a.heading-hash { - background: 0 0; - padding: 0; - position: absolute; - left: -25px; - top: 0; - width: 1em; - height: 1em; -} - -@media all and (max-width:840px) { - a.heading-hash { - position: static; - } -} - -.article__content { - line-height: 1.5; - padding: 0; -} - -.drop-caps+p::first-line { - font-weight: 700; - font-variant: all-small-caps; - text-transform: lowercase; - letter-spacing: .5px; - font-size: 1.1em; -} - -.drop-caps { - width: calc(96px + 1vw); - height: calc(120px + 4vw); - float: left; - margin-right: 1.5em; - position: relative; - left: calc(-1.3em - .5vw); - top: .5vw; -} - -@media all and (min-width:500px) { - .drop-caps { - width: 150px; - height: 186px; - min-width: 100px; - margin-left: 0; - } -} - -@media screen and (min-width:64em) { - .drop-caps { - display: none; - } -} - -.drop-caps img { - max-width: 100%; -} - -.drop-caps img:nth-of-type(2) { - position: absolute; - bottom: 0; - right: -40px; - width: 75%; -} - -.article__tags { - margin: 1em 0; - padding-left: 0; -} - -.article__tags ul { - padding-left: 0; - list-style-image: none; - margin: 0; -} - -.article__tags ul li { - padding-left: 0; -} - -.article__tag { - font-size: calc(.8em + .35vw); - font-weight: 700; - margin-right: .75em; - display: inline-block; - white-space: nowrap; - padding-left: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .article__tag { - font-family: Mija; -} - -.article__tag:first-child { - padding-left: 0; -} - -.article__tag::before { - content: "#"; - color: #61140f; - margin-right: .25em; - font-size: .8em; -} - -.articlepage .article__tag::before { - color: #d33a2c; -} - -.article__tag__count { - color: #666; - font-weight: 400; - font-size: .7em; - position: relative; - top: -.5em; -} - -pre.code__snippet--break-out { - width: 87vw; - position: relative; - left: 50%; - right: 50%; - margin: 0; - margin-left: calc(-50vw + 50%); - margin-right: calc(-50vw + 50%); -} - -pre.code__snippet--break-out img { - width: 100%; -} - -@media all and (max-width:1025px) { - pre.code__snippet--break-out { - position: static; - margin: 0; - } -} - -.signature { - margin: 1.5em 0; - font-size: .9em; - color: silver; - font-style: italic; -} - -.signature img { - margin-right: .75em; - vertical-align: middle; - position: relative; - top: .5em; -} - -.membership-promo-box-teaser { - background-color: #f7f7f7; - border-radius: 11px; - text-align: left; - padding: 0 1.35em 1em 1.35em; - margin: 0 auto; - align-items: flex-start; -} - -.membership-promo-box-teaser p { - margin-bottom: calc((1em + .5vw)/ 2); -} - -.membership-promo-box-teaser .btn { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); -} - -.membership-promo-box-teaser--content { - display: table; - width: 100%; -} - -.membership-promo-box-teaser--number { - position: relative; - text-align: center; - width: 150px; -} - -.membership-promo-box-teaser--number h2 { - color: #fff; - position: absolute; - top: 1.85em; - z-index: 2; - width: 130px; - font-size: 1.5em; -} - -.membership-promo-box-teaser--number a { - background-image: none; -} - -.membership-promo-box-teaser--number img { - position: relative; - margin-top: -1.2em; - width: 100%; -} - -.membership-promo-box-teaser--info { - display: table-cell; - vertical-align: middle; - padding-left: .5em; - padding-top: .6em; -} - -.membership-promo-box-teaser--info h2 { - margin: 0; - color: #333; - font-size: 1.3em; -} - -.share { - background: #f6f6f6; - border-radius: 11px; - margin: 0; - padding: .25em; - font-size: .9em; - margin-bottom: 2em; -} - -.share .icon { - display: inherit; - fill: currentColor; - height: calc(1em + 1vw); - width: calc(1em + 1vw); -} - -.share a { - text-shadow: none; -} - -@media all and (min-width:1025px) { - .share { - padding: .25em 2em .5em .25em; - } -} - -.share-figure { - color: #55acee; - font-size: 2.5em; - align-items: center; - display: flex; - float: left; - padding: .5em .25em; -} - -@media (max-width:64em) { - .share-figure { - padding: .2em; - margin-bottom: 0; - } -} - -@media all and (max-width:802px) { - .share-figure { - font-size: 3em; - padding: .25em .1em 0 .2em; - margin-bottom: 1em; - } -} - -@media all and (max-width:502px) { - .share-figure { - font-size: 3em; - padding: .25em .1em 0 .2em; - margin-bottom: 3em; - } -} - -.ciu_embed iframe { - min-height: 420px; -} - -@media screen and (max-width:610px) { - .ciu_embed iframe { - min-height: 500px; - } -} - -audio { - width: 100%; -} - -blockquote:not(.pull-quote) { - font-style: italic; - border-left: 8px solid #ddd; - padding: 1em calc(1.5em + .5vw); - color: #555; - margin: calc(.5em + .25vw) 2vw calc(.5em + .25vw) 0; -} - -blockquote:not(.pull-quote) code { - font-style: normal; -} - -blockquote:not(.pull-quote) p { - margin: calc(1.25em + .25vw) 0; -} - -.block-quote { - margin: 1em 0; - font-style: italic; -} - -.block-quote__cut:not(.pull-quote) { - padding: 2em; - background: #f6f6f6; - border: none; - margin: 1em 0; - border-radius: 11px; - grid-column-start: 2; - grid-column-end: 14; - font-size: .9em; -} - -.block-quote__cut:not(.pull-quote) h4:first-child { - margin-top: 0; -} - -.article__content figure:not(.bio-image), -.article__image, -.internal__page__wrapper figure:not(.bio-image) { - padding: 0; - margin: 1em auto; -} - -.article__content figure:not(.bio-image) img, -.article__image img, -.internal__page__wrapper figure:not(.bio-image) img { - display: block; - width: auto; - height: auto; - max-width: 100%; - margin: 0 auto; -} - -.article__content figure:not(.bio-image).article__image--full-width img, -.article__image.article__image--full-width img, -.internal__page__wrapper figure:not(.bio-image).article__image--full-width img { - width: 100%; - max-width: 100%; -} - -.article__content figure:not(.bio-image)>a, -.article__image>a, -.internal__page__wrapper figure:not(.bio-image)>a { - display: block; - background: 0 0; - position: relative; - z-index: 99; -} - -.article__content figure:not(.bio-image) figcaption, -.article__image figcaption, -.internal__page__wrapper figure:not(.bio-image) figcaption { - color: #666; - font-size: calc(.8em + .2vw); - font-style: italic; - padding: .75em 2em .75em 0; - display: table; -} - -@supports (-ms-ime-align:auto) { - - .article__content figure:not(.bio-image) figcaption, - .article__image figcaption, - .internal__page__wrapper figure:not(.bio-image) figcaption { - display: inline-block; - } -} - -.article__content figure:not(.bio-image) figcaption a, -.article__image figcaption a, -.internal__page__wrapper figure:not(.bio-image) figcaption a { - color: #666; -} - -.article__content figure:not(.bio-image) figcaption::before, -.article__image figcaption::before, -.internal__page__wrapper figure:not(.bio-image) figcaption::before { - content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNyAxMy4wOSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNjMmMyYzI7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5jYW1lcmE8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTguNSA1LjQ0YTIuMjEgMi4yMSAwIDEgMCAyLjIxIDIuMjEgMi4yMSAyLjIxIDAgMCAwLTIuMjEtMi4yMXpNMTQuNzkgMi4yMWgtMi41NWEyLjIxIDIuMjEgMCAwIDAtMi4yNC0yLjIxaC0zYTIuMjEgMi4yMSAwIDAgMC0yLjI0IDIuMjFoLTIuNTVhMi4yMSAyLjIxIDAgMCAwLTIuMjEgMi4yMXY2LjQ2YTIuMjEgMi4yMSAwIDAgMCAyLjIxIDIuMjFoMTIuNThhMi4yMSAyLjIxIDAgMCAwIDIuMjEtMi4yMXYtNi40NmEyLjIxIDIuMjEgMCAwIDAtMi4yMS0yLjIxem0tNi4yOSA5LjM1YTMuOTEgMy45MSAwIDEgMSAzLjkxLTMuOTEgMy45MSAzLjkxIDAgMCAxLTMuOTEgMy45MXoiLz48L3N2Zz4=); - height: 1em; - width: 1.5em; - padding-right: .6em; - display: table-cell; - vertical-align: baseline; - position: relative; - top: .05em; -} - -@supports (-ms-ime-align:auto) { - - .article__content figure:not(.bio-image) figcaption::before, - .article__image figcaption::before, - .internal__page__wrapper figure:not(.bio-image) figcaption::before { - display: inline-block; - } -} - -.article__content .author figcaption::before { - display: none; -} - -figure.article__image--break-out { - width: 87vw; - position: relative; - left: 50%; - right: 50%; - margin: 0; - margin-left: calc(-50vw + 50%); - margin-right: calc(-50vw + 50%); -} - -figure.article__image--break-out img { - width: 100%; -} - -@media all and (max-width:1025px) { - figure.article__image--break-out { - position: static; - margin: 0; - } -} - -.article__content figure.article__image--inline>a, -.article__image figure.article__image--inline>a, -.internal__page__wrapper figure.article__image--inline>a { - display: inline-block; -} - -.article__content figure.zoom-overlay-open a { - outline: 0; -} - -.article__content figure.zoom-overlay-open a:after { - display: none; -} - -.zoom-overlay { - display: block; - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: #fff; - opacity: .9; - z-index: 1; -} - -lite-youtube { - background-color: #000; - position: relative; - display: block; - contain: content; - background-position: center center; - background-size: cover; - cursor: pointer; - max-width: 720px; -} - -lite-youtube::before { - content: ""; - display: block; - position: absolute; - top: 0; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==); - background-position: top; - background-repeat: repeat-x; - height: 60px; - padding-bottom: 50px; - width: 100%; - transition: all .2s cubic-bezier(0, 0, .2, 1); -} - -lite-youtube::after { - content: ""; - display: block; - padding-bottom: 56.25%; -} - -lite-youtube>iframe { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - border: 0; -} - -lite-youtube>.lty-playbtn { - display: block; - width: 68px; - height: 48px; - position: absolute; - cursor: pointer; - transform: translate3d(-50%, -50%, 0); - top: 50%; - left: 50%; - z-index: 1; - background-color: transparent; - background-image: url('data:image/svg+xml;utf8,'); - filter: grayscale(100%); - transition: filter .1s cubic-bezier(0, 0, .2, 1); - border: none; -} - -lite-youtube .lty-playbtn:focus, -lite-youtube:hover>.lty-playbtn { - filter: none; -} - -lite-youtube.lyt-activated { - cursor: unset; -} - -lite-youtube.lyt-activated::before, -lite-youtube.lyt-activated>.lty-playbtn { - opacity: 0; - pointer-events: none; -} - -.lyt-visually-hidden { - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - height: 1px; - overflow: hidden; - position: absolute; - white-space: nowrap; - width: 1px; -} - -.video-embed-container { - width: 100%; -} - -.video-embed-container .video-embed-container--wrapper { - position: relative; - padding-bottom: 56.25%; - height: 0; - overflow: hidden; -} - -.video-embed-container .video-embed-container--inner { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.article__content .aspect-ratio, -.article__content .video-container { - position: relative; - padding: 1em 0; - width: 100%; -} - -.article__content .aspect-ratio iframe, -.article__content .video-container iframe { - width: 100%; - min-height: 400px; -} - -.article__content .aspect-ratio iframe::after, -.article__content .video-container iframe::after { - content: "\a"; - white-space: pre; -} - -@media all and (max-width:600px) { - - .article__content .aspect-ratio iframe, - .article__content .video-container iframe { - min-height: 300px; - } -} - -@media all and (max-width:400px) { - - .article__content .aspect-ratio iframe, - .article__content .video-container iframe { - min-height: 250px; - } -} - -.col--article--grid { - float: left; - width: 100%; - margin-bottom: calc(.5em + 1vw); - display: block; -} - -.col--article--grid:first-of-type { - margin-left: -2px; -} - -@media (max-width:40em) { - .col--article--grid:first-of-type { - margin-left: 0; - } -} - -@media screen and (min-width:40em) { - .col--article--grid { - width: 50%; - float: left; - } -} - -@media all and (min-width:1100px) { - .col--article--grid { - width: 33.33333%; - } -} - -.article--grid__container { - display: flex; - flex-wrap: wrap; -} - -.article--grid__container:after, -.article--grid__container:before { - content: " "; - display: table; - clear: both; -} - -.article__related__wrapper { - background-image: linear-gradient(#ddd, #ddd); - background-size: 100% 1px; - background-repeat: no-repeat; - background-position: center center; -} - -.article__related__wrapper .article__related-articles__title { - text-align: center; - font-size: 1em; - text-transform: initial; - letter-spacing: 0; - color: #666; - background: #fff2cc; - padding: .5em .85em; - display: table; - margin: 2em auto 3em auto; - border-radius: 11px; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .article__related__wrapper .article__related-articles__title { - font-family: Mija; -} - -.article__related__wrapper .article__related-articles__title::after { - content: "🍰"; - margin-left: .25em; -} - -@media all and (max-width:600px) { - .article__related__wrapper .article__related-articles__title { - width: calc(100% - 1em); - } -} - -.article__related__wrapper .article__related-articles__title a { - color: #d33a2c; -} - -.article--grid__sponsors { - width: 100%; - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; -} - -@media screen and (min-width:740px) { - .article--grid__sponsors { - margin-bottom: 5em; - } -} - -.author-post--primary { - margin-top: 1em; -} - -@media all and (min-width:650px) { - .author-post--primary { - margin-top: 2.25em; - } -} - -.author-post, -.author-post--primary { - margin-bottom: 3em; -} - -.primary-author-post { - font-size: 1.5em; - margin-bottom: 2em; -} - -.author-post__header { - display: flex; - align-items: center; - flex-wrap: wrap; -} - -@media all and (min-width:650px) { - .author-post__header { - flex-wrap: nowrap; - } -} - -.author-post__title, -.card-post__title { - font-size: calc(18px + 1.1vw); - max-width: 800px; - margin: .5em 0 .5em; -} - -.author-post--primary .author-post__title { - font-size: calc(1.625rem + 1.3vw); - margin: .35em 0 .25em; -} - -.author-post__title-link, -.author-post__title-link code { - color: #333; - text-decoration: none; -} - -.author-post__author-title { - color: #d33a2c; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - font-weight: 700; - font-size: .9em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .author-post__author-title { - font-family: Mija; -} - -.author-post__time { - color: #666; - text-transform: none; - font-size: .9em; - font-weight: 400; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - line-height: 1.2; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .author-post__time { - font-family: Elena; -} - -.author-post__tag { - font-weight: 700; - color: #666; - font-size: .9em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .author-post__tag { - font-family: Mija; -} - -.author-post__tag span::after { - content: ", "; - color: #767676; -} - -.author-post__tag span:last-child::after { - content: ""; -} - -.author-post__read-more { - color: #d33a2c; - font-weight: 700; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .author-post__read-more { - font-family: Mija; -} - -.headline-content { - padding-bottom: 1em; -} - -.article--post { - padding-left: 5em; - margin: 4em 0; -} - -.article--post:after, -.article--post:before { - content: " "; - display: table; - clear: both; -} - -@media (max-width:64em) { - .article--post { - padding-left: 4.5em; - } -} - -@media (max-width:40em) { - .article--post { - padding-left: 0; - padding-top: 1.5em; - margin: 2.5em 0; - } - - .article--post:first-child { - margin: 1em 0; - } -} - -.article--post header { - clear: both; -} - -.article--post header:after, -.article--post header:before { - content: " "; - display: table; - clear: both; -} - -.article--post .article--post__teaser, -.article--post .article--post__teaser+p { - display: inline; -} - -.popular_articles--first .article--post { - margin-top: 1.25em; - margin-bottom: 0; -} - -@media all and (min-width:1025px) { - .popular_articles--first .article--post { - margin-top: 0; - } -} - -.article--post__time { - font-size: .9em; -} - -.article--post__title { - color: #333; - font-size: calc(18px + 1vw); - max-width: 90%; - margin: calc(-2em + 1.5vw) 0 .5em; -} - -@media screen and (min-width:64em) { - .article--post__title { - margin-top: calc(-2em + 1.75vw); - } -} - -.search-post-container .article--post__title { - margin-top: .5em; -} - -@media (max-width:40em) { - .article--post__title { - margin-top: .75em; - } -} - -.article--post__title a { - color: #333; - text-decoration: none; - transition: color .1s linear; - padding: 0; -} - -.article--post__title a:focus, -.article--post__title a:hover { - color: #d33a2c; -} - -@media (max-width:40em) { - .article--post__title { - clear: both; - } -} - -.article--post__meta { - margin-top: 1em; - padding-left: 1.2em; - background-size: auto .8em; - background-repeat: no-repeat; - background-position: 0 .4em; - background-image: url(/images/icons/author.svg); -} - -.article--post__content { - width: 70%; - float: left; - font-size: 1em; -} - -.article--post__content p { - margin: 0; -} - -@media all and (max-width:980px) { - .article--post__content { - width: 100%; - float: none; - } -} - -.article--post__image { - float: left; - margin-left: 0; - margin-right: .45em; -} - -@media screen and (min-width:40em) { - .article--post__image { - margin-left: -5em; - margin-right: .85em; - } -} - -.article--post__author-name { - color: #666; - font-weight: 700; - font-size: calc(.9em + .1vw); - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .article--post__author-name { - font-family: Mija; -} - -.article--post__author-name span { - font-style: italic; - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .article--post__author-name span { - font-family: Elena; -} - -.article--post__author-name em { - font-weight: 400; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .article--post__author-name em { - font-family: Elena; -} - -@media (max-width:40em) { - .article--post__author-name { - position: relative; - top: 1.1em; - } -} - -.article--post__stats { - float: right; - width: 24%; - font-size: .9em; -} - -.article--post__stats ul { - list-style: none; - padding: 0; - margin-left: 0; - margin-top: 0; -} - -.article--post__stats ul li::before { - display: none; -} - -.article--post__stats ul li { - padding-left: 1.5em; - margin: .1em 0; - color: #666; - background-repeat: no-repeat; - background-size: 1em 1em; - background-position: left center; -} - -.article--post__stats ul li.article--post__reading-time { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.84 26.6'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23e93e32%7D%3C/style%3E%3C/defs%3E%3Crect class='cls-1' x='8.25' y='2.31' width='3.06' height='3.66' rx='1.03' ry='1.03'/%3E%3Crect class='cls-1' x='17.53' y='2.31' width='3.06' height='3.66' rx='1.03' ry='1.03'/%3E%3Cpath class='cls-1' d='M24.1 5.39h-2.56a2 2 0 01-2 1.59h-1a2 2 0 01-2-1.59h-4.28a2 2 0 01-2 1.59h-1a2 2 0 01-2-1.59H4.75a2.07 2.07 0 00-2.08 2.07v14.75a2.07 2.07 0 002.07 2.07H24.1a2.07 2.07 0 002.07-2.07V7.46a2.07 2.07 0 00-2.07-2.07zm-.29 16.15H5.23V8.45h18.58z'/%3E%3Cpath class='cls-1' d='M7.18 11.71h2.5v2.5h-2.5zM11.27 11.71h2.5v2.5h-2.5zM15.26 11.71h2.5v2.5h-2.5zM19.35 11.71h2.5v2.5h-2.5zM7.18 15.78h2.5v2.5h-2.5zM11.27 15.78h2.5v2.5h-2.5zM15.26 15.78h2.5v2.5h-2.5zM19.35 15.78h2.5v2.5h-2.5z'/%3E%3C/svg%3E"); -} - -.article--post__stats ul li.article--post__comments-count { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.84 26.6'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23e93e32;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EArtboard 29%3C/title%3E%3Cpath class='cls-1' d='M3.29,2.73a66.7,66.7,0,0,0,3.21,9.52l6.29,1.08L8.1,15.53c2.91,5.28,7,9.09,12.14,4.55L25,24.52l.57-.52-3.83-5.48c3.6-4.32,1.74-7.76-1.93-10.36L17,13.29l-.1-6.85A43.83,43.83,0,0,0,11,4L9,7.7,9,3.39c-2.2-.65-4.07-1.08-5.08-1.3A.52.52,0,0,0,3.29,2.73Z'/%3E%3C/svg%3E"); -} - -.article--post__stats ul li.article--post__comments-count a { - color: #666; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #666; - text-decoration-color: #666; -} - -@media all and (max-width:980px) { - .article--post__stats { - width: 100%; - float: none; - clear: both; - } - - .article--post__stats ul li { - display: inline; - margin-right: 1.5em; - } -} - -.article--post__stats--featured-article { - width: auto; - float: left; -} - -.article--post__stats--featured-article ul { - width: 100%; - display: flex; - flex-direction: row; - align-items: center; - justify-content: space-between; - white-space: nowrap; -} - -.article--post__stats--featured-article li { - display: inline-block; -} - -.article--post__stats--featured-article li::after { - content: ""; - display: inline-block; - width: 1em; -} - -.article--post__icon { - height: .8em; -} - -.c-felix-the-cat { - background-color: #f3f3f3; - padding: .5em calc(1.5em + .5vw); - border-radius: .5em; -} - -.c-felix-the-cat h4 { - border-bottom: 4px solid #d33a2c; - color: #d33a2c; - margin-top: 1.5em; -} - -.c-felix-the-cat a.btn { - display: table; - margin-top: 1em; - margin-bottom: 1.5em; -} - -.comment-form__sticky { - margin-bottom: 2em; -} - -.comment-form__sticky .btn { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -@media all and (min-height:500px) { - body.articlepage { - overflow: initial; - } - - div[data-component=CommentsArea] { - overflow: initial; - } - - .comment-form__sticky { - position: -webkit-sticky; - position: sticky; - top: -3.5em; - } -} - -.article__comments { - padding: 5em 0 2.5em; - padding-right: 30px; - font-feature-settings: normal; -} - -.article__comments:after, -.article__comments:before { - content: " "; - display: table; - clear: both; -} - -@media screen and (min-width:64em) { - .article__comments { - padding-right: 0; - } - - .article__comments .article__comment-wrapper { - margin-left: 2em; - } -} - -.article__comments .article__comment-wrapper>.article__comment-wrapper .article__comment { - background-color: #f0f0f0; - padding: 1.25em; - border-radius: 11px; -} - -@media screen and (min-width:64em) { - .article__comments .article__comment-wrapper>.article__comment-wrapper .article__comment { - padding: 1.25em 2em 1.25em calc(5.5em + .4vw); - } -} - -.article__comments .article__comment-wrapper>.article__comment-wrapper .article__comment a { - text-decoration: none; - padding: 10px 0; - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; - transition: color .1s ease-out; -} - -.article__comments .article__comment-wrapper>.article__comment-wrapper .article__comment .author--avatar-only a { - background-image: none; -} - -.article__comments .article__comment-wrapper>.article__comment-wrapper .article__comment-wrapper>.article__comment { - background-color: #fff6db; -} - -.article__comments .article__comment-wrapper>.article__comment-wrapper .article__comment-wrapper>.article__comment span a { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - -webkit-text-decoration-color: #006fc6; - text-decoration-color: #006fc6; - padding: 10px 0; - transition: color .1s ease-out; -} - -.comment__content { - overflow-wrap: break-word; - word-wrap: break-word; - word-break: break-word; -} - -.comment__content pre { - margin: 1em 0; -} - -.article__comments--notes { - margin-bottom: 2em; - line-height: 1.6em; - display: block; - background-color: #fff2cc; - padding: 1em 1.25em; - border-radius: 11px; -} - -.article__comments--notes code { - display: inline; - background-color: #fff2cc; - color: #d33a2c; -} - -.article__comments--notes a { - text-shadow: none; - color: #006fc6; -} - -.comments__comment-count { - color: #666; - font-size: .5em; - line-height: 0; - position: relative; - top: -1em; -} - -.article__comment .author__image-wrapper { - min-width: auto; - min-height: auto; -} - -@media screen and (min-width:64em) { - .article__comment .author__image-wrapper { - min-width: 80px; - min-height: 80px; - } -} - -.article__comment a { - color: #006fc6; -} - -.article__comment { - margin: 3em 0; -} - -@media all and (min-width:1025px) { - .article__comment { - padding-left: 4.5em; - } -} - -.article__comment button::after { - content: " ↓"; -} - -@media all and (min-width:1025px) { - .article__comment button::after { - content: " →"; - } -} - -.article__comment header { - color: #666; - font-weight: 700; - margin-bottom: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .article__comment header { - font-family: Mija; -} - -@media screen and (min-width:64em) { - .article__comment header { - margin-bottom: 1em; - } -} - -.article__comment .article-header--meta-item__date, -.article__comment time { - font-weight: 400; - font-size: .9em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .article__comment .article-header--meta-item__date, -.wf-loaded-stage2 .article__comment time { - font-family: Elena; -} - -.article__comment p { - margin: .75em 0; - font-size: calc(.9em + .1vw); - padding-bottom: .1em; -} - -@media all and (max-width:1023px) { - .article__comment p { - font-size: calc(.95em + .1vw); - padding-top: .75em; - } - - .article__comment p:first-child { - padding-top: .5em; - } -} - -@media (max-width:48em) { - .article__comment p { - font-size: calc(.95em + .1vw); - padding-top: .5em; - } -} - -.article__comment .author--avatar-only { - width: 40px; - position: relative; - margin-right: 1.5em; - transform: translateY(15px); - margin-top: -1em; - float: left; -} - -@media screen and (min-width:64em) { - .article__comment .author--avatar-only { - margin-left: -4.75em; - margin-right: 2em; - width: 2.5em; - } -} - -.article__comment .author--avatar-only .author__image-wrapper { - margin-right: 2em; -} - -.article__comment-verified span { - padding: .25em .5em; - border-radius: 11px; - margin-left: -.5em; - background-color: #fff2cc; - color: #d33a2c; -} - -.article__comment-verified span:after { - content: "🦁"; - display: inline-block; - position: relative; - top: .15em; - margin-left: .25em; -} - -.form__field.comment__message-field .form__field__label, -.form__field.comment__name-field .form__field__label, -.form__field.comment__twitter-field .form__field__label { - font-size: 1em; -} - -.comment__reply-to { - color: #666; - font-weight: 700; - margin-right: 10px; - display: none; -} - -.comment__reply-to-container { - position: relative; - overflow: visible; -} - -.comment__reply-to-container .comment__reply-to { - position: absolute; - top: 1.3em; - left: 1em; - margin-right: 0; - font-size: .9em; - line-height: calc(1.4em + .2vw); - background-color: #fff2cc; - padding: .1em .5em; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .comment__reply-to-container .comment__reply-to { - font-family: Mija; -} - -.article__comments__form__desc { - margin-top: 5.5em; -} - -@media (max-width:64em) { - .article__comments__form__desc { - margin-top: 2.5em; - } -} - -.comment__message-notification { - -webkit-animation: content-injection .2s backwards; - animation: content-injection .2s backwards; - background-color: #fff2cc; - padding: .75em 1em; - border-radius: 11px; -} - -@media (min-width:64rem) and (max-height:740px) { - .comment__message-field textarea { - height: 12em; - } -} - -@media (min-width:64rem) and (max-height:640px) { - .article__comments--notes { - display: none; - } - - .comment__message-field textarea { - height: 5em; - } -} - -.table, -table { - width: 100%; - border-collapse: collapse; - margin-bottom: calc(2em + 2vw); - clear: both; -} - -.table .article-header--meta-item__date, -.table time, -table .article-header--meta-item__date, -table time { - color: inherit; - font-size: 1em; - font-weight: 400; -} - -.tr, -tr { - border-bottom: 1px solid #eeecec; -} - -.td, -.th, -td, -th { - padding: 1em 1.5em; - border: none; - text-align: left; -} - -.wf-loaded-stage2 th { - font-family: -apple-system, Arial, BlinkMacSystemFont, roboto slab, droid serif, segoe ui, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .wf-loaded-stage2 th { - font-family: Mija; -} - -.tbody .td, -tbody td { - text-align: left; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .tbody .td, -.wf-loaded-stage2 tbody td { - font-family: Elena; -} - -.tbody .th, -.tbody th, -tbody .th, -tbody th { - font-size: 1.15em; -} - -.no-js .data-table dt:first-child { - width: 60%; -} - -@media (max-width:640px) { - .no-js .data-table { - font-size: 1em; - } - - .no-js .data-table thead tr { - position: absolute; - top: -9999em; - left: -9999em; - } - - .no-js .data-table tr+tr { - margin-top: 1.5em; - } - - .no-js .data-table td, - .no-js .data-table tr { - display: block; - } - - .no-js .data-table td { - padding-left: 50%; - border: none; - } - - .no-js .data-table td:before { - content: attr(data-label); - float: left; - margin-left: -100%; - width: 100%; - color: #666; - margin-bottom: .5em; - font-weight: 700; - font-style: normal; - font-variant: initial; - text-transform: none; - } -} - -@media (max-width:400px) { - .no-js .data-table td { - padding-left: 0; - } - - .no-js .data-table td:before { - display: block; - margin-left: 0; - } -} - -.tablesaw { - table-layout: fixed; -} - -@media screen and (max-width:767px) { - .tablesaw thead { - display: none; - } - - .tablesaw tr { - display: table; - position: relative; - padding: 1.5em 0; - margin-bottom: 1.5em; - } - - .tablesaw td { - display: table-row; - } - - .tablesaw td:before { - content: attr(data-label); - display: table-cell; - font-weight: 700; - padding: .2em .6em .2em 0; - text-align: right; - } - - .tablesaw td:last-child:after { - content: ""; - position: absolute; - left: 0; - right: 0; - bottom: 0; - } -} - -.hidden { - display: none; -} - -.vertical { - color: #222; - display: block; - flex-basis: 100%; - text-align: right; - background-image: linear-gradient(currentColor, currentColor); - background-size: 100% 1px; - background-repeat: no-repeat; - font-feature-settings: "smcp" 1, "c2sc" 1; - font-variant: petite-caps; - background-position: center center; - text-transform: uppercase; - line-height: 1; - font-size: .7em; - margin: 3em 0 0 .75em; - max-width: 17.5em; - transform-origin: left center; - transform: rotateZ(90deg) translateX(-5em) translateY(1em); - letter-spacing: 4px; -} - -.vertical a { - background-position: center 72%; -} - -.vertical span { - display: inline-block; - padding: 0 .6em; - background-color: #f6f3f2; - position: relative; - top: .1em; -} - -@media all and (max-width:1025px) { - .vertical { - transform: none; - margin: 2.5em 0 2.5em calc(1.3em - 2px); - } -} - -@media (max-width:40em) { - .vertical { - transform: none; - margin: 2.5em 0 1.5em; - text-align: left; - background-image: none; - } -} - -@media all and (max-width:1300px) { - .vertical { - transform: rotateZ(90deg) translateX(-100px) translateY(10px); - } -} - -@media all and (max-width:1025px) { - .vertical { - transform: none; - } -} - -.vertical--white { - color: #000; - display: block; - text-align: right; - background-image: linear-gradient(currentColor, currentColor); - background-size: 100% 1px; - background-repeat: no-repeat; - font-feature-settings: "smcp" 1, "c2sc" 1; - font-variant: petite-caps; - background-position: center center; - text-transform: uppercase; - line-height: 1; - font-size: .7em; - margin: 3em 0 0; - transform-origin: left center; - transform: rotateZ(90deg) translateX(-5em) translateY(1em); - letter-spacing: 4px; - max-width: 22.5em; -} - -@media all and (min-width:1025px) { - .vertical--white { - max-width: 17.5em; - } -} - -.vertical--white a { - background-position: center 72%; -} - -.vertical--white span { - display: inline-block; - padding: 0 .6em; - background-color: #fff; - position: relative; - top: .1em; -} - -@media all and (max-width:1025px) { - .vertical--white { - transform: none; - margin: 2.5em 0 2.5em calc(1.3em - 2px); - } -} - -@media (max-width:40em) { - .vertical--white { - transform: none; - margin: 2.5em 0 1.5em; - text-align: left; - background-image: none; - } -} - -.bg--beige { - background-color: #f6f3f2; -} - -.bg--red { - background-color: #d33a2c; -} - -.bg--alternate-red { - background-color: #bc3428; -} - -.bg--white { - background-color: #fff; -} - -.bg-light { - background: #e5e5e5; -} - -.text-blue { - color: #41b7d7; -} - -.text-green { - color: #8cad3e; -} - -.text-grey { - color: #a0a0a0; -} - -.text-red { - color: #ff6767; -} - -.text-orange { - color: #f55700; -} - -.card__guide--lightblue { - color: #31a1bd; -} - -.card__guide--green { - color: #18a46f; -} - -.card__guide--darkblue { - color: #0065bd; -} - -.card__guide--orange { - color: #f55700; -} - -.card__guide--violet { - color: #aa1994; -} - -.card__guide--red { - color: #e62143; -} - -.card__guide--lightblue { - color: #31a1bd; -} - -.card__guide--lightblue_bg { - --card-color: #31a1bd; -} - -.card__guide--green_bg { - --card-color: #18a46f; -} - -.card__guide--darkblue_bg { - --card-color: #0065bd; -} - -.card__guide--orange_bg { - --card-color: #f55700; -} - -.card__guide--violet_bg { - --card-color: #aa1994; -} - -.card__guide--red_bg { - --card-color: #e62143; -} - -.card__guide--lightblue_bg { - --card-color: #31a1bd; -} - -.uppercase { - text-transform: uppercase; -} - -.small-caps { - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; -} - -.small-caps a { - background-position: center 72%; -} - -.clearfix:after, -.clearfix:before { - content: " "; - display: table; - clear: both; -} - -*, -::after, -::before { - box-sizing: border-box; -} - -.right-lined { - display: block; - text-align: left; - background-image: linear-gradient(currentColor, currentColor); - background-size: 100% 1px; - background-repeat: no-repeat; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: lowercase; - background-position: center 72%; - line-height: 1; - font-size: 1em; - margin-bottom: calc(2em + 2vw); - margin-top: calc(1em + 2vw); - margin-left: -1.6em; -} - -.right-lined a { - background-position: center 72%; -} - -.right-lined span { - display: inline-block; - padding: 0 .6em; - background-color: #fff; - position: relative; - top: .1em; -} - -.left-lined { - display: block; - text-align: right; - background-image: linear-gradient(currentColor, currentColor); - background-size: 100% 1px; - background-repeat: no-repeat; - background-position: center center; - font-feature-settings: "smcp" 1, "c2sc" 1; - letter-spacing: 1px; - font-variant: petite-caps; - text-transform: uppercase; - line-height: 1; - font-size: .7em; - margin: 3em 0 0; -} - -.left-lined a { - background-position: center 72%; -} - -.left-lined span { - display: inline-block; - padding: 0 .6em; - background-color: #fff; - position: relative; - top: .1em; -} - -.left-lined--beige-bg span { - background-color: #f6f3f2; -} - -.l-section--medium { - margin-top: 3rem; -} - -.no-overflow { - overflow: initial; -} - -.pan, -.ptn, -.pvn { - padding-top: 0; -} - -.pas, -.pts, -.pvs { - padding-top: 5px; -} - -.pam, -.ptm, -.pvm { - padding-top: 10px; -} - -.pal, -.ptl, -.pvl { - padding-top: 20px; -} - -.pan, -.phn, -.prn { - padding-right: 0; -} - -.pas, -.phs, -.prs { - padding-right: 5px; -} - -.pam, -.phm, -.prm { - padding-right: 10px; -} - -.pal, -.phl, -.prl { - padding-right: 20px; -} - -.pan, -.pbn, -.pvn { - padding-bottom: 0; -} - -.pas, -.pbs, -.pvs { - padding-bottom: 5px; -} - -.pam, -.pbm, -.pvm { - padding-bottom: 10px; -} - -.pal, -.pbl, -.pvl { - padding-bottom: 20px; -} - -.pan, -.phn, -.pln { - padding-left: 0; -} - -.pas, -.phs, -.pls { - padding-left: 5px; -} - -.pam, -.phm, -.plm { - padding-left: 10px; -} - -.pal, -.phl, -.pll { - padding-left: 20px; -} - -.man, -.mtn, -.mvn { - margin-top: 0; -} - -.mas, -.mts, -.mvs { - margin-top: 5px; -} - -.mam, -.mtm, -.mvm { - margin-top: 10px; -} - -.mal, -.mtl, -.mvl { - margin-top: 20px; -} - -.man, -.mhn, -.mrn { - margin-right: 0; -} - -.mas, -.mhs, -.mrs { - margin-right: 5px; -} - -.mam, -.mhm, -.mrm { - margin-right: 10px; -} - -.mal, -.mhl, -.mrl { - margin-right: 20px; -} - -.man, -.mbn, -.mvn { - margin-bottom: 0; -} - -.mas, -.mbs, -.mvs { - margin-bottom: 5px; -} - -.mam, -.mbm, -.mvm { - margin-bottom: 10px; -} - -.mal, -.mbl, -.mvl { - margin-bottom: 20px; -} - -.man, -.mhn, -.mln { - margin-left: 0; -} - -.mas, -.mhs, -.mls { - margin-left: 5px; -} - -.mam, -.mhm, -.mlm { - margin-left: 10px; -} - -.mal, -.mhl, -.mll { - margin-left: 20px; -} - -.mha, -.mra { - margin-right: auto; -} - -.mha, -.mla { - margin-left: auto; -} - -.mr5 { - margin-right: .5em; -} - -.mr0 { - margin-right: 0; -} - -.stack--small { - --stack-margin: 1rem; -} - -.stack { - margin-top: 0; - margin-bottom: 0; -} - -.stack>* { - margin-top: 0; - margin-bottom: 0; -} - -.stack>*+* { - margin-top: 2rem; - margin-top: var(--stack-margin, 2rem); -} - -.pos-rel { - position: relative; -} - -.ib { - display: inline-block; -} - -.transparent { - background-color: transparent; -} - -.outline { - outline: 2em solid #fff; -} - -.va-top { - vertical-align: top; -} - -.flex { - display: flex; -} - -.pl0 { - padding-left: 0; -} - -.flex-wrap { - flex-wrap: wrap; -} - -.confetti { - position: absolute; - top: -100px; -} - -.cards__header { - background: var(--card-color, #333); - margin-bottom: 0; - margin-top: 0; - padding: 0 0 1.5em 0; - position: relative; -} - -.cards__header--single { - padding: 1.5em 1em 1.5em 1em; -} - -.cards__header .header__title { - padding: 0; -} - -@media screen and (min-width:680px) { - .cards__header { - padding: 2.5em 2em 1.5em 2em; - } - - .card { - margin: 0; - } -} - -@media screen and (min-width:1025px) { - .cards__header--single { - padding: 2.5em 4em 1.5em 3em; - } -} - -.cards__header--dark { - background: var(--THEME_COLOR, #d33a2c); - background-image: linear-gradient(to bottom, var(--THEME_COLOR, #d33a2c), #333); -} - -.cards__header h3 { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .cards__header h3 { - font-family: Mija; -} - -.cards__header--overflow:after { - content: ""; - background: #333; - display: block; - height: 120px; - position: absolute; - left: 0; - right: 0; -} - -.cards__header--overflow__breakout { - display: none; -} - -@media all and (min-width:768px) { - .cards__header--overflow__breakout { - display: block; - position: absolute; - bottom: 0; - top: -100px; - left: 14%; - transform: translate(0, 65px); - } -} - -@media all and (min-width:1024px) { - .cards__header--overflow__breakout { - top: 0; - left: 6%; - } -} - -@media all and (min-width:1250px) { - .cards__header--overflow__breakout { - top: 0; - left: 16%; - } -} - -.cards__grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); - grid-gap: 0 1.5em; -} - -@media all and (min-width:68.75em) { - .cards__grid { - grid-template-columns: repeat(auto-fit, minmax(calc(350px + 5vw), 1fr)); - } - - .cards__grid--frontpage { - grid-template-columns: repeat(auto-fit, minmax(calc(280px + 5vw), 1fr)); - } -} - -@media (min-width:68.75em) { - .cards__grid--highlights { - display: grid; - width: 100%; - grid-template-columns: repeat(auto-fill, minmax(calc(225px + 5vw), 1fr)); - margin: 0 auto; - padding: 0; - } -} - -@media screen and (min-width:80em) { - .cards__grid { - grid-template-columns: repeat(auto-fit, minmax(calc(450px + 5vw), 1fr)); - } - - .cards__grid--frontpage { - grid-template-columns: repeat(auto-fit, minmax(calc(280px + 5vw), 1fr)); - } -} - -.card { - border-radius: 11px; - padding: 2rem 2rem; - box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .12); - margin: 1.5em 0; -} - -.card>* { - margin-top: 0; - margin-bottom: 0; -} - -.card>*+* { - margin-top: 1.5rem; -} - -.card .h3 { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .card .h3 { - font-family: Mija; -} - -.card--light { - background: #fff; - color: #333; -} - -.card--box-shadow { - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .03); - transition: box-shadow .2s ease-in-out; -} - -.card--green { - background-color: #f1fdf8; -} - -.card--orange { - background-color: #fef1f0; -} - -.card--violet { - background-color: #fbecf9; -} - -@media screen and (min-width:48em) { - .card--full { - padding: 0; - } -} - -.arrow-list { - list-style: none; - padding: 0; -} - -.arrow-list>li { - display: flex; - align-items: center; -} - -.arrow-list>li::before { - content: ""; - background: url(/images/icons/arrow.svg); - background-repeat: no-repeat; - background-position: left center; - width: 40px; - height: 18px; - flex-shrink: 0; -} - -.video-cta { - display: block; -} - -.video-cta__container { - position: relative; -} - -.video-cta__thumbnail { - display: block; - border-radius: 11px; -} - -.video-cta___title { - display: block; - border-radius: 11px; - line-height: 1.5em; -} - -.video-cta__title-link { - font-size: .9em; -} - -.video-cta__link { - display: flex; - align-items: center; - text-decoration: none; - font-weight: 700; - color: #006fc6; - background: 0 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .video-cta__link { - font-family: Mija; -} - -.video-cta__link__arrow { - display: flex; - flex-basis: 25px; - flex-shrink: 0; -} - -.video-cta__caption { - color: #666; - font-style: italic; - font-size: .9em; -} - -.block-link, -.block-link:active, -.block-link:focus, -.block-link:hover { - font-weight: 700; - font-size: 1.4rem; - list-style: none; -} - -.block-link__by, -.block-link__by:active, -.block-link__by:focus, -.block-link__by:hover { - display: block; -} - -.block-link__by-href { - color: #666; - text-shadow: none; - background: 0 0; - text-decoration: underline; -} - -.video-cta__play-btn { - margin: 0; - position: absolute; - bottom: .5em; - right: .5em; - width: 50px; - height: 50px; - padding: .25em; - background-color: #006fc6; - fill: #fff; - border-radius: 50%; - transition: all .3s ease-in-out; -} - -.video-cta__play-btn a { - background-image: none; - padding: 0; -} - -.video-cta__container a:active .video-cta__play-btn, -.video-cta__container a:focus .video-cta__play-btn, -.video-cta__container:hover .video-cta__play-btn { - background-color: #d33a2c; -} - -.guides-header { - background: var(--card-color, #202020); - margin-bottom: 0; - padding: 3em 1em .5em 1em; - position: relative; - z-index: 2; - background-image: linear-gradient(to bottom, var(--card-color, #202020), #333); -} - -.guides-header .header__title { - color: #fff; - text-shadow: none; -} - -@media (max-width:40em) { - .guides-header .header__title { - padding: 0; - } -} - -.card .header__title-desc { - color: #202020; -} - -.guides-header .header-description { - margin: calc(1em + .5vw) 0 0 0; - clear: both; - color: #fff; -} - -.guides-header .header__graphic { - display: none; -} - -@media screen and (min-width:48em) { - .guides-header .header__graphic { - display: block; - } - - .guides-header .header-description { - margin-top: calc(1em + .5vw); - clear: initial; - } - - .card { - padding: calc(2rem + .5vw); - } -} - -@media all and (min-width:750px) { - .guides-header .header__graphic { - display: block; - } -} - -@media screen and (min-width:1025px) { - .cards__grid { - padding: 0 2em; - } - - .cards__grid--frontpage { - padding: 0 1em; - } - - .guides-header { - padding: 3em 2em 0 4em; - } - - .guides-header .header__graphic { - margin-top: -15%; - right: 1em; - padding-left: 0; - } - - .guides-header .header__graphic img { - width: 220px; - height: 305px; - } -} - -.card .btn--card { - background: var(--card-color, #333); - background-image: linear-gradient(var(--card-color, #41b14f), var(--card-color, #41b14f)); -} - -.guides-content { - padding-bottom: 4em; -} - -.nl-box__form { - display: flex; - padding-bottom: .5em; - text-align: center; - letter-spacing: -.5px; - color: #fff; - font-size: 1.15em; -} - -.nl-box__form .nl-box__form--button, -.nl-box__form .nl-box__form--email { - flex-grow: 1; - flex-shrink: 0; - width: auto; - margin: 0; - padding: .75em 1em; - border: 0; - border-radius: 11px; - background: #fff; - font-size: 1em; - box-shadow: none; -} - -.nl-box__form--button:active, -.nl-box__form--button:focus, -input.nl-box__form--email:active, -input.nl-box__form--email:focus { - box-shadow: 0 1px 1px rgba(0, 0, 0, .3); -} - -.nl-box__form--button::-moz-placeholder, -.nl-box__form--email::-moz-placeholder { - color: #777; - font-style: italic; -} - -.nl-box__form--button::placeholder, -.nl-box__form--email::placeholder { - color: #777; - font-style: italic; -} - -.nl-box__form .nl-box__form--button { - transition: all .2s ease-in-out; - color: #fff; - background-color: #0168b8; - font-weight: 700; - box-shadow: 0 1px 1px rgba(0, 0, 0, .3); - width: 100%; - border: 0; - border-left: 1px solid #ddd; - flex: 2; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .nl-box__form .nl-box__form--button { - font-family: Mija; -} - -.nl-box__form .nl-box__form--email { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - width: 100%; - flex: 4; -} - -.nl-box__img { - height: auto; - width: 100%; -} - -@media all and (max-width:650px) { - .nl-box__form .nl-box__group { - flex-wrap: wrap; - box-shadow: none; - } - - .nl-box__form .nl-box__form--button, - .nl-box__form .nl-box__form--email { - border-radius: 11px; - border-left: none; - } - - .cards__grid { - grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); - } - - .nl-box__form .nl-box__form--email { - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - min-width: 100%; - } - - .nl-box__form .nl-box__form--button { - margin-top: 1em; - box-shadow: 0 1px 1px rgba(0, 0, 0, .5); - } -} - -.nl-box__form .nl-box__form--button:active, -.nl-box__form .nl-box__form--button:focus, -.nl-box__form .nl-box__form--button:hover { - cursor: pointer; - color: #fff; - background-color: #0168b8; - border-color: #dadada; - box-shadow: 0 1px 1px rgba(0, 0, 0, .3); -} - -.nl-box__form .nl-box__form--button:active, -.nl-box__form .nl-box__form--button:focus { - outline: 0; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); - box-shadow: inset 0 3px 3px rgba(0, 0, 0, .3); -} - -.nl-box__group { - display: flex; - box-shadow: 0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025); - border-radius: 11px; -} - -.nl-box__wrapper { - display: flex; - flex-direction: column; - justify-content: center; -} - -.nl-box__form form { - width: 100%; -} - -.nl-box__form .nl-box__group { - margin: 0; -} - -.nl-box__caption { - font-size: .9em; - line-height: 1.5em; - color: #fff; - border-radius: 11px; - padding: .5em 1em; - display: inline-block; - background-color: rgba(0, 103, 184, .3490196078); - text-shadow: 1px 1px 1px rgba(0, 0, 0, .3); -} - -.nl-box { - margin: 1.5em 0; - padding: 1em 0; - box-shadow: none; - max-width: 750px; - justify-self: center; -} - -.nl-box__blue { - background-color: #1b71bb; - background-image: linear-gradient(#1b71bb 60%, #01a6c1 100%); -} - -.nl-box__desc { - padding: .5rem 2rem 1rem 2rem; -} - -.nl-box__image { - width: 100%; - height: auto; -} - -@media screen and (min-width:48em) { - .nl-box__desc { - padding: .5rem calc(2rem + .5vw) 1rem calc(2rem + .5vw); - } -} - -.nl-box__desc--heading-link { - color: #fff; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .9); -} - -.nl-box__summary { - border-bottom: 0; - color: #fff; - font-style: normal; - text-shadow: 1px 1px 1px rgba(0, 0, 0, .4); -} - -.webinar .author__image { - border-width: 8px; -} - -.webinar .author__image-wrapper { - max-width: 280px; -} - -.mha { - margin-right: auto; -} - -.mha { - margin-left: auto; -} - -.cards__grid { - content-visibility: auto; -} - -.rounded-xl { - border-radius: .883em; -} - -.flex { - display: flex; -} - -.hidden { - display: none; -} - -.flex-wrap { - flex-wrap: wrap; -} - -.h-20 { - height: 5rem; -} - -.h-64 { - height: 16rem; -} - -.mt-5 { - margin-top: 1.25rem; -} - -.mr-5 { - margin-right: 1.25rem; -} - -.mb-5 { - margin-bottom: 1.25rem; -} - -.mb-1 { - margin-bottom: 1rem; -} - -.w-20 { - width: 5rem; -} - -.w-64 { - width: 16rem; -} - -@media (min-width:768px) { - .md\:flex-1 { - flex: 1 1 0%; - } -} - -.w-48 { - width: 12rem; -} - -.mr-10 { - margin-right: 2.5rem; -} - -.mb-5 { - margin-bottom: 1.25rem; -} - -.mr-3 { - margin-right: .75rem; -} - -.h-48 { - height: 12rem; -} - -.flex-shrink-0 { - flex-shrink: 0; -} - -.rounded-3xl { - border-radius: 1.2em; -} - -.block { - display: block; -} - -.mal, -.mtl, -.mvl { - margin-top: 20px; -} - -@charset "UTF-8"; - -.nowrap { - white-space: nowrap; -} - -.nowrap:after, -.nowrap:before { - content: " "; - display: table; - clear: both; -} - -.btn .sr-only, -.sr-only { - position: absolute; - display: inline-block; - height: 0; - width: 0; - line-height: 0; - overflow: hidden; -} - -.green, -.highlight, -.success { - color: #41b14f; -} - -.error, -.red { - color: #d33a2c; -} - -.darker-red { - color: #61140f; -} - -.darkest-red { - color: #390c09; -} - -.black { - color: #000; -} - -.bold { - font-weight: 700; -} - -.in-progress, -.orange, -.pending { - color: #f88040; -} - -.light-grey { - color: #767676; -} - -.grey, -.grey a { - color: #666; -} - -.white { - color: #fff; -} - -.display-block { - display: block; -} - -.bg--grey { - background-color: #f6f6f6; -} - -.bg--lighter-grey { - background-image: linear-gradient(white, #f0f0f0); -} - -.bg--light-grey { - background-color: #fafafa; -} - -.bg--dark-grey { - background-color: #666; -} - -.bg--red { - background-color: #d33a2c; -} - -.bg--navy { - background-color: #282634; -} - -.bg--green { - background-color: #41b14f; -} - -.bg--light-green { - background-color: #e3f5e5; -} - -.bg--light-red { - background-color: #fbebea; -} - -.bg--dark-red { - background-color: #811d15; -} - -.small { - font-size: .8em; -} - -.smaller { - font-size: .7em; -} - -.larger { - font-size: 1.2em; -} - -.padding-bottom { - padding-bottom: 4vh; -} - -.italic { - font-style: italic; -} - -.thin { - font-weight: 400; -} - -.center { - text-align: center; -} - -.float--right { - float: right; -} - -.float--left { - float: left; -} - -.elena { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif; -} - -.wf-loaded-stage2 .elena { - font-family: Elena; -} - -.mija { - font-family: -apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif; -} - -.wf-loaded-stage2 .mija { - font-family: Mija; -} - -.mt-0 { - margin-top: 0; -} - -.mb-0 { - margin-bottom: 0; -} - -.mb-8 { - margin-bottom: 2rem; -} - -.mb-12 { - margin-bottom: 3rem; -} - -.mb-10 { - margin-bottom: 2.5rem; -} - -.mb-12 { - margin-bottom: 3rem; -} - -.mb-16 { - margin-bottom: 4rem; -} - -.mt-16 { - margin-top: 4rem; -} - -.mt-12 { - margin-top: 3rem; -} - -.mt-8 { - margin-top: 2rem; -} - -.margin-center { - margin: 0 auto; -} - -.sticky { - position: fixed; - left: 0; - top: 0; - right: 0; - z-index: 10; - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); -} - -.enhanced .no-js-only, -.js .no-js-only { - display: none; -} - -.text-shadow { - text-shadow: 1px 1px 1px rgba(0, 0, 0, .25); -} - -/*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */ - -html { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, "Open Sans", "Helvetica Neue", Arial, sans-serif; - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} - -body { - margin: 0; -} - -article, -aside, -footer, -header, -nav, -section { - display: block; -} - -figcaption, -figure, -main { - display: block; -} - -figure { - margin: 0; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -pre { - font-family: monospace; - font-size: 1em; -} - -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; -} - -a:active, -a:hover { - outline-width: 0; -} - -abbr[title] { - border-bottom: none; - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -b, -strong { - font-weight: inherit; -} - -b, -strong { - font-weight: bolder; - letter-spacing: .25px; -} - -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -dfn { - font-style: italic; -} - -mark { - background-color: #ff0; - color: #000; -} - -small { - font-size: 80%; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -.25em; -} - -sup { - top: -.5em; -} - -audio, -video { - display: inline-block; -} - -audio:not([controls]) { - display: none; - height: 0; -} - -img { - border-style: none; -} - -svg:not(:root) { - overflow: hidden; -} - -button, -input, -optgroup, -select, -textarea { - font: inherit; - margin: 0; -} - -optgroup { - font-weight: 700; -} - -button, -select { - text-transform: none; -} - -[type=reset], -[type=submit], -button, -html [type=button] { - -webkit-appearance: button; -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} - -[type=button]:-moz-focusring, -[type=reset]:-moz-focusring, -[type=submit]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} - -fieldset { - border: 1px solid silver; - margin: 0 2px; - padding: .35em .625em .75em; -} - -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} - -progress { - display: inline-block; - vertical-align: baseline; -} - -textarea { - overflow: auto; -} - -[type=checkbox], -[type=radio] { - box-sizing: border-box; - padding: 0; -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; -} - -[type=search] { - -webkit-appearance: textfield; - outline-offset: -2px; -} - -[type=search]::-webkit-search-cancel-button, -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} - -details, -menu { - display: block; -} - -summary { - display: list-item; -} - -canvas { - display: inline-block; -} - -template { - display: none; -} - -[hidden] { - display: none; -} - -@media screen and (min-width:740px) { - - .global-header, - .header { - padding: 1rem 2em; - } -} - -@media screen and (min-width:700px) { - - .header, - .header.searchFocused { - grid-template-columns: -webkit-min-content minmax(140px, 2fr) 0 minmax(100px, 350px); - grid-template-columns: min-content minmax(140px, 2fr) 0 minmax(100px, 350px); - } -} - -@media screen and (min-width:31.25em) { - .header { - grid-template-columns: -webkit-min-content -webkit-min-content 0 minmax(100px, 100%); - grid-template-columns: min-content min-content 0 minmax(100px, 100%); - -moz-column-gap: 10px; - column-gap: 10px; - } -} - -.nav-item-link { - color: #fff; - transition: none; -} - -@media print { - body { - margin: 0 .6cm 0 .6cm; - padding: 3mm 0; - } - - .noprint, - .noprint * { - display: none; - } - - .header-description, - body { - color: #222; - } - - .noprint { - display: none; - visibility: hidden; - } - - .c-felix-the-cat { - padding: 0; - } - - .author__image-wrapper::before, - .bio-image::before, - .book--featured__image:after, - .book--featured__image:before, - .book-details__book-image::after, - .book-details__book-image::before, - .books__book__image::before, - .tilt::after, - .tilt::before, - img::after, - img::before { - display: none; - } - - body::after { - content: " "; - background: url(/images/smashing-cat/cat-felix-the-cat.svg), url(/images/icons/author.svg), url(/images/icons/tags.svg), url(/images/icons/published.svg); - visibility: hidden; - height: 0; - clear: both; - } - - .article__meta, - .author { - margin: .5em 0; - } - - .article-container .author--full>a { - margin-bottom: 0; - } - - .books__book__img { - max-width: 250px; - } - - .announcement, - .article--grid__read-more, - .article-header--meta, - .article__comments-count, - .back-to-top-wrapper, - .books__tabs, - .c-promotion-box, - .cart-wrapper, - .conf-panel__image, - .content-tabs, - .cookie-banner, - .cookies, - .curated-articles-container, - .feature-panel, - .featured-articles__teaser, - .footer__links, - .global-header, - .header, - .meow__masthead, - .meta-box, - .order-details__secondary-actions, - .read-more-link, - .tablesaw-bar { - display: none; - } - - body { - display: block; - } - - pre>code, - pre[class]>code { - font-size: .7em; - } - - a[href] { - text-decoration: underline; - } - - a { - text-shadow: none; - background: 0 0; - } - - .homepage:before { - content: "Smashing Magazine"; - font-size: 2em; - font-weight: 700; - border-bottom: 8px solid #ddd; - padding: 0 0 .25em 0; - margin: .25em 0 .75em 0; - width: 100%; - display: block; - } - - .homepage .container { - padding: 0; - width: auto; - max-width: auto; - } - - .homepage .article--post, - .homepage .article--post__teaser { - page-break-inside: avoid; - page-break-after: auto; - display: block; - widows: 3; - orphans: 3; - } - - .homepage main::before { - content: "Don't miss these articles on SmashingMag:"; - font-size: 1.5em; - font-weight: 700; - display: block; - margin-bottom: .5em; - color: #666; - } - - .wf-loaded-stage2 .homepage main::before { - font-family: Mija; - } - - .homepage .author__image-wrapper { - filter: grayscale(100); - } - - .homepage .author__desc__title { - margin-bottom: -7px; - } - - .homepage .author { - float: none; - max-width: 150px; - } - - .homepage .author__image { - max-height: 70px; - transform: none; - } - - .homepage .author__image img { - transform: none; - } - - .homepage .featured-article .nowrap { - display: flex; - flex-direction: row; - text-align: left; - } - - .homepage .featured-article__intro { - display: inline; - } - - .homepage h2 { - z-index: 9; - color: #c00; - } - - .homepage .featured-article__title a { - display: inline-block; - margin-left: 0; - padding-left: 0; - font-size: .8em; - } - - .homepage .featured-article__comments-count { - color: #eee; - font-size: .5em; - } - - .homepage .featured-article__tags { - margin: 0; - padding: 0; - color: #eee; - font-size: .8em; - } - - .homepage .featured-article__tags a { - color: currentColor; - } - - .homepage .featured-article__title .featured-article__title__a { - color: #333; - padding-top: 0; - } - - .homepage .featured-article__title .featured-article__title__a::after, - .homepage .featured-article__title .featured-article__title__a::before { - content: ""; - } - - .homepage .featured-articles-container { - display: flex; - flex-direction: row; - flex-wrap: wrap; - margin-left: 0; - padding-left: 0; - margin-top: auto; - } - - .homepage .featured-article { - width: 50%; - min-height: 30%; - margin-top: 1.5em; - margin-bottom: 2.5em; - } - - .homepage .featured-article:nth-child(2n + 1) { - padding: 0 0 0 4%; - } - - .homepage .featured-article:nth-child(2n) { - padding: 0 4% 0 1%; - } - - .homepage .article--grid__content, - .homepage .article--grid__title { - line-height: 1.5; - } - - .homepage .article--grid__content a, - .homepage .article--post__author-name a, - .homepage .conf-panel a { - padding: 0 0 2px 0; - color: #333; - border-bottom: 1px solid #e3e3e3; - } - - .homepage .left-lined { - color: #222; - position: absolute; - left: 10px; - display: inline; - text-align: left; - -ms-font-feature-settings: "smcp" 1, "c2sc" 1; - -o-font-feature-settings: "smcp" 1, "c2sc" 1; - font-feature-settings: "smcp" 1, "c2sc" 1; - font-variant: petite-caps; - background-position: center 72%; - line-height: 1; - font-size: 1em; - margin: 0; - max-width: 13em; - padding-left: .75em; - transform-origin: left center; - transform: rotateZ(90deg) translateX(-5px) translateY(1px); - text-transform: lowercase; - letter-spacing: 4px; - } - - .homepage .featured-articles-container { - padding-bottom: 2em; - } - - .homepage .latest-articles-container { - border-top: 8px solid #ddd; - margin-top: 0; - } - - .homepage .article--grid__container { - padding-top: .25em; - } - - .homepage .article--grid__container div, - .homepage .col--article--grid:first-of-type { - margin: 0 5% 0 5%; - padding: .5em 0 0 0; - } - - .homepage .most-popular-articles-container { - -moz-column-break-before: always; - break-before: always; - page-break-before: always; - border-top: 8px solid #ddd; - } - - .homepage .most-popular-articles-container .container { - margin: 0 5% 0 2.5%; - } - - .homepage .most-popular-articles-container .author__image-wrapper { - position: static; - } - - .homepage .most-popular-articles-container .article--post { - margin: .5em 0 1.35em 0; - } - - .homepage .most-popular-articles-container .article--post .author { - float: left; - } - - .homepage .conf-panel { - -moz-column-break-before: always; - break-before: always; - page-break-before: always; - color: #222; - border-top: 8px solid #ddd; - border-bottom: 8px solid #ddd; - } - - .homepage .article--post__stats ul li { - padding-left: 0; - } - - .homepage .footer__topics__list, - .homepage .footer__topics__title { - display: none; - } - - .homepage .footer__notes { - color: #222; - } - - .homepage .main-footer:after { - content: "Cats can be forgetful, but we are not. \aThanks for being truly smashing — yet again. \awww.smashingmagazine.com"; - font-style: italic; - color: #333; - line-height: 1.5em; - margin-top: 1.5em; - display: inline-block; - white-space: pre; - text-align: center; - width: 100%; - } - - .article__content .meta-box { - padding: 1em; - margin: 0; - list-style: none; - width: 100%; - border-radius: 11px; - font-size: .75em; - } - - .wf-loaded-stage2 .article__content .meta-box { - font-family: Mija; - } - - .meta-box li { - margin-bottom: .5em; - line-height: 1.4; - padding-left: 30px; - background-size: auto 20px; - background-repeat: no-repeat; - background-position: left top; - } - - .meta-box li:last-child { - margin-bottom: 0; - } - - .meta-box--author { - background-image: url(../images/icons/author.svg); - } - - .meta-box--tags { - background-image: url(/images/icons/tags.svg); - } - - .meta-box--published { - background-image: url(/images/icons/published.svg); - } - - .articlepage .article__meta li:after { - content: ""; - } - - .articlepage .advertisement, - .articlepage .article__related-articles__title, - .articlepage .article__related-articles__title+.article--grid__container, - .articlepage .load-more, - .articlepage .product-panel--book, - .articlepage [data-component=CommentsArea] { - display: none; - } - - .articlepage:before { - border-bottom: 8px solid #ddd; - display: block; - } - - .articlepage #main, - .articlepage article { - margin: 0; - padding: 0; - } - - .articlepage .author a { - padding-bottom: 0; - margin-bottom: 0; - z-index: 4; - overflow: hidden; - } - - .articlepage .author { - max-height: 200px; - } - - .articlepage .collapsible { - display: flex; - flex-direction: row; - width: 100%; - border-top: 8px solid #eee; - border-bottom: 8px solid #eee; - padding-bottom: .5em; - z-index: 9; - } - - .articlepage [data-handler=ContentTabs] { - border-top: 8px solid #eee; - border-bottom: 8px solid #eee; - } - - .articlepage .article__summary, - .articlepage .article__toc { - display: table-cell; - } - - .articlepage .article__summary { - width: 97.5%; - padding-right: 2.5%; - border-bottom: 0; - padding-bottom: .75em; - } - - .articlepage .article__summary h5 { - padding-bottom: 1em; - } - - .articlepage .article__toc { - width: 47.5%; - padding-left: 2.5%; - padding-top: 1.5em; - } - - .articlepage .article__toc h5 { - padding-left: 0; - } - - .articlepage .article__toc a { - padding: 0; - } - - .articlepage .article__content a[href] { - line-height: 1.65; - color: #006fc6; - background-image: none; - } - - .articlepage .article__content .author a[href] { - color: #666; - } - - .articlepage .article__content .author a[href]::after { - content: ""; - } - - .articlepage .article__content .author figcaption a[href]::after, - .articlepage .article__content a[href]::after { - content: " (↦ " attr(href) ")"; - word-wrap: break-word; - font-style: italic; - font-size: .9em; - white-space: wrap; - opacity: .75; - display: inline; - color: #006fc6; - text-decoration: none; - background-image: none; - text-shadow: none; - } - - .articlepage .article__content .meta-box li { - display: inline; - } - - .articlepage .article__content .meta-box .meta-box--share { - display: none; - } - - .articlepage .article__content .meta-box a[href]::after { - content: ""; - } - - .articlepage .article__content figure a[href] { - margin-bottom: 0; - padding-bottom: 0; - } - - .articlepage .footer__topics__list, - .articlepage .footer__topics__title { - display: none; - } - - .articlepage .footer__links, - .articlepage .footer__links a, - .articlepage .footer__notes, - .articlepage .footer__notes a { - color: #222; - background-color: transparent; - text-shadow: none; - } - - .articlepage .main-footer { - text-align: center; - margin: 0 auto; - } - - .articlepage .main-footer:before { - content: url(/images/smashing-cat/cat-felix-the-cat.svg); - width: 200px; - z-index: 9; - padding: .45em 0 .45em .7em; - display: inline-block; - white-space: pre; - text-align: center; - margin: 1.5em auto 0 auto; - } - - .articlepage .main-footer:after { - content: "Cats can be forgetful, but we are not. \aThanks for being truly smashing — yet again. \awww.smashingmagazine.com"; - font-style: italic; - color: #333; - line-height: 1.5em; - margin-top: 1.5em; - display: inline-block; - white-space: pre; - text-align: center; - width: 100%; - } - - .dashboard .announcement, - .dashboard .dashboard__header, - .dashboard .global-header, - .dashboard .header, - .dashboard .main-footer, - .dashboard .order-details__secondary-actions, - .dashboard .tablesaw-bar { - display: none; - } - - .dashboard main { - position: relative; - } - - .dashboard main::before { - content: url(/images/smashing-cat/cat-with-bottle-mouse.svg); - width: 200px; - z-index: 9; - padding: .45em 0 .45em .7em; - position: absolute; - top: 7.35em; - right: 0; - } - - .dashboard .dashboard::before { - content: "Smashing Magazine"; - font-size: 2em; - font-weight: 700; - border-bottom: 8px solid #ddd; - padding: 0 0 .25em 0; - margin: .25em 0 1em 0; - width: 100%; - display: block; - } - - .wf-loaded-stage2 .dashboard .dashboard::before { - font-family: Mija; - } - - .dashboard .dashboard::after { - content: "Cats can be forgetful, but we are not. \aThanks for being truly smashing — yet again. \awww.smashingmagazine.com"; - font-style: italic; - font-size: .9em; - color: #ccc; - line-height: 1.5em; - margin-top: 2.5em; - display: block; - width: 85%; - white-space: pre; - } - - .dashboard .container { - padding: 0; - width: auto; - max-width: auto; - } - - .dashboard .col, - .dashboard .row { - padding: 0; - } - - .dashboard .dashboard__tab-section { - padding: 0; - font-size: .8em; - } - - .dashboard .order-details__header { - display: block; - float: none; - padding: 0; - margin-bottom: 1em; - } - - .dashboard .dashboard__table.dashboard__table--order-details td, - .dashboard .dashboard__table.dashboard__table--order-details th { - padding-top: .4em; - padding-bottom: .4em; - } - - .dashboard .dashboard .dashboard__table--order-details .order-details__name, - .dashboard .dashboard .dashboard__table--order-details .order-details__price, - .dashboard .dashboard .dashboard__table--order-details .order-details__qty, - .dashboard .dashboard .dashboard__table--order-details .order-details__total { - font-size: .75em; - } - - .dashboard .order-details__order-nb span { - display: inline-block; - font-size: .8em; - text-transform: none; - } - - .dashboard .order-details--success .order-details__order-nb h2 { - font-size: 1.5em; - } - - .dashboard .order-details__address .billing-status, - .dashboard .order-details__address address, - .dashboard .order-details__address h3 { - margin: 0 0 1em 0; - } - - .dashboard .paid { - color: #41b14f; - } - - .dashboard .order-details__order-nb-wrapper { - display: block; - width: 100%; - float: none; - } - - .dashboard .order-details__address-wrapper { - display: inline-block; - float: none; - margin: 0; - padding: 0; - width: 30%; - } - - .dashboard .order-details__footer td, - .dashboard .order-details__footer th { - padding-top: .25em; - padding-bottom: .25em; - } - - .dashboard .order-details__sum-total th { - font-size: 1.5em; - padding-left: 1em; - } - - .dashboard .order-details__sum-total td { - font-size: 1.5em; - } - - .dashboard .order-details__address { - background: 0 0; - padding: 0; - } - - .dashboard .dashboard__table { - margin-bottom: 0; - } - - .dashboard .dashboard__table td, - .dashboard .dashboard__table th { - padding: .75em; - } - - .dashboard .dashboard__table--order-details .order-details__item__name { - padding-left: .75em; - width: 55%; - } - - .dashboard .dashboard__table--order-details .order-details__subitem th { - padding-left: 2em; - } -} \ No newline at end of file diff --git a/src/__fixtures__/smashing-magazine-20231008.json b/src/__fixtures__/smashing-magazine-20231008.json deleted file mode 100644 index f4a71243..00000000 --- a/src/__fixtures__/smashing-magazine-20231008.json +++ /dev/null @@ -1,51656 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 18393, - "linesOfCode": 28097, - "size": 544284, - "complexity": 53769, - "comments": { - "total": 4, - "size": 418 - }, - "embeddedContent": { - "size": { - "total": 43065, - "ratio": 0.0791222964481778 - }, - "types": { - "total": 49, - "totalUnique": 2, - "uniquenessRatio": 0.04081632653061224, - "unique": { - "image/svg+xml": { - "count": 33, - "size": 27417 - }, - "image/png": { - "count": 16, - "size": 15648 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 7, - "totalUnique": 7, - "unique": [ - { - "font-family": "Elena", - "src": "url(/fonts/ElenaWebRegular/ElenaWebRegular-subset-v2.woff2)format(\"woff2\"), url(/fonts/ElenaWebRegular/ElenaWebRegular.woff)format(\"woff\")" - }, - { - "font-family": "Elena", - "src": "url(/fonts/ElenaWebRegularItalic/ElenaWebRegularItalic-subset-v2.woff2)format(\"woff2\"), url(/fonts/ElenaWebRegularItalic/ElenaWebRegularItalic.woff)format(\"woff\")", - "font-style": "italic" - }, - { - "font-family": "Elena", - "src": "url(/fonts/ElenaWebBold/ElenaWebBold-subset-v2.woff2)format(\"woff2\"), url(/fonts/ElenaWebBold/ElenaWebBold.woff)format(\"woff\")", - "font-weight": "700" - }, - { - "font-family": "Elena", - "src": "url(/fonts/ElenaWebBoldItalic/ElenaWebBoldItalic-subset.woff2)format(\"woff2\"), url(/fonts/ElenaWebBoldItalic/ElenaWebBoldItalic.woff)format(\"woff\")", - "font-weight": "700", - "font-style": "italic" - }, - { - "font-family": "Mija", - "src": "url(/fonts/MijaRegular/Mija_Regular-webfont-subset.woff2)format(\"woff2\"), url(/fonts/MijaRegular/Mija_Regular-webfont.woff)format(\"woff\")" - }, - { - "font-family": "Mija", - "src": "url(/fonts/MijaBold/Mija_Bold-webfont-subset-v2.woff2)format(\"woff2\"), url(/fonts/MijaBold/Mija_Bold-webfont.woff)format(\"woff\")", - "font-weight": "700" - }, - { - "font-family": "DinMedium", - "src": "url(/fonts/DinMedium.woff2) format(\"woff2\")", - "font-weight": "400", - "font-style": "normal", - "font-display": "swap" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 610, - "totalUnique": 171, - "unique": { - "all and (min-width:800px)": 3, - "(min-width:48em)": 3, - "(min-width:64em)": 4, - "(min-width:75em)": 3, - "screen and (min-width:48em)": 16, - "screen and (min-width:40em)": 17, - "screen and (min-width:1500px)": 1, - "(max-width:1024px)": 2, - "all and (min-width:48em)": 2, - "all and (min-width:75em)": 1, - "all and (min-width:650px)": 10, - "(max-width:64em)": 64, - "all and (max-width:1099px)": 3, - "all and (min-width:1100px)": 7, - "screen and (min-width:64em)": 22, - "screen and (min-width:64rem)": 8, - "screen and (max-width:980px)": 1, - "(max-width:40em)": 50, - "all and (max-width:1025px)": 17, - "all and (max-width:1300px)": 2, - "all and (min-width:1025px)": 27, - "all and (max-width:600px)": 5, - "(min-width:768px)": 2, - "screen and (min-width:31.25em)": 3, - "screen and (min-width:700px)": 3, - "screen and (min-width:740px)": 5, - "all and (min-width:1550px)": 2, - "(min-width:800px)": 8, - "all and (min-width:53.125em)": 2, - "(min-width:42.9375em)": 4, - "all and (max-width:52.5em)": 2, - "screen and (min-width:800px)": 2, - "all and (min-width:31.25em)": 4, - "(-webkit-min-device-pixel-ratio:1.3),\n(min-resolution:124.8dpi)": 2, - "(min-width:52.5em)": 2, - "(min-width:56.5625em)": 2, - "(min-width:70em)": 2, - "(min-width:77.8125em)": 2, - "(min-width:104.375em)": 2, - "(min-width:113.4375em)": 2, - "(min-width:120.625em)": 2, - "(min-width:136.5625em)": 2, - "(min-width:179.6875em)": 2, - "(max-width:480px)": 2, - "all and (min-width:1450px)": 4, - "(min-height:600px)": 2, - "all and (min-width:640px)": 5, - "all and (max-width:650px)": 5, - "screen and (max-width:480px)": 2, - "screen and (max-width:380px)": 3, - "screen and (min-width:680px)": 2, - "screen and (max-width:650px)": 1, - "all and (min-width:68.75em)": 2, - "(min-width:68.75em)": 2, - "screen and (min-width:80em)": 5, - "screen and (min-width:1025px)": 6, - "screen and (min-width:850px)": 1, - "screen and (min-width:1450px)": 1, - "(min-width:740px)": 3, - "all and (min-width:1500px)": 4, - "all and (max-width:800px)": 2, - "all and (min-width:800px) and (max-width:1024px)": 1, - "screen and (min-width:100em)": 1, - "screen and (min-width:160em)": 1, - "(min-width:187.5em)": 1, - "all and (min-width:480px)": 6, - "screen and (min-width:480px) and (max-width:700px)": 1, - "(min-width:700px)": 1, - "screen and (min-width:187.5em)": 1, - "screen and (max-width:40em)": 1, - "all and (max-width:700px)": 1, - "all and (max-width:480px)": 19, - "all and (max-width:1024px)": 7, - "all and (max-width:640px)": 8, - "all and (max-width:500px)": 7, - "all and (min-width:901px)": 1, - "(max-width:48em)": 11, - "all and (min-width:550px)": 11, - "screen and (max-width:450px)": 1, - "all and (max-width:780px)": 1, - "all and (max-width:480px) and (max-height:600px)": 1, - "all and (min-width:768px)": 3, - "all and (min-width:1264px)": 1, - "(max-width:64rem)": 3, - "all and (max-width:550px)": 4, - "all and (max-width:750px)": 1, - "screen and (min-width:920px)": 2, - "all and (max-width:450px)": 2, - "all and (max-width:900px)": 1, - "all and (max-height:700px)": 1, - "all and (min-width:1200px)": 2, - "only screen and (min-width:768px)": 2, - "only screen and (min-width:1170px)": 1, - "all and (max-width:370px)": 1, - "all and (min-height:850px)": 2, - "screen and (max-width:420px)": 1, - "screen and (max-width:600px)": 1, - "all and (max-width:350px)": 1, - "all and (max-width:1919px)": 1, - "all and (max-width:767px)": 1, - "all and (min-width:1920px)": 1, - "all and (min-width:3000px)": 1, - "all and (max-width:1200px)": 1, - "screen and (-ms-high-contrast:active),\nscreen and (-ms-high-contrast:none)": 1, - "all and (min-width:850px)": 3, - "all and (min-width:750px)": 11, - "all and (min-width:1000px)": 1, - "all and (max-width:1000px)": 1, - "(min-width:1024px)": 2, - "(min-width:1450px) and (max-width:1600px)": 1, - "all and (min-width:1600px)": 1, - "all and (max-width:380px)": 1, - "all and (min-width:1101px)": 2, - "all and (min-width:600px)": 3, - "all and (max-width:1100px)": 2, - "all and (max-width:779px)": 1, - "all and (min-width:1350px)": 1, - "all and (max-width:680px)": 1, - "(min-width:1000px)": 4, - "screen and (min-width:1100px)": 2, - "all and (min-height:750px)": 1, - "all and (max-width:400px)": 2, - "all and (max-width:850px)": 1, - "all and (min-width:1150px)": 3, - "all and (max-height:850px)": 1, - "all and (min-height:900px)": 1, - "all and (max-height:750px)": 1, - "all and (max-width:930px)": 1, - "all and (max-height:750px) and (min-width:930px)": 1, - "all and (min-width:700px)": 7, - "all and (min-width:641px)": 3, - "all and (min-width:770px)": 1, - "(min-width:550px)": 2, - "(min-width:650px)": 2, - "all and (min-width:450px)": 1, - "all and (min-width:1024px)": 8, - "all and (min-width:900px)": 1, - "all and (min-width:900px) and (min-height:850px)": 3, - "all and (min-width:520px)": 1, - "all and (min-width:640px) and (max-width:1024px)": 1, - "all and (min-width:1400px)": 1, - "all and (max-width:740px)": 2, - "all and (max-width:740px) and (max-width:375px)": 1, - "all and (min-width:560px)": 1, - "all and (max-width:300px)": 4, - "all and (min-width:481px)": 1, - "all and (max-width:319px)": 1, - "(min-width:768px) and (max-width:1024px)": 1, - "(max-width:40rem)": 1, - "screen and (min-width:750px)": 1, - "all and (min-width:34.375em) and (max-width:48em)": 1, - "all and (min-width:64.0625em)": 1, - "screen and (max-width:1024px)": 1, - "screen and (min-width:550px) and (max-width:1024px)": 1, - "print": 2, - "screen and (max-width:1099px)": 1, - "all and (max-width:420px)": 1, - "all and (max-width:840px)": 1, - "all and (min-width:500px)": 1, - "all and (max-width:802px)": 1, - "all and (max-width:502px)": 1, - "screen and (max-width:610px)": 1, - "all and (max-width:980px)": 2, - "all and (min-height:500px)": 1, - "all and (max-width:1023px)": 1, - "(min-width:64rem) and (max-height:740px)": 1, - "(min-width:64rem) and (max-height:640px)": 1, - "(max-width:640px)": 1, - "(max-width:400px)": 1, - "screen and (max-width:767px)": 1, - "all and (min-width:1250px)": 1 - }, - "uniquenessRatio": 0.28032786885245903, - "browserhacks": { - "total": 1, - "totalUnique": 1, - "unique": { - "screen and (-ms-high-contrast:active),\nscreen and (-ms-high-contrast:none)": 1 - }, - "uniquenessRatio": 1 - } - }, - "charset": { - "total": 3, - "totalUnique": 1, - "unique": { - "\"UTF-8\"": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "supports": { - "total": 11, - "totalUnique": 3, - "unique": { - "(-ms-ime-align:auto)": 5, - "(display:flex)": 5, - "(display:grid)": 1 - }, - "uniquenessRatio": 0.2727272727272727, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 46, - "totalUnique": 46, - "unique": { - "@-webkit-keyframes cateye": 1, - "@keyframes cateye": 1, - "@-webkit-keyframes cateyesm": 1, - "@keyframes cateyesm": 1, - "@-webkit-keyframes birdmove": 1, - "@keyframes birdmove": 1, - "@-webkit-keyframes wing": 1, - "@keyframes wing": 1, - "@-webkit-keyframes blink": 1, - "@keyframes blink": 1, - "@-webkit-keyframes headShake": 1, - "@keyframes headShake": 1, - "@-webkit-keyframes shake": 1, - "@keyframes shake": 1, - "@-webkit-keyframes wiggle": 1, - "@keyframes wiggle": 1, - "@-webkit-keyframes content-injection": 1, - "@keyframes content-injection": 1, - "@-webkit-keyframes fade-in": 1, - "@keyframes fade-in": 1, - "@-webkit-keyframes adding-to-cart-animation": 1, - "@keyframes adding-to-cart-animation": 1, - "@-webkit-keyframes adding-to-cart-animation--wide-screens": 1, - "@keyframes adding-to-cart-animation--wide-screens": 1, - "@-webkit-keyframes cart-reminder-animation": 1, - "@keyframes cart-reminder-animation": 1, - "@-webkit-keyframes cd-qty-enter": 1, - "@keyframes cd-qty-enter": 1, - "@-webkit-keyframes cd-qty-leave": 1, - "@keyframes cd-qty-leave": 1, - "@-webkit-keyframes cd-item-move-up-mobile": 1, - "@keyframes cd-item-move-up-mobile": 1, - "@-webkit-keyframes cd-item-move-up": 1, - "@keyframes cd-item-move-up": 1, - "@-webkit-keyframes cd-item-move-down-mobile": 1, - "@keyframes cd-item-move-down-mobile": 1, - "@-webkit-keyframes cd-item-move-down": 1, - "@keyframes cd-item-move-down": 1, - "@-webkit-keyframes cd-item-slide-out": 1, - "@keyframes cd-item-slide-out": 1, - "@-webkit-keyframes cd-item-slide-in": 1, - "@keyframes cd-item-slide-in": 1, - "@-webkit-keyframes loading": 1, - "@keyframes loading": 1, - "@-webkit-keyframes receipt": 1, - "@keyframes receipt": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 23, - "totalUnique": 23, - "unique": { - "@-webkit-keyframes cateye": 1, - "@-webkit-keyframes cateyesm": 1, - "@-webkit-keyframes birdmove": 1, - "@-webkit-keyframes wing": 1, - "@-webkit-keyframes blink": 1, - "@-webkit-keyframes headShake": 1, - "@-webkit-keyframes shake": 1, - "@-webkit-keyframes wiggle": 1, - "@-webkit-keyframes content-injection": 1, - "@-webkit-keyframes fade-in": 1, - "@-webkit-keyframes adding-to-cart-animation": 1, - "@-webkit-keyframes adding-to-cart-animation--wide-screens": 1, - "@-webkit-keyframes cart-reminder-animation": 1, - "@-webkit-keyframes cd-qty-enter": 1, - "@-webkit-keyframes cd-qty-leave": 1, - "@-webkit-keyframes cd-item-move-up-mobile": 1, - "@-webkit-keyframes cd-item-move-up": 1, - "@-webkit-keyframes cd-item-move-down-mobile": 1, - "@-webkit-keyframes cd-item-move-down": 1, - "@-webkit-keyframes cd-item-slide-out": 1, - "@-webkit-keyframes cd-item-slide-in": 1, - "@-webkit-keyframes loading": 1, - "@-webkit-keyframes receipt": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.5 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 677, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.035450516986706, - "mode": 1, - "range": 1, - "sum": 701 - } - }, - "rules": { - "total": 4469, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 34, - "mean": 3.9592750055940926, - "mode": 2, - "range": 32, - "sum": 17694, - "items": [ - 4, - 7, - 6, - 12, - 4, - 3, - 4, - 6, - 17, - 8, - 3, - 3, - 5, - 2, - 3, - 3, - 4, - 10, - 5, - 2, - 3, - 2, - 5, - 4, - 5, - 4, - 3, - 3, - 3, - 12, - 6, - 4, - 7, - 4, - 2, - 2, - 6, - 2, - 2, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 29, - 29, - 3, - 3, - 2, - 2, - 4, - 4, - 4, - 4, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 4, - 2, - 5, - 3, - 4, - 5, - 10, - 2, - 4, - 3, - 2, - 4, - 2, - 2, - 7, - 6, - 13, - 14, - 6, - 5, - 13, - 6, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 3, - 7, - 8, - 9, - 19, - 9, - 4, - 2, - 3, - 17, - 2, - 4, - 4, - 10, - 3, - 2, - 2, - 2, - 3, - 2, - 12, - 3, - 2, - 2, - 2, - 14, - 2, - 7, - 3, - 5, - 2, - 3, - 2, - 3, - 5, - 3, - 5, - 4, - 2, - 5, - 2, - 5, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 2, - 2, - 2, - 19, - 6, - 3, - 5, - 2, - 2, - 18, - 2, - 6, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 3, - 6, - 2, - 5, - 8, - 2, - 4, - 2, - 15, - 5, - 3, - 2, - 3, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 9, - 2, - 3, - 3, - 7, - 2, - 2, - 2, - 7, - 3, - 7, - 4, - 2, - 2, - 2, - 2, - 4, - 10, - 2, - 2, - 10, - 3, - 2, - 2, - 6, - 2, - 4, - 4, - 5, - 3, - 6, - 9, - 9, - 2, - 2, - 2, - 3, - 18, - 12, - 11, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 10, - 2, - 12, - 2, - 3, - 2, - 2, - 12, - 4, - 2, - 2, - 9, - 3, - 3, - 8, - 3, - 2, - 7, - 2, - 3, - 13, - 2, - 11, - 13, - 2, - 8, - 17, - 9, - 15, - 9, - 9, - 3, - 7, - 10, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 3, - 2, - 6, - 7, - 2, - 12, - 4, - 4, - 4, - 8, - 12, - 6, - 3, - 4, - 3, - 3, - 8, - 5, - 5, - 4, - 2, - 2, - 9, - 8, - 11, - 3, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 4, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 6, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 8, - 2, - 2, - 3, - 4, - 2, - 8, - 2, - 4, - 4, - 7, - 5, - 5, - 12, - 3, - 4, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 14, - 2, - 5, - 4, - 9, - 2, - 2, - 3, - 3, - 12, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 13, - 8, - 8, - 4, - 5, - 2, - 6, - 10, - 13, - 2, - 3, - 7, - 5, - 2, - 7, - 4, - 2, - 4, - 3, - 3, - 3, - 5, - 3, - 4, - 5, - 2, - 3, - 2, - 6, - 2, - 2, - 3, - 3, - 2, - 2, - 7, - 2, - 3, - 5, - 6, - 5, - 4, - 7, - 3, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 4, - 5, - 3, - 2, - 5, - 8, - 4, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 2, - 4, - 5, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 4, - 4, - 9, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 5, - 8, - 4, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 2, - 4, - 3, - 8, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 31, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 30, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 30, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 30, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 14, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 6, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 6, - 2, - 2, - 2, - 4, - 4, - 2, - 4, - 5, - 6, - 2, - 6, - 2, - 2, - 5, - 2, - 2, - 4, - 3, - 3, - 3, - 3, - 4, - 4, - 5, - 2, - 5, - 2, - 4, - 4, - 5, - 4, - 3, - 15, - 5, - 3, - 2, - 3, - 4, - 2, - 2, - 3, - 2, - 8, - 13, - 2, - 4, - 4, - 2, - 2, - 2, - 3, - 2, - 13, - 2, - 7, - 2, - 5, - 3, - 7, - 6, - 4, - 2, - 7, - 3, - 10, - 15, - 3, - 3, - 5, - 8, - 2, - 2, - 2, - 2, - 2, - 10, - 4, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 11, - 3, - 3, - 2, - 2, - 3, - 10, - 17, - 6, - 7, - 7, - 12, - 2, - 8, - 2, - 5, - 2, - 10, - 3, - 3, - 5, - 4, - 2, - 3, - 5, - 2, - 3, - 2, - 3, - 4, - 4, - 8, - 12, - 5, - 3, - 19, - 2, - 3, - 2, - 8, - 2, - 5, - 3, - 5, - 3, - 7, - 3, - 8, - 5, - 7, - 3, - 3, - 7, - 2, - 7, - 8, - 4, - 4, - 3, - 3, - 3, - 5, - 3, - 6, - 8, - 2, - 3, - 3, - 2, - 2, - 4, - 3, - 4, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 5, - 12, - 3, - 2, - 2, - 3, - 5, - 3, - 2, - 3, - 2, - 2, - 3, - 6, - 2, - 15, - 6, - 2, - 2, - 2, - 7, - 4, - 4, - 8, - 5, - 3, - 2, - 6, - 3, - 10, - 2, - 11, - 5, - 10, - 6, - 3, - 3, - 4, - 3, - 4, - 2, - 6, - 2, - 8, - 3, - 2, - 7, - 2, - 3, - 10, - 4, - 2, - 2, - 14, - 2, - 2, - 4, - 2, - 2, - 2, - 2, - 14, - 5, - 3, - 3, - 3, - 3, - 4, - 2, - 6, - 2, - 2, - 2, - 6, - 2, - 2, - 4, - 2, - 3, - 10, - 2, - 2, - 2, - 7, - 5, - 2, - 2, - 4, - 3, - 4, - 3, - 3, - 10, - 2, - 11, - 2, - 3, - 2, - 3, - 3, - 2, - 2, - 12, - 2, - 3, - 3, - 6, - 2, - 4, - 5, - 3, - 7, - 2, - 4, - 9, - 10, - 5, - 9, - 2, - 2, - 2, - 2, - 17, - 12, - 3, - 12, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 4, - 18, - 3, - 5, - 9, - 3, - 7, - 6, - 2, - 9, - 5, - 5, - 3, - 4, - 3, - 4, - 5, - 7, - 3, - 4, - 3, - 3, - 6, - 7, - 4, - 3, - 6, - 7, - 6, - 3, - 2, - 5, - 7, - 5, - 8, - 3, - 7, - 4, - 4, - 6, - 4, - 4, - 2, - 8, - 3, - 5, - 4, - 5, - 7, - 6, - 5, - 4, - 13, - 2, - 6, - 4, - 3, - 10, - 2, - 8, - 4, - 2, - 4, - 5, - 3, - 7, - 4, - 10, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 8, - 11, - 3, - 2, - 2, - 6, - 2, - 2, - 3, - 2, - 6, - 2, - 2, - 5, - 7, - 8, - 3, - 3, - 3, - 3, - 6, - 5, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 2, - 3, - 3, - 3, - 7, - 4, - 6, - 5, - 4, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 7, - 2, - 5, - 5, - 4, - 2, - 4, - 7, - 5, - 3, - 2, - 8, - 2, - 14, - 2, - 4, - 2, - 8, - 15, - 2, - 3, - 2, - 4, - 5, - 5, - 2, - 6, - 2, - 2, - 3, - 2, - 2, - 5, - 2, - 2, - 15, - 2, - 4, - 4, - 2, - 5, - 5, - 3, - 2, - 15, - 2, - 8, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 5, - 2, - 2, - 2, - 19, - 6, - 6, - 6, - 13, - 11, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 3, - 2, - 3, - 2, - 2, - 3, - 12, - 15, - 3, - 2, - 10, - 2, - 18, - 16, - 2, - 4, - 3, - 2, - 6, - 5, - 4, - 7, - 2, - 3, - 2, - 6, - 4, - 16, - 4, - 5, - 2, - 5, - 2, - 2, - 2, - 6, - 3, - 9, - 3, - 13, - 3, - 6, - 6, - 3, - 6, - 2, - 2, - 2, - 3, - 6, - 3, - 8, - 15, - 3, - 6, - 2, - 2, - 2, - 2, - 2, - 10, - 3, - 4, - 2, - 2, - 2, - 2, - 5, - 2, - 25, - 2, - 3, - 3, - 5, - 10, - 2, - 2, - 2, - 5, - 4, - 2, - 3, - 5, - 3, - 5, - 3, - 4, - 3, - 4, - 2, - 3, - 7, - 6, - 6, - 11, - 4, - 13, - 6, - 6, - 2, - 3, - 3, - 2, - 2, - 5, - 5, - 5, - 11, - 6, - 3, - 5, - 5, - 5, - 4, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 19, - 3, - 4, - 3, - 3, - 2, - 3, - 13, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 3, - 4, - 2, - 5, - 12, - 2, - 4, - 4, - 3, - 8, - 6, - 8, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 4, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 8, - 2, - 4, - 2, - 2, - 2, - 3, - 3, - 2, - 3, - 2, - 4, - 5, - 2, - 17, - 12, - 3, - 3, - 4, - 9, - 2, - 13, - 4, - 2, - 3, - 16, - 11, - 2, - 3, - 2, - 2, - 2, - 7, - 14, - 6, - 3, - 16, - 2, - 2, - 5, - 4, - 5, - 5, - 2, - 8, - 2, - 2, - 17, - 2, - 7, - 2, - 3, - 5, - 14, - 2, - 2, - 8, - 4, - 7, - 5, - 2, - 2, - 7, - 5, - 4, - 2, - 6, - 5, - 3, - 7, - 13, - 5, - 2, - 3, - 5, - 5, - 4, - 6, - 5, - 9, - 4, - 2, - 3, - 2, - 2, - 4, - 2, - 2, - 3, - 5, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 16, - 2, - 2, - 4, - 2, - 5, - 7, - 2, - 2, - 7, - 2, - 3, - 2, - 2, - 2, - 6, - 2, - 2, - 3, - 3, - 2, - 4, - 7, - 4, - 3, - 3, - 4, - 2, - 4, - 2, - 2, - 7, - 2, - 2, - 4, - 10, - 5, - 9, - 2, - 6, - 2, - 4, - 2, - 4, - 5, - 7, - 2, - 3, - 2, - 6, - 6, - 2, - 5, - 4, - 14, - 5, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 7, - 2, - 3, - 2, - 3, - 2, - 12, - 2, - 17, - 10, - 3, - 6, - 2, - 2, - 7, - 2, - 3, - 2, - 8, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 5, - 3, - 4, - 4, - 13, - 3, - 11, - 3, - 8, - 5, - 2, - 6, - 5, - 13, - 9, - 2, - 3, - 2, - 2, - 12, - 2, - 4, - 2, - 4, - 7, - 2, - 6, - 5, - 6, - 6, - 6, - 3, - 4, - 3, - 3, - 5, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 8, - 17, - 2, - 2, - 10, - 3, - 10, - 3, - 4, - 7, - 2, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 4, - 2, - 4, - 3, - 3, - 2, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 4, - 3, - 3, - 2, - 2, - 4, - 3, - 3, - 2, - 2, - 4, - 3, - 3, - 2, - 4, - 3, - 3, - 4, - 2, - 4, - 3, - 3, - 4, - 3, - 3, - 3, - 2, - 2, - 4, - 3, - 4, - 2, - 2, - 3, - 3, - 12, - 4, - 2, - 2, - 4, - 3, - 2, - 2, - 6, - 5, - 2, - 2, - 2, - 7, - 3, - 4, - 6, - 9, - 2, - 2, - 2, - 6, - 8, - 4, - 4, - 6, - 3, - 2, - 13, - 9, - 2, - 5, - 3, - 2, - 3, - 2, - 2, - 8, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 4, - 2, - 10, - 2, - 6, - 5, - 10, - 3, - 6, - 3, - 2, - 3, - 2, - 6, - 9, - 9, - 13, - 3, - 7, - 3, - 6, - 2, - 2, - 4, - 3, - 15, - 2, - 7, - 2, - 3, - 3, - 3, - 7, - 2, - 4, - 3, - 2, - 7, - 6, - 5, - 6, - 5, - 5, - 13, - 3, - 14, - 2, - 15, - 2, - 7, - 6, - 2, - 13, - 2, - 3, - 6, - 4, - 4, - 2, - 2, - 7, - 6, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 10, - 3, - 6, - 6, - 3, - 2, - 3, - 3, - 7, - 4, - 3, - 4, - 3, - 5, - 4, - 2, - 3, - 3, - 2, - 2, - 6, - 2, - 2, - 3, - 4, - 4, - 2, - 3, - 11, - 5, - 3, - 3, - 5, - 3, - 4, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 4, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 6, - 2, - 4, - 3, - 4, - 2, - 5, - 4, - 4, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 2, - 3, - 2, - 3, - 3, - 6, - 3, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 3, - 4, - 2, - 4, - 4, - 4, - 4, - 2, - 7, - 2, - 3, - 3, - 4, - 2, - 2, - 3, - 8, - 9, - 12, - 7, - 8, - 5, - 2, - 2, - 3, - 2, - 2, - 7, - 2, - 5, - 3, - 2, - 2, - 2, - 7, - 10, - 2, - 5, - 5, - 3, - 4, - 2, - 2, - 2, - 4, - 7, - 2, - 9, - 7, - 2, - 2, - 8, - 2, - 8, - 6, - 3, - 4, - 4, - 15, - 5, - 5, - 6, - 4, - 5, - 3, - 4, - 4, - 4, - 5, - 5, - 6, - 2, - 3, - 3, - 2, - 16, - 4, - 3, - 2, - 3, - 2, - 8, - 2, - 3, - 7, - 2, - 3, - 4, - 4, - 5, - 11, - 2, - 2, - 8, - 2, - 2, - 7, - 2, - 6, - 2, - 8, - 2, - 5, - 7, - 11, - 2, - 2, - 2, - 8, - 15, - 5, - 2, - 4, - 9, - 2, - 3, - 3, - 4, - 2, - 5, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 5, - 8, - 16, - 2, - 2, - 8, - 9, - 8, - 10, - 8, - 4, - 4, - 4, - 5, - 5, - 4, - 15, - 2, - 4, - 2, - 7, - 2, - 2, - 3, - 2, - 3, - 4, - 3, - 3, - 2, - 3, - 3, - 10, - 2, - 4, - 7, - 2, - 2, - 4, - 5, - 5, - 13, - 2, - 8, - 6, - 4, - 2, - 5, - 4, - 3, - 6, - 2, - 4, - 3, - 2, - 9, - 2, - 2, - 5, - 2, - 9, - 10, - 2, - 5, - 3, - 5, - 2, - 2, - 14, - 10, - 4, - 3, - 2, - 13, - 2, - 5, - 2, - 2, - 2, - 2, - 3, - 4, - 13, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 4, - 5, - 3, - 3, - 3, - 5, - 2, - 2, - 3, - 13, - 2, - 4, - 4, - 2, - 2, - 8, - 4, - 3, - 4, - 3, - 5, - 3, - 4, - 4, - 2, - 2, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 4, - 3, - 2, - 2, - 2, - 5, - 3, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 8, - 3, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 3, - 4, - 3, - 2, - 6, - 3, - 8, - 4, - 7, - 2, - 5, - 2, - 2, - 3, - 4, - 2, - 5, - 2, - 2, - 6, - 3, - 2, - 4, - 3, - 2, - 3, - 3, - 2, - 9, - 4, - 6, - 5, - 3, - 2, - 2, - 2, - 3, - 2, - 3, - 4, - 3, - 4, - 4, - 7, - 2, - 4, - 3, - 4, - 3, - 6, - 3, - 2, - 3, - 8, - 2, - 6, - 3, - 2, - 10, - 2, - 2, - 3, - 12, - 3, - 4, - 4, - 4, - 4, - 4, - 5, - 3, - 3, - 2, - 3, - 5, - 5, - 3, - 4, - 4, - 2, - 3, - 2, - 6, - 2, - 4, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 3, - 4, - 2, - 4, - 4, - 4, - 2, - 2, - 7, - 8, - 6, - 9, - 7, - 3, - 2, - 3, - 8, - 2, - 2, - 2, - 5, - 5, - 3, - 4, - 5, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 4, - 9, - 6, - 2, - 2, - 2, - 3, - 4, - 2, - 4, - 3, - 5, - 6, - 4, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 7, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 7, - 4, - 7, - 7, - 5, - 10, - 9, - 6, - 13, - 11, - 17, - 34, - 20, - 17, - 31, - 13, - 6, - 13, - 2, - 4, - 3, - 3, - 3, - 11, - 2, - 2, - 7, - 6, - 5, - 6, - 2, - 2, - 2, - 3, - 2, - 2, - 8, - 2, - 2, - 8, - 6, - 2, - 3, - 6, - 3, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 19, - 2, - 3, - 3, - 5, - 2, - 2, - 6, - 5, - 7, - 3, - 3, - 2, - 9, - 6, - 3, - 2, - 2, - 2, - 5, - 2, - 2, - 4, - 6, - 2, - 7, - 3, - 2, - 3, - 2, - 6, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 7, - 2, - 3, - 2, - 4, - 15, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 6, - 4, - 5, - 2, - 2, - 10, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 5, - 2, - 9, - 4, - 3, - 7, - 2, - 2, - 5, - 3, - 9, - 2, - 2, - 12, - 2, - 3, - 3, - 5, - 6, - 5, - 4, - 2, - 5, - 2, - 2, - 2, - 3, - 8, - 2, - 4, - 11, - 14, - 4, - 4, - 11, - 13, - 13, - 2, - 2, - 3, - 2, - 3, - 11, - 10, - 10, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 2, - 3, - 6, - 2, - 2, - 7, - 2, - 2, - 6, - 2, - 3, - 2, - 8, - 3, - 6, - 2, - 2, - 5, - 2, - 2, - 6, - 2, - 8, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 9, - 2, - 14, - 4, - 6, - 2, - 6, - 5, - 11, - 5, - 2, - 5, - 2, - 2, - 2, - 3, - 8, - 3, - 3, - 2, - 5, - 2, - 6, - 4, - 2, - 5, - 2, - 2, - 5, - 2, - 4, - 2, - 2, - 8, - 10, - 4, - 9, - 12, - 5, - 2, - 3, - 5, - 11, - 11, - 3, - 7, - 2, - 12, - 9, - 3, - 4, - 11, - 2, - 2, - 2, - 5, - 4, - 5, - 6, - 6, - 5, - 4, - 2, - 2, - 3, - 6, - 6, - 2, - 4, - 6, - 9, - 2, - 5, - 2, - 3, - 3, - 4, - 4, - 2, - 4, - 2, - 3, - 3, - 3, - 6, - 3, - 13, - 3, - 3, - 2, - 3, - 3, - 5, - 3, - 2, - 2, - 7, - 2, - 6, - 2, - 2, - 2, - 4, - 2, - 7, - 2, - 4, - 2, - 2, - 2, - 11, - 2, - 5, - 2, - 7, - 4, - 13, - 2, - 4, - 2, - 6, - 2, - 3, - 3, - 7, - 3, - 3, - 2, - 6, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 8, - 5, - 2, - 14, - 3, - 11, - 2, - 4, - 2, - 5, - 2, - 2, - 3, - 2, - 6, - 4, - 2, - 7, - 6, - 10, - 4, - 2, - 7, - 5, - 13, - 2, - 13, - 6, - 2, - 2, - 3, - 4, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 4, - 7, - 2, - 7, - 15, - 3, - 2, - 2, - 7, - 2, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 2, - 3, - 2, - 6, - 2, - 2, - 2, - 4, - 5, - 4, - 2, - 2, - 5, - 2, - 3, - 4, - 5, - 4, - 2, - 3, - 5, - 2, - 7, - 3, - 3, - 2, - 3, - 2, - 3, - 5, - 8, - 5, - 4, - 4, - 5, - 9, - 3, - 5, - 10, - 2, - 4, - 4, - 3, - 11, - 4, - 2, - 4, - 3, - 3, - 8, - 2, - 2, - 6, - 6, - 13, - 2, - 2, - 5, - 2, - 11, - 6, - 2, - 4, - 5, - 2, - 3, - 5, - 9, - 2, - 2, - 5, - 3, - 6, - 2, - 5, - 5, - 2, - 3, - 5, - 5, - 4, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 5, - 5, - 2, - 2, - 5, - 4, - 2, - 6, - 5, - 4, - 4, - 2, - 2, - 2, - 2, - 5, - 7, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 6, - 2, - 11, - 6, - 2, - 3, - 2, - 6, - 6, - 3, - 3, - 2, - 2, - 3, - 4, - 6, - 11, - 6, - 6, - 2, - 5, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 4, - 10, - 15, - 2, - 6, - 2, - 2, - 9, - 2, - 3, - 6, - 2, - 5, - 4, - 3, - 3, - 5, - 4, - 3, - 3, - 4, - 5, - 2, - 2, - 2, - 20, - 2, - 2, - 7, - 14, - 2, - 7, - 2, - 8, - 2, - 2, - 2, - 4, - 7, - 2, - 7, - 2, - 11, - 3, - 11, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 3, - 5, - 17, - 3, - 3, - 2, - 2, - 2, - 3, - 5, - 3, - 4, - 4, - 4, - 2, - 5, - 4, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 7, - 2, - 2, - 6, - 7, - 2, - 2, - 3, - 6, - 3, - 7, - 2, - 2, - 5, - 6, - 3, - 2, - 9, - 2, - 5, - 4, - 6, - 2, - 3, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 6, - 6, - 4, - 5, - 4, - 6, - 5, - 2, - 3, - 10, - 4, - 11, - 2, - 2, - 6, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 2, - 20, - 2, - 6, - 4, - 3, - 4, - 6, - 5, - 2, - 5, - 4, - 4, - 3, - 9, - 2, - 8, - 4, - 5, - 2, - 5, - 5, - 8, - 5, - 9, - 3, - 3, - 7, - 2, - 4, - 9, - 2, - 2, - 2, - 2, - 3, - 7, - 8, - 5, - 2, - 3, - 2, - 2, - 4, - 6, - 5, - 2, - 3, - 2, - 6, - 2, - 2, - 3, - 2, - 2, - 2, - 4, - 2, - 5, - 5, - 4, - 3, - 2, - 3, - 3, - 11, - 3, - 21, - 3, - 3, - 5, - 4, - 3, - 3, - 4, - 2, - 2, - 3, - 4, - 3, - 4, - 5, - 3, - 2, - 2, - 2, - 2, - 6, - 3, - 5, - 3, - 3, - 4, - 2, - 4, - 6, - 5, - 4, - 6, - 2, - 2, - 4, - 2, - 6, - 4, - 2, - 6, - 3, - 4, - 2, - 14, - 4, - 7, - 2, - 2, - 2, - 2, - 4, - 3, - 2, - 2, - 2, - 2, - 3, - 5, - 2, - 2, - 6, - 4, - 15, - 4, - 2, - 3, - 14, - 2, - 5, - 5, - 8, - 2, - 4, - 7, - 10, - 3, - 2, - 2, - 4, - 2, - 5, - 4, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 5, - 5, - 2, - 2, - 6, - 5, - 5, - 9, - 14, - 2, - 9, - 2, - 12, - 2, - 5, - 3, - 3, - 5, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 4, - 3, - 9, - 2, - 14, - 11, - 2, - 3, - 4, - 8, - 2, - 2, - 9, - 2, - 2, - 3, - 2, - 2, - 2, - 6, - 2, - 13, - 3, - 2, - 3, - 3, - 2, - 5, - 3, - 8, - 2, - 3, - 4, - 11, - 5, - 3, - 3, - 3, - 14, - 8, - 2, - 3, - 15, - 10, - 2, - 5, - 6, - 16, - 4, - 9, - 2, - 4, - 6, - 2, - 5, - 2, - 8, - 5, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 2, - 7, - 3, - 2, - 6, - 3, - 6, - 4, - 2, - 16, - 2, - 9, - 2, - 11, - 7, - 4, - 2, - 2, - 7, - 2, - 4, - 2, - 6, - 2, - 4, - 14, - 2, - 3, - 2, - 2, - 9, - 2, - 8, - 2, - 2, - 3, - 3, - 4, - 3, - 2, - 3, - 7, - 4, - 2, - 5, - 9, - 6, - 6, - 8, - 3, - 4, - 2, - 3, - 3, - 5, - 3, - 6, - 4, - 14, - 4, - 4, - 2, - 3, - 4, - 3, - 4, - 3, - 6, - 8, - 2, - 12, - 4, - 3, - 2, - 10, - 2, - 6, - 16, - 5, - 8, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 11, - 6, - 2, - 2, - 2, - 3, - 6, - 2, - 2, - 2, - 3, - 3, - 3, - 12, - 5, - 3, - 3, - 3, - 3, - 6, - 4, - 3, - 2, - 3, - 6, - 2, - 2, - 2, - 3, - 11, - 3, - 2, - 2, - 2, - 3, - 12, - 2, - 3, - 4, - 2, - 12, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 4, - 2, - 2, - 5, - 4, - 2, - 12, - 2, - 2, - 2, - 4, - 2, - 8, - 2, - 3, - 6, - 8, - 5, - 2, - 2, - 5, - 3, - 4, - 2, - 8, - 2, - 2, - 5, - 2, - 6, - 8, - 2, - 3, - 5, - 5, - 7, - 2, - 2, - 3, - 4, - 7, - 2, - 4, - 5, - 4, - 7, - 5, - 2, - 2, - 7, - 3, - 4, - 4, - 2, - 2, - 2, - 6, - 2, - 2, - 3, - 9, - 2, - 5, - 8, - 5, - 7, - 8, - 4, - 4, - 11, - 4, - 2, - 8, - 2, - 3, - 4, - 2, - 2, - 10, - 9, - 12, - 4, - 7, - 15, - 3, - 2, - 4, - 9, - 2, - 5, - 7, - 5, - 4, - 4, - 3, - 3, - 5, - 2, - 2, - 3, - 2, - 3, - 5, - 5, - 12, - 2, - 3, - 2, - 2, - 6, - 2, - 2, - 2, - 3, - 3, - 4, - 2, - 5, - 3, - 4, - 7, - 2, - 11, - 2, - 5, - 2, - 3, - 2, - 6, - 2, - 2, - 3, - 5, - 2, - 4, - 2, - 2, - 5, - 3, - 3, - 2, - 2, - 5, - 2, - 2, - 2, - 5, - 3, - 2, - 7, - 4, - 2, - 3, - 4, - 3, - 5, - 2, - 4, - 2, - 3, - 2, - 3, - 4, - 5, - 2, - 7, - 2, - 2, - 6, - 4, - 3, - 3, - 7, - 2, - 4, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 5, - 2, - 2, - 4, - 2, - 8, - 2, - 2, - 7, - 4, - 2, - 7, - 4, - 3, - 6, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 5, - 2, - 2, - 5, - 3, - 4, - 3, - 2, - 3, - 7, - 4, - 2, - 6, - 6, - 4, - 5, - 3, - 10, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 6, - 7, - 3, - 7, - 2, - 2, - 4, - 3, - 5, - 2, - 2, - 4, - 2, - 3, - 3, - 11, - 2, - 3, - 2, - 2, - 5, - 2, - 6, - 6, - 2, - 19, - 2, - 6, - 3, - 5, - 2, - 2, - 18, - 2, - 2, - 6, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 2, - 5, - 4, - 16, - 2, - 6, - 14, - 2, - 6, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 3, - 2, - 2, - 2, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 6, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 8, - 2, - 7, - 3, - 3, - 4, - 2, - 2, - 6, - 2, - 2, - 5, - 3, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 3, - 8, - 2, - 2, - 3, - 4, - 2, - 8, - 2, - 4, - 4, - 7, - 5, - 5, - 12, - 3, - 4, - 7, - 3, - 2, - 2, - 4, - 2, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 4, - 3, - 3, - 2, - 7, - 12, - 5, - 4, - 4, - 13, - 2, - 5, - 3, - 3, - 4, - 2, - 3, - 3, - 8, - 5, - 4, - 4, - 2, - 2, - 9, - 6, - 3, - 2, - 3, - 2, - 3, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 5, - 8, - 4, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 2, - 5, - 2, - 7, - 4, - 2, - 4, - 3, - 3, - 3, - 5, - 3, - 4, - 5, - 2, - 3, - 2, - 6, - 2, - 2, - 3, - 3, - 2, - 2, - 7, - 2, - 3, - 5, - 6, - 5, - 4, - 7, - 3, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 4, - 5, - 3, - 3, - 3, - 3, - 3, - 2, - 12, - 6, - 3, - 2, - 2, - 24, - 2, - 3, - 2, - 3, - 9, - 4, - 7, - 7, - 2, - 2, - 2, - 3, - 3, - 2, - 4, - 2, - 3, - 5, - 3, - 5, - 2, - 3, - 3, - 7, - 5, - 2, - 2, - 3, - 6, - 20, - 2, - 3, - 2, - 4, - 5, - 2, - 2, - 2, - 2, - 7, - 2, - 3, - 2, - 10, - 7, - 2, - 7, - 2, - 2, - 2, - 2, - 2, - 7, - 3, - 4, - 5, - 2, - 8, - 3, - 3, - 5, - 2, - 4, - 2, - 2, - 4, - 2, - 2, - 13, - 2, - 2, - 2, - 3, - 3, - 7, - 3, - 9, - 10, - 8, - 2, - 8, - 9, - 2, - 10, - 4, - 3, - 3, - 5, - 4, - 5, - 4, - 2, - 4, - 2, - 4, - 6, - 4, - 3, - 2, - 3, - 2, - 3, - 3, - 2 - ], - "total": 4469, - "totalUnique": 26, - "unique": { - "2": 1928, - "3": 870, - "4": 524, - "5": 328, - "6": 224, - "7": 156, - "8": 102, - "9": 66, - "10": 53, - "11": 46, - "12": 39, - "13": 38, - "14": 24, - "15": 21, - "16": 11, - "17": 12, - "18": 5, - "19": 7, - "20": 4, - "21": 1, - "24": 1, - "25": 1, - "29": 2, - "30": 3, - "31": 2, - "34": 1 - }, - "uniquenessRatio": 0.005817856343701052 - }, - "selectors": { - "min": 1, - "max": 30, - "mean": 1.3334079212351757, - "mode": 1, - "range": 29, - "sum": 5959, - "items": [ - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 5, - 16, - 7, - 1, - 1, - 4, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 26, - 26, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 2, - 6, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 27, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 26, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 26, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 26, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 3, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 4, - 4, - 4, - 1, - 1, - 2, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 1, - 6, - 6, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 4, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 8, - 1, - 2, - 2, - 1, - 2, - 2, - 4, - 2, - 1, - 2, - 1, - 2, - 4, - 2, - 1, - 2, - 1, - 2, - 4, - 2, - 2, - 5, - 2, - 4, - 2, - 1, - 3, - 2, - 4, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 4, - 2, - 4, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 5, - 5, - 10, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 3, - 2, - 2, - 1, - 1, - 1, - 15, - 15, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 6, - 1, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 6, - 4, - 3, - 9, - 6, - 4, - 12, - 8, - 15, - 30, - 15, - 15, - 30, - 5, - 5, - 10, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 4, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 4, - 1, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 6, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 2, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 11, - 1, - 2, - 1, - 1, - 23, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 4, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1 - ], - "total": 4469, - "totalUnique": 18, - "unique": { - "1": 3728, - "2": 507, - "3": 122, - "4": 52, - "5": 17, - "6": 11, - "7": 3, - "8": 3, - "9": 1, - "10": 5, - "11": 3, - "12": 2, - "15": 5, - "16": 1, - "23": 1, - "26": 5, - "27": 1, - "30": 2 - }, - "uniquenessRatio": 0.004027746699485343 - }, - "declarations": { - "min": 1, - "max": 24, - "mean": 2.625867084358917, - "mode": 1, - "range": 23, - "sum": 11735, - "items": [ - 1, - 2, - 5, - 11, - 2, - 2, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 9, - 4, - 1, - 2, - 1, - 4, - 1, - 2, - 1, - 2, - 1, - 2, - 11, - 5, - 3, - 6, - 3, - 1, - 1, - 5, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 2, - 3, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 2, - 2, - 4, - 9, - 1, - 3, - 2, - 1, - 3, - 1, - 1, - 6, - 5, - 12, - 13, - 4, - 4, - 12, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 7, - 8, - 18, - 7, - 3, - 1, - 2, - 16, - 1, - 2, - 2, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 11, - 2, - 1, - 1, - 1, - 12, - 1, - 6, - 2, - 4, - 1, - 2, - 1, - 2, - 3, - 2, - 3, - 3, - 1, - 4, - 1, - 4, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 18, - 5, - 2, - 4, - 1, - 1, - 17, - 1, - 5, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 3, - 6, - 1, - 3, - 1, - 14, - 4, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 8, - 1, - 2, - 2, - 6, - 1, - 1, - 1, - 6, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 9, - 1, - 1, - 9, - 2, - 1, - 1, - 5, - 1, - 2, - 2, - 1, - 1, - 5, - 8, - 8, - 1, - 1, - 1, - 2, - 17, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 9, - 1, - 11, - 1, - 1, - 1, - 1, - 11, - 3, - 1, - 1, - 8, - 2, - 2, - 7, - 2, - 1, - 6, - 1, - 2, - 12, - 1, - 10, - 12, - 1, - 7, - 16, - 8, - 14, - 8, - 8, - 2, - 6, - 9, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 5, - 6, - 1, - 10, - 1, - 2, - 2, - 2, - 11, - 5, - 2, - 2, - 2, - 2, - 5, - 3, - 4, - 3, - 1, - 1, - 8, - 7, - 10, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 7, - 1, - 1, - 2, - 3, - 1, - 7, - 1, - 3, - 3, - 3, - 1, - 4, - 11, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 12, - 1, - 4, - 3, - 8, - 1, - 1, - 2, - 2, - 11, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 12, - 7, - 4, - 3, - 3, - 1, - 5, - 9, - 12, - 1, - 2, - 6, - 4, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 4, - 1, - 2, - 2, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 3, - 6, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 8, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 5, - 1, - 5, - 1, - 1, - 4, - 1, - 1, - 3, - 2, - 2, - 2, - 1, - 2, - 2, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 14, - 4, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 7, - 11, - 1, - 3, - 3, - 1, - 1, - 1, - 2, - 1, - 12, - 1, - 6, - 1, - 4, - 2, - 3, - 2, - 3, - 1, - 5, - 1, - 9, - 14, - 1, - 1, - 3, - 7, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 9, - 1, - 1, - 1, - 1, - 1, - 8, - 15, - 2, - 3, - 3, - 11, - 1, - 6, - 1, - 3, - 1, - 7, - 2, - 2, - 4, - 3, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 3, - 3, - 7, - 11, - 4, - 2, - 18, - 1, - 1, - 1, - 7, - 1, - 3, - 1, - 3, - 1, - 5, - 1, - 6, - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 2, - 5, - 7, - 1, - 2, - 2, - 1, - 1, - 3, - 2, - 3, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 4, - 11, - 2, - 1, - 1, - 2, - 3, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 7, - 4, - 1, - 1, - 4, - 2, - 8, - 1, - 7, - 2, - 7, - 4, - 1, - 1, - 2, - 1, - 3, - 1, - 5, - 1, - 7, - 2, - 1, - 6, - 1, - 2, - 9, - 1, - 1, - 1, - 13, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 13, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 5, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 9, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 9, - 1, - 10, - 1, - 2, - 1, - 2, - 2, - 1, - 1, - 11, - 1, - 1, - 1, - 5, - 1, - 2, - 1, - 1, - 6, - 1, - 2, - 8, - 9, - 4, - 8, - 1, - 1, - 1, - 1, - 16, - 11, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 16, - 1, - 1, - 1, - 2, - 5, - 4, - 1, - 7, - 3, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 2, - 4, - 3, - 2, - 1, - 1, - 5, - 2, - 1, - 1, - 2, - 5, - 1, - 6, - 1, - 5, - 2, - 2, - 4, - 2, - 2, - 1, - 7, - 1, - 1, - 2, - 1, - 5, - 4, - 3, - 2, - 12, - 1, - 5, - 3, - 2, - 9, - 1, - 7, - 2, - 1, - 2, - 3, - 1, - 6, - 2, - 9, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 7, - 10, - 2, - 1, - 1, - 5, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 3, - 6, - 7, - 2, - 1, - 2, - 2, - 5, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 2, - 6, - 3, - 5, - 4, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 6, - 1, - 4, - 4, - 3, - 1, - 3, - 6, - 4, - 2, - 1, - 7, - 1, - 13, - 1, - 2, - 1, - 7, - 14, - 1, - 2, - 1, - 3, - 3, - 4, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 14, - 1, - 3, - 3, - 1, - 4, - 4, - 1, - 1, - 14, - 1, - 7, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 4, - 1, - 1, - 1, - 14, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 13, - 1, - 1, - 9, - 1, - 3, - 1, - 1, - 3, - 2, - 1, - 2, - 1, - 3, - 6, - 1, - 1, - 1, - 5, - 1, - 13, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 5, - 1, - 8, - 2, - 12, - 1, - 5, - 5, - 1, - 5, - 1, - 1, - 1, - 2, - 5, - 1, - 7, - 14, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 8, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 24, - 1, - 2, - 2, - 4, - 9, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 4, - 2, - 4, - 2, - 3, - 2, - 3, - 1, - 2, - 6, - 5, - 5, - 10, - 2, - 12, - 5, - 5, - 1, - 2, - 2, - 1, - 1, - 4, - 4, - 3, - 10, - 5, - 2, - 4, - 4, - 4, - 3, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 18, - 2, - 3, - 2, - 2, - 1, - 2, - 12, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 3, - 1, - 4, - 11, - 1, - 3, - 3, - 2, - 7, - 5, - 7, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 3, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 4, - 1, - 15, - 11, - 2, - 1, - 2, - 8, - 1, - 11, - 3, - 1, - 2, - 15, - 10, - 1, - 2, - 1, - 1, - 1, - 6, - 13, - 4, - 1, - 15, - 1, - 1, - 3, - 3, - 4, - 4, - 1, - 7, - 1, - 1, - 16, - 1, - 6, - 1, - 2, - 3, - 13, - 1, - 1, - 7, - 3, - 6, - 3, - 1, - 1, - 6, - 4, - 3, - 1, - 5, - 3, - 1, - 6, - 12, - 3, - 1, - 2, - 4, - 3, - 3, - 5, - 3, - 8, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 15, - 1, - 1, - 3, - 1, - 3, - 6, - 1, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 2, - 1, - 3, - 6, - 3, - 2, - 2, - 3, - 1, - 3, - 1, - 1, - 6, - 1, - 1, - 3, - 9, - 3, - 8, - 1, - 5, - 1, - 3, - 1, - 3, - 4, - 6, - 1, - 2, - 1, - 5, - 5, - 1, - 4, - 3, - 13, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 1, - 2, - 1, - 2, - 1, - 11, - 1, - 16, - 9, - 2, - 5, - 1, - 1, - 6, - 1, - 2, - 1, - 7, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 2, - 2, - 2, - 11, - 2, - 10, - 2, - 7, - 4, - 1, - 5, - 4, - 12, - 8, - 1, - 2, - 1, - 1, - 11, - 1, - 3, - 1, - 3, - 6, - 1, - 4, - 3, - 4, - 4, - 4, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 7, - 16, - 1, - 1, - 9, - 2, - 9, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 2, - 2, - 3, - 1, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 1, - 1, - 3, - 2, - 3, - 1, - 1, - 1, - 1, - 10, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 4, - 1, - 1, - 1, - 6, - 2, - 3, - 5, - 8, - 1, - 1, - 1, - 5, - 7, - 3, - 3, - 5, - 2, - 1, - 12, - 8, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 1, - 9, - 1, - 5, - 3, - 8, - 1, - 5, - 2, - 1, - 2, - 1, - 5, - 8, - 8, - 12, - 2, - 6, - 1, - 5, - 1, - 1, - 3, - 2, - 14, - 1, - 6, - 1, - 2, - 2, - 2, - 6, - 1, - 2, - 1, - 1, - 6, - 5, - 4, - 5, - 4, - 4, - 12, - 2, - 12, - 1, - 14, - 1, - 5, - 5, - 1, - 12, - 1, - 1, - 3, - 2, - 3, - 1, - 1, - 6, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 9, - 2, - 5, - 5, - 2, - 1, - 1, - 1, - 5, - 2, - 1, - 2, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 3, - 3, - 1, - 2, - 7, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 2, - 3, - 1, - 4, - 3, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 5, - 2, - 3, - 3, - 3, - 2, - 3, - 3, - 3, - 2, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 6, - 1, - 2, - 2, - 2, - 1, - 1, - 2, - 7, - 8, - 11, - 6, - 7, - 4, - 1, - 1, - 2, - 1, - 1, - 6, - 1, - 4, - 2, - 1, - 1, - 1, - 6, - 9, - 1, - 4, - 3, - 2, - 2, - 1, - 1, - 1, - 3, - 6, - 1, - 8, - 6, - 1, - 1, - 7, - 1, - 7, - 5, - 2, - 3, - 3, - 14, - 1, - 1, - 2, - 2, - 3, - 2, - 3, - 3, - 1, - 2, - 2, - 3, - 1, - 2, - 2, - 1, - 14, - 3, - 2, - 1, - 2, - 1, - 7, - 1, - 2, - 6, - 1, - 2, - 3, - 3, - 4, - 10, - 1, - 1, - 7, - 1, - 1, - 6, - 1, - 4, - 1, - 7, - 1, - 4, - 6, - 8, - 1, - 1, - 1, - 7, - 14, - 4, - 1, - 2, - 8, - 1, - 1, - 2, - 3, - 1, - 4, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 15, - 1, - 1, - 7, - 8, - 7, - 9, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 14, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 1, - 2, - 3, - 2, - 2, - 1, - 2, - 2, - 9, - 1, - 3, - 6, - 1, - 1, - 3, - 4, - 3, - 12, - 1, - 7, - 4, - 2, - 1, - 4, - 2, - 1, - 4, - 1, - 3, - 2, - 1, - 8, - 1, - 1, - 4, - 1, - 8, - 9, - 1, - 3, - 2, - 4, - 1, - 1, - 13, - 8, - 3, - 2, - 1, - 12, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 12, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 3, - 1, - 2, - 2, - 4, - 1, - 1, - 2, - 12, - 1, - 3, - 3, - 1, - 1, - 7, - 2, - 1, - 2, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 2, - 3, - 2, - 1, - 1, - 1, - 4, - 2, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 7, - 2, - 1, - 3, - 3, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 2, - 2, - 1, - 5, - 1, - 1, - 3, - 6, - 1, - 4, - 1, - 1, - 2, - 3, - 1, - 4, - 1, - 1, - 4, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 8, - 2, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 6, - 1, - 3, - 2, - 3, - 2, - 5, - 2, - 1, - 2, - 7, - 1, - 5, - 2, - 1, - 9, - 1, - 1, - 1, - 10, - 1, - 2, - 2, - 2, - 1, - 3, - 4, - 2, - 1, - 1, - 2, - 4, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 6, - 6, - 4, - 7, - 6, - 2, - 1, - 2, - 7, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 4, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 3, - 8, - 5, - 1, - 1, - 1, - 2, - 3, - 1, - 2, - 2, - 4, - 5, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 1, - 3, - 2, - 1, - 3, - 2, - 1, - 3, - 2, - 4, - 5, - 2, - 1, - 8, - 1, - 3, - 1, - 3, - 2, - 2, - 2, - 9, - 1, - 1, - 6, - 4, - 3, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 7, - 1, - 1, - 7, - 5, - 1, - 2, - 5, - 2, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 18, - 1, - 2, - 2, - 3, - 1, - 1, - 3, - 2, - 6, - 2, - 2, - 1, - 8, - 4, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 5, - 1, - 5, - 1, - 1, - 2, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 6, - 1, - 2, - 1, - 3, - 14, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 2, - 3, - 1, - 1, - 9, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 4, - 1, - 8, - 3, - 2, - 6, - 1, - 1, - 4, - 2, - 8, - 1, - 1, - 11, - 1, - 2, - 2, - 2, - 5, - 4, - 3, - 1, - 4, - 1, - 1, - 1, - 2, - 7, - 1, - 3, - 10, - 13, - 3, - 3, - 10, - 12, - 12, - 1, - 1, - 2, - 1, - 1, - 10, - 9, - 9, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 6, - 1, - 1, - 5, - 1, - 2, - 1, - 4, - 2, - 5, - 1, - 1, - 4, - 1, - 1, - 5, - 1, - 7, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 8, - 1, - 13, - 3, - 5, - 1, - 5, - 4, - 10, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 7, - 2, - 2, - 1, - 4, - 1, - 5, - 3, - 1, - 4, - 1, - 1, - 4, - 1, - 3, - 1, - 1, - 7, - 9, - 3, - 8, - 11, - 4, - 1, - 2, - 3, - 10, - 10, - 1, - 6, - 1, - 11, - 8, - 2, - 3, - 10, - 1, - 1, - 1, - 4, - 3, - 4, - 5, - 5, - 4, - 3, - 1, - 1, - 2, - 5, - 5, - 1, - 3, - 5, - 8, - 1, - 4, - 1, - 2, - 2, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 5, - 2, - 11, - 1, - 1, - 1, - 2, - 1, - 4, - 2, - 1, - 1, - 6, - 1, - 5, - 1, - 1, - 1, - 3, - 1, - 6, - 1, - 3, - 1, - 1, - 1, - 10, - 1, - 4, - 1, - 6, - 3, - 12, - 1, - 3, - 1, - 5, - 1, - 1, - 2, - 5, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 7, - 3, - 1, - 13, - 2, - 10, - 1, - 3, - 1, - 4, - 1, - 1, - 2, - 1, - 4, - 3, - 1, - 6, - 5, - 9, - 3, - 1, - 6, - 3, - 12, - 1, - 12, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 6, - 14, - 2, - 1, - 1, - 6, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 4, - 1, - 2, - 3, - 4, - 3, - 1, - 2, - 4, - 1, - 6, - 2, - 2, - 1, - 2, - 1, - 2, - 3, - 2, - 1, - 3, - 3, - 3, - 8, - 1, - 4, - 9, - 1, - 3, - 2, - 2, - 10, - 3, - 1, - 1, - 2, - 2, - 7, - 1, - 1, - 5, - 5, - 12, - 1, - 1, - 4, - 1, - 10, - 5, - 1, - 3, - 3, - 1, - 2, - 4, - 8, - 1, - 1, - 3, - 1, - 5, - 1, - 4, - 4, - 1, - 2, - 4, - 4, - 3, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 3, - 4, - 1, - 1, - 4, - 3, - 1, - 5, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 4, - 6, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 1, - 5, - 1, - 10, - 5, - 1, - 2, - 1, - 5, - 5, - 2, - 2, - 1, - 1, - 2, - 3, - 5, - 10, - 5, - 5, - 1, - 4, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 3, - 9, - 14, - 1, - 5, - 1, - 1, - 8, - 1, - 2, - 5, - 1, - 4, - 3, - 2, - 2, - 3, - 2, - 2, - 2, - 3, - 3, - 1, - 1, - 1, - 19, - 1, - 1, - 6, - 13, - 1, - 6, - 1, - 7, - 1, - 1, - 1, - 3, - 6, - 1, - 6, - 1, - 10, - 2, - 10, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 2, - 4, - 15, - 2, - 2, - 1, - 1, - 1, - 1, - 4, - 2, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 6, - 1, - 1, - 1, - 6, - 1, - 1, - 2, - 5, - 2, - 6, - 1, - 1, - 4, - 5, - 1, - 1, - 8, - 1, - 2, - 3, - 5, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 5, - 5, - 3, - 4, - 3, - 5, - 4, - 1, - 2, - 9, - 3, - 10, - 1, - 1, - 5, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 19, - 1, - 5, - 3, - 2, - 3, - 5, - 4, - 1, - 4, - 3, - 3, - 2, - 8, - 1, - 7, - 3, - 4, - 1, - 2, - 2, - 6, - 4, - 8, - 2, - 2, - 6, - 1, - 3, - 8, - 1, - 1, - 1, - 1, - 2, - 6, - 7, - 4, - 1, - 2, - 1, - 1, - 3, - 5, - 3, - 1, - 2, - 1, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 3, - 1, - 4, - 4, - 3, - 2, - 1, - 1, - 1, - 9, - 1, - 19, - 1, - 2, - 4, - 3, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 1, - 3, - 4, - 2, - 1, - 1, - 1, - 1, - 5, - 2, - 4, - 2, - 2, - 3, - 1, - 3, - 5, - 3, - 3, - 5, - 1, - 1, - 3, - 1, - 5, - 3, - 1, - 5, - 2, - 3, - 1, - 13, - 3, - 6, - 1, - 1, - 1, - 1, - 3, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 5, - 3, - 14, - 3, - 1, - 2, - 13, - 1, - 4, - 4, - 7, - 1, - 3, - 6, - 9, - 2, - 1, - 1, - 3, - 1, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 4, - 1, - 1, - 5, - 4, - 3, - 8, - 13, - 1, - 8, - 1, - 11, - 1, - 4, - 2, - 2, - 4, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 8, - 1, - 13, - 10, - 1, - 2, - 3, - 7, - 1, - 1, - 8, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 1, - 12, - 2, - 1, - 2, - 2, - 1, - 3, - 2, - 7, - 1, - 2, - 3, - 9, - 3, - 2, - 2, - 2, - 13, - 7, - 1, - 2, - 14, - 9, - 1, - 3, - 5, - 15, - 3, - 8, - 1, - 3, - 5, - 1, - 4, - 1, - 7, - 3, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 1, - 6, - 2, - 1, - 4, - 2, - 5, - 2, - 1, - 15, - 1, - 8, - 1, - 10, - 6, - 3, - 1, - 1, - 6, - 1, - 3, - 1, - 5, - 1, - 3, - 13, - 1, - 2, - 1, - 1, - 8, - 1, - 6, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 3, - 1, - 4, - 8, - 5, - 5, - 7, - 2, - 3, - 1, - 2, - 2, - 4, - 2, - 5, - 3, - 13, - 3, - 3, - 1, - 2, - 3, - 2, - 3, - 2, - 5, - 7, - 1, - 11, - 3, - 2, - 1, - 9, - 1, - 5, - 15, - 4, - 7, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 10, - 5, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 1, - 1, - 5, - 3, - 2, - 1, - 2, - 5, - 1, - 1, - 1, - 2, - 9, - 1, - 1, - 1, - 1, - 2, - 11, - 1, - 1, - 3, - 1, - 10, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 1, - 1, - 4, - 3, - 1, - 10, - 1, - 1, - 1, - 3, - 1, - 7, - 1, - 2, - 5, - 7, - 4, - 1, - 1, - 4, - 2, - 3, - 1, - 7, - 1, - 1, - 4, - 1, - 5, - 7, - 1, - 2, - 4, - 4, - 6, - 1, - 1, - 2, - 3, - 6, - 1, - 3, - 4, - 3, - 6, - 4, - 1, - 1, - 6, - 2, - 3, - 3, - 1, - 1, - 1, - 5, - 1, - 1, - 2, - 8, - 1, - 2, - 5, - 2, - 4, - 5, - 1, - 1, - 8, - 1, - 1, - 7, - 1, - 2, - 1, - 1, - 1, - 9, - 8, - 11, - 3, - 6, - 14, - 1, - 1, - 2, - 8, - 1, - 4, - 6, - 3, - 2, - 2, - 1, - 1, - 4, - 1, - 1, - 2, - 1, - 2, - 3, - 4, - 11, - 1, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 3, - 2, - 2, - 6, - 1, - 10, - 1, - 4, - 1, - 2, - 1, - 5, - 1, - 1, - 2, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 1, - 6, - 3, - 1, - 2, - 3, - 2, - 4, - 1, - 3, - 1, - 2, - 1, - 2, - 3, - 4, - 1, - 6, - 1, - 1, - 5, - 3, - 2, - 2, - 6, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 7, - 1, - 1, - 6, - 3, - 1, - 6, - 3, - 2, - 5, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 3, - 2, - 1, - 2, - 6, - 3, - 1, - 5, - 5, - 1, - 4, - 2, - 9, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 4, - 3, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 2, - 10, - 1, - 2, - 1, - 1, - 4, - 1, - 5, - 5, - 1, - 18, - 1, - 5, - 2, - 4, - 1, - 1, - 17, - 1, - 1, - 5, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 3, - 1, - 15, - 1, - 5, - 13, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 7, - 1, - 6, - 2, - 2, - 3, - 1, - 1, - 5, - 1, - 1, - 4, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 7, - 1, - 1, - 2, - 3, - 1, - 7, - 1, - 3, - 3, - 3, - 1, - 4, - 11, - 2, - 1, - 6, - 2, - 1, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 6, - 10, - 1, - 2, - 2, - 12, - 1, - 4, - 2, - 2, - 2, - 1, - 2, - 2, - 5, - 3, - 3, - 3, - 1, - 1, - 8, - 5, - 2, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 4, - 1, - 2, - 2, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 1, - 3, - 6, - 2, - 1, - 2, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 2, - 1, - 1, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 8, - 3, - 5, - 6, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 1, - 2, - 4, - 2, - 4, - 1, - 2, - 1, - 6, - 4, - 1, - 1, - 1, - 3, - 19, - 1, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 9, - 6, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 1, - 7, - 2, - 1, - 4, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 11, - 1, - 1, - 1, - 2, - 1, - 3, - 2, - 8, - 9, - 1, - 1, - 7, - 8, - 1, - 9, - 3, - 1, - 2, - 4, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 2, - 2, - 1, - 2, - 1, - 1, - 2, - 1 - ], - "total": 4469, - "totalUnique": 20, - "unique": { - "1": 2301, - "2": 775, - "3": 466, - "4": 222, - "5": 191, - "6": 127, - "7": 88, - "8": 69, - "9": 50, - "10": 40, - "11": 33, - "12": 32, - "13": 22, - "14": 21, - "15": 11, - "16": 7, - "17": 3, - "18": 6, - "19": 4, - "24": 1 - }, - "uniquenessRatio": 0.004475274110539271 - } - }, - "selectors": { - "total": 5799, - "totalUnique": 3987, - "uniquenessRatio": 0.6875323331608898, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 1, - 4, - 0 - ], - "sum": [ - 16, - 9341, - 3082 - ], - "mean": [ - 0.0027590963959303327, - 1.6107949646490773, - 0.5314709432660804 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 4 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 0, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 1, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 4 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 3, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 1, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 6, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 6, - 2 - ], - [ - 0, - 5, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 4 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 5, - 1 - ], - [ - 0, - 5, - 0 - ], - [ - 0, - 5, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 1, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 1 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 4, - 3 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 1 - ] - ], - "total": 5799, - "totalUnique": 35, - "unique": { - "0,0,0": 2, - "0,0,1": 219, - "0,2,1": 469, - "0,2,0": 965, - "0,3,0": 284, - "0,1,1": 721, - "0,1,0": 2088, - "0,0,2": 78, - "0,1,2": 152, - "0,2,2": 150, - "1,4,0": 2, - "1,0,0": 4, - "0,3,1": 167, - "1,1,0": 7, - "1,2,0": 1, - "1,1,1": 1, - "0,4,0": 105, - "0,0,3": 7, - "0,1,3": 15, - "0,0,4": 3, - "0,4,1": 92, - "0,1,4": 4, - "0,5,1": 40, - "0,5,0": 10, - "0,3,2": 49, - "0,4,2": 36, - "0,2,3": 23, - "0,6,1": 5, - "0,2,4": 2, - "0,3,3": 2, - "1,0,1": 1, - "0,5,2": 24, - "0,4,3": 69, - "0,6,2": 1, - "0,5,3": 1 - }, - "uniquenessRatio": 0.006035523366097603 - }, - "complexity": { - "min": 1, - "max": 13, - "mean": 2.9806863252284876, - "mode": 1, - "range": 12, - "sum": 17285, - "total": 5799, - "totalUnique": 12, - "unique": { - "1": 2266, - "2": 486, - "3": 1340, - "4": 430, - "5": 539, - "6": 220, - "7": 239, - "8": 97, - "9": 62, - "10": 37, - "11": 82, - "13": 1 - }, - "uniquenessRatio": 0.0020693222969477496, - "items": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 1, - 4, - 4, - 3, - 1, - 3, - 1, - 2, - 1, - 4, - 4, - 4, - 3, - 4, - 4, - 3, - 2, - 4, - 4, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 1, - 4, - 5, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 2, - 4, - 1, - 1, - 4, - 1, - 3, - 4, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 9, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 4, - 4, - 2, - 2, - 2, - 2, - 4, - 4, - 3, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 5, - 1, - 1, - 3, - 3, - 5, - 3, - 2, - 4, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 3, - 3, - 4, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 1, - 2, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 5, - 5, - 3, - 1, - 1, - 1, - 3, - 5, - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 6, - 6, - 4, - 3, - 1, - 1, - 1, - 3, - 2, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 2, - 3, - 4, - 4, - 3, - 2, - 4, - 3, - 4, - 4, - 5, - 4, - 5, - 1, - 4, - 5, - 3, - 3, - 1, - 1, - 1, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 5, - 3, - 4, - 1, - 1, - 5, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 5, - 3, - 3, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 2, - 2, - 1, - 2, - 1, - 3, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 2, - 4, - 1, - 1, - 1, - 2, - 3, - 3, - 5, - 2, - 3, - 4, - 4, - 3, - 2, - 4, - 3, - 5, - 4, - 6, - 3, - 4, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 5, - 1, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 3, - 4, - 3, - 4, - 4, - 5, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 4, - 3, - 4, - 3, - 4, - 3, - 3, - 2, - 3, - 2, - 1, - 1, - 4, - 1, - 4, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 3, - 1, - 2, - 2, - 3, - 3, - 3, - 1, - 3, - 3, - 5, - 3, - 1, - 3, - 1, - 2, - 4, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 3, - 1, - 2, - 2, - 3, - 2, - 1, - 1, - 1, - 3, - 4, - 6, - 5, - 7, - 3, - 6, - 3, - 6, - 1, - 3, - 5, - 5, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 5, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 4, - 4, - 4, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 5, - 1, - 1, - 3, - 3, - 5, - 3, - 1, - 3, - 3, - 2, - 3, - 3, - 3, - 5, - 4, - 1, - 3, - 1, - 1, - 1, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 1, - 3, - 3, - 3, - 5, - 7, - 6, - 6, - 6, - 1, - 4, - 4, - 1, - 2, - 2, - 4, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 4, - 4, - 3, - 3, - 4, - 4, - 2, - 4, - 4, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 3, - 1, - 1, - 3, - 4, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 7, - 7, - 7, - 7, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 3, - 3, - 4, - 4, - 2, - 4, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 1, - 2, - 2, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 4, - 4, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 4, - 4, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 3, - 3, - 2, - 3, - 1, - 3, - 3, - 4, - 5, - 5, - 5, - 1, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 2, - 3, - 4, - 4, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 3, - 4, - 3, - 4, - 1, - 2, - 8, - 5, - 3, - 5, - 3, - 3, - 4, - 3, - 3, - 3, - 5, - 3, - 3, - 5, - 3, - 2, - 4, - 3, - 3, - 4, - 4, - 3, - 3, - 5, - 6, - 6, - 3, - 4, - 4, - 5, - 5, - 3, - 3, - 3, - 1, - 2, - 1, - 3, - 5, - 1, - 2, - 5, - 4, - 6, - 6, - 9, - 3, - 2, - 2, - 3, - 3, - 4, - 1, - 2, - 4, - 3, - 1, - 3, - 4, - 4, - 5, - 7, - 8, - 8, - 4, - 5, - 3, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 6, - 6, - 2, - 1, - 4, - 2, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 5, - 5, - 5, - 3, - 4, - 6, - 6, - 6, - 4, - 2, - 4, - 4, - 4, - 2, - 2, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 2, - 4, - 4, - 6, - 6, - 6, - 6, - 6, - 6, - 4, - 4, - 2, - 1, - 3, - 3, - 4, - 1, - 1, - 3, - 3, - 3, - 4, - 4, - 1, - 2, - 4, - 2, - 4, - 6, - 6, - 4, - 6, - 6, - 8, - 3, - 2, - 4, - 5, - 7, - 7, - 5, - 7, - 5, - 7, - 7, - 5, - 7, - 5, - 7, - 7, - 5, - 7, - 7, - 9, - 9, - 7, - 9, - 7, - 9, - 9, - 7, - 9, - 7, - 9, - 9, - 7, - 9, - 6, - 3, - 5, - 7, - 6, - 6, - 6, - 6, - 8, - 8, - 8, - 8, - 6, - 4, - 6, - 4, - 3, - 4, - 3, - 3, - 4, - 2, - 4, - 5, - 3, - 5, - 4, - 3, - 6, - 5, - 4, - 7, - 6, - 6, - 6, - 1, - 3, - 6, - 6, - 3, - 5, - 4, - 5, - 5, - 7, - 6, - 9, - 9, - 9, - 4, - 1, - 4, - 1, - 3, - 6, - 6, - 3, - 4, - 5, - 5, - 7, - 3, - 3, - 8, - 7, - 8, - 5, - 7, - 5, - 6, - 6, - 6, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 1, - 4, - 6, - 5, - 5, - 2, - 2, - 1, - 2, - 4, - 4, - 6, - 6, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 6, - 1, - 5, - 7, - 7, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 4, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 7, - 8, - 9, - 1, - 3, - 2, - 3, - 3, - 3, - 3, - 4, - 6, - 4, - 6, - 3, - 3, - 3, - 5, - 5, - 5, - 7, - 7, - 9, - 9, - 9, - 5, - 5, - 7, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 1, - 3, - 1, - 1, - 2, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 2, - 2, - 2, - 4, - 4, - 3, - 5, - 6, - 5, - 5, - 6, - 8, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 4, - 4, - 3, - 3, - 5, - 7, - 3, - 5, - 3, - 3, - 4, - 3, - 5, - 4, - 4, - 4, - 3, - 5, - 4, - 3, - 5, - 5, - 6, - 6, - 6, - 7, - 6, - 8, - 3, - 5, - 3, - 4, - 4, - 3, - 3, - 3, - 5, - 6, - 6, - 3, - 3, - 3, - 4, - 4, - 3, - 3, - 4, - 4, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 9, - 9, - 9, - 9, - 5, - 7, - 8, - 3, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 2, - 3, - 3, - 2, - 3, - 2, - 3, - 3, - 1, - 2, - 2, - 5, - 7, - 2, - 3, - 3, - 5, - 5, - 7, - 6, - 4, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 4, - 3, - 5, - 5, - 4, - 4, - 4, - 1, - 3, - 2, - 5, - 1, - 2, - 2, - 3, - 4, - 4, - 5, - 3, - 5, - 6, - 1, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 2, - 5, - 6, - 6, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 3, - 3, - 5, - 5, - 5, - 6, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 7, - 9, - 7, - 7, - 7, - 7, - 7, - 9, - 5, - 7, - 1, - 2, - 4, - 6, - 7, - 8, - 8, - 3, - 2, - 2, - 6, - 6, - 8, - 8, - 8, - 8, - 8, - 8, - 3, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 2, - 1, - 2, - 1, - 9, - 1, - 4, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 5, - 7, - 7, - 4, - 6, - 6, - 6, - 5, - 7, - 7, - 4, - 6, - 6, - 6, - 3, - 5, - 4, - 6, - 6, - 6, - 8, - 8, - 3, - 5, - 7, - 7, - 4, - 6, - 6, - 6, - 3, - 5, - 5, - 6, - 6, - 3, - 5, - 5, - 6, - 6, - 3, - 5, - 5, - 6, - 6, - 3, - 5, - 5, - 6, - 6, - 3, - 5, - 5, - 6, - 6, - 3, - 5, - 5, - 6, - 6, - 3, - 5, - 4, - 6, - 6, - 3, - 5, - 4, - 6, - 6, - 1, - 1, - 2, - 2, - 3, - 1, - 4, - 2, - 1, - 2, - 5, - 5, - 5, - 5, - 5, - 4, - 2, - 4, - 6, - 5, - 4, - 5, - 5, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 3, - 1, - 3, - 1, - 2, - 2, - 1, - 3, - 2, - 2, - 3, - 3, - 1, - 2, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 5, - 1, - 3, - 1, - 3, - 3, - 4, - 4, - 3, - 3, - 1, - 2, - 1, - 3, - 3, - 3, - 4, - 4, - 2, - 2, - 1, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 3, - 5, - 3, - 5, - 3, - 1, - 3, - 4, - 4, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 3, - 1, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 3, - 1, - 5, - 2, - 1, - 1, - 2, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 3, - 7, - 3, - 4, - 4, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 2, - 3, - 3, - 5, - 5, - 1, - 1, - 1, - 3, - 3, - 3, - 5, - 6, - 5, - 1, - 7, - 7, - 4, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 4, - 3, - 3, - 3, - 5, - 7, - 5, - 6, - 6, - 7, - 5, - 6, - 6, - 6, - 8, - 7, - 11, - 11, - 6, - 7, - 9, - 8, - 10, - 7, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 6, - 7, - 3, - 5, - 5, - 5, - 5, - 5, - 10, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 5, - 6, - 2, - 6, - 1, - 5, - 7, - 1, - 7, - 7, - 1, - 1, - 4, - 3, - 4, - 1, - 4, - 3, - 4, - 1, - 1, - 1, - 4, - 3, - 4, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 5, - 2, - 2, - 4, - 6, - 6, - 6, - 4, - 6, - 6, - 6, - 3, - 5, - 5, - 5, - 1, - 1, - 1, - 1, - 4, - 6, - 3, - 6, - 6, - 3, - 8, - 8, - 5, - 8, - 8, - 5, - 7, - 7, - 4, - 1, - 1, - 2, - 2, - 2, - 2, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 6, - 1, - 1, - 1, - 2, - 4, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 1, - 3, - 3, - 1, - 2, - 1, - 3, - 3, - 3, - 1, - 1, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 1, - 3, - 3, - 3, - 1, - 2, - 3, - 1, - 3, - 2, - 3, - 1, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 2, - 2, - 4, - 4, - 1, - 2, - 4, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 1, - 1, - 3, - 3, - 5, - 7, - 1, - 1, - 1, - 2, - 4, - 3, - 1, - 3, - 3, - 1, - 3, - 4, - 4, - 5, - 7, - 7, - 8, - 8, - 10, - 10, - 6, - 6, - 9, - 9, - 3, - 3, - 5, - 5, - 4, - 1, - 5, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 2, - 2, - 3, - 3, - 6, - 3, - 5, - 6, - 6, - 6, - 3, - 1, - 1, - 3, - 2, - 2, - 3, - 2, - 3, - 3, - 3, - 2, - 4, - 4, - 3, - 1, - 3, - 2, - 4, - 3, - 5, - 2, - 1, - 2, - 4, - 3, - 5, - 1, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 5, - 7, - 5, - 3, - 3, - 5, - 5, - 6, - 6, - 3, - 3, - 5, - 5, - 7, - 7, - 5, - 5, - 7, - 7, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 5, - 5, - 3, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 1, - 5, - 5, - 5, - 3, - 3, - 1, - 3, - 4, - 3, - 1, - 1, - 3, - 4, - 3, - 5, - 5, - 2, - 5, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 7, - 9, - 5, - 7, - 7, - 7, - 3, - 1, - 5, - 5, - 5, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 7, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 5, - 5, - 5, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 7, - 7, - 7, - 2, - 4, - 4, - 2, - 6, - 7, - 7, - 2, - 2, - 3, - 3, - 3, - 5, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 1, - 4, - 1, - 1, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 5, - 7, - 7, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 1, - 1, - 2, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 5, - 7, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 2, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 3, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 4, - 3, - 5, - 1, - 1, - 2, - 2, - 4, - 1, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 4, - 6, - 4, - 4, - 4, - 5, - 4, - 5, - 1, - 1, - 3, - 2, - 1, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 4, - 8, - 8, - 7, - 7, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 7, - 8, - 7, - 8, - 8, - 8, - 9, - 9, - 9, - 8, - 8, - 8, - 10, - 10, - 11, - 11, - 10, - 10, - 7, - 7, - 7, - 7, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 9, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 11, - 8, - 8, - 8, - 8, - 8, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 3, - 3, - 3, - 5, - 6, - 7, - 7, - 7, - 7, - 5, - 9, - 9, - 7, - 7, - 7, - 5, - 5, - 5, - 5, - 6, - 7, - 7, - 4, - 6, - 8, - 1, - 1, - 3, - 5, - 6, - 7, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 1, - 5, - 3, - 3, - 1, - 1, - 6, - 8, - 6, - 6, - 5, - 5, - 6, - 2, - 4, - 4, - 4, - 5, - 5, - 5, - 1, - 6, - 6, - 4, - 1, - 3, - 3, - 5, - 7, - 5, - 5, - 5, - 7, - 7, - 7, - 7, - 7, - 5, - 7, - 6, - 6, - 8, - 8, - 5, - 7, - 5, - 3, - 6, - 7, - 6, - 7, - 6, - 7, - 5, - 7, - 5, - 5, - 6, - 3, - 5, - 3, - 5, - 6, - 8, - 6, - 3, - 1, - 2, - 3, - 7, - 5, - 5, - 3, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 7, - 7, - 5, - 7, - 3, - 5, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 7, - 5, - 7, - 6, - 8, - 8, - 3, - 4, - 4, - 3, - 9, - 9, - 3, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 4, - 4, - 3, - 5, - 1, - 3, - 5, - 7, - 7, - 1, - 1, - 5, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 7, - 6, - 6, - 5, - 3, - 7, - 3, - 3, - 4, - 3, - 3, - 5, - 7, - 7, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 1, - 1, - 3, - 1, - 7, - 7, - 7, - 7, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 3, - 1, - 3, - 2, - 1, - 7, - 7, - 7, - 2, - 2, - 4, - 6, - 5, - 7, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 3, - 2, - 2, - 5, - 1, - 3, - 1, - 3, - 5, - 7, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 5, - 5, - 7, - 5, - 7, - 3, - 3, - 3, - 3, - 1, - 4, - 1, - 3, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 5, - 7, - 6, - 3, - 4, - 6, - 5, - 5, - 5, - 1, - 3, - 6, - 8, - 5, - 7, - 7, - 7, - 6, - 6, - 5, - 2, - 4, - 6, - 6, - 8, - 8, - 8, - 8, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 1, - 1, - 3, - 1, - 4, - 2, - 2, - 1, - 2, - 1, - 3, - 1, - 6, - 6, - 3, - 1, - 2, - 1, - 5, - 2, - 2, - 1, - 3, - 3, - 4, - 5, - 2, - 2, - 2, - 4, - 1, - 1, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 2, - 2, - 2, - 3, - 5, - 3, - 3, - 5, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 3, - 3, - 4, - 4, - 5, - 5, - 2, - 2, - 5, - 5, - 1, - 1, - 1, - 5, - 5, - 4, - 4, - 4, - 3, - 3, - 5, - 6, - 1, - 1, - 2, - 2, - 2, - 2, - 1, - 1, - 2, - 3, - 1, - 1, - 1, - 2, - 1, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 5, - 5, - 4, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 2, - 2, - 4, - 3, - 1, - 3, - 4, - 6, - 8, - 6, - 5, - 7, - 5, - 4, - 5, - 5, - 4, - 1, - 1, - 2, - 2, - 2, - 3, - 3, - 1, - 3, - 5, - 5, - 1, - 1, - 1, - 2, - 1, - 1, - 7, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 3, - 3, - 3, - 4, - 3, - 3, - 3, - 1, - 2, - 2, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 3, - 5, - 3, - 6, - 3, - 7, - 1, - 5, - 9, - 3, - 1, - 1, - 6, - 6, - 5, - 6, - 1, - 4, - 5, - 1, - 7, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 5, - 5, - 5, - 5, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 6, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 3, - 3, - 4, - 3, - 1, - 3, - 3, - 1, - 4, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 6, - 6, - 7, - 1, - 3, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 2, - 3, - 4, - 1, - 3, - 3, - 3, - 1, - 1, - 2, - 4, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 7, - 3, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 3, - 2, - 4, - 1, - 3, - 5, - 3, - 1, - 3, - 5, - 5, - 5, - 3, - 1, - 1, - 1, - 1, - 4, - 5, - 6, - 3, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 7, - 6, - 6, - 6, - 1, - 7, - 3, - 3, - 1, - 1, - 3, - 3, - 4, - 3, - 4, - 3, - 3, - 5, - 1, - 3, - 3, - 5, - 1, - 1, - 1, - 3, - 5, - 3, - 5, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 5, - 1, - 3, - 5, - 1, - 1, - 5, - 3, - 1, - 1, - 3, - 5, - 3, - 4, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 2, - 4, - 4, - 2, - 4, - 6, - 3, - 3, - 1, - 1, - 3, - 5, - 7, - 1, - 3, - 4, - 4, - 3, - 3, - 5, - 5, - 5, - 5, - 2, - 2, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 3, - 4, - 1, - 3, - 1, - 2, - 3, - 4, - 4, - 5, - 6, - 7, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 2, - 4, - 6, - 2, - 1, - 2, - 2, - 3, - 5, - 7, - 6, - 7, - 6, - 5, - 7, - 9, - 8, - 10, - 8, - 1, - 1, - 4, - 3, - 3, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 1, - 1, - 2, - 1, - 3, - 3, - 4, - 4, - 5, - 5, - 5, - 1, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 4, - 3, - 3, - 7, - 7, - 3, - 5, - 5, - 7, - 5, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 3, - 5, - 3, - 1, - 3, - 1, - 1, - 2, - 3, - 5, - 5, - 5, - 7, - 2, - 4, - 3, - 4, - 6, - 6, - 6, - 4, - 6, - 5, - 6, - 5, - 7, - 7, - 10, - 9, - 11, - 9, - 9, - 8, - 5, - 7, - 6, - 6, - 5, - 5, - 7, - 7, - 6, - 6, - 7, - 5, - 7, - 6, - 7, - 5, - 6, - 1, - 2, - 2, - 1, - 2, - 2, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 3, - 1, - 2, - 2, - 4, - 6, - 6, - 4, - 3, - 4, - 3, - 3, - 1, - 3, - 1, - 1, - 3, - 2, - 3, - 1, - 2, - 3, - 1, - 3, - 1, - 3, - 3, - 4, - 4, - 5, - 1, - 1, - 3, - 1, - 5, - 1, - 1, - 3, - 3, - 1, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 5, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 3, - 1, - 1, - 4, - 1, - 1, - 3, - 1, - 2, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 3, - 3, - 5, - 5, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 5, - 3, - 4, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 1, - 3, - 5, - 3, - 3, - 3, - 1, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 1, - 5, - 3, - 3, - 3, - 5, - 1, - 3, - 1, - 4, - 4, - 4, - 4, - 1, - 3, - 5, - 2, - 2, - 1, - 4, - 1, - 1, - 1, - 3, - 5, - 1, - 3, - 5, - 1, - 3, - 2, - 2, - 4, - 1, - 2, - 4, - 2, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 3, - 3, - 3, - 1, - 3, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 5, - 5, - 1, - 3, - 6, - 5, - 1, - 5, - 7, - 3, - 7, - 8, - 4, - 8, - 7, - 3, - 7, - 7, - 3, - 7, - 7, - 3, - 7, - 9, - 5, - 9, - 8, - 4, - 8, - 8, - 4, - 8, - 6, - 2, - 4, - 2, - 6, - 6, - 6, - 6, - 7, - 1, - 1, - 2, - 2, - 3, - 3, - 4, - 4, - 2, - 3, - 4, - 1, - 1, - 3, - 3, - 3, - 3, - 5, - 5, - 6, - 6, - 5, - 5, - 5, - 5, - 1, - 2, - 2, - 1, - 1, - 1, - 2, - 2, - 1, - 3, - 5, - 4, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 4, - 5, - 1, - 3, - 1, - 1, - 2, - 2, - 1, - 1, - 2, - 3, - 4, - 4, - 3, - 5, - 3, - 3, - 1, - 1, - 1, - 3, - 1, - 3, - 4, - 4, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 3, - 5, - 3, - 5, - 1, - 1, - 3, - 6, - 5, - 6, - 6, - 8, - 1, - 5, - 1, - 3, - 3, - 4, - 1, - 1, - 3, - 4, - 1, - 3, - 2, - 3, - 1, - 1, - 2, - 2, - 1, - 3, - 7, - 7, - 9, - 11, - 9, - 13, - 1, - 3, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 4, - 4, - 3, - 5, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 4, - 3, - 3, - 3, - 5, - 3, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 6, - 3, - 7, - 7, - 5, - 5, - 5, - 6, - 5, - 6, - 1, - 3, - 3, - 3, - 4, - 5, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 2, - 2, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 3, - 5, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 5, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 2, - 2, - 2, - 1, - 1, - 3, - 6, - 6, - 4, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 1, - 3, - 1, - 1, - 1, - 3, - 5, - 3, - 1, - 1, - 3, - 3, - 2, - 2, - 3, - 3, - 3, - 3, - 2, - 2, - 3, - 5, - 3, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 4, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 4, - 4, - 2, - 4, - 4, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 2, - 1, - 2, - 3, - 3, - 3, - 4, - 6, - 3, - 3, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 3, - 3, - 5, - 5, - 6, - 6, - 3, - 3, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 3, - 3, - 3, - 3, - 5, - 4, - 3, - 5, - 5, - 5, - 7, - 3, - 7, - 3, - 3, - 3, - 4, - 3, - 5, - 3, - 4, - 1, - 1, - 1, - 6, - 3, - 3, - 5, - 3, - 3, - 4, - 2, - 3, - 3, - 5, - 3, - 3, - 4, - 3, - 3, - 3, - 5, - 3, - 5, - 5, - 6, - 8, - 9, - 11, - 7, - 7, - 7, - 9, - 8, - 3, - 3, - 3, - 5, - 3, - 5, - 3, - 4, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 6, - 4, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 7, - 7, - 7, - 7, - 5, - 7, - 5, - 5, - 5, - 3, - 3, - 3, - 5, - 5, - 5, - 5, - 3, - 3, - 5, - 5, - 5, - 7 - ] - }, - "id": { - "total": 16, - "totalUnique": 14, - "unique": { - ".sponsors:not(.sponsors__lead):not(.sponsors-leaderboard):not(#sponsors-article-end):not(.sponsors__mobile)": 2, - "#main": 2, - ".bird #eye": 1, - ".bird #eye-2": 1, - "#cateye": 1, - "#member-area .pricing .container": 1, - "#main:focus": 1, - "body:not(#home) .contrast-switcher": 1, - ".enhanced #js-search-results-count": 1, - ".enhanced #js-category-header": 1, - "#sponsors-main-page .sponsors--image-wrapper": 1, - "#sponsors-main-page": 1, - "fieldset#set-up-credentials": 1, - ".articlepage #main": 1 - }, - "uniquenessRatio": 0.875, - "ratio": 0.0027590963959303327 - }, - "pseudoClasses": { - "total": 1259, - "totalUnique": 27, - "unique": { - "not": 306, - "before": 83, - "after": 82, - "root": 3, - "-moz-focusring": 11, - "nth-of-type": 28, - "last-child": 25, - "active": 127, - "focus": 178, - "hover": 191, - "first-of-type": 21, - "nth-child": 49, - "-moz-placeholder": 2, - "-ms-input-placeholder": 10, - "target": 11, - "empty": 7, - "vertical": 1, - "horizontal": 1, - "first-child": 48, - "last-of-type": 20, - "-webkit-autofill": 29, - "checked": 12, - "nth-last-child": 4, - "visited": 1, - "-moz-placeholder-shown": 4, - "placeholder-shown": 4, - "first-line": 1 - }, - "uniquenessRatio": 0.021445591739475776 - }, - "accessibility": { - "total": 29, - "totalUnique": 29, - "unique": { - ".subnav-more-item__button[aria-expanded] .menu-text--close": 1, - ".subnav-more-item__button[aria-expanded] .menu-text": 1, - "html:not(.enhanced) .overlay[aria-hidden=true]": 1, - "html:not(.enhanced) .overlay[aria-hidden=true]:target": 1, - "html:not(.enhanced) .overlay[aria-hidden=true] .overlay-close-button": 1, - "[data-handler=Tooltip] [role=status]": 1, - "[data-handler=Tooltip] [role=status]:empty": 1, - "[data-handler=Tooltip] [role=status]::before": 1, - ".dashboard__header__tab[aria-selected=true]": 1, - ".dashboard section[aria-hidden=true]": 1, - ".books__tab a[aria-selected=true]": 1, - ".books__bundle .accordion-item:first-child[aria-expanded=true]": 1, - ".books__bundle .accordion-item:first-child[aria-expanded=true]+.accordion-desc": 1, - ".books__bundle .accordion-item:first-child[aria-selected=true]": 1, - ".books__bundle .accordion-item[aria-expanded=true]": 1, - ".books__bundle .accordion-item[aria-expanded=true]+.accordion-desc": 1, - ".books__bundle .accordion-item[aria-selected=true]": 1, - ".book__toc .accordion-item[aria-expanded=true]+.accordion-desc": 1, - ".wf-loaded-stage2 .book__toc .accordion-item[aria-expanded=true]+.accordion-desc": 1, - ".accordion-item[aria-expanded=true] .chapter__author": 1, - ".accordion-item[aria-expanded=true]:hover .chapter__title": 1, - ".bundle-details__accordion__list [aria-expanded=true]+dd": 1, - "[aria-expanded=true] .accordion-expand-btn": 1, - ".accordion-item[aria-expanded=true]": 1, - ".accordion-list [aria-expanded=false]+dd": 1, - ".accordion-list [aria-expanded=true]+dd": 1, - ".accordion-list [aria-hidden=false]": 1, - ".accordion-list [aria-hidden=true]": 1, - ".accordion-desc[aria-hidden=false]": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.005000862217623728 - }, - "keyframes": { - "total": 160, - "totalUnique": 21, - "unique": { - "15%": 6, - "30%": 6, - "45%": 8, - "60%": 8, - "0%": 30, - "100%": 38, - "75%": 2, - "50%": 6, - "55%": 2, - "12.5%": 2, - "37.5%": 2, - "62.5%": 2, - "87.5%": 2, - "16.65%": 8, - "33.3%": 8, - "49.95%": 8, - "66.6%": 8, - "83.25%": 8, - "20%": 2, - "90%": 2, - "to": 2 - }, - "uniquenessRatio": 0.13125 - }, - "prefixed": { - "total": 150, - "totalUnique": 103, - "unique": { - "[type=button]::-moz-focus-inner": 3, - "[type=submit]::-moz-focus-inner": 3, - "button::-moz-focus-inner": 3, - "[type=button]:-moz-focusring": 3, - "[type=submit]:-moz-focusring": 3, - "button:-moz-focusring": 3, - "[type=search]::-webkit-search-cancel-button": 3, - "[type=search]::-webkit-search-decoration": 3, - "::-webkit-file-upload-button": 3, - "::-webkit-input-placeholder": 2, - ":-moz-placeholder": 2, - "::-moz-placeholder": 2, - ":-ms-input-placeholder": 2, - ".input::-webkit-input-placeholder": 3, - ".input:-ms-input-placeholder": 2, - ".input::-moz-placeholder": 2, - ".input::-ms-clear": 2, - ".nl-box__form--button:-ms-input-placeholder": 2, - ".nl-box__form--email:-ms-input-placeholder": 2, - ".nl-box__form--button::-webkit-input-placeholder": 1, - ".nl-box__form--email::-webkit-input-placeholder": 1, - ".nl-box__form--button::-moz-placeholder": 2, - ".nl-box__form--email::-moz-placeholder": 2, - ".family__grid::-webkit-scrollbar": 2, - "::-webkit-scrollbar:vertical": 1, - "::-webkit-scrollbar:horizontal": 1, - ".family__grid::-webkit-scrollbar-thumb": 1, - ".family__grid::-webkit-scrollbar-track": 1, - ".subnav__primary::-webkit-scrollbar": 2, - "[type=reset]::-moz-focus-inner": 2, - "[type=reset]:-moz-focusring": 2, - "[type=number]::-webkit-inner-spin-button": 2, - "[type=number]::-webkit-outer-spin-button": 2, - "code ::-moz-selection": 2, - "code::-moz-selection": 3, - "pre ::-moz-selection": 2, - "pre::-moz-selection": 2, - "::-moz-selection": 2, - ".success::-moz-selection": 1, - ".jobs__search input[type=search]::-ms-clear": 1, - ".jobs__search input[type=text]::-ms-clear": 1, - ".jobs__search input[type=search]::-webkit-input-placeholder": 1, - ".jobs__search input[type=text]::-webkit-input-placeholder": 1, - ".jobs__search input[type=search]::-moz-placeholder": 1, - ".jobs__search input[type=text]::-moz-placeholder": 1, - ".jobs__search input[type=search]:-ms-input-placeholder": 1, - ".jobs__search input[type=text]:-ms-input-placeholder": 1, - ".code-toolbar::-webkit-scrollbar": 1, - ".form__field input:-webkit-autofill.success": 1, - ".form__field textarea:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field textarea:-webkit-autofill.success": 1, - ".form__field.comment__message-field input:-webkit-autofill.success": 1, - ".form__field.comment__message-field textarea:-webkit-autofill.success": 1, - ".form__field.comment__name-field input:-webkit-autofill.success": 1, - ".form__field.comment__name-field textarea:-webkit-autofill.success": 1, - ".form__field.comment__twitter-field input:-webkit-autofill.success": 1, - ".form__field.comment__twitter-field textarea:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field.comment__message-field input:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field.comment__message-field textarea:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field.comment__name-field input:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field.comment__name-field textarea:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field.comment__twitter-field input:-webkit-autofill.success": 1, - ".wf-loaded-stage2 .form__field.comment__twitter-field textarea:-webkit-autofill.success": 1, - ".form__field input:-webkit-autofill:active": 1, - ".form__field input:-webkit-autofill:focus": 1, - ".form__field textarea:-webkit-autofill:active": 1, - ".form__field textarea:-webkit-autofill:focus": 1, - ".wf-loaded-stage2 .form__field input:-webkit-autofill:active": 1, - ".wf-loaded-stage2 .form__field input:-webkit-autofill:focus": 1, - ".wf-loaded-stage2 .form__field textarea:-webkit-autofill:active": 1, - ".wf-loaded-stage2 .form__field textarea:-webkit-autofill:focus": 1, - ".form__field input:-webkit-autofill::selection": 1, - ".form__field__input:-webkit-autofill::first-line": 1, - ".wf-loaded-stage2 .form__field__input:-webkit-autofill::first-line": 1, - ".form__field__input.success:-webkit-autofill": 1, - ".form__field__input:-webkit-autofill": 1, - ".form__field__input.fail:-webkit-autofill": 1, - ".enhanced .form__field--floating .form__field__input.success::-moz-selection": 2, - "input[type=password]::-ms-reveal": 1, - ".increment-decrement-input-wrapper input[type=number]::-webkit-inner-spin-button": 1, - ".increment-decrement-input-wrapper input[type=number]::-webkit-outer-spin-button": 1, - ".conf-panel--blue ::-moz-selection": 2, - ".conf-panel--pink ::-moz-selection": 2, - ".conf-panel--green ::-moz-selection": 2, - "::-moz-range-track": 1, - "::-ms-track": 1, - ".slider input[type=range]::-webkit-slider-runnable-track": 1, - ".slider input[type=range]::-moz-range-track": 1, - ".slider input[type=range]::-ms-track": 1, - ".slider input[type=range]::-ms-fill-lower": 1, - ".slider input[type=range]::-ms-fill-upper": 1, - ".slider input[type=range]::-ms-tooltip": 1, - ".slider input[type=range]::-webkit-slider-thumb": 1, - ".slider input[type=range]::-moz-range-thumb": 1, - ".slider input[type=range]::-ms-thumb": 1, - ".auth-modal-wrapper input[type=number]::-webkit-inner-spin-button": 1, - ".auth-modal-wrapper input[type=number]::-webkit-outer-spin-button": 1, - ".checkout input[type=number]::-webkit-inner-spin-button": 1, - ".checkout input[type=number]::-webkit-outer-spin-button": 1, - ".input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown)": 1, - ".wf-loaded-stage2 .input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown)": 1, - ".input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown):active": 1, - ".input__coupon__wrapper .input__coupon:not(:-moz-placeholder-shown):focus": 1 - }, - "uniquenessRatio": 0.6866666666666666, - "ratio": 0.02586652871184687 - }, - "combinators": { - "total": 4005, - "totalUnique": 4, - "unique": { - " ": 3830, - ">": 100, - "+": 64, - "~": 11 - }, - "uniquenessRatio": 0.0009987515605493133 - } - }, - "declarations": { - "total": 11757, - "totalUnique": 2858, - "uniquenessRatio": 0.24308922344135409, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 11757 - } - }, - "properties": { - "total": 11757, - "totalUnique": 229, - "unique": { - "font-family": 312, - "src": 7, - "font-style": 66, - "font-weight": 198, - "box-sizing": 27, - "font": 9, - "margin": 404, - "line-height": 130, - "-ms-text-size-adjust": 3, - "-webkit-text-size-adjust": 3, - "overflow-y": 3, - "display": 828, - "flex-direction": 78, - "background-color": 246, - "font-feature-settings": 53, - "color": 711, - "overflow": 69, - "text-rendering": 2, - "-webkit-font-smoothing": 2, - "-moz-osx-font-smoothing": 2, - "font-size": 471, - "min-height": 34, - "overflow-x": 9, - "-webkit-overflow-scrolling": 3, - "border-style": 9, - "max-width": 238, - "position": 366, - "top": 205, - "content": 189, - "margin-left": 180, - "width": 535, - "height": 233, - "background-position": 111, - "background-repeat": 78, - "background-image": 156, - "order": 26, - "letter-spacing": 89, - "text-transform": 97, - "cursor": 48, - "-webkit-appearance": 15, - "padding": 559, - "outline": 39, - "outline-offset": 5, - "border": 111, - "align-items": 76, - "justify-content": 89, - "border-radius": 237, - "box-shadow": 94, - "z-index": 87, - "clear": 72, - "flex": 31, - "flex-wrap": 47, - "margin-right": 130, - "padding-right": 38, - "padding-left": 125, - "flex-basis": 103, - "margin-bottom": 234, - "margin-top": 248, - "text-decoration": 60, - "text-decoration-line": 52, - "font-variant": 38, - "padding-bottom": 73, - "--promo-background": 9, - "--promo-text": 9, - "--promo-highlight": 9, - "--promo-highlight-text": 6, - "--promo-highlight--hover": 9, - "--promo-shadow": 2, - "background": 280, - "text-align": 176, - "transition": 194, - "text-shadow": 174, - "border-bottom": 44, - "border-color": 29, - "white-space": 50, - "word-spacing": 2, - "word-break": 8, - "font-variant-ligatures": 2, - "word-wrap": 5, - "-moz-tab-size": 2, - "-o-tab-size": 2, - "tab-size": 2, - "-webkit-hyphens": 2, - "-ms-hyphens": 1, - "hyphens": 2, - "background-size": 82, - "left": 163, - "transform": 279, - "float": 120, - "will-change": 13, - "transform-origin": 50, - "--bio-image-border-width": 4, - "--card-color": 10, - "flex-shrink": 20, - "-webkit-text-decoration-skip": 7, - "vertical-align": 36, - "-moz-column-gap": 9, - "column-gap": 9, - "grid-template-columns": 49, - "text-decoration-skip-ink": 6, - "text-decoration-thickness": 8, - "text-underline-offset": 8, - "text-decoration-offset": 4, - "scroll-margin-top": 2, - "list-style": 32, - "list-style-image": 15, - "min-width": 45, - "grid-column": 12, - "grid-row-start": 2, - "flex-grow": 17, - "outline-color": 4, - "text-decoration-color": 48, - "grid-row": 2, - "border-left": 16, - "border-right": 7, - "padding-top": 93, - "right": 81, - "opacity": 139, - "bottom": 39, - "-webkit-backface-visibility": 4, - "backface-visibility": 4, - "-o-object-fit": 5, - "object-fit": 5, - "clip": 3, - "border-width": 6, - "border-top-left-radius": 6, - "border-bottom-left-radius": 6, - "border-top-right-radius": 5, - "border-bottom-right-radius": 5, - "content-visibility": 2, - "grid-gap": 4, - "gap": 2, - "fill": 9, - "--gap": 1, - "-ms-scroll-snap-type": 1, - "scroll-snap-type": 3, - "scroll-padding": 3, - "scrollbar-color": 1, - "scroll-snap-align": 1, - "border-left-width": 4, - "border-right-width": 3, - "border-image": 1, - "scrollbar-width": 2, - "outline-width": 2, - "-webkit-text-decoration": 3, - "-webkit-animation": 30, - "animation": 30, - "justify-self": 3, - "grid-column-gap": 3, - "grid-row-gap": 1, - "resize": 2, - "-webkit-text-decoration-line": 48, - "counter-reset": 3, - "counter-increment": 2, - "-webkit-text-decoration-color": 47, - "max-height": 26, - "align-content": 4, - "pointer-events": 26, - "-webkit-animation-duration": 5, - "animation-duration": 5, - "-webkit-animation-timing-function": 6, - "animation-timing-function": 6, - "-webkit-animation-name": 6, - "animation-name": 6, - "scroll": 1, - "-webkit-transition": 2, - "-webkit-text-fill-color": 1, - "-webkit-box-shadow": 2, - "-webkit-user-select": 1, - "-moz-user-select": 1, - "user-select": 1, - "visibility": 20, - "list-style-type": 2, - "-webkit-animation-iteration-count": 3, - "animation-iteration-count": 3, - "text-indent": 2, - "transition-timing-function": 1, - "-webkit-animation-fill-mode": 1, - "animation-fill-mode": 1, - "text-overflow": 2, - "transition-delay": 4, - "transition-duration": 10, - "align-self": 9, - "-webkit-animation-delay": 3, - "animation-delay": 3, - "grid-column-start": 6, - "grid-column-end": 6, - "font-display": 1, - "-webkit-box-decoration-break": 1, - "box-decoration-break": 1, - "justify-items": 3, - "shape-outside": 1, - "background-origin": 1, - "--author-bio-border-width": 2, - "--bio-image-border-color": 1, - "stroke": 2, - "border-collapse": 4, - "--format-type": 3, - "border-top": 8, - "--box-yellow": 1, - "--box-blue": 1, - "--box-green": 1, - "--box-orange": 1, - "--box-background": 4, - "table-layout": 3, - "border-spacing": 1, - "-webkit-clip-path": 3, - "clip-path": 3, - "filter": 7, - "transition-property": 1, - "all": 1, - "appearance": 1, - "-moz-columns": 1, - "columns": 1, - "fill-opacity": 2, - "--bg-color": 2, - "--text-color": 2, - "contain": 1, - "overflow-wrap": 1, - "--stack-margin": 1, - "page-break-inside": 1, - "page-break-after": 1, - "widows": 1, - "orphans": 1, - "-ms-font-feature-settings": 1, - "-o-font-feature-settings": 1, - "-moz-column-break-before": 2, - "break-before": 2, - "page-break-before": 2 - }, - "uniquenessRatio": 0.019477757931445096, - "prefixed": { - "total": 229, - "totalUnique": 36, - "unique": { - "-ms-text-size-adjust": 3, - "-webkit-text-size-adjust": 3, - "-webkit-font-smoothing": 2, - "-moz-osx-font-smoothing": 2, - "-webkit-overflow-scrolling": 3, - "-webkit-appearance": 15, - "-moz-tab-size": 2, - "-o-tab-size": 2, - "-webkit-hyphens": 2, - "-ms-hyphens": 1, - "-webkit-text-decoration-skip": 7, - "-moz-column-gap": 9, - "-webkit-backface-visibility": 4, - "-o-object-fit": 5, - "-ms-scroll-snap-type": 1, - "-webkit-text-decoration": 3, - "-webkit-animation": 30, - "-webkit-text-decoration-line": 48, - "-webkit-text-decoration-color": 47, - "-webkit-animation-duration": 5, - "-webkit-animation-timing-function": 6, - "-webkit-animation-name": 6, - "-webkit-transition": 2, - "-webkit-text-fill-color": 1, - "-webkit-box-shadow": 2, - "-webkit-user-select": 1, - "-moz-user-select": 1, - "-webkit-animation-iteration-count": 3, - "-webkit-animation-fill-mode": 1, - "-webkit-animation-delay": 3, - "-webkit-box-decoration-break": 1, - "-webkit-clip-path": 3, - "-moz-columns": 1, - "-ms-font-feature-settings": 1, - "-o-font-feature-settings": 1, - "-moz-column-break-before": 2 - }, - "uniquenessRatio": 0.1572052401746725, - "ratio": 0.019477757931445096 - }, - "custom": { - "total": 78, - "totalUnique": 20, - "unique": { - "--promo-background": 9, - "--promo-text": 9, - "--promo-highlight": 9, - "--promo-highlight-text": 6, - "--promo-highlight--hover": 9, - "--promo-shadow": 2, - "--bio-image-border-width": 4, - "--card-color": 10, - "--gap": 1, - "--author-bio-border-width": 2, - "--bio-image-border-color": 1, - "--format-type": 3, - "--box-yellow": 1, - "--box-blue": 1, - "--box-green": 1, - "--box-orange": 1, - "--box-background": 4, - "--bg-color": 2, - "--text-color": 2, - "--stack-margin": 1 - }, - "uniquenessRatio": 0.2564102564102564, - "ratio": 0.006634345496300076, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0261121034277452, - "mode": 1, - "range": 1, - "sum": 12064 - } - }, - "values": { - "colors": { - "total": 1798, - "totalUnique": 243, - "unique": { - "#fff": 331, - "#333": 89, - "ButtonText": 3, - "rgba(0, 0, 0, 5%)": 1, - "rgba(0, 0, 0, .2)": 16, - "rgba(50, 50, 93, .25)": 18, - "rgba(0, 0, 0, .3)": 44, - "rgba(0, 0, 0, .025)": 16, - "#767676": 14, - "#d33a2c": 167, - "#666": 117, - "#999": 2, - "white": 7, - "#b13125": 3, - "#87251c": 2, - "#350f0b": 2, - "#f1fdf8": 4, - "#19a972": 2, - "rgba(0, 0, 0, .15)": 7, - "rgba(0, 0, 0, .12)": 8, - "#dadada": 5, - "#000": 41, - "#fff2ea": 2, - "rgba(0, 0, 0, .25)": 44, - "#bbb": 13, - "#222": 8, - "currentColor": 22, - "#f6f3f2": 12, - "#18a46f": 6, - "#f55700": 5, - "#aa1994": 4, - "transparent": 39, - "#006fc6": 49, - "#811d15": 23, - "#eee": 23, - "#e7f8ff": 4, - "#777": 9, - "#0168b8": 8, - "#ddd": 61, - "rgba(0, 0, 0, .5)": 8, - "rgba(0, 103, 184, .3490196078)": 2, - "#267dcc": 2, - "#41b14f": 77, - "#9ec14c": 13, - "rgba(0, 0, 0, 3%)": 2, - "#fef1f0": 2, - "#fbecf9": 2, - "#202020": 4, - "#ccc": 9, - "#4af9ae": 1, - "#54c8f9": 1, - "#f76d5e": 1, - "#74fd81": 1, - "#ebf75b": 1, - "#adfbda": 1, - "#97dcf9": 1, - "#fda399": 1, - "#94fb9e": 1, - "#f7ff99": 1, - "#a9a9a9": 1, - "#a5a5a5": 2, - "#ddfbee": 1, - "#caedfb": 1, - "#fdcfca": 1, - "#cefdd3": 1, - "#f7fbca": 1, - "#ffe7e7": 2, - "#fee0e0": 2, - "#ffe3e3": 3, - "#faa4a4": 3, - "#c8f1e0": 2, - "#a0dcc4": 2, - "#ff0": 2, - "silver": 3, - "#61140f": 5, - "#390c09": 13, - "#f88040": 16, - "#f6f6f6": 18, - "#f0f0f0": 4, - "#fafafa": 4, - "#282634": 9, - "#e3f5e5": 3, - "#fbebea": 3, - "#137d54": 3, - "#d6f3e7": 2, - "#c6f2e0": 2, - "#b3d4fc": 8, - "#fff2cc": 26, - "#444": 8, - "#f6d8d5": 2, - "#ed968e": 1, - "#d2dfe4": 2, - "rgba(0, 0, 0, .1)": 2, - "rgba(0, 0, 0, .05)": 1, - "rgba(50, 50, 83, .25)": 2, - "rgba(255, 255, 255, .7)": 4, - "#0d84e1": 1, - "#3f3c51": 1, - "#dcdede": 2, - "#8e2017": 1, - "#ffd8d4": 1, - "#111": 3, - "#e33a2c": 2, - "#effaff": 1, - "#8fcbe2": 1, - "rgba(0, 0, 0, .03)": 2, - "#aaa": 9, - "#d6f7da": 2, - "#e6f8e8": 1, - "#feeef0": 3, - "#fdadb7": 1, - "#8f979d": 1, - "rgba(255, 255, 255, 0)": 1, - "rgba(40, 38, 52, .98)": 1, - "#e94b35": 1, - "rgba(0, 0, 0, .17)": 2, - "#2da2c5": 25, - "#bfbfbf": 2, - "green": 1, - "#c2c2c2": 2, - "rgba(0, 0, 0, .8)": 3, - "#bc3428": 7, - "#c7372a": 1, - "#123456": 1, - "#e7e7e7": 3, - "#e33b2a": 1, - "#fdffe5": 1, - "#ff6411": 2, - "#ffe5e2": 1, - "#e62143": 4, - "#e3f7e5": 1, - "#e58980": 2, - "#f7f7f7": 3, - "#0085ff": 2, - "#007aea": 1, - "#0e6fc7": 2, - "#1b75bb": 3, - "#ce05a9": 1, - "#3e62ff": 1, - "#009245": 5, - "#8bc53f": 1, - "#76d0a4": 2, - "#7ab99a": 1, - "rgba(0, 0, 0, .6)": 2, - "rgba(0, 0, 0, .4)": 3, - "#1b71bb": 4, - "#4399d9": 3, - "#47aeff": 1, - "#182f23": 1, - "#55a6f1": 2, - "#adeccc": 2, - "#383636": 2, - "#ed60d3": 2, - "#74c49a": 2, - "rgba(89, 94, 94, .09)": 1, - "rgba(89, 94, 94, 0)": 1, - "#ff958b": 2, - "#8a1f16": 1, - "#922118": 1, - "#9b2319": 1, - "rgba(0, 0, 0, .7)": 2, - "#e85e38": 3, - "#3ea2f1": 1, - "#f56092": 1, - "#e91e63": 1, - "#f3fbee": 1, - "#d6f1c5": 1, - "#31853b": 1, - "#1b75bc": 1, - "#fff9e6": 2, - "#f0f9fc": 1, - "#f2faf3": 2, - "#fef6f1": 1, - "#feece2": 1, - "#cb4b07": 1, - "#d8f1db": 1, - "#26662e": 1, - "#d3edf5": 1, - "#1a5e72": 1, - "#7d7d7d": 1, - "#3f91e5": 1, - "#e5e5e5": 8, - "#f5f5f5": 1, - "grey": 3, - "#fdfdfd": 3, - "#c4c4c4": 3, - "#bebebe": 1, - "#c13125": 1, - "#858585": 1, - "#595959": 1, - "#555": 3, - "#d0eed4": 1, - "#005f2d": 1, - "#d44119": 1, - "#9a97a9": 4, - "#1b528a": 2, - "#003d5b": 1, - "#213744": 2, - "#184155": 1, - "#48a08f": 2, - "#1a7362": 1, - "#0a1e2d": 1, - "#49241c": 4, - "#3a1c17": 2, - "#39408f": 2, - "#4f49ab": 1, - "#2d808e": 1, - "#2a97af": 1, - "#226d79": 1, - "#475b22": 2, - "#658430": 1, - "#e63d31": 1, - "#2b388f": 1, - "rgba(0, 0, 0, .9)": 3, - "rgba(255, 255, 255, .3)": 2, - "rgba(222, 222, 222, 0.2)": 1, - "rgba(255, 255, 255, 0.8)": 1, - "rgba(0, 0, 0, 0.18)": 1, - "rgba(255, 255, 255, 0.9)": 1, - "#f3f5f3": 1, - "#4f4f4f": 1, - "#656565": 2, - "#eff": 1, - "rgba(200, 200, 200, .8)": 1, - "rgba(255, 255, 255, .8)": 1, - "rgba(255, 255, 255, .4)": 1, - "rgba(255, 255, 255, .9)": 1, - "#be2626": 2, - "#a92222": 1, - "#888": 1, - "#55acee": 1, - "#f3f3f3": 1, - "#fff6db": 1, - "#eeecec": 1, - "#41b7d7": 1, - "#8cad3e": 1, - "#a0a0a0": 1, - "#ff6767": 1, - "#31a1bd": 4, - "#0065bd": 2, - "#01a6c1": 1, - "#c00": 1, - "#e3e3e3": 1 - }, - "uniquenessRatio": 0.13515016685205783, - "itemsPerContext": { - "background-color": { - "total": 245, - "totalUnique": 76, - "unique": { - "#fff": 36, - "rgba(0, 0, 0, .2)": 2, - "#d33a2c": 31, - "#f6f3f2": 10, - "transparent": 10, - "rgba(0, 0, 0, .15)": 2, - "#666": 9, - "#eee": 3, - "#0168b8": 6, - "rgba(0, 103, 184, .3490196078)": 2, - "#41b14f": 17, - "#f1fdf8": 2, - "#fef1f0": 2, - "#fbecf9": 2, - "#006fc6": 2, - "#ffe7e7": 2, - "#ffe3e3": 3, - "#c8f1e0": 2, - "#ff0": 2, - "#f6f6f6": 7, - "#fafafa": 3, - "#282634": 5, - "#e3f5e5": 3, - "#fbebea": 3, - "#811d15": 4, - "#d6f3e7": 2, - "#137d54": 1, - "rgba(0, 0, 0, .3)": 1, - "#dcdede": 1, - "rgba(0, 0, 0, .25)": 1, - "#8e2017": 1, - "#ffd8d4": 1, - "#effaff": 1, - "#d6f7da": 2, - "#feeef0": 1, - "rgba(255, 255, 255, 0)": 1, - "rgba(40, 38, 52, .98)": 1, - "#fff2cc": 17, - "#bc3428": 3, - "#c7372a": 1, - "#b13125": 1, - "#390c09": 1, - "#2da2c5": 1, - "#0085ff": 1, - "#1b75bb": 2, - "#009245": 1, - "#76d0a4": 1, - "#1b71bb": 2, - "#8a1f16": 1, - "#922118": 1, - "#9b2319": 1, - "#f88040": 1, - "#f3fbee": 1, - "#f2faf3": 1, - "#feece2": 1, - "#d8f1db": 1, - "#d3edf5": 1, - "#3f91e5": 1, - "#d0eed4": 1, - "#1b528a": 1, - "#213744": 1, - "#48a08f": 1, - "#49241c": 2, - "#39408f": 1, - "#2d808e": 1, - "#475b22": 1, - "#e63d31": 1, - "#f3f5f3": 1, - "rgba(255, 255, 255, .8)": 1, - "rgba(255, 255, 255, .4)": 1, - "currentColor": 1, - "#f7f7f7": 2, - "#000": 1, - "#f3f3f3": 1, - "#f0f0f0": 1, - "#fff6db": 1 - }, - "uniquenessRatio": 0.31020408163265306 - }, - "color": { - "total": 661, - "totalUnique": 67, - "unique": { - "#333": 78, - "#767676": 10, - "#d33a2c": 65, - "#666": 96, - "#999": 2, - "#fff": 177, - "#000": 28, - "#222": 8, - "#18a46f": 2, - "#f55700": 3, - "#aa1994": 2, - "#006fc6": 28, - "transparent": 4, - "#777": 7, - "#267dcc": 2, - "#202020": 2, - "#41b14f": 31, - "#61140f": 5, - "#390c09": 9, - "#f88040": 6, - "#137d54": 2, - "#444": 7, - "#f6d8d5": 2, - "#811d15": 7, - "rgba(255, 255, 255, .7)": 4, - "#bbb": 1, - "#111": 3, - "#aaa": 6, - "#8f979d": 1, - "#2da2c5": 11, - "#ccc": 5, - "#bfbfbf": 1, - "#eee": 3, - "#e7e7e7": 1, - "#47aeff": 1, - "#182f23": 1, - "rgba(0, 0, 0, .7)": 2, - "#e85e38": 3, - "#31853b": 1, - "#1b75bc": 1, - "rgba(0, 0, 0, .5)": 2, - "#cb4b07": 1, - "#26662e": 1, - "#1a5e72": 1, - "#7d7d7d": 1, - "#f6f6f6": 1, - "#858585": 1, - "#595959": 1, - "#555": 3, - "#005f2d": 1, - "#d44119": 1, - "#9a97a9": 2, - "#4f4f4f": 1, - "#656565": 2, - "rgba(0, 0, 0, .9)": 1, - "#888": 1, - "silver": 1, - "#55acee": 1, - "#41b7d7": 1, - "#8cad3e": 1, - "#a0a0a0": 1, - "#ff6767": 1, - "#31a1bd": 2, - "#0065bd": 1, - "#e62143": 1, - "#c00": 1, - "currentColor": 1 - }, - "uniquenessRatio": 0.10136157337367625 - }, - "outline": { - "total": 11, - "totalUnique": 5, - "unique": { - "ButtonText": 3, - "#d33a2c": 1, - "#811d15": 4, - "#e7e7e7": 2, - "#fff": 1 - }, - "uniquenessRatio": 0.45454545454545453 - }, - "border": { - "total": 66, - "totalUnique": 21, - "unique": { - "rgba(0, 0, 0, 5%)": 1, - "#bbb": 6, - "#d33a2c": 8, - "#fff": 7, - "#ddd": 15, - "#a9a9a9": 1, - "#fee0e0": 2, - "#faa4a4": 3, - "#a0dcc4": 2, - "silver": 2, - "#c6f2e0": 2, - "#eee": 1, - "#d2dfe4": 2, - "transparent": 6, - "rgba(0, 0, 0, .05)": 1, - "#666": 2, - "#fdadb7": 1, - "#ccc": 1, - "#d6f1c5": 1, - "#dadada": 1, - "rgba(200, 200, 200, .8)": 1 - }, - "uniquenessRatio": 0.3181818181818182 - }, - "box-shadow": { - "total": 122, - "totalUnique": 25, - "unique": { - "rgba(50, 50, 93, .25)": 18, - "rgba(0, 0, 0, .3)": 33, - "rgba(0, 0, 0, .025)": 16, - "rgba(0, 0, 0, .15)": 4, - "rgba(0, 0, 0, .12)": 8, - "rgba(0, 0, 0, .5)": 2, - "rgba(0, 0, 0, 3%)": 2, - "rgba(0, 0, 0, .2)": 11, - "#d33a2c": 2, - "rgba(50, 50, 83, .25)": 2, - "#fff": 2, - "#f6f6f6": 1, - "rgba(0, 0, 0, .03)": 2, - "#feeef0": 1, - "transparent": 2, - "rgba(0, 0, 0, .17)": 2, - "rgba(0, 0, 0, .8)": 1, - "#e5e5e5": 2, - "#767676": 1, - "grey": 3, - "#bbb": 3, - "#eee": 1, - "#bebebe": 1, - "rgba(0, 0, 0, .25)": 1, - "rgba(0, 0, 0, .1)": 1 - }, - "uniquenessRatio": 0.20491803278688525 - }, - "--promo-background": { - "total": 9, - "totalUnique": 6, - "unique": { - "#d33a2c": 2, - "#f1fdf8": 2, - "#e7f8ff": 2, - "#fdffe5": 1, - "#ffe5e2": 1, - "#e3f7e5": 1 - }, - "uniquenessRatio": 0.6666666666666666 - }, - "--promo-text": { - "total": 9, - "totalUnique": 3, - "unique": { - "white": 2, - "#333": 2, - "#000": 5 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--promo-highlight": { - "total": 9, - "totalUnique": 7, - "unique": { - "#b13125": 2, - "#19a972": 1, - "#006fc6": 2, - "#18a46f": 1, - "#ff6411": 1, - "#e62143": 1, - "#41b14f": 1 - }, - "uniquenessRatio": 0.7777777777777778 - }, - "--promo-highlight-text": { - "total": 6, - "totalUnique": 3, - "unique": { - "white": 2, - "#fff": 2, - "#e7f8ff": 2 - }, - "uniquenessRatio": 0.5 - }, - "--promo-highlight--hover": { - "total": 9, - "totalUnique": 7, - "unique": { - "#87251c": 2, - "#19a972": 1, - "#006fc6": 2, - "#18a46f": 1, - "#ff6411": 1, - "#e62143": 1, - "#41b14f": 1 - }, - "uniquenessRatio": 0.7777777777777778 - }, - "--promo-shadow": { - "total": 2, - "totalUnique": 1, - "unique": { - "#350f0b": 2 - }, - "uniquenessRatio": 0.5 - }, - "background": { - "total": 228, - "totalUnique": 60, - "unique": { - "#fff": 58, - "#fff2ea": 2, - "#d33a2c": 37, - "#333": 4, - "#adfbda": 1, - "#97dcf9": 1, - "#fda399": 1, - "#94fb9e": 1, - "#f7ff99": 1, - "#a5a5a5": 2, - "#bbb": 2, - "#ddfbee": 1, - "#caedfb": 1, - "#fdcfca": 1, - "#cefdd3": 1, - "#f7fbca": 1, - "#f6f3f2": 2, - "#b3d4fc": 8, - "#fafafa": 1, - "#fff2cc": 9, - "#ed968e": 1, - "rgba(0, 0, 0, .1)": 1, - "#0168b8": 1, - "#282634": 2, - "#41b14f": 10, - "#eee": 6, - "rgba(0, 0, 0, .5)": 1, - "#e94b35": 1, - "#f88040": 1, - "#f6f6f6": 9, - "green": 1, - "rgba(0, 0, 0, .2)": 1, - "#f7f7f7": 1, - "#0e6fc7": 2, - "#2da2c5": 7, - "#009245": 3, - "#bc3428": 4, - "rgba(89, 94, 94, .09)": 1, - "rgba(89, 94, 94, 0)": 1, - "#ddd": 3, - "#811d15": 2, - "#e5e5e5": 3, - "transparent": 6, - "#f5f5f5": 1, - "#bfbfbf": 1, - "#9ec14c": 5, - "#fdfdfd": 3, - "#c4c4c4": 3, - "#000": 1, - "#c13125": 1, - "#390c09": 1, - "#fff9e6": 1, - "#0a1e2d": 1, - "#eff": 1, - "rgba(255, 255, 255, .9)": 1, - "#666": 1, - "#444": 1, - "#be2626": 1, - "#a92222": 1, - "#202020": 1 - }, - "uniquenessRatio": 0.2631578947368421 - }, - "text-shadow": { - "total": 74, - "totalUnique": 9, - "unique": { - "rgba(0, 0, 0, .3)": 10, - "#fff": 8, - "rgba(0, 0, 0, .25)": 42, - "rgba(0, 0, 0, .5)": 3, - "rgba(0, 0, 0, .6)": 2, - "rgba(0, 0, 0, .4)": 3, - "#383636": 2, - "rgba(0, 0, 0, .8)": 2, - "rgba(0, 0, 0, .9)": 2 - }, - "uniquenessRatio": 0.12162162162162163 - }, - "border-color": { - "total": 29, - "totalUnique": 13, - "unique": { - "#dadada": 4, - "#41b14f": 5, - "#666": 1, - "#8fcbe2": 1, - "#eee": 2, - "#f88040": 1, - "#aaa": 1, - "#d33a2c": 6, - "transparent": 2, - "#777": 2, - "#fff": 2, - "#ddd": 1, - "#811d15": 1 - }, - "uniquenessRatio": 0.4482758620689655 - }, - "border-bottom": { - "total": 30, - "totalUnique": 10, - "unique": { - "#d33a2c": 4, - "#fff": 3, - "#ddd": 12, - "#811d15": 1, - "#eee": 5, - "#767676": 1, - "#be2626": 1, - "#e5e5e5": 1, - "#eeecec": 1, - "#e3e3e3": 1 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "background-image": { - "total": 113, - "totalUnique": 46, - "unique": { - "currentColor": 12, - "#9ec14c": 7, - "#41b14f": 11, - "white": 3, - "#f0f0f0": 3, - "#ddd": 16, - "#f88040": 7, - "#d33a2c": 6, - "#0d84e1": 1, - "#0168b8": 1, - "#3f3c51": 1, - "#282634": 2, - "#fff": 2, - "#dcdede": 1, - "#e33a2c": 2, - "#123456": 1, - "#007aea": 1, - "#0085ff": 1, - "#ce05a9": 1, - "#3e62ff": 1, - "#009245": 1, - "#8bc53f": 1, - "#76d0a4": 1, - "#7ab99a": 1, - "#1b71bb": 2, - "#4399d9": 3, - "#ccc": 2, - "#1b528a": 1, - "#003d5b": 1, - "#213744": 1, - "#184155": 1, - "#48a08f": 1, - "#1a7362": 1, - "#49241c": 2, - "#3a1c17": 2, - "#39408f": 1, - "#4f49ab": 1, - "#2a97af": 1, - "#226d79": 1, - "#658430": 1, - "#475b22": 1, - "#1b75bb": 1, - "#2b388f": 1, - "#333": 2, - "#202020": 1, - "#01a6c1": 1 - }, - "uniquenessRatio": 0.40707964601769914 - }, - "--card-color": { - "total": 10, - "totalUnique": 6, - "unique": { - "#18a46f": 2, - "#f55700": 2, - "#aa1994": 2, - "#31a1bd": 2, - "#0065bd": 1, - "#e62143": 1 - }, - "uniquenessRatio": 0.6 - }, - "outline-color": { - "total": 4, - "totalUnique": 1, - "unique": { - "#811d15": 4 - }, - "uniquenessRatio": 0.25 - }, - "text-decoration-color": { - "total": 47, - "totalUnique": 21, - "unique": { - "#d33a2c": 3, - "#fff": 11, - "#000": 3, - "currentColor": 3, - "#767676": 1, - "#006fc6": 7, - "#c2c2c2": 1, - "#666": 3, - "#e58980": 1, - "#55a6f1": 1, - "#adeccc": 1, - "#ed60d3": 1, - "#74c49a": 1, - "#2da2c5": 3, - "#ff958b": 1, - "#ddd": 1, - "#390c09": 1, - "#aaa": 1, - "#9a97a9": 1, - "rgba(255, 255, 255, .3)": 1, - "#e5e5e5": 1 - }, - "uniquenessRatio": 0.44680851063829785 - }, - "border-left": { - "total": 11, - "totalUnique": 2, - "unique": { - "transparent": 5, - "#ddd": 6 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "border-right": { - "total": 6, - "totalUnique": 3, - "unique": { - "transparent": 4, - "#bbb": 1, - "#ddd": 1 - }, - "uniquenessRatio": 0.5 - }, - "fill": { - "total": 9, - "totalUnique": 5, - "unique": { - "#fff": 4, - "#666": 1, - "#e33b2a": 1, - "#333": 1, - "currentColor": 2 - }, - "uniquenessRatio": 0.5555555555555556 - }, - "scrollbar-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "#666": 1, - "#ccc": 1 - }, - "uniquenessRatio": 1 - }, - "border-image": { - "total": 7, - "totalUnique": 6, - "unique": { - "#fff": 2, - "#4af9ae": 1, - "#54c8f9": 1, - "#f76d5e": 1, - "#74fd81": 1, - "#ebf75b": 1 - }, - "uniquenessRatio": 0.8571428571428571 - }, - "-webkit-text-decoration-color": { - "total": 46, - "totalUnique": 21, - "unique": { - "#fff": 11, - "#000": 3, - "#d33a2c": 2, - "currentColor": 3, - "#767676": 1, - "#006fc6": 7, - "#c2c2c2": 1, - "#666": 3, - "#e58980": 1, - "#55a6f1": 1, - "#adeccc": 1, - "#ed60d3": 1, - "#74c49a": 1, - "#2da2c5": 3, - "#ff958b": 1, - "#ddd": 1, - "#390c09": 1, - "#aaa": 1, - "#9a97a9": 1, - "rgba(255, 255, 255, .3)": 1, - "#e5e5e5": 1 - }, - "uniquenessRatio": 0.45652173913043476 - }, - "-webkit-text-fill-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#333": 1 - }, - "uniquenessRatio": 1 - }, - "-webkit-box-shadow": { - "total": 4, - "totalUnique": 3, - "unique": { - "rgba(0, 0, 0, .2)": 2, - "#e6f8e8": 1, - "#feeef0": 1 - }, - "uniquenessRatio": 0.75 - }, - "-webkit-text-decoration-line": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "text-decoration-line": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "--bio-image-border-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff": 1 - }, - "uniquenessRatio": 1 - }, - "stroke": { - "total": 2, - "totalUnique": 2, - "unique": { - "#fff": 1, - "#333": 1 - }, - "uniquenessRatio": 1 - }, - "--format-type": { - "total": 6, - "totalUnique": 6, - "unique": { - "#3ea2f1": 1, - "#006fc6": 1, - "#9ec14c": 1, - "#41b14f": 1, - "#f56092": 1, - "#e91e63": 1 - }, - "uniquenessRatio": 1 - }, - "border-top": { - "total": 8, - "totalUnique": 3, - "unique": { - "#ddd": 5, - "#fff": 1, - "#eee": 2 - }, - "uniquenessRatio": 0.375 - }, - "--box-yellow": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fff9e6": 1 - }, - "uniquenessRatio": 1 - }, - "--box-blue": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f0f9fc": 1 - }, - "uniquenessRatio": 1 - }, - "--box-green": { - "total": 1, - "totalUnique": 1, - "unique": { - "#f2faf3": 1 - }, - "uniquenessRatio": 1 - }, - "--box-orange": { - "total": 1, - "totalUnique": 1, - "unique": { - "#fef6f1": 1 - }, - "uniquenessRatio": 1 - }, - "filter": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0, 0, 0, .15)": 1 - }, - "uniquenessRatio": 1 - }, - "--bg-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(222, 222, 222, 0.2)": 1, - "rgba(0, 0, 0, 0.18)": 1 - }, - "uniquenessRatio": 1 - }, - "--text-color": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(255, 255, 255, 0.8)": 1, - "rgba(255, 255, 255, 0.9)": 1 - }, - "uniquenessRatio": 1 - } - }, - "formats": { - "total": 1798, - "totalUnique": 7, - "unique": { - "hex3": 731, - "system": 3, - "rgba": 206, - "hex6": 783, - "named": 14, - "currentcolor": 22, - "transparent": 39 - }, - "uniquenessRatio": 0.00389321468298109 - } - }, - "gradients": { - "total": 83, - "totalUnique": 48, - "unique": { - "linear-gradient(currentColor, currentColor)": 6, - "linear-gradient(#9ec14c, #41b14f)": 12, - "linear-gradient(var(--card-color, #41b14f), var(--card-color, #41b14f))": 2, - "linear-gradient(130deg, #fff 0, #4af9ae 10%, #54c8f9 30%, #f76d5e 50%, #74fd81 70%, #ebf75b 90%, #fff 100%)": 1, - "linear-gradient(130deg, #fff 0, #adfbda 10%, #97dcf9 30%, #fda399 50%, #94fb9e 70%, #f7ff99 90%, #fff 100%)": 1, - "linear-gradient(90deg, #bbb 0, #a5a5a5 50%, #bbb 100%)": 1, - "linear-gradient(90deg, #fff 0, #ddfbee 10%, #caedfb 30%, #fdcfca 50%, #cefdd3 70%, #f7fbca 100%)": 1, - "linear-gradient(white, #f0f0f0)": 3, - "linear-gradient(#ddd, #ddd)": 8, - "linear-gradient(to bottom, #f88040, #d33a2c)": 6, - "linear-gradient(#0d84e1, #0168b8)": 1, - "linear-gradient(#3f3c51, #282634)": 1, - "linear-gradient(#fff, #dcdede)": 1, - "linear-gradient(to bottom, #f88040, #e33a2c)": 2, - "linear-gradient(#282634, #123456)": 1, - "linear-gradient(#007aea 20%, #0085ff 100%)": 1, - "linear-gradient(#ce05a9 10%, #3e62ff 100%)": 1, - "linear-gradient(#009245 50%, #8bc53f 100%)": 1, - "linear-gradient(#76d0a4 50%, #7ab99a 100%)": 1, - "linear-gradient(#1b71bb 45%, #4399d9 100%)": 1, - "linear-gradient(#4399d9, #4399d9)": 1, - "radial-gradient(128.42% 48.36% at 72.89% 25.8%, rgba(89, 94, 94, .09) 0, rgba(89, 94, 94, 0) 100%)": 1, - "linear-gradient(#3ea2f1, #006fc6)": 1, - "linear-gradient(#f56092, #e91e63)": 1, - "linear-gradient(to right, #ccc 50%, #fff 50%)": 1, - "linear-gradient(to right, #ccc 50%, var(--box-background) 50%)": 1, - "linear-gradient(90deg, #e5e5e5 1px, #e5e5e5 1px, transparent 1px)": 1, - "linear-gradient(90deg, #41b14f 1px, #fff 1px, #fff 1px)": 1, - "linear-gradient(90deg, #2da2c5 1px, #fff 1px, #fff 1px)": 1, - "linear-gradient(#f5f5f5, #eee 42.857%, #bfbfbf)": 1, - "linear-gradient(to right, #9ec14c, #41b14f 13em, #2da2c5)": 1, - "linear-gradient(#fdfdfd, #c4c4c4)": 3, - "linear-gradient(45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%)": 1, - "linear-gradient(-45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%)": 1, - "linear-gradient(#1b528a 60%, #003d5b 100%)": 1, - "linear-gradient(#213744 12%, #184155 100%)": 1, - "linear-gradient(#48a08f 10%, #1a7362 100%)": 1, - "linear-gradient(#49241c 40%, #3a1c17 100%)": 2, - "linear-gradient(#39408f 40%, #4f49ab 100%)": 1, - "linear-gradient(#2a97af 40%, #226d79 100%)": 1, - "linear-gradient(#658430 40%, #475b22 100%)": 1, - "linear-gradient(#1b75bb 40%, #2b388f 100%)": 1, - "linear-gradient(to bottom, #eee, #ddd)": 1, - "linear-gradient(to bottom, #666, #444)": 1, - "linear-gradient(to bottom, #be2626, #a92222)": 1, - "linear-gradient(to bottom, var(--THEME_COLOR, #d33a2c), #333)": 1, - "linear-gradient(to bottom, var(--card-color, #202020), #333)": 1, - "linear-gradient(#1b71bb 60%, #01a6c1 100%)": 1 - }, - "uniquenessRatio": 0.5783132530120482 - }, - "fontFamilies": { - "total": 309, - "totalUnique": 18, - "unique": { - "Elena": 44, - "Mija": 111, - "-apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, segoe ui, system-ui, Arial, sans-serif": 1, - "Mija, -apple-system, BlinkMacSystemFont, Roboto, roboto slab, droid serif, segoe ui, system-ui, Arial, sans-serif": 1, - "Elena, -apple-system, BlinkMacSystemFont, Roboto, roboto slab, droid serif, segoe ui, system-ui, Arial, sans-serif": 1, - "Fira Code, Menlo, Consolas, Monaco, andale mono, ubuntu mono, monospace": 1, - "-apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Arial, sans-serif": 2, - "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, system-ui, \"Open Sans\", \"Helvetica Neue\", Arial, sans-serif": 2, - "monospace": 4, - "monospace, monospace": 2, - "-apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif": 39, - "-apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif": 95, - "Fira Code, Menlo, Consolas, Monaco, \"Andale Mono\", \"Ubuntu Mono\", monospace": 1, - "Fira Code, Menlo, Courier new, Consolas, monospace": 1, - "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif": 1, - "DinMedium": 1, - "Arial, serif": 1, - "-apple-system, Arial, BlinkMacSystemFont, roboto slab, droid serif, segoe ui, Ubuntu, Cantarell, Georgia, serif": 1 - }, - "uniquenessRatio": 0.05825242718446602 - }, - "fontSizes": { - "total": 465, - "totalUnique": 102, - "unique": { - "1.125em": 2, - ".94em": 1, - "1em": 51, - ".8em": 40, - "calc(18px + 1.1vw)": 2, - "calc(1.625rem + 1.3vw)": 2, - ".9em": 73, - "1.2em": 13, - "1.5em": 15, - "1.15em": 9, - "80%": 3, - ".75em": 25, - "calc(.75em + .1vw)": 3, - "calc(1.625rem + 1.6vw)": 3, - "calc(1.375rem + 1.6vw)": 3, - ".35em": 3, - "calc(.9em + .1vw)": 6, - "calc(18px + 1vw)": 2, - ".7em": 21, - "75%": 3, - "calc(.35842vw + .95296em)": 1, - "calc(1.125rem + .25vw)": 2, - "2.13894em": 2, - "2.14857em": 2, - "1.05em": 4, - "1.15rem": 2, - "calc(1em + .1vw)": 4, - "calc(.975em + .2vw)": 2, - "1.4rem": 3, - "calc(1em + .25vw)": 4, - "1rem": 3, - ".85em": 19, - "1.1em": 17, - "calc(.3584229391vw + .9529569892em)": 1, - "1.625em": 2, - "calc(.8em + .2vw)": 3, - ".95em": 6, - "calc(1.5rem + .25vw)": 1, - "calc(1rem + .25vw)": 2, - ".3em": 1, - "calc(1.08rem + .55vw)": 1, - "calc(1.1rem + .25vw)": 1, - ".6em": 5, - "calc(1.3em + .2vw)": 1, - "calc(1em + (.4vw + .25vh)/ 2)": 1, - "1.25em": 1, - "30px": 3, - "calc(40px + .5vw)": 1, - "1.6em": 4, - "calc(.9em + .3vw)": 1, - "1.125rem": 2, - "calc(.8em + .1vw)": 2, - "1.65em": 1, - "62.5%": 1, - "20px": 1, - "32px": 2, - "15px": 1, - ".5em": 7, - "12px": 1, - "1.55em": 1, - "calc(16px + .25vw)": 1, - "14px": 3, - "24px": 2, - ".65em": 4, - "calc(.625vw + 1.375em)": 1, - "1.875em": 1, - ".55em": 2, - "calc(.7em + .1vw)": 2, - "1.3em": 8, - "1.4em": 3, - ".45em": 1, - "calc(22px + 1.75vw)": 1, - "calc(18px + .25vw)": 1, - "calc(.86em + .05vw)": 1, - "2em": 3, - "calc(1em + .2vw)": 1, - "calc(.8rem + .5vw)": 1, - "calc(.9em + .5vw)": 2, - "calc(.8em + .5vw)": 1, - "calc(1em + .5vw)": 1, - "1.5rem": 1, - "calc(2.3em + 2vw)": 1, - "calc(3.65em + 2vw)": 1, - "calc(.8em + .25vw)": 2, - "calc(1.25em + .25vw)": 1, - "calc(1.5em + .25vw)": 1, - "calc(1.6em + .25vw)": 1, - "calc(.9rem + .25vw)": 1, - "100%": 1, - "calc(1.2rem + .25vw)": 1, - "calc(22px + 1vw)": 1, - "13px": 2, - "16px": 1, - "calc(16px + .35vw)": 1, - "calc(1.25em + .5vw)": 1, - "28px": 1, - "2.75em": 1, - ".87em": 1, - "calc(.8em + .35vw)": 1, - "2.5em": 1, - "3em": 2, - "calc(.95em + .1vw)": 2 - }, - "uniquenessRatio": 0.21935483870967742 - }, - "lineHeights": { - "total": 129, - "totalUnique": 38, - "unique": { - "0": 12, - "1": 17, - "1.15": 3, - "1.2": 11, - "1.5em": 16, - "calc(1.5em + .2vw)": 6, - "calc(1.3em + .2 * (100vw - 21em)/14)": 1, - "1.5": 12, - "1.35em": 1, - "1.55em": 2, - "calc(1.3em + .2 * (100vw - 21em)/ 14)": 1, - "calc(1.65em + .2vw)": 1, - "1.6": 2, - "normal": 1, - "1.3em": 4, - "1.15em": 1, - ".6": 1, - "15px": 2, - "1.7": 1, - "28px": 1, - "22.4px": 1, - "1.6em": 3, - "1.4em": 3, - "150%": 2, - "1.4": 9, - "1.8": 1, - "1.3": 3, - "1.1em": 1, - "1.45": 1, - "1.2em": 1, - "100px": 1, - "46px": 1, - "42px": 1, - "38px": 1, - "1em": 1, - "2em": 1, - "calc(1.4em + .2vw)": 1, - "1.65": 1 - }, - "uniquenessRatio": 0.29457364341085274 - }, - "zindexes": { - "total": 87, - "totalUnique": 19, - "unique": { - "0": 7, - "1": 18, - "2": 17, - "3": 1, - "4": 1, - "9": 8, - "10": 9, - "11": 4, - "12": 3, - "13": 1, - "20": 2, - "50": 1, - "99": 4, - "100": 1, - "500": 1, - "999": 1, - "1000": 3, - "-999": 2, - "-1": 3 - }, - "uniquenessRatio": 0.21839080459770116 - }, - "textShadows": { - "total": 69, - "totalUnique": 10, - "unique": { - "1px 1px 1px rgba(0, 0, 0, .3)": 10, - "0 1px #fff": 2, - "1px 1px 1px rgba(0, 0, 0, .25)": 42, - "#fff 3px 0, #fff 2px 0, #fff 1px 0, #fff -1px 0, #fff -2px 0, #fff -3px 0": 1, - "1px 1px 1px rgba(0, 0, 0, .5)": 3, - "1px 1px 1px rgba(0, 0, 0, .6)": 2, - "1px 1px 1px rgba(0, 0, 0, .4)": 3, - "1px 2px 2px #383636": 2, - "1px 1px 1px rgba(0, 0, 0, .8)": 2, - "1px 1px 1px rgba(0, 0, 0, .9)": 2 - }, - "uniquenessRatio": 0.14492753623188406 - }, - "boxShadows": { - "total": 76, - "totalUnique": 44, - "unique": { - "0 13px 7px -15px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025)": 2, - "0 0 1px 1px rgba(0, 0, 0, .15)": 2, - "0 2px 6px rgba(0, 0, 0, .12)": 2, - "inset 0 3px 3px rgba(0, 0, 0, .3)": 6, - "0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025)": 9, - "0 1px 7px -5px rgba(50, 50, 93, .25), 0 3px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025)": 1, - "0 1px 1px rgba(0, 0, 0, .3)": 5, - "0 1px 1px rgba(0, 0, 0, .5)": 2, - "0 6px 40px rgba(0, 0, 0, .3)": 4, - "0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, 3%)": 1, - "0 1px 7px -5px rgba(50, 50, 93, .25), 0 3px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, 3%)": 1, - "0 4px 20px rgba(0, 0, 0, .12)": 1, - "inset 0 1px 3px rgba(0, 0, 0, .12)": 1, - "0 5px 10px rgba(0, 0, 0, .2)": 3, - "0 4px 20px 0 rgba(0, 0, 0, .12)": 1, - "inset 0 1px 3px 0 rgba(0, 0, 0, .12)": 1, - "1px 1px 0 #d33a2c, 2px 2px 0 #d33a2c": 1, - "0 30px 60px -12px rgba(50, 50, 93, .25), 0 18px 36px -18px rgba(0, 0, 0, .3), 0 -12px 36px -8px rgba(0, 0, 0, .025)": 1, - "0 9px 30px -5px rgba(50, 50, 83, .25), 0 8px 8px -12px rgba(0, 0, 0, .2), 0 -6px 16px -6px rgba(0, 0, 0, .025)": 2, - "0 0 0 1em #fff": 1, - "0 0 0 1em #f6f6f6": 1, - "0 0 3px -1px rgba(50, 50, 93, .25), 0 4px 12px -6px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .025)": 1, - "inset 0 1px 1px 0 rgba(0, 0, 0, .2)": 1, - "inset 0 0 1px 0 rgba(0, 0, 0, .2), 0 5px 27px -5px rgba(50, 50, 93, .25), 0 8px 10px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .03)": 1, - "inset 0 1px 2px 0 rgba(0, 0, 0, .2)": 2, - "inset 0 1px 2px 0 rgba(0, 0, 0, .2), inset 0 0 0 1000px #e6f8e8": 1, - "inset 0 1px 2px 0 rgba(0, 0, 0, .2), inset 0 0 0 1000px #feeef0": 1, - "#feeef0 0 1px 1px 0 inset": 1, - "0 0 1px transparent": 1, - "0 4px 30px rgba(0, 0, 0, .17)": 2, - "0 -2px 20px rgba(0, 0, 0, .15)": 1, - "0 6px 13px 0 rgba(0, 0, 0, .15)": 1, - "0 0 0 2000px transparent": 1, - "0 0 0 2000px rgba(0, 0, 0, .8)": 1, - "0 2px 6px 0 rgba(0, 0, 0, .12)": 2, - "inset 0 -1px 1px #fff, inset 0 -1px 1px #e5e5e5, inset 0 -1px 1px #e5e5e5, inset 0 -2px 1px #767676": 1, - "0 .375em .5em -.125em grey, inset 0 -.25em .5em -.125em #bbb": 3, - "inset 0 3px 2px #eee": 1, - "0 4px 15px #bebebe": 1, - "inset 0 2px 1px rgba(0, 0, 0, .2)": 1, - "0 1px 1px 0 rgba(0, 0, 0, .25)": 1, - "inset 0 0 50px rgba(0, 0, 0, .1)": 1, - "rgba(0, 0, 0, .2) 0 0 1em": 1, - "0 13px 27px -5px rgba(50, 50, 93, .25), 0 8px 16px -8px rgba(0, 0, 0, .3), 0 -6px 16px -6px rgba(0, 0, 0, .03)": 1 - }, - "uniquenessRatio": 0.5789473684210527 - }, - "borderRadiuses": { - "total": 253, - "totalUnique": 28, - "unique": { - "0": 42, - "11px": 143, - ".883em": 2, - "1.2em": 2, - "5.5px": 3, - ".694rem": 2, - "50%": 11, - "2px": 5, - ".125rem": 1, - "6px": 1, - "4px": 2, - "0 11px 11px 0": 4, - "20px": 1, - "0 100% 100% 0": 1, - "50% 0 0 50%": 1, - "11px 11px 0 0": 7, - "0 0 11px 11px": 1, - "3px": 4, - "22px": 2, - "11px 0 0 0": 2, - "0 11px 0 0": 2, - "100px": 1, - "1.125em": 1, - "1.125em 0 0 1.125em": 1, - "11px 0 0 11px": 6, - ".5em": 2, - "0 1em 1em 0": 1, - "8px": 2 - }, - "uniquenessRatio": 0.11067193675889328, - "itemsPerContext": { - "border-radius": { - "total": 231, - "totalUnique": 28, - "unique": { - "0": 20, - "11px": 143, - ".883em": 2, - "1.2em": 2, - "5.5px": 3, - ".694rem": 2, - "50%": 11, - "2px": 5, - ".125rem": 1, - "6px": 1, - "4px": 2, - "0 11px 11px 0": 4, - "20px": 1, - "0 100% 100% 0": 1, - "50% 0 0 50%": 1, - "11px 11px 0 0": 7, - "0 0 11px 11px": 1, - "3px": 4, - "22px": 2, - "11px 0 0 0": 2, - "0 11px 0 0": 2, - "100px": 1, - "1.125em": 1, - "1.125em 0 0 1.125em": 1, - "11px 0 0 11px": 6, - ".5em": 2, - "0 1em 1em 0": 1, - "8px": 2 - }, - "uniquenessRatio": 0.12121212121212122 - }, - "border-top-left-radius": { - "total": 6, - "totalUnique": 1, - "unique": { - "0": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "border-bottom-left-radius": { - "total": 6, - "totalUnique": 1, - "unique": { - "0": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "border-top-right-radius": { - "total": 5, - "totalUnique": 1, - "unique": { - "0": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-bottom-right-radius": { - "total": 5, - "totalUnique": 1, - "unique": { - "0": 5 - }, - "uniquenessRatio": 0.2 - } - } - }, - "animations": { - "durations": { - "total": 297, - "totalUnique": 19, - "unique": { - ".4s": 21, - ".2s": 102, - ".1s": 53, - ".3s": 55, - "2s": 2, - "5s": 6, - ".5s": 12, - ".6s": 8, - ".8s": 3, - ".15s": 3, - "0s": 7, - "1s": 7, - ".55s": 1, - "1.5s": 2, - ".7s": 3, - ".25s": 2, - ".65s": 2, - "3s": 6, - "6s": 2 - }, - "uniquenessRatio": 0.06397306397306397 - }, - "timingFunctions": { - "total": 223, - "totalUnique": 12, - "unique": { - "ease-in-out": 100, - "linear": 13, - "ease": 9, - "cubic-bezier(.39, .575, .565, 1)": 6, - "ease-out": 83, - "cubic-bezier(.67, .17, .32, .95)": 1, - "cubic-bezier(.175, .885, .32, 1.275)": 1, - "cubic-bezier(.17, .67, .83, .67)": 1, - "cubic-bezier(.785, .135, .15, .86)": 1, - "ease-in": 2, - "cubic-bezier(.77, 0, .175, 1)": 4, - "cubic-bezier(0, 0, .2, 1)": 2 - }, - "uniquenessRatio": 0.053811659192825115 - } - }, - "prefixes": { - "total": 162, - "totalUnique": 20, - "unique": { - "-apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, segoe ui, system-ui, Arial, sans-serif": 1, - "Mija, -apple-system, BlinkMacSystemFont, Roboto, roboto slab, droid serif, segoe ui, system-ui, Arial, sans-serif": 1, - "Elena, -apple-system, BlinkMacSystemFont, Roboto, roboto slab, droid serif, segoe ui, system-ui, Arial, sans-serif": 1, - "-webkit-min-content -webkit-min-content 1fr": 2, - "-webkit-min-content -webkit-min-content 0 minmax(100px, 100%)": 4, - "-webkit-min-content minmax(140px, 2fr)0 minmax(100px, 350px)": 1, - "-webkit-min-content minmax(140px, -webkit-max-content)0 minmax(250px, 600px)": 1, - "-apple-system, BlinkMacSystemFont, Roboto, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Arial, sans-serif": 2, - "-apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, system-ui, \"Open Sans\", \"Helvetica Neue\", Arial, sans-serif": 2, - "-webkit-min-content minmax(140px, 2fr) 0 minmax(100px, 350px)": 3, - "-apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, sans-serif": 39, - "-apple-system, Arial, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Ubuntu, Cantarell, Georgia, serif": 95, - "-webkit-min-content 1px 1px minmax(100px, 350px)": 1, - "-webkit-min-content 1px 1px minmax(100px, 100%)": 1, - "-webkit-max-content": 1, - "-moz-max-content": 1, - "-webkit-min-content minmax(140px, -webkit-max-content) 0 minmax(250px, 600px)": 1, - "-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif": 1, - "-webkit-sticky": 3, - "-apple-system, Arial, BlinkMacSystemFont, roboto slab, droid serif, segoe ui, Ubuntu, Cantarell, Georgia, serif": 1 - }, - "uniquenessRatio": 0.12345679012345678 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 5072, - "totalUnique": 12, - "unique": { - "em": 2232, - "vw": 282, - "px": 1863, - "rem": 218, - "s": 326, - "deg": 75, - "fr": 32, - "vh": 35, - "ms": 2, - "ch": 4, - "cm": 2, - "mm": 1 - }, - "uniquenessRatio": 0.002365930599369085, - "itemsPerContext": { - "font-size": { - "total": 535, - "totalUnique": 5, - "unique": { - "em": 401, - "px": 27, - "vw": 77, - "rem": 29, - "vh": 1 - }, - "uniquenessRatio": 0.009345794392523364 - }, - "margin": { - "total": 315, - "totalUnique": 6, - "unique": { - "em": 273, - "vw": 18, - "px": 12, - "rem": 7, - "vh": 3, - "cm": 2 - }, - "uniquenessRatio": 0.01904761904761905 - }, - "top": { - "total": 126, - "totalUnique": 4, - "unique": { - "px": 47, - "em": 60, - "vw": 11, - "rem": 8 - }, - "uniquenessRatio": 0.031746031746031744 - }, - "margin-left": { - "total": 73, - "totalUnique": 4, - "unique": { - "em": 43, - "rem": 3, - "px": 17, - "vw": 10 - }, - "uniquenessRatio": 0.0547945205479452 - }, - "width": { - "total": 217, - "totalUnique": 5, - "unique": { - "px": 109, - "em": 47, - "rem": 16, - "vw": 40, - "vh": 5 - }, - "uniquenessRatio": 0.02304147465437788 - }, - "height": { - "total": 135, - "totalUnique": 5, - "unique": { - "px": 79, - "rem": 10, - "em": 40, - "vh": 4, - "vw": 2 - }, - "uniquenessRatio": 0.037037037037037035 - }, - "outline": { - "total": 13, - "totalUnique": 2, - "unique": { - "px": 12, - "em": 1 - }, - "uniquenessRatio": 0.15384615384615385 - }, - "outline-offset": { - "total": 5, - "totalUnique": 2, - "unique": { - "px": 4, - "em": 1 - }, - "uniquenessRatio": 0.4 - }, - "padding": { - "total": 768, - "totalUnique": 6, - "unique": { - "em": 624, - "rem": 38, - "px": 67, - "vw": 31, - "vh": 7, - "mm": 1 - }, - "uniquenessRatio": 0.0078125 - }, - "border": { - "total": 66, - "totalUnique": 2, - "unique": { - "px": 64, - "rem": 2 - }, - "uniquenessRatio": 0.030303030303030304 - }, - "border-radius": { - "total": 218, - "totalUnique": 3, - "unique": { - "px": 204, - "em": 11, - "rem": 3 - }, - "uniquenessRatio": 0.013761467889908258 - }, - "box-shadow": { - "total": 301, - "totalUnique": 2, - "unique": { - "px": 280, - "em": 21 - }, - "uniquenessRatio": 0.006644518272425249 - }, - "max-width": { - "total": 114, - "totalUnique": 5, - "unique": { - "px": 72, - "em": 24, - "vw": 12, - "rem": 3, - "ch": 3 - }, - "uniquenessRatio": 0.043859649122807015 - }, - "margin-right": { - "total": 83, - "totalUnique": 4, - "unique": { - "rem": 7, - "em": 55, - "px": 12, - "vw": 9 - }, - "uniquenessRatio": 0.04819277108433735 - }, - "padding-right": { - "total": 34, - "totalUnique": 3, - "unique": { - "rem": 9, - "em": 15, - "px": 10 - }, - "uniquenessRatio": 0.08823529411764706 - }, - "padding-left": { - "total": 94, - "totalUnique": 4, - "unique": { - "rem": 12, - "em": 55, - "vw": 5, - "px": 22 - }, - "uniquenessRatio": 0.0425531914893617 - }, - "margin-top": { - "total": 189, - "totalUnique": 5, - "unique": { - "px": 23, - "em": 133, - "vw": 9, - "rem": 20, - "vh": 4 - }, - "uniquenessRatio": 0.026455026455026454 - }, - "margin-bottom": { - "total": 179, - "totalUnique": 5, - "unique": { - "em": 131, - "px": 15, - "vw": 11, - "rem": 21, - "vh": 1 - }, - "uniquenessRatio": 0.027932960893854747 - }, - "letter-spacing": { - "total": 80, - "totalUnique": 2, - "unique": { - "px": 79, - "em": 1 - }, - "uniquenessRatio": 0.025 - }, - "padding-bottom": { - "total": 64, - "totalUnique": 5, - "unique": { - "em": 46, - "rem": 3, - "vh": 3, - "px": 11, - "vw": 1 - }, - "uniquenessRatio": 0.078125 - }, - "transition": { - "total": 234, - "totalUnique": 1, - "unique": { - "s": 234 - }, - "uniquenessRatio": 0.004273504273504274 - }, - "text-shadow": { - "total": 206, - "totalUnique": 1, - "unique": { - "px": 206 - }, - "uniquenessRatio": 0.0048543689320388345 - }, - "line-height": { - "total": 64, - "totalUnique": 3, - "unique": { - "em": 46, - "vw": 10, - "px": 8 - }, - "uniquenessRatio": 0.046875 - }, - "border-bottom": { - "total": 31, - "totalUnique": 1, - "unique": { - "px": 31 - }, - "uniquenessRatio": 0.03225806451612903 - }, - "background-position": { - "total": 34, - "totalUnique": 3, - "unique": { - "em": 28, - "px": 5, - "vw": 1 - }, - "uniquenessRatio": 0.08823529411764706 - }, - "background-size": { - "total": 71, - "totalUnique": 2, - "unique": { - "em": 50, - "px": 21 - }, - "uniquenessRatio": 0.028169014084507043 - }, - "transform": { - "total": 214, - "totalUnique": 3, - "unique": { - "deg": 66, - "em": 11, - "px": 137 - }, - "uniquenessRatio": 0.014018691588785047 - }, - "--bio-image-border-width": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "grid-template-columns": { - "total": 126, - "totalUnique": 5, - "unique": { - "fr": 32, - "px": 73, - "vw": 10, - "rem": 10, - "ch": 1 - }, - "uniquenessRatio": 0.03968253968253968 - }, - "-moz-column-gap": { - "total": 7, - "totalUnique": 2, - "unique": { - "px": 6, - "em": 1 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "column-gap": { - "total": 7, - "totalUnique": 2, - "unique": { - "px": 6, - "em": 1 - }, - "uniquenessRatio": 0.2857142857142857 - }, - "flex-basis": { - "total": 14, - "totalUnique": 2, - "unique": { - "px": 10, - "em": 4 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "text-decoration-thickness": { - "total": 8, - "totalUnique": 2, - "unique": { - "px": 7, - "em": 1 - }, - "uniquenessRatio": 0.25 - }, - "text-underline-offset": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "scroll-margin-top": { - "total": 2, - "totalUnique": 1, - "unique": { - "rem": 2 - }, - "uniquenessRatio": 0.5 - }, - "left": { - "total": 53, - "totalUnique": 4, - "unique": { - "px": 23, - "em": 20, - "rem": 3, - "vw": 7 - }, - "uniquenessRatio": 0.07547169811320754 - }, - "min-width": { - "total": 23, - "totalUnique": 2, - "unique": { - "px": 22, - "em": 1 - }, - "uniquenessRatio": 0.08695652173913043 - }, - "border-left": { - "total": 11, - "totalUnique": 2, - "unique": { - "px": 10, - "em": 1 - }, - "uniquenessRatio": 0.18181818181818182 - }, - "border-right": { - "total": 6, - "totalUnique": 2, - "unique": { - "px": 5, - "em": 1 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "padding-top": { - "total": 69, - "totalUnique": 5, - "unique": { - "rem": 2, - "em": 43, - "vw": 7, - "px": 15, - "vh": 2 - }, - "uniquenessRatio": 0.07246376811594203 - }, - "min-height": { - "total": 30, - "totalUnique": 5, - "unique": { - "px": 18, - "em": 4, - "vh": 4, - "rem": 2, - "vw": 2 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "bottom": { - "total": 17, - "totalUnique": 3, - "unique": { - "px": 8, - "em": 8, - "rem": 1 - }, - "uniquenessRatio": 0.17647058823529413 - }, - "right": { - "total": 34, - "totalUnique": 3, - "unique": { - "px": 15, - "em": 15, - "vw": 4 - }, - "uniquenessRatio": 0.08823529411764706 - }, - "grid-gap": { - "total": 4, - "totalUnique": 1, - "unique": { - "em": 4 - }, - "uniquenessRatio": 0.25 - }, - "gap": { - "total": 2, - "totalUnique": 1, - "unique": { - "em": 2 - }, - "uniquenessRatio": 0.5 - }, - "--gap": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "flex": { - "total": 5, - "totalUnique": 2, - "unique": { - "px": 3, - "vw": 2 - }, - "uniquenessRatio": 0.4 - }, - "scroll-padding": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "border-left-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "border-image": { - "total": 1, - "totalUnique": 1, - "unique": { - "deg": 1 - }, - "uniquenessRatio": 1 - }, - "background": { - "total": 18, - "totalUnique": 3, - "unique": { - "deg": 8, - "px": 9, - "em": 1 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "-webkit-animation": { - "total": 30, - "totalUnique": 1, - "unique": { - "s": 30 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "animation": { - "total": 30, - "totalUnique": 1, - "unique": { - "s": 30 - }, - "uniquenessRatio": 0.03333333333333333 - }, - "grid-column-gap": { - "total": 3, - "totalUnique": 1, - "unique": { - "rem": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "grid-row-gap": { - "total": 2, - "totalUnique": 2, - "unique": { - "em": 1, - "vw": 1 - }, - "uniquenessRatio": 1 - }, - "max-height": { - "total": 19, - "totalUnique": 4, - "unique": { - "em": 5, - "vh": 1, - "px": 12, - "vw": 1 - }, - "uniquenessRatio": 0.21052631578947367 - }, - "-webkit-animation-duration": { - "total": 5, - "totalUnique": 1, - "unique": { - "s": 5 - }, - "uniquenessRatio": 0.2 - }, - "animation-duration": { - "total": 5, - "totalUnique": 1, - "unique": { - "s": 5 - }, - "uniquenessRatio": 0.2 - }, - "-webkit-transition": { - "total": 2, - "totalUnique": 1, - "unique": { - "s": 2 - }, - "uniquenessRatio": 0.5 - }, - "-webkit-box-shadow": { - "total": 6, - "totalUnique": 1, - "unique": { - "px": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "transition-delay": { - "total": 6, - "totalUnique": 2, - "unique": { - "s": 4, - "ms": 2 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "transition-duration": { - "total": 10, - "totalUnique": 1, - "unique": { - "s": 10 - }, - "uniquenessRatio": 0.1 - }, - "-webkit-animation-delay": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "animation-delay": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "shape-outside": { - "total": 1, - "totalUnique": 1, - "unique": { - "vw": 1 - }, - "uniquenessRatio": 1 - }, - "--author-bio-border-width": { - "total": 2, - "totalUnique": 1, - "unique": { - "px": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-width": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-top": { - "total": 8, - "totalUnique": 2, - "unique": { - "px": 7, - "em": 1 - }, - "uniquenessRatio": 0.25 - }, - "clip": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "-webkit-clip-path": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "clip-path": { - "total": 4, - "totalUnique": 1, - "unique": { - "px": 4 - }, - "uniquenessRatio": 0.25 - }, - "filter": { - "total": 3, - "totalUnique": 1, - "unique": { - "px": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "--stack-margin": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.013728813559322, - "mode": 1, - "range": 1, - "sum": 11962 - }, - "keywords": { - "total": 980, - "totalUnique": 5, - "unique": { - "inherit": 80, - "auto": 281, - "none": 588, - "initial": 27, - "unset": 4 - }, - "uniquenessRatio": 0.00510204081632653 - } - } -} \ No newline at end of file diff --git a/src/__fixtures__/trello-20231008.css b/src/__fixtures__/trello-20231008.css deleted file mode 100644 index 84d90bfb..00000000 --- a/src/__fixtures__/trello-20231008.css +++ /dev/null @@ -1,9025 +0,0 @@ -@font-face { - font-family: 'Charlie Display'; - font-style: normal; - font-display: swap; - font-weight: 100; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/6EnDcOBYnO67MYVJcpQLUc/85d36587de9855f3cd9f4e23f2119cf8/Charlie_Display-Thin.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/5Bpl6vErvLYCi1EdOqI2IK/b57fbec62ffab536b59e311837de9042/Charlie_Display-Thin.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 100; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/67WF3xGxF81QiZRksym42A/cf7c507569cbbee461ff241902706970/Charlie_Display-Thin_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/PanXvQtfIyAqIFbGpM8IM/b9b87b3c6ffee63861eb501a0cb160d1/Charlie_Display-Thin_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: normal; - font-display: swap; - font-weight: 200; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/8JLDocv5sujCQIY4WEZsz/ebe26b857bf93efe919a72c3697afa82/Charlie_Display-Light.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1rikelY7zYfVVcGF0ufCMx/5525e29555ebb0b403de182f334e7f2b/Charlie_Display-Light.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 200; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/8JLDocv5sujCQIY4WEZsz/ebe26b857bf93efe919a72c3697afa82/Charlie_Display-Light.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1rikelY7zYfVVcGF0ufCMx/5525e29555ebb0b403de182f334e7f2b/Charlie_Display-Light.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: normal; - font-display: swap; - font-weight: 400; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/6nq3flI8NfgICrz3jZjLyD/81918253d594b7bb77eb898a468d4328/Charlie_Display-Regular.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/2GTE85R9nfLI58KxINGukf/9d35203b2fe1d4a89031954f118b6c9f/Charlie_Display-Regular.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 400; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/6zBd9BZlMVg6Lzzo0c9JTB/d9954046ee355a5fdbf2c5212675e67e/Charlie_Display-Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/68hDvJoBF5iblYktO69b1g/7fd2a9f3582c8fc11d9d27fcfed38dd8/Charlie_Display-Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: normal; - font-display: swap; - font-weight: 500; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/3KRSiun937K2pXBPYiUwgB/17f578e7699c12924de360e09c018c7c/Charlie_Display-Semibold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/oQSiwcfMwyNafeeJ3DIku/364b1a7409856a36ab05c2b43a1f9bde/Charlie_Display-Semibold.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 500; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/65xdTmUlQXTZEebPv41QKG/d21f19bb0e731f88caa3be64700a49f0/Charlie_Display-Semibold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/T73q5xRByE5hy55AGMp54/67810084a3efdb1999b56f6542c85d01/Charlie_Display-Semibold_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: normal; - font-display: swap; - font-weight: 700; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/55uCHq9XzIzIG8yO7WRqfM/b62779fff17f06743e490f6d98a2001a/Charlie_Display-Bold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/7lMBcxnaE1rq1n9am4LaWV/b17259435611992f2a6ffe48ca213f84/Charlie_Display-Bold.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 700; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/2o3Zm0no6lPnln5cHb7JR6/55f0b66048535d78193f516062ff58e4/Charlie_Display-Bold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/2hEATjlHYKgFNGG3XEE8FL/e5e32f1fdd86414237477cc7130acf13/Charlie_Display-Bold_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: normal; - font-display: swap; - font-weight: 800; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/2QtjA2B9aCIa8HvyZcNWqL/886e02c2b15732bc62dc9550078d991c/Charlie_Display-Black.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/7mOCTVLMRdYynIubPDry0Y/85324db781253d544cf91d5c9078a820/Charlie_Display-Black.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 800; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/42ZnX9r0FEEC9i6aTjhGvx/9928d2d161b763db60a50c3edf0bfe78/Charlie_Display-Black_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/7J5fycblWMmgmMrC850GL9/610d735e3d4680bb111cfb40507beab7/Charlie_Display-Black_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Display'; - font-style: italic; - font-display: swap; - font-weight: 900; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/2aGTtufjwlwNeuEifuVsDA/933ed19de4d808d8c9618a0a96f282f0/Charlie_Display-Ultra.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/61USbw5Es8ifbW4QjjYATl/19979d7f1ff46dfe7c7b79e15aacc4bc/Charlie_Display-Ultra.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: normal; - font-display: swap; - font-weight: 100; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/1vzZOZUcRsW8G3dlrVRc9E/6b8b429a3a35eeda98227874727af9ef/Charlie_Text-Thin.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/csqcs1t6l1ByKLqji08Sd/7354daf990b1232c01f11b79c86b8b73/Charlie_Text-Thin.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: italic; - font-display: swap; - font-weight: 100; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/7JQoYrWJG8qtt0hqnGgei9/6d94ac079ded70cdced3b8b448890c3e/Charlie_Text-Thin_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/XA1kYory8Dhr5QrsKMlYY/df361dee9663b39de9eb21a1279b9399/Charlie_Text-Thin_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: normal; - font-display: swap; - font-weight: 200; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/1rfmGoSYAfdBOsdsg9qKLL/9ea188cbd87592d6ab6012f191958252/Charlie_Text-Light.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1XWcCzbf5viNQnIbOqfeI4/8ccdfc8336f9ecb15e2f849c3fc51340/Charlie_Text-Light.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: italic; - font-display: swap; - font-weight: 200; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/6S05s3tlC46wX9fKFizj1K/2cfa443b8c44adce54d1159035e38b23/Charlie_Text-Light_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3kW42zdybmQkfndtF54bd1/910ddde712b570829f385b62476b2ea9/Charlie_Text-Light_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: normal; - font-display: swap; - font-weight: 400; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/41EruTPEOU9hcBwH94UVuZ/73ac40404d750278b451bf2adf186b1b/Charlie_Text-Regular.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/6h4LgfzSDGYFyOvrNTr21p/99d04355f5ef0b92b882013bb0857cf9/Charlie_Text-Regular.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: normal; - font-display: swap; - font-weight: 500; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/2d4nxzJwX8hfIqUN71D4OD/5e2c0c2a3677d935e91dd46635d5149d/Charlie_Text-Semibold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/4Y73c86mEJg3PJBgQe0L8t/a5d27d39320e9703ed48dd3bdb308408/Charlie_Text-Semibold.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: italic; - font-display: swap; - font-weight: 500; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/6oQuHbLiijMuGvWxuUyHsz/62fe2908bcad6b7e9fef8ca4db7f0f53/Charlie_Text-Semibold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3pI1pIJKtGUJG42qu4eZSU/56114eff490f7cc794552a7c9b4c8c8b/Charlie_Text-Semibold_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: normal; - font-display: swap; - font-weight: 700; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/6fvn66mVrRz4Yw3gQoPaJJ/458e6a69f0036d1e566e028fcbc26a50/Charlie_Text-Bold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3JvzHM3Atfe3nL2nvb4AqL/5bb9a76be7a4b053dbb276d9ffc6654a/Charlie_Text-Bold.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: italic; - font-display: swap; - font-weight: 700; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/3nA8vWk7MPMalamC0inRjz/11825f8df63da9f9b792cb5478e32bd5/Charlie_Text-Bold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/5Ba4myVpyls8UQB3g5MPQj/86da6172a058cc143a707f21f5e5d058/Charlie_Text-Bold_Italic.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: normal; - font-display: swap; - font-weight: 800; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/2AZXOOAKgaXV55fqGI098Y/bb085d34b97c542aedea66d5e4d9bc95/Charlie_Text-Black.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3czBeZah9GZg8dI5cMd2er/7a13c24355717ba63712c3550921339f/Charlie_Text-Black.woff) format('woff'); -} - -/*!sc*/ - -@font-face { - font-family: 'Charlie Text'; - font-style: italic; - font-display: swap; - font-weight: 800; - src: url(//assets.ctfassets.net/rz1oowkt5gyp/59WTxSNNVWGolxmuwpW2j4/87fd7ad49eedaf1949839a7395399b6a/Charlie_Text-Black_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1UikYvlUIsLZk1JeznIrD8/87bd38612d2caae1f6ebd621027cbc4e/Charlie_Text-Black_Italic.woff) format('woff'); -} - -/*!sc*/ - -*, -*::before, -*::after { - box-sizing: border-box; -} - -/*!sc*/ - -body { - background-color: rgba(255,255,255,1); - color: rgba(9,30,66,1); - margin: 0; - font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - -webkit-text-size-adjust: 100%; - text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0,0,0,0); -} - -/*!sc*/ - -body a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -body a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -body *:focus { - outline: 2px solid rgba(9,30,66,1); -} - -/*!sc*/ - -body *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -hr { - margin: 1rem 0; - color: inherit; - background-color: currentColor; - border: 0; - opacity: 0.125; -} - -/*!sc*/ - -hr:not([size]) { - height: 1px; -} - -/*!sc*/ - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -/*!sc*/ - -abbr[title], -abbr[data-original-title] { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none; -} - -/*!sc*/ - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -/*!sc*/ - -ol, -ul { - padding-left: 2rem; -} - -/*!sc*/ - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -/*!sc*/ - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -/*!sc*/ - -dt { - font-weight: 700; -} - -/*!sc*/ - -dd { - margin-bottom: 0.5rem; - margin-left: 0; -} - -/*!sc*/ - -blockquote { - margin: 0 0 1rem; -} - -/*!sc*/ - -b, -strong { - font-weight: bolder; -} - -/*!sc*/ - -small { - font-size: 0.875em; -} - -/*!sc*/ - -sub, -sup { - position: relative; - font-size: 0.75em; - line-height: 0; - vertical-align: baseline; -} - -/*!sc*/ - -sub { - bottom: -0.25em; -} - -/*!sc*/ - -sup { - top: -0.5em; -} - -/*!sc*/ - -a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -a:not([href]), -a:not([href]):hover { - color: inherit; -} - -/*!sc*/ - -pre, -code, -kbd, -samp { - font-family: 'SFMono-Medium','SF Mono','Segoe UI Mono','Roboto Mono','Ubuntu Mono',Menlo,Consolas,Courier,monospace; - font-size: 1em; -} - -/*!sc*/ - -pre { - display: block; - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - font-size: 0.875em; -} - -/*!sc*/ - -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -/*!sc*/ - -code { - font-size: 0.875em; - color: rgba(134,36,67,1); - word-wrap: break-word; -} - -/*!sc*/ - -a > code { - color: inherit; -} - -/*!sc*/ - -kbd { - padding: 0.2rem 0.4rem; - font-size: 0.875em; - color: rgba(255,255,255,1); - background-color: rgba(9,30,66,1); - border-radius: 0.2rem; -} - -/*!sc*/ - -kbd kbd { - padding: 0; - font-size: 1em; - font-weight: 700; -} - -/*!sc*/ - -figure { - margin: 0 0 1rem; -} - -/*!sc*/ - -img { - vertical-align: middle; -} - -/*!sc*/ - -svg { - overflow: hidden; - vertical-align: middle; -} - -/*!sc*/ - -table { - border-collapse: collapse; -} - -/*!sc*/ - -caption { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - color: rgba(122,134,154,1); - text-align: left; - caption-side: bottom; -} - -/*!sc*/ - -th { - text-align: inherit; -} - -/*!sc*/ - -label { - display: inline-block; - margin-bottom: 0.25rem; -} - -/*!sc*/ - -button { - border-radius: 0; -} - -/*!sc*/ - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -/*!sc*/ - -button, -input { - overflow: visible; -} - -/*!sc*/ - -button, -select { - text-transform: none; -} - -/*!sc*/ - -select { - word-wrap: normal; -} - -/*!sc*/ - -[list]::-webkit-calendar-picker-indicator { - display: none; -} - -/*!sc*/ - -button, -[type='button'], -[type='reset'], -[type='submit'] { - -webkit-appearance: button; -} - -/*!sc*/ - -button:not(:disabled), -[type='button']:not(:disabled), -[type='reset']:not(:disabled), -[type='submit']:not(:disabled) { - cursor: pointer; -} - -/*!sc*/ - -::-moz-focus-inner { - padding: 0; - border-style: none; -} - -/*!sc*/ - -input[type='date'], -input[type='time'], -input[type='datetime-local'], -input[type='month'] { - -webkit-appearance: textfield; -} - -/*!sc*/ - -textarea { - overflow: auto; - resize: vertical; -} - -/*!sc*/ - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -/*!sc*/ - -legend { - width: 100%; - padding: 0; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -/*!sc*/ - -mark { - padding: 0.2em; - background-color: rgba(255,250,229,1); -} - -/*!sc*/ - -progress { - vertical-align: baseline; -} - -/*!sc*/ - -::-webkit-datetime-edit { - overflow: visible; - line-height: 0; -} - -/*!sc*/ - -[type='search'] { - outline-offset: -2px; - -webkit-appearance: textfield; -} - -/*!sc*/ - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -/*!sc*/ - -::-webkit-color-swatch-wrapper { - padding: 0; -} - -/*!sc*/ - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -/*!sc*/ - -output { - display: inline-block; -} - -/*!sc*/ - -summary { - display: list-item; - cursor: pointer; -} - -/*!sc*/ - -template { - display: none; -} - -/*!sc*/ - -main { - display: block; -} - -/*!sc*/ - -[hidden] { - display: none; -} - -/*!sc*/ - -:root { - --font-family-text: 'Charlie Text',sans-serif; - --font-family-display: 'Charlie Display',sans-serif; - font-size: 16px; -} - -/*!sc*/ - -body { - font-family: var(--font-family-text,'Charlie Text',sans-serif); - font-size: 1.25rem; - min-height: 100vh; -} - -/*!sc*/ - -body.prevent-scroll { - overflow: hidden; -} - -/*!sc*/ - -.app-root { - min-height: 100vh; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; -} - -/*!sc*/ - -.app-root > div, -.app-root > header, -.app-root > main, -.app-root > footer { - width: 100%; -} - -/*!sc*/ - -.app-root > :not(main) { - -webkit-box-flex: 0; - -webkit-flex-grow: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -webkit-flex-shrink: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} - -/*!sc*/ - -.app-root > main { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -/*!sc*/ - -html[lang='vi'] body { - --font-family-text: -apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu','Fira Sans','Droid Sans','Helvetica Neue',sans-serif; -} - -/*!sc*/ - -h1, -.h1 { - font-family: var(--font-family-display,'Charlie Display',sans-serif); - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 2rem; - line-height: 1.25; -} - -/*!sc*/ - -@media (min-width:768px) { - h1, - .h1 { - font-size: 2.75rem; - line-height: 1.18181818; - } -} - -/*!sc*/ - -@media (min-width:992px) { - h1, - .h1 { - font-size: 3rem; - line-height: 1.25; - } -} - -/*!sc*/ - -h2, -.h2 { - font-family: var(--font-family-display,'Charlie Display',sans-serif); - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1.5rem; - line-height: 1.33333333; -} - -/*!sc*/ - -@media (min-width:768px) { - h2, - .h2 { - font-size: 2.25rem; - line-height: 1.33333333; - } -} - -/*!sc*/ - -h3, -.h3 { - font-family: var(--font-family-display,'Charlie Display',sans-serif); - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1.25rem; - line-height: 1.2; -} - -/*!sc*/ - -@media (min-width:768px) { - h3, - .h3 { - font-size: 1.5rem; - line-height: 1.33333333; - } -} - -/*!sc*/ - -h4, -.h4 { - font-family: var(--font-family-display,'Charlie Display',sans-serif); - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1rem; - line-height: 1.25; -} - -/*!sc*/ - -@media (min-width:768px) { - h4, - .h4 { - font-size: 1.25rem; - line-height: 1.2; - } -} - -/*!sc*/ - -h5, -.h5 { - font-family: var(--font-family-display,'Charlie Display',sans-serif); - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1rem; - line-height: 1.25; - text-transform: uppercase; -} - -/*!sc*/ - -h6, -.h6 { - font-size: 1rem; - font-weight: 500; - line-height: 1.2; - margin-bottom: 0.5rem; - margin-top: 0; -} - -/*!sc*/ - -p { - margin-bottom: 1.5rem; -} - -/*!sc*/ - -img { - max-width: 100%; - height: auto; -} - -/*!sc*/ - -.tooltip-content a { - color: rgba(255,255,255,1); -} - -/*!sc*/ - -.tooltip-content p { - margin-bottom: 0.5rem; -} - -/*!sc*/ - -.tooltip-content p:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g4[id="sc-global-hIhTQv1"] { - content: "sc-global-hIhTQv1,"; -} - -/*!sc*/ - -.dkkioH { - overflow: hidden; - -webkit-transition: height 0.3s ease; - transition: height 0.3s ease; -} - -/*!sc*/ - -data-styled.g6[id="BigNavstyles__DetailWrapper-sc-1mttgq7-0"] { - content: "dkkioH,"; -} - -/*!sc*/ - -.hNNfeR { - background-color: rgba(9,30,66,0); - display: none; - height: 0; - left: 0; - position: fixed; - right: 0; - top: 0; - -webkit-transition: background-color 0.6s ease,height 0s linear 0.6s; - transition: background-color 0.6s ease,height 0s linear 0.6s; - z-index: 90; -} - -/*!sc*/ - -.hNNfeR[data-open='true'] { - background-color: rgba(9,30,66,0.5); - cursor: pointer; - height: 100vh; - -webkit-transition: background-color 0.6s ease,height 0s linear; - transition: background-color 0.6s ease,height 0s linear; -} - -/*!sc*/ - -@media (min-width:992px) { - .hNNfeR { - display: block; - } -} - -/*!sc*/ - -data-styled.g7[id="BigNavstyles__Header-sc-1mttgq7-1"] { - content: "hNNfeR,"; -} - -/*!sc*/ - -.kuxyBF { - background-color: rgba(255,255,255,1); - cursor: default; - position: fixed; - top: 0; - -webkit-transition: 0.5s background-color ease,0.5s box-shadow ease; - transition: 0.5s background-color ease,0.5s box-shadow ease; - width: 100vw; - z-index: 100; -} - -/*!sc*/ - -.kuxyBF[data-active='true'], -.kuxyBF:hover { - background-color: rgba(255,255,255,1); - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); -} - -/*!sc*/ - -data-styled.g8[id="BigNavstyles__InnerHeader-sc-1mttgq7-2"] { - content: "kuxyBF,"; -} - -/*!sc*/ - -.caTbTe { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 60px; - margin: 0 auto; - max-width: 1320px; -} - -/*!sc*/ - -data-styled.g9[id="BigNavstyles__NavBar-sc-1mttgq7-3"] { - content: "caTbTe,"; -} - -/*!sc*/ - -.ILpDE { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - color: rgba(23,43,77,1); - cursor: pointer; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - font-size: 1rem; - padding: 1.25rem 1rem 1rem; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.ILpDE:hover { - color: rgba(0,101,255,1); -} - -/*!sc*/ - -data-styled.g14[id="Tabsstyles__Link-sc-1grh34k-0"] { - content: "ILpDE,"; -} - -/*!sc*/ - -.fvBJJk { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - color: rgba(23,43,77,1); - cursor: pointer; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - font-size: 1rem; - padding: 1.25rem 1rem 1rem; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - border: 0; - background-color: transparent; - gap: 0.25rem; -} - -/*!sc*/ - -.fvBJJk:hover { - color: rgba(0,101,255,1); -} - -/*!sc*/ - -.fvBJJk svg { - width: 0.5rem; - height: auto; -} - -/*!sc*/ - -.fvBJJk[data-active='true'] { - color: rgba(0,101,255,1); -} - -/*!sc*/ - -data-styled.g15[id="Tabsstyles__Tab-sc-1grh34k-1"] { - content: "fvBJJk,"; -} - -/*!sc*/ - -.hniXih { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - position: relative; -} - -/*!sc*/ - -data-styled.g16[id="Tabsstyles__TabGroup-sc-1grh34k-2"] { - content: "hniXih,"; -} - -/*!sc*/ - -.eDeTrr { - background-color: rgba(0,101,255,1); - bottom: 0; - height: 2px; - position: absolute; - -webkit-transition: left 0.3s ease,width 0.3s ease; - transition: left 0.3s ease,width 0.3s ease; -} - -/*!sc*/ - -data-styled.g17[id="Tabsstyles__Underline-sc-1grh34k-3"] { - content: "eDeTrr,"; -} - -/*!sc*/ - -.lkXhCr { - color: rgba(23,43,77,1); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - font-size: 1rem; - gap: 0.25rem; - -webkit-text-decoration: none; - text-decoration: none; - -webkit-transition: 0.2s gap ease; - transition: 0.2s gap ease; -} - -/*!sc*/ - -.lkXhCr:hover { - gap: 0.5rem; - color: rgba(23,43,77,1); -} - -/*!sc*/ - -data-styled.g18[id="HeaderTabLinkstyles__Link-sc-74iw4v-0"] { - content: "lkXhCr,"; -} - -/*!sc*/ - -.cqBzmH { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - width: 100%; -} - -/*!sc*/ - -.cqBzmH h3 { - border-bottom: 1px solid rgba(223,225,230,1); - color: rgba(23,43,77,1); - font-family: var(--font-family-text,'Charlie Text',sans-serif); - font-size: 1rem; - padding-bottom: 1rem; - width: 100%; -} - -/*!sc*/ - -data-styled.g19[id="TabDetailstyles__Detail-sc-18zi8lg-0"] { - content: "cqBzmH,"; -} - -/*!sc*/ - -.goNBit { - -webkit-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; -} - -/*!sc*/ - -data-styled.g20[id="TabDetailstyles__DetailInner-sc-18zi8lg-1"] { - content: "goNBit,"; -} - -/*!sc*/ - -.cnGKtd { - box-shadow: inset 0 1.5rem 1rem -1rem rgba(9,30,66,0.15); - font-size: 1rem; - padding: 2rem 0 4.75rem 0; - width: calc( 680px + ((100vw - 960px) / 2) ); -} - -/*!sc*/ - -@media (min-width:1200px) { - .cnGKtd { - width: calc( 807.5px + ((100vw - 1140px) / 2) ); - } -} - -/*!sc*/ - -.cnGKtd > div { - -webkit-align-items: start; - -webkit-box-align: start; - -ms-flex-align: start; - align-items: start; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 1rem; - margin: 0 40px 0 auto; - padding: 0 2rem 0 1rem; - width: 640px; -} - -/*!sc*/ - -@media (min-width:1200px) { - .cnGKtd > div { - margin: 0 47.5px 0 auto; - width: 760px; - } -} - -/*!sc*/ - -data-styled.g21[id="TabDetailstyles__DetailPrimary-sc-18zi8lg-2"] { - content: "cnGKtd,"; -} - -/*!sc*/ - -.AIZZX { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin: 0 -1rem; - gap: 1rem 0; -} - -/*!sc*/ - -.AIZZX > a { - width: 33.33333%; -} - -/*!sc*/ - -.AIZZX > a > p:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g22[id="TabDetailstyles__DetailPrimaryLinks-sc-18zi8lg-3"] { - content: "AIZZX,"; -} - -/*!sc*/ - -.gYIEYU { - background-color: rgba(234,230,255,0.4); - box-shadow: inset 0 1.5rem 1rem -1rem rgba(9,30,66,0.15); - padding: 2rem 0 4.75rem; - width: calc( 280px + ((100vw - 960px) / 2) ); -} - -/*!sc*/ - -@media (min-width:1200px) { - .gYIEYU { - width: calc( 332.5px + ((100vw - 1140px) / 2) ); - } -} - -/*!sc*/ - -.gYIEYU > div { - color: rgba(80,95,121,1); - font-size: 0.75rem; - margin: 0 auto 0 calc(40px - 1rem); - width: 240px; -} - -/*!sc*/ - -@media (min-width:1200px) { - .gYIEYU > div { - margin: 0 auto 0 calc(47.5px - 1rem); - width: 285px; - } -} - -/*!sc*/ - -.gYIEYU > div p { - margin-bottom: 0.5rem; -} - -/*!sc*/ - -.gYIEYU h3 { - border-bottom-color: rgba(153,141,217,1); - margin-bottom: 1rem; -} - -/*!sc*/ - -data-styled.g23[id="TabDetailstyles__DetailSecondary-sc-18zi8lg-4"] { - content: "gYIEYU,"; -} - -/*!sc*/ - -.IaKMs { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin: -1rem; - padding: 1.5rem 0; -} - -/*!sc*/ - -.IaKMs p:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g24[id="TabDetailstyles__DetailSecondaryLinks-sc-18zi8lg-5"] { - content: "IaKMs,"; -} - -/*!sc*/ - -.fjjKpv { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - margin: -1rem; -} - -/*!sc*/ - -data-styled.g25[id="TabDetailstyles__DetailSecondaryBanners-sc-18zi8lg-6"] { - content: "fjjKpv,"; -} - -/*!sc*/ - -.jwikl { - -webkit-animation-duration: 2s; - animation-duration: 2s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - -webkit-animation-name: iNVpcP; - animation-name: iNVpcP; - background-color: currentcolor; - opacity: 0.5; - height: 0; - padding-bottom: 50%; -} - -/*!sc*/ - -data-styled.g26[id="UiNavBlogArticlestyles__PlaceholderImage-sc-8r129j-0"] { - content: "jwikl,"; -} - -/*!sc*/ - -.FEaZg { - -webkit-animation-duration: 2s; - animation-duration: 2s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - -webkit-animation-name: iNVpcP; - animation-name: iNVpcP; - background-color: currentcolor; - opacity: 0.5; - display: inline-block; -} - -/*!sc*/ - -data-styled.g27[id="UiNavBlogArticlestyles__PlaceholderText-sc-8r129j-1"] { - content: "FEaZg,"; -} - -/*!sc*/ - -.eJojNO { - background-color: rgba(255,255,255,1); - border-radius: 0.3rem; - color: rgba(23,43,77,1); - display: block; - margin: 2rem 0 1.5rem; - padding-bottom: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; - width: 100%; -} - -/*!sc*/ - -.eJojNO img, -.eJojNO .UiNavBlogArticlestyles__PlaceholderImage-sc-8r129j-0 { - border-radius: 0.3rem 0.3rem 0 0; -} - -/*!sc*/ - -.eJojNO:hover { - cursor: wait; -} - -/*!sc*/ - -data-styled.g29[id="UiNavBlogArticlestyles__PlaceholderFrame-sc-8r129j-3"] { - content: "eJojNO,"; -} - -/*!sc*/ - -.bImESI { - color: rgba(80,95,121,1); - font-size: 0.75rem; - margin: 1rem 1rem 0; - text-transform: uppercase; -} - -/*!sc*/ - -.bImESI .UiNavBlogArticlestyles__PlaceholderText-sc-8r129j-1 { - min-height: 1rem; - width: 80%; -} - -/*!sc*/ - -data-styled.g30[id="UiNavBlogArticlestyles__Eyebrow-sc-8r129j-4"] { - content: "bImESI,"; -} - -/*!sc*/ - -.gxWuJE { - font-size: 1rem; - margin: 0.5rem 1rem 0; -} - -/*!sc*/ - -.gxWuJE .UiNavBlogArticlestyles__PlaceholderText-sc-8r129j-1 { - height: 3rem; - width: 90%; -} - -/*!sc*/ - -data-styled.g31[id="UiNavBlogArticlestyles__Title-sc-8r129j-5"] { - content: "gxWuJE,"; -} - -/*!sc*/ - -.gguOta { - display: block; - height: auto; - max-width: 100%; - width: auto; -} - -/*!sc*/ - -data-styled.g33[id="Logo-sc-1anfgcw-0"] { - content: "gguOta,"; -} - -/*!sc*/ - -.hHvFIJ { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-align-self: stretch; - -ms-flex-item-align: stretch; - align-self: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - padding: 1rem; -} - -/*!sc*/ - -data-styled.g34[id="Logostyles__LogoLink-sc-mm495s-0"] { - content: "hHvFIJ,"; -} - -/*!sc*/ - -.gsGIaN { - display: inline-block; -} - -/*!sc*/ - -.gsGIaN a, -.gsGIaN > span { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(255,255,255,1); - border: 1px solid rgba(101,84,192,1); - color: rgba(23,43,77,1); - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; -} - -/*!sc*/ - -.gsGIaN a span, -.gsGIaN > span span { - display: inline-block; -} - -/*!sc*/ - -.gsGIaN a svg, -.gsGIaN > span svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.gsGIaN a:hover svg, -.gsGIaN > span:hover svg, -.gsGIaN a:focus svg, -.gsGIaN > span:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -.gsGIaN a:hover, -.gsGIaN > span:hover, -.gsGIaN a:focus, -.gsGIaN > span:focus { - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.gsGIaN a:hover, -.gsGIaN > span:hover, -.gsGIaN a:focus, -.gsGIaN > span:focus { - background-color: rgba(234,230,255,1); - border-color: rgba(101,84,192,1); - color: rgba(23,43,77,1); -} - -/*!sc*/ - -.gsGIaN a:active, -.gsGIaN > span:active { - background-color: rgba(234,230,255,1); - border-color: rgba(234,230,255,1); - color: rgba(23,43,77,1); -} - -/*!sc*/ - -.gsGIaN a:focus, -.gsGIaN > span:focus { - box-shadow: 0 0 0 0.2rem rgba(153,141,217,0.5); -} - -/*!sc*/ - -.cbWPdy { - display: inline-block; -} - -/*!sc*/ - -.cbWPdy a, -.cbWPdy > span { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(255,255,255,1); - border: 1px solid rgba(255,171,0,1); - color: rgba(23,43,77,1); - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; -} - -/*!sc*/ - -.cbWPdy a span, -.cbWPdy > span span { - display: inline-block; -} - -/*!sc*/ - -.cbWPdy a svg, -.cbWPdy > span svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.cbWPdy a:hover svg, -.cbWPdy > span:hover svg, -.cbWPdy a:focus svg, -.cbWPdy > span:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -.cbWPdy a:hover, -.cbWPdy > span:hover, -.cbWPdy a:focus, -.cbWPdy > span:focus { - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.cbWPdy a:hover, -.cbWPdy > span:hover, -.cbWPdy a:focus, -.cbWPdy > span:focus { - background-color: rgba(255,250,229,1); - border-color: rgba(255,171,0,1); - color: rgba(23,43,77,1); -} - -/*!sc*/ - -.cbWPdy a:active, -.cbWPdy > span:active { - background-color: rgba(255,250,229,1); - border-color: rgba(255,250,229,1); - color: rgba(23,43,77,1); -} - -/*!sc*/ - -.cbWPdy a:focus, -.cbWPdy > span:focus { - box-shadow: 0 0 0 0.2rem rgba(255,227,128,0.5); -} - -/*!sc*/ - -.ldaPGy { - display: inline-block; -} - -/*!sc*/ - -.ldaPGy a, -.ldaPGy > span { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - font-size: 1rem; -} - -/*!sc*/ - -.ldaPGy a span, -.ldaPGy > span span { - display: inline-block; -} - -/*!sc*/ - -.ldaPGy a svg, -.ldaPGy > span svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.ldaPGy a:hover svg, -.ldaPGy > span:hover svg, -.ldaPGy a:focus svg, -.ldaPGy > span:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -.fdvhjb { - display: inline-block; -} - -/*!sc*/ - -.fdvhjb a, -.fdvhjb > span { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(255,255,255,1); - border: 1px solid rgba(0,101,255,1); - color: rgba(23,43,77,1); - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; -} - -/*!sc*/ - -.fdvhjb a span, -.fdvhjb > span span { - display: inline-block; -} - -/*!sc*/ - -.fdvhjb a svg, -.fdvhjb > span svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.fdvhjb a:hover svg, -.fdvhjb > span:hover svg, -.fdvhjb a:focus svg, -.fdvhjb > span:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -.fdvhjb a:hover, -.fdvhjb > span:hover, -.fdvhjb a:focus, -.fdvhjb > span:focus { - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.fdvhjb a:hover, -.fdvhjb > span:hover, -.fdvhjb a:focus, -.fdvhjb > span:focus { - background-color: rgba(222,235,255,1); - border-color: rgba(0,101,255,1); - color: rgba(23,43,77,1); -} - -/*!sc*/ - -.fdvhjb a:active, -.fdvhjb > span:active { - background-color: rgba(222,235,255,1); - border-color: rgba(222,235,255,1); - color: rgba(23,43,77,1); -} - -/*!sc*/ - -.fdvhjb a:focus, -.fdvhjb > span:focus { - box-shadow: 0 0 0 0.2rem rgba(122,134,154,0.5); -} - -/*!sc*/ - -.hzgNTJ { - display: inline-block; -} - -/*!sc*/ - -.hzgNTJ a, -.hzgNTJ > span { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(0,101,255,1); - border: 1px solid rgba(0,101,255,1); - color: rgba(255,255,255,1); - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; -} - -/*!sc*/ - -.hzgNTJ a span, -.hzgNTJ > span span { - display: inline-block; -} - -/*!sc*/ - -.hzgNTJ a svg, -.hzgNTJ > span svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.hzgNTJ a:hover svg, -.hzgNTJ > span:hover svg, -.hzgNTJ a:focus svg, -.hzgNTJ > span:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -.hzgNTJ a:hover, -.hzgNTJ > span:hover, -.hzgNTJ a:focus, -.hzgNTJ > span:focus { - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.hzgNTJ a:hover, -.hzgNTJ > span:hover, -.hzgNTJ a:focus, -.hzgNTJ > span:focus { - background-color: rgba(7,71,166,1); - border-color: rgba(7,71,166,1); -} - -/*!sc*/ - -.hzgNTJ a:active, -.hzgNTJ > span:active { - background-color: rgba(0,82,204,1); - border-color: rgba(0,82,204,1); -} - -/*!sc*/ - -.hzgNTJ a:focus, -.hzgNTJ > span:focus { - box-shadow: 0 0 0 0.2rem rgba(122,134,154,0.5); -} - -/*!sc*/ - -.dpPTPy { - display: inline-block; -} - -/*!sc*/ - -.dpPTPy a, -.dpPTPy > span { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; -} - -/*!sc*/ - -.dpPTPy a span, -.dpPTPy > span span { - display: inline-block; -} - -/*!sc*/ - -.dpPTPy a svg, -.dpPTPy > span svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.dpPTPy a:hover svg, -.dpPTPy > span:hover svg, -.dpPTPy a:focus svg, -.dpPTPy > span:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -data-styled.g37[id="link-buttonstyles__BxpLink-sc-1utqn26-0"] { - content: "gsGIaN,cbWPdy,ldaPGy,fdvhjb,hzgNTJ,dpPTPy,"; -} - -/*!sc*/ - -.inwKxu { - display: inline-block; -} - -/*!sc*/ - -.inwKxu button { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.3rem; - cursor: pointer; - display: -webkit-inline-box; - display: -webkit-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - text-align: center; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(0,101,255,1); - border: 1px solid rgba(0,101,255,1); - color: rgba(255,255,255,1); - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; -} - -/*!sc*/ - -.inwKxu button span { - display: inline-block; -} - -/*!sc*/ - -.inwKxu button svg { - display: inline-block; - margin-left: 0.5rem; - margin-top: 2px; - -webkit-transform: translate3d(0px,0,0); - -ms-transform: translate3d(0px,0,0); - transform: translate3d(0px,0,0); - -webkit-transition: -webkit-transform 250ms ease-out; - -webkit-transition: transform 250ms ease-out; - transition: transform 250ms ease-out; -} - -/*!sc*/ - -.inwKxu button:hover svg, -.inwKxu button:focus svg { - -webkit-transform: translate3d(3px,0,0); - -ms-transform: translate3d(3px,0,0); - transform: translate3d(3px,0,0); -} - -/*!sc*/ - -.inwKxu button:hover, -.inwKxu button:focus { - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.inwKxu button:hover, -.inwKxu button:focus { - background-color: rgba(7,71,166,1); - border-color: rgba(7,71,166,1); -} - -/*!sc*/ - -.inwKxu button:active { - background-color: rgba(0,82,204,1); - border-color: rgba(0,82,204,1); -} - -/*!sc*/ - -.inwKxu button:focus { - box-shadow: 0 0 0 0.2rem rgba(122,134,154,0.5); -} - -/*!sc*/ - -data-styled.g38[id="link-buttonstyles__BxpButton-sc-1utqn26-1"] { - content: "inwKxu,"; -} - -/*!sc*/ - -.ixzNAn { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background: transparent; - border: 0; - color: rgba(23,43,77,1); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - gap: 0.5rem; - opacity: 1; - padding: 1rem; - -webkit-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; - -webkit-transition-delay: 0.2s; - transition-delay: 0.2s; -} - -/*!sc*/ - -.ixzNAn[data-hidden='true'] { - opacity: 0; -} - -/*!sc*/ - -data-styled.g39[id="SmallNavstyles__BackButton-sc-1qz4lc6-0"] { - content: "ixzNAn,"; -} - -/*!sc*/ - -.fRtYSH { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 1rem; -} - -/*!sc*/ - -data-styled.g43[id="SmallNavstyles__Buttons-sc-1qz4lc6-4"] { - content: "fRtYSH,"; -} - -/*!sc*/ - -.dRYvoZ { - background-color: rgba(255,255,255,1); - height: 70px; - overflow: hidden; - position: fixed; - top: 0; - -webkit-transition: height 0.3s linear,box-shadow 0.3s linear 0.3s,background-color 0.3s linear 0.3s; - transition: height 0.3s linear,box-shadow 0.3s linear 0.3s,background-color 0.3s linear 0.3s; - width: 100%; - z-index: 90; -} - -/*!sc*/ - -.dRYvoZ[data-scrolled='true'] { - background-color: rgba(255,255,255,1); - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); -} - -/*!sc*/ - -.dRYvoZ[data-open='true'] { - background-color: rgba(255,255,255,1); - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); - height: 100%; - -webkit-transition: height 0.3s linear 0.1s,box-shadow 0.1s linear,background-color 0.1s linear; - transition: height 0.3s linear 0.1s,box-shadow 0.1s linear,background-color 0.1s linear; -} - -/*!sc*/ - -@media (min-width:992px) { - .dRYvoZ { - display: none; - } -} - -/*!sc*/ - -data-styled.g44[id="SmallNavstyles__Header-sc-1qz4lc6-5"] { - content: "dRYvoZ,"; -} - -/*!sc*/ - -.kvGdxK { - color: rgba(23,43,77,1); - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -data-styled.g45[id="SmallNavstyles__Link-sc-1qz4lc6-6"] { - content: "kvGdxK,"; -} - -/*!sc*/ - -.ibyWoN { - opacity: 1; - -webkit-transition: all 0.3s ease; - transition: all 0.3s ease; - -webkit-transition-delay: 0.2s; - transition-delay: 0.2s; -} - -/*!sc*/ - -.ibyWoN[data-hidden='true'] { - opacity: 0; - margin-left: -141.69px; -} - -/*!sc*/ - -data-styled.g46[id="SmallNavstyles__LogoWrapper-sc-1qz4lc6-7"] { - content: "ibyWoN,"; -} - -/*!sc*/ - -.fauKw { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: transparent; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - border: 0; - height: 3.5rem; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - margin-left: auto; - overflow: hidden; - padding: 0; - width: 3.5rem; -} - -/*!sc*/ - -.fauKw:focus { - background-color: transparent; -} - -/*!sc*/ - -data-styled.g47[id="SmallNavstyles__MenuButton-sc-1qz4lc6-8"] { - content: "fauKw,"; -} - -/*!sc*/ - -.eBrkGB { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 70px; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - z-index: 100; -} - -/*!sc*/ - -@media (min-width:992px) { - .eBrkGB { - height: 60px; - } -} - -/*!sc*/ - -data-styled.g48[id="SmallNavstyles__NavBar-sc-1qz4lc6-9"] { - content: "eBrkGB,"; -} - -/*!sc*/ - -.vifsz { - display: block; -} - -/*!sc*/ - -.vifsz > * { - padding-left: 0; -} - -/*!sc*/ - -data-styled.g49[id="SmallNavstyles__NavLinkContainer-sc-1qz4lc6-10"] { - content: "vifsz,"; -} - -/*!sc*/ - -.kTBgdl { - background-color: rgba(255,255,255,1); - bottom: 0; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 1rem; - left: 0; - overflow: auto; - padding: 0 1rem 1rem; - position: absolute; - top: 70px; - -webkit-transition: left 0.4s ease; - transition: left 0.4s ease; - width: 100%; -} - -/*!sc*/ - -.kTBgdl h2 { - margin-bottom: 0; -} - -/*!sc*/ - -.kTBgdl h2, -.kTBgdl h3 { - color: rgba(23,43,77,1); - font-family: var(--font-family-text,'Charlie Text',sans-serif); - font-size: 1rem; - font-weight: 500; -} - -/*!sc*/ - -.kTBgdl p:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.kTBgdl[data-offscreen='left'] { - left: -100vw; -} - -/*!sc*/ - -.kTBgdl[data-offscreen='right'] { - left: 100vw; -} - -/*!sc*/ - -data-styled.g50[id="SmallNavstyles__Page-sc-1qz4lc6-11"] { - content: "kTBgdl,"; -} - -/*!sc*/ - -.bWoiWo { - opacity: 0; - -webkit-transition: opacity 0.6s ease; - transition: opacity 0.6s ease; - -webkit-transition-delay: 0.1s; - transition-delay: 0.1s; -} - -/*!sc*/ - -data-styled.g51[id="SmallNavstyles__PageContainer-sc-1qz4lc6-12"] { - content: "bWoiWo,"; -} - -/*!sc*/ - -.jfuGKK { - padding: 1.5rem; - background-color: rgba(234,230,255,0.4); -} - -/*!sc*/ - -.jfuGKK p { - color: rgba(80,95,121,1); - font-size: 0.75rem; -} - -/*!sc*/ - -.jfuGKK a { - margin-bottom: 1.5rem; -} - -/*!sc*/ - -.jfuGKK a:last-of-type { - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g52[id="SmallNavstyles__Secondary-sc-1qz4lc6-13"] { - content: "jfuGKK,"; -} - -/*!sc*/ - -.eqvIsB a { - margin-top: 1rem; -} - -/*!sc*/ - -data-styled.g53[id="SmallNavstyles__SecondaryCtaContainer-sc-1qz4lc6-14"] { - content: "eqvIsB,"; -} - -/*!sc*/ - -.fRGJFn { - background: transparent; - border: 0; - color: rgba(23,43,77,1); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 0 0.5rem 0 0; - width: 100%; -} - -/*!sc*/ - -data-styled.g54[id="SmallNavstyles__Tab-sc-1qz4lc6-15"] { - content: "fRGJFn,"; -} - -/*!sc*/ - -.jdgRIs { - border-top: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -.jdgRIs > * { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-bottom: 1px solid rgba(223,225,230,1); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - min-height: 70px; -} - -/*!sc*/ - -data-styled.g55[id="SmallNavstyles__TabList-sc-1qz4lc6-16"] { - content: "jdgRIs,"; -} - -/*!sc*/ - -.kbHECx { - background-color: transparent; - border: 0; - cursor: pointer; - display: block; - height: 24px; - margin: 0; - padding: 0; - position: relative; - width: 24px; -} - -/*!sc*/ - -.kbHECx span { - background-color: rgba(23,43,77,1); - border-radius: 3px; - display: block; - height: 3px; - left: 0; - opacity: 1; - position: absolute; - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - -webkit-transition: 0.3s ease; - transition: 0.3s ease; - width: 24px; -} - -/*!sc*/ - -.kbHECx span:nth-child(1) { - top: 1.5px; - -webkit-transform-origin: left center; - -ms-transform-origin: left center; - transform-origin: left center; -} - -/*!sc*/ - -.kbHECx span:nth-child(2) { - top: 10.5px; - -webkit-transform-origin: left center; - -ms-transform-origin: left center; - transform-origin: left center; -} - -/*!sc*/ - -.kbHECx span:nth-child(3) { - top: 19.5px; - -webkit-transform-origin: left center; - -ms-transform-origin: left center; - transform-origin: left center; -} - -/*!sc*/ - -data-styled.g56[id="MenuIconstyles__Icon-sc-1f2i8xx-0"] { - content: "kbHECx,"; -} - -/*!sc*/ - -.jLKXTv { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.jLKXTv:active { - background-color: rgba(227,252,239,0.5); -} - -/*!sc*/ - -.jLKXTv:focus:focus-visible { - background-color: rgba(227,252,239,0.5); -} - -/*!sc*/ - -@media (min-width:992px) { - .jLKXTv:hover { - background-color: rgba(227,252,239,0.5); - -webkit-transition: background-color 0.3s ease; - transition: background-color 0.3s ease; - } -} - -/*!sc*/ - -.fELQn { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.fELQn:active { - background-color: rgba(230,252,255,0.5); -} - -/*!sc*/ - -.fELQn:focus:focus-visible { - background-color: rgba(230,252,255,0.5); -} - -/*!sc*/ - -@media (min-width:992px) { - .fELQn:hover { - background-color: rgba(230,252,255,0.5); - -webkit-transition: background-color 0.3s ease; - transition: background-color 0.3s ease; - } -} - -/*!sc*/ - -.dAUgWV { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.dAUgWV:active { - background-color: rgba(255,250,229,0.5); -} - -/*!sc*/ - -.dAUgWV:focus:focus-visible { - background-color: rgba(255,250,229,0.5); -} - -/*!sc*/ - -@media (min-width:992px) { - .dAUgWV:hover { - background-color: rgba(255,250,229,0.5); - -webkit-transition: background-color 0.3s ease; - transition: background-color 0.3s ease; - } -} - -/*!sc*/ - -.gmKmFx { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.gmKmFx:active { - background-color: rgba(255,242,251,0.5); -} - -/*!sc*/ - -.gmKmFx:focus:focus-visible { - background-color: rgba(255,242,251,0.5); -} - -/*!sc*/ - -@media (min-width:992px) { - .gmKmFx:hover { - background-color: rgba(255,242,251,0.5); - -webkit-transition: background-color 0.3s ease; - transition: background-color 0.3s ease; - } -} - -/*!sc*/ - -.gpVVTt { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.gpVVTt:active { - background-color: rgba(222,235,255,0.5); -} - -/*!sc*/ - -.gpVVTt:focus:focus-visible { - background-color: rgba(222,235,255,0.5); -} - -/*!sc*/ - -@media (min-width:992px) { - .gpVVTt:hover { - background-color: rgba(222,235,255,0.5); - -webkit-transition: background-color 0.3s ease; - transition: background-color 0.3s ease; - } -} - -/*!sc*/ - -.fZnjlG { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.fZnjlG:active { - background-color: rgba(255,235,229,0.5); -} - -/*!sc*/ - -.fZnjlG:focus:focus-visible { - background-color: rgba(255,235,229,0.5); -} - -/*!sc*/ - -@media (min-width:992px) { - .fZnjlG:hover { - background-color: rgba(255,235,229,0.5); - -webkit-transition: background-color 0.3s ease; - transition: background-color 0.3s ease; - } -} - -/*!sc*/ - -.ePREoP { - display: block; - padding: 1rem; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -data-styled.g57[id="UiNavLinkstyles__NavLinkAnchor-sc-lgpipn-0"] { - content: "jLKXTv,fELQn,dAUgWV,gmKmFx,gpVVTt,fZnjlG,ePREoP,"; -} - -/*!sc*/ - -.fIGVuV { - padding: 0.14rem 0.71rem 0 0.15rem; -} - -/*!sc*/ - -.fIGVuV svg { - height: 1.2rem; - width: auto; -} - -/*!sc*/ - -.fIGVuV svg path, -.fIGVuV svg rect { - fill: rgba(122,134,154,1); -} - -/*!sc*/ - -.idyRvu { - padding: 0.14rem 0.71rem 0 0.15rem; -} - -/*!sc*/ - -.idyRvu svg { - height: 1.2rem; - width: auto; -} - -/*!sc*/ - -.idyRvu svg path, -.idyRvu svg rect { - fill: rgba(121,226,242,1); -} - -/*!sc*/ - -.gCdysh { - padding: 0.14rem 0.71rem 0 0.15rem; -} - -/*!sc*/ - -.gCdysh svg { - height: 1.2rem; - width: auto; -} - -/*!sc*/ - -.gCdysh svg path, -.gCdysh svg rect { - fill: rgba(249,156,219,1); -} - -/*!sc*/ - -.cSbJzx { - padding: 0.14rem 0.71rem 0 0.15rem; -} - -/*!sc*/ - -.cSbJzx svg { - height: 1.2rem; - width: auto; -} - -/*!sc*/ - -.cSbJzx svg path, -.cSbJzx svg rect { - fill: rgba(76,154,255,1); -} - -/*!sc*/ - -data-styled.g58[id="UiNavLinkstyles__NavIcon-sc-lgpipn-1"] { - content: "fIGVuV,idyRvu,gCdysh,cSbJzx,"; -} - -/*!sc*/ - -.iyeREo { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - line-height: 1rem; - padding-bottom: 0.6rem; -} - -/*!sc*/ - -data-styled.g59[id="UiNavLinkstyles__NavLinkTitleContainer-sc-lgpipn-2"] { - content: "iyeREo,"; -} - -/*!sc*/ - -.dpNvjT { - color: rgba(23,43,77,1); - font-family: var(--font-family-text,'Charlie Text',sans-serif); - font-size: 1rem; - font-weight: normal; - line-height: 1.5rem; - margin: 0; - padding-right: 0.3rem; -} - -/*!sc*/ - -data-styled.g60[id="UiNavLinkstyles__NavLinkTitle-sc-lgpipn-3"] { - content: "dpNvjT,"; -} - -/*!sc*/ - -.bSzYmp p { - color: rgba(80,95,121,1); - font-size: 0.75rem; - line-height: 1rem; - margin: 0; -} - -/*!sc*/ - -data-styled.g61[id="UiNavLinkstyles__NavLinkDescription-sc-lgpipn-4"] { - content: "bSzYmp,"; -} - -/*!sc*/ - -.gJtyWN { - text-align: left; - padding: 1rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - gap: 1rem; - width: 100%; -} - -/*!sc*/ - -@media (max-width:992px) { - .gJtyWN { - padding: 0; - margin-bottom: 1.5rem; - } - - .gJtyWN:last-of-type { - margin-bottom: 0; - } -} - -/*!sc*/ - -.bNHwgB { - text-align: left; - padding: 1.5rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - gap: 1rem; - width: 100%; - background-color: rgba(255,250,229,0.4); -} - -/*!sc*/ - -data-styled.g62[id="UiNavBannerstyles__Banner-sc-1slsmo-0"] { - content: "gJtyWN,bNHwgB,"; -} - -/*!sc*/ - -.jYZBVs svg { - height: 1.2rem; - margin-left: 0.4rem; - margin-right: 0.8rem; - width: auto; -} - -/*!sc*/ - -.jYZBVs svg path { - fill: rgba(255,196,0,1); -} - -/*!sc*/ - -data-styled.g63[id="UiNavBannerstyles__BannerIcon-sc-1slsmo-1"] { - content: "jYZBVs,"; -} - -/*!sc*/ - -.kJelJR { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -/*!sc*/ - -.iLjRSq { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - line-height: 1rem; - padding-bottom: 0.25rem; -} - -/*!sc*/ - -data-styled.g64[id="UiNavBannerstyles__BannerTitleContainer-sc-1slsmo-2"] { - content: "kJelJR,iLjRSq,"; -} - -/*!sc*/ - -.gtdiZt { - width: 100%; -} - -/*!sc*/ - -.gtdiZt p { - color: rgba(23,43,77,1); - font-weight: normal; - font-family: var(--font-family-text,'Charlie Text',sans-serif); - font-size: 1rem; - line-height: 1.25rem; - padding-right: 0.3rem; - margin-bottom: 0.5rem; -} - -/*!sc*/ - -data-styled.g65[id="UiNavBannerstyles__BannerTitle-sc-1slsmo-3"] { - content: "gtdiZt,"; -} - -/*!sc*/ - -.clqFwS { - color: rgba(80,95,121,1); - font-size: 0.75rem; -} - -/*!sc*/ - -.gmwUrG { - color: rgba(80,95,121,1); - font-size: 0.75rem; - line-height: 1rem; - margin-bottom: 1rem; -} - -/*!sc*/ - -data-styled.g66[id="UiNavBannerstyles__BannerDescription-sc-1slsmo-4"] { - content: "clqFwS,gmwUrG,"; -} - -/*!sc*/ - -.BYsQb .visually-hidden:not(:focus):not(:active) { - -webkit-clip: rect(0 0 0 0); - clip: rect(0 0 0 0); - -webkit-clip-path: inset(50%); - clip-path: inset(50%); - height: 1px; - overflow: hidden; - position: absolute; - white-space: nowrap; - width: 1px; -} - -/*!sc*/ - -.BYsQb #skip-to-content { - display: inline-block; - padding: 0.5rem 1.25rem; - background: rgba(23,43,77,1); - color: rgba(255,255,255,1); - font-size: 1rem; - border: 1px solid rgba(23,43,77,1); - border-radius: 0.3rem; - -webkit-text-decoration: none; - text-decoration: none; - cursor: pointer; - -webkit-transition: all 250ms ease-out; - transition: all 250ms ease-out; - position: fixed; - top: 0.5rem; - left: 0.5rem; - z-index: 1000; -} - -/*!sc*/ - -.BYsQb #skip-to-content:hover { - background: rgba(80,95,121,1); - border: 1px solid rgba(80,95,121,1); -} - -/*!sc*/ - -.BYsQb #skip-to-content:focus { - outline: 1px solid rgba(122,134,154,1); -} - -/*!sc*/ - -.BYsQb #skip-to-content:active { - background: rgba(122,134,154,1); - border: 1px solid rgba(122,134,154,1); -} - -/*!sc*/ - -data-styled.g67[id="UiHeaderNavstyles__Skip-sc-1ne5rbv-0"] { - content: "BYsQb,"; -} - -/*!sc*/ - -@-webkit-keyframes iNVpcP { - 50% { - opacity: 0.37; - } -} - -/*!sc*/ - -@keyframes iNVpcP { - 50% { - opacity: 0.37; - } -} - -/*!sc*/ - -data-styled.g68[id="sc-keyframes-iNVpcP"] { - content: "iNVpcP,"; -} - -/*!sc*/ - -.ctsbPE { - margin-left: auto; - margin-right: auto; - padding-left: 1rem; - padding-right: 1rem; - width: 100%; -} - -/*!sc*/ - -@media (min-width:576px) { - .ctsbPE { - max-width: 540px; - } -} - -/*!sc*/ - -@media (min-width:768px) { - .ctsbPE { - max-width: 720px; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .ctsbPE { - max-width: 960px; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .ctsbPE { - max-width: 1140px; - } -} - -/*!sc*/ - -data-styled.g69[id="grid__Container-sc-p40pqe-0"] { - content: "ctsbPE,"; -} - -/*!sc*/ - -.esQJBv { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-left: -1rem; - margin-right: -1rem; -} - -/*!sc*/ - -.xFbia { - -webkit-align-items: flex-start; - -webkit-box-align: flex-start; - -ms-flex-align: flex-start; - align-items: flex-start; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-left: -1rem; - margin-right: -1rem; -} - -/*!sc*/ - -.oFuOf { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - -webkit-box-pack: start; - -webkit-justify-content: flex-start; - -ms-flex-pack: start; - justify-content: flex-start; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-left: -1rem; - margin-right: -1rem; -} - -/*!sc*/ - -data-styled.g70[id="grid__Row-sc-p40pqe-1"] { - content: "esQJBv,xFbia,oFuOf,"; -} - -/*!sc*/ - -.eXMZwc { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 8rem; -} - -/*!sc*/ - -.eXMZwc > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eXMZwc > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eXMZwc > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .eXMZwc { - text-align: left; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 50%; - margin-bottom: 0; - padding-bottom: 8rem; - } -} - -/*!sc*/ - -.iokEFl { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-bottom: -1rem; - padding-bottom: 1rem; - z-index: 1; -} - -/*!sc*/ - -.iokEFl > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.iokEFl > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.iokEFl > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .iokEFl { - margin-bottom: -.5rem; - padding-bottom: 1rem; - z-index: 1; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .iokEFl { - margin-left: -16.66666%; - left: 16.66666%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 58.33333%; - margin-top: 0; - padding-top: 8rem; - margin-bottom: 0; - padding-bottom: 0; - } -} - -/*!sc*/ - -.EjHGg { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - -webkit-order: 3; - -ms-flex-order: 3; - order: 3; -} - -/*!sc*/ - -.EjHGg > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.EjHGg > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.EjHGg > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .EjHGg { - text-align: left; - -webkit-order: 1; - -ms-flex-order: 1; - order: 1; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 58.33333%; - } -} - -/*!sc*/ - -.ggdMbf { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-bottom: 0; - padding-bottom: 5rem; -} - -/*!sc*/ - -.ggdMbf > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ggdMbf > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ggdMbf > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eJbdQc { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - display: none; - margin-top: 0; - padding-top: 0; - margin-bottom: 0; - padding-bottom: 0; -} - -/*!sc*/ - -.eJbdQc > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eJbdQc > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eJbdQc > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .eJbdQc { - -webkit-order: 1; - -ms-flex-order: 1; - order: 1; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 33.33333%; - } -} - -/*!sc*/ - -.iaIrPs { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 0; -} - -/*!sc*/ - -.iaIrPs > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.iaIrPs > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.iaIrPs > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .iaIrPs { - -webkit-order: 2; - -ms-flex-order: 2; - order: 2; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 66.66666%; - margin-top: 0; - padding-top: 1rem; - } -} - -/*!sc*/ - -.kWJXJe { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 0; - margin-bottom: 0; - padding-bottom: 0; -} - -/*!sc*/ - -.kWJXJe > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.kWJXJe > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.kWJXJe > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .kWJXJe { - display: none; - } -} - -/*!sc*/ - -.cJzWlo { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 83.33333%; -} - -/*!sc*/ - -.cJzWlo > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.cJzWlo > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.cJzWlo > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .cJzWlo { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 33.33333%; - } -} - -/*!sc*/ - -.bKsnan { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - text-align: left; -} - -/*!sc*/ - -.bKsnan > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bKsnan > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bKsnan > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:576px) { - .bKsnan { - text-align: left; - } -} - -/*!sc*/ - -@media (min-width:768px) { - .bKsnan { - text-align: left; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .bKsnan { - text-align: left; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 75%; - margin-bottom: 0; - padding-bottom: 5rem; - } -} - -/*!sc*/ - -.lbYOkK { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - text-align: left; - margin-bottom: 0; - padding-bottom: 5rem; -} - -/*!sc*/ - -.lbYOkK > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.lbYOkK > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.lbYOkK > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:576px) { - .lbYOkK { - text-align: left; - } -} - -/*!sc*/ - -@media (min-width:768px) { - .lbYOkK { - text-align: left; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .lbYOkK { - text-align: right; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 25%; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .lbYOkK { - text-align: right; - } -} - -/*!sc*/ - -.grXjIC { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 3rem; - margin-bottom: 0; - padding-bottom: 1rem; -} - -/*!sc*/ - -.grXjIC > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.grXjIC > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.grXjIC > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .grXjIC { - margin-bottom: 0; - padding-bottom: 3rem; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .grXjIC { - margin-left: 16.66666%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 66.66666%; - } -} - -/*!sc*/ - -.efveLe { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-bottom: 0; - padding-bottom: 1rem; -} - -/*!sc*/ - -.efveLe > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.efveLe > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.efveLe > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .efveLe { - margin-bottom: 0; - padding-bottom: 3rem; - } -} - -/*!sc*/ - -.jonvgj { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-bottom: -8rem; - padding-bottom: 1rem; - z-index: 1; -} - -/*!sc*/ - -.jonvgj > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.jonvgj > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.jonvgj > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.cRLxjt { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - text-align: left; -} - -/*!sc*/ - -.cRLxjt > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.cRLxjt > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.cRLxjt > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .cRLxjt { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 50%; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .cRLxjt { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 33.33333%; - } -} - -/*!sc*/ - -.eUShmG { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - text-align: left; -} - -/*!sc*/ - -.eUShmG > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eUShmG > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eUShmG > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .eUShmG { - margin-left: 25%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 50%; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .eUShmG { - margin-left: 0%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 33.33333%; - } -} - -/*!sc*/ - -.dmvlwB { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; -} - -/*!sc*/ - -.dmvlwB > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dmvlwB > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dmvlwB > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bBJaAq { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 3rem; - margin-bottom: 0; - padding-bottom: 1rem; -} - -/*!sc*/ - -.bBJaAq > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bBJaAq > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bBJaAq > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .bBJaAq { - margin-left: 8.33333%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 83.33333%; - margin-top: 0; - padding-top: 5rem; - margin-bottom: 0; - padding-bottom: 3rem; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .bBJaAq { - margin-left: 16.66666%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 66.66666%; - } -} - -/*!sc*/ - -.dBxtNW { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-bottom: 0; - padding-bottom: 3rem; -} - -/*!sc*/ - -.dBxtNW > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dBxtNW > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dBxtNW > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .dBxtNW { - margin-bottom: 0; - padding-bottom: 5rem; - } -} - -/*!sc*/ - -.dQTyPK { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - display: none; - margin-bottom: 0; - padding-bottom: 5rem; -} - -/*!sc*/ - -.dQTyPK > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dQTyPK > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dQTyPK > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:576px) { - .dQTyPK { - display: none; - } -} - -/*!sc*/ - -@media (min-width:768px) { - .dQTyPK { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 100%; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .dQTyPK { - margin-left: 8.33333%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 83.33333%; - } -} - -/*!sc*/ - -.ezWEiN { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-bottom: 0; - padding-bottom: 3rem; -} - -/*!sc*/ - -.ezWEiN > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ezWEiN > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ezWEiN > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .ezWEiN { - display: none; - } -} - -/*!sc*/ - -.bMZHry { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 3rem; - margin-bottom: 0; - padding-bottom: 3rem; -} - -/*!sc*/ - -.bMZHry > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bMZHry > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.bMZHry > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .bMZHry { - margin-left: 8.33333%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 83.33333%; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .bMZHry { - margin-left: 16.66666%; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 66.66666%; - margin-top: 0; - padding-top: 5rem; - margin-bottom: 0; - padding-bottom: 5rem; - } -} - -/*!sc*/ - -.ggxbtP { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - text-align: left; - margin-bottom: 0; - padding-bottom: 0; -} - -/*!sc*/ - -.ggxbtP > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ggxbtP > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ggxbtP > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .ggxbtP { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 16.66666%; - } -} - -/*!sc*/ - -.isGdyo { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; -} - -/*!sc*/ - -.isGdyo > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.isGdyo > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.isGdyo > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .isGdyo { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 83.33333%; - } -} - -/*!sc*/ - -.gcuqtV { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - text-align: left; - margin-top: 0; - padding-top: 0; -} - -/*!sc*/ - -.gcuqtV > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.gcuqtV > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.gcuqtV > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .gcuqtV { - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 16.66666%; - margin-top: 0; - padding-top: 1rem; - } -} - -/*!sc*/ - -.BRHza { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; - margin-top: 0; - padding-top: 0; -} - -/*!sc*/ - -.BRHza > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.BRHza > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.BRHza > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .BRHza { - text-align: left; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 58.33333%; - margin-top: 0; - padding-top: 1rem; - } -} - -/*!sc*/ - -.jVPcLF { - padding: 1rem; - position: relative; - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; - text-align: center; - width: 100%; -} - -/*!sc*/ - -.jVPcLF > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.jVPcLF > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.jVPcLF > *:last-child > *:last-child > *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .jVPcLF { - -webkit-order: 12; - -ms-flex-order: 12; - order: 12; - display: block; - -webkit-flex: 0 0 auto; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: 25%; - } -} - -/*!sc*/ - -data-styled.g71[id="grid__StyledColumn-sc-p40pqe-2"] { - content: "eXMZwc,iokEFl,EjHGg,ggdMbf,eJbdQc,iaIrPs,kWJXJe,cJzWlo,bKsnan,lbYOkK,grXjIC,efveLe,jonvgj,cRLxjt,eUShmG,dmvlwB,bBJaAq,dBxtNW,dQTyPK,ezWEiN,bMZHry,ggxbtP,isGdyo,gcuqtV,BRHza,jVPcLF,"; -} - -/*!sc*/ - -.cDvxpF { - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .cDvxpF { - background-attachment: scroll,scroll; - background-blend-mode: normal,normal; - background-clip: border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/7lTGeXbBRNRLaVk2MdBjtJ/99c266ed4cb8cc63bd0c388071f01ff6/white-wave-bg.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box; - background-position: center bottom -0.5px,0% 0%; - background-repeat: no-repeat,repeat; - background-size: 100% 14%,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .cDvxpF a { - color: rgba(255,255,255,0.8); - } - - .cDvxpF a:hover { - color: rgba(255,255,255,1); - } - - .cDvxpF *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cDvxpF *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .cDvxpF { - background-attachment: scroll,scroll; - background-blend-mode: normal,normal; - background-clip: border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/7lTGeXbBRNRLaVk2MdBjtJ/99c266ed4cb8cc63bd0c388071f01ff6/white-wave-bg.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box; - background-position: center bottom -0.5px,0% 0%; - background-repeat: no-repeat,repeat; - background-size: 100% 14%,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .cDvxpF a { - color: rgba(255,255,255,0.8); - } - - .cDvxpF a:hover { - color: rgba(255,255,255,1); - } - - .cDvxpF *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cDvxpF *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .cDvxpF { - background-attachment: scroll,scroll; - background-blend-mode: normal,normal; - background-clip: border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/6bFuTiN5YQ78rFkHb3aJlo/b608362b08e14f5dec4c4aeea3a3ca72/white-wave-mobile.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box; - background-position: center bottom -0.5px,0% 0%; - background-repeat: no-repeat,no-repeat; - background-size: 100% 24%,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .cDvxpF a { - color: rgba(255,255,255,0.8); - } - - .cDvxpF a:hover { - color: rgba(255,255,255,1); - } - - .cDvxpF *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cDvxpF *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .cDvxpF { - background-attachment: scroll,scroll; - background-blend-mode: normal,normal; - background-clip: border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/6bFuTiN5YQ78rFkHb3aJlo/b608362b08e14f5dec4c4aeea3a3ca72/white-wave-mobile.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box; - background-position: center bottom -0.5px,0% 0%; - background-repeat: no-repeat,no-repeat; - background-size: 100% 24%,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .cDvxpF a { - color: rgba(255,255,255,0.8); - } - - .cDvxpF a:hover { - color: rgba(255,255,255,1); - } - - .cDvxpF *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cDvxpF *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .cDvxpF { - background-attachment: scroll,scroll; - background-blend-mode: normal,normal; - background-clip: border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/6bFuTiN5YQ78rFkHb3aJlo/b608362b08e14f5dec4c4aeea3a3ca72/white-wave-mobile.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box; - background-position: center bottom -0.5px,0% 0%; - background-repeat: no-repeat,no-repeat; - background-size: 100% 24%,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .cDvxpF a { - color: rgba(255,255,255,0.8); - } - - .cDvxpF a:hover { - color: rgba(255,255,255,1); - } - - .cDvxpF *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cDvxpF *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .cDvxpF { - overflow-x: hidden; - } -} - -/*!sc*/ - -.dupAVh { - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; -} - -/*!sc*/ - -.cysMEE { - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; -} - -/*!sc*/ - -@media (min-width:1200px) { - .cysMEE { - background-attachment: scroll,scroll,scroll; - background-blend-mode: normal,normal,normal; - background-clip: border-box,border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/7KgS3XVFhGu3TiclJKloEp/c10aad15fb171a6c245db9cb7910247d/ViewsBackground_Left_Narrow.svg"),url("//images.ctfassets.net/rz1oowkt5gyp/2HisRmboWIdXSYaaUSDzon/dadecff4be8a39bf2cf3cc537bd4d9c1/ViewsBackground_Right_Narrow.svg"),linear-gradient(240deg,rgba(0,184,217,1),rgba(0,101,255,1)); - background-origin: padding-box,padding-box,padding-box; - background-position: left center,right center,0% 0%; - background-repeat: no-repeat,no-repeat,repeat; - background-size: contain,contain,auto; - background-color: rgba(0,101,255,1); - color: rgba(255,255,255,1); - } - - .cysMEE a { - color: rgba(255,255,255,0.8); - } - - .cysMEE a:hover { - color: rgba(255,255,255,1); - } - - .cysMEE *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cysMEE *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .cysMEE { - background-attachment: scroll,scroll,scroll; - background-blend-mode: normal,normal,normal; - background-clip: border-box,border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/7KgS3XVFhGu3TiclJKloEp/c10aad15fb171a6c245db9cb7910247d/ViewsBackground_Left_Narrow.svg"),url("//images.ctfassets.net/rz1oowkt5gyp/2HisRmboWIdXSYaaUSDzon/dadecff4be8a39bf2cf3cc537bd4d9c1/ViewsBackground_Right_Narrow.svg"),linear-gradient(240deg,rgba(0,184,217,1),rgba(0,101,255,1)); - background-origin: padding-box,padding-box,padding-box; - background-position: left center,right center,0% 0%; - background-repeat: no-repeat,no-repeat,repeat; - background-size: contain,contain,auto; - background-color: rgba(0,101,255,1); - color: rgba(255,255,255,1); - } - - .cysMEE a { - color: rgba(255,255,255,0.8); - } - - .cysMEE a:hover { - color: rgba(255,255,255,1); - } - - .cysMEE *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cysMEE *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .cysMEE { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(240deg,rgba(0,184,217,1),rgba(0,101,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(0,101,255,1); - color: rgba(255,255,255,1); - } - - .cysMEE a { - color: rgba(255,255,255,0.8); - } - - .cysMEE a:hover { - color: rgba(255,255,255,1); - } - - .cysMEE *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cysMEE *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .cysMEE { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(240deg,rgba(0,184,217,1),rgba(0,101,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(0,101,255,1); - color: rgba(255,255,255,1); - } - - .cysMEE a { - color: rgba(255,255,255,0.8); - } - - .cysMEE a:hover { - color: rgba(255,255,255,1); - } - - .cysMEE *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cysMEE *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .cysMEE { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(240deg,rgba(0,184,217,1),rgba(0,101,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(0,101,255,1); - color: rgba(255,255,255,1); - } - - .cysMEE a { - color: rgba(255,255,255,0.8); - } - - .cysMEE a:hover { - color: rgba(255,255,255,1); - } - - .cysMEE *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .cysMEE *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -.COCim { - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .COCim { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .COCim { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .COCim { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .COCim { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .COCim { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -.oQpFP { - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .oQpFP { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(180deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .oQpFP { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(180deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .oQpFP { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(180deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .oQpFP { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(180deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .oQpFP { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(180deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: no-repeat; - background-size: auto; - background-color: transparent; - } -} - -/*!sc*/ - -.bgAnDe { - -webkit-scroll-margin-top: 72px; - -moz-scroll-margin-top: 72px; - -ms-scroll-margin-top: 72px; - scroll-margin-top: 72px; -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .bgAnDe { - background-attachment: scroll,scroll,scroll; - background-blend-mode: normal,normal,normal; - background-clip: border-box,border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/6Q4l8SJeMZGSu1m6W9vAjL/1021a10f6940ce44c50d0ffaefec223e/BigSwingFooterHeroGraphic__Left.svg"),url("//images.ctfassets.net/rz1oowkt5gyp/7KsuX6srvRqJVzeAIdIzIb/da1a3319c278d251ecbd078fcffdcd23/BigSwingFooterHeroGraphic__Right.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box,padding-box; - background-position: left center,right center,0% 0%; - background-repeat: no-repeat,no-repeat,repeat; - background-size: contain,contain,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .bgAnDe a { - color: rgba(255,255,255,0.8); - } - - .bgAnDe a:hover { - color: rgba(255,255,255,1); - } - - .bgAnDe *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bgAnDe *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .bgAnDe { - background-attachment: scroll,scroll,scroll; - background-blend-mode: normal,normal,normal; - background-clip: border-box,border-box,border-box; - background-image: url("//images.ctfassets.net/rz1oowkt5gyp/6Q4l8SJeMZGSu1m6W9vAjL/1021a10f6940ce44c50d0ffaefec223e/BigSwingFooterHeroGraphic__Left.svg"),url("//images.ctfassets.net/rz1oowkt5gyp/7KsuX6srvRqJVzeAIdIzIb/da1a3319c278d251ecbd078fcffdcd23/BigSwingFooterHeroGraphic__Right.svg"),linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box,padding-box,padding-box; - background-position: left center,right center,0% 0%; - background-repeat: no-repeat,no-repeat,repeat; - background-size: contain,contain,auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .bgAnDe a { - color: rgba(255,255,255,0.8); - } - - .bgAnDe a:hover { - color: rgba(255,255,255,1); - } - - .bgAnDe *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bgAnDe *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .bgAnDe { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .bgAnDe a { - color: rgba(255,255,255,0.8); - } - - .bgAnDe a:hover { - color: rgba(255,255,255,1); - } - - .bgAnDe *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bgAnDe *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .bgAnDe { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .bgAnDe a { - color: rgba(255,255,255,0.8); - } - - .bgAnDe a:hover { - color: rgba(255,255,255,1); - } - - .bgAnDe *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bgAnDe *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .bgAnDe { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(82,67,170,1); - color: rgba(255,255,255,1); - } - - .bgAnDe a { - color: rgba(255,255,255,0.8); - } - - .bgAnDe a:hover { - color: rgba(255,255,255,1); - } - - .bgAnDe *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bgAnDe *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -data-styled.g72[id="UiSectionstyles__Section-sc-4xxafg-0"] { - content: "cDvxpF,dupAVh,cysMEE,COCim,oQpFP,bgAnDe,"; -} - -/*!sc*/ - -.emERQn ol, -.emERQn ul { - text-align: left; -} - -/*!sc*/ - -.emERQn ol p, -.emERQn ul p { - margin: 0; -} - -/*!sc*/ - -.emERQn blockquote { - display: inline-block; - font-size: 1.5rem; - line-height: 1.5; - margin-bottom: 1rem; -} - -/*!sc*/ - -.emERQn blockquote > * { - margin-top: 1rem; - margin-left: 4.5rem; - margin-right: 1rem; -} - -/*!sc*/ - -@media (max-width:576px) { - .emERQn blockquote > * { - margin-top: 0.7rem; - margin-left: 4rem; - margin-bottom: 1rem; - } -} - -/*!sc*/ - -.emERQn blockquote::before { - position: absolute; - color: rgba(0,163,191,1); - content: '“'; - font-weight: 300; - font-size: 6.5rem; - margin-top: -0.8rem; -} - -/*!sc*/ - -@media (max-width:576px) { - .emERQn blockquote::before { - font-size: 5.5rem; - margin-top: -1rem; - } -} - -/*!sc*/ - -.hEevuu { - font-size: 1rem; -} - -/*!sc*/ - -.hEevuu ol, -.hEevuu ul { - text-align: left; -} - -/*!sc*/ - -.hEevuu ol p, -.hEevuu ul p { - margin: 0; -} - -/*!sc*/ - -.hEevuu blockquote { - display: inline-block; - font-size: 1.5rem; - line-height: 1.5; - margin-bottom: 1rem; -} - -/*!sc*/ - -.hEevuu blockquote > * { - margin-top: 1rem; - margin-left: 4.5rem; - margin-right: 1rem; -} - -/*!sc*/ - -@media (max-width:576px) { - .hEevuu blockquote > * { - margin-top: 0.7rem; - margin-left: 4rem; - margin-bottom: 1rem; - } -} - -/*!sc*/ - -.hEevuu blockquote::before { - position: absolute; - color: rgba(0,163,191,1); - content: '“'; - font-weight: 300; - font-size: 6.5rem; - margin-top: -0.8rem; -} - -/*!sc*/ - -@media (max-width:576px) { - .hEevuu blockquote::before { - font-size: 5.5rem; - margin-top: -1rem; - } -} - -/*!sc*/ - -data-styled.g73[id="UiTextBlock__TextBlock-sc-18qp69o-0"] { - content: "emERQn,hEevuu,"; -} - -/*!sc*/ - -.emazsG { - height: 0.25rem; -} - -/*!sc*/ - -@media (min-width:768px) { - .emazsG { - height: 0.5rem; - } -} - -/*!sc*/ - -.jAuYNL { - height: 1rem; -} - -/*!sc*/ - -@media (min-width:768px) { - .jAuYNL { - height: 1.5rem; - } -} - -/*!sc*/ - -.htNxVV { - height: 2rem; -} - -/*!sc*/ - -@media (min-width:768px) { - .htNxVV { - height: 3rem; - } -} - -/*!sc*/ - -.kccKGe { - height: 6rem; -} - -/*!sc*/ - -@media (min-width:768px) { - .kccKGe { - height: 8rem; - } -} - -/*!sc*/ - -data-styled.g74[id="UiSpacerstyles__Spacer-sc-3m9z76-0"] { - content: "emazsG,jAuYNL,htNxVV,kccKGe,"; -} - -/*!sc*/ - -.HlPFN { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - gap: 1rem; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -/*!sc*/ - -@media (max-width:767.98px) { - .HlPFN > div { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } - - .HlPFN > div a, - .HlPFN > div button { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - width: 100%; - } -} - -/*!sc*/ - -.xs-text-left .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: start; - -webkit-justify-content: start; - -ms-flex-pack: start; - justify-content: start; -} - -/*!sc*/ - -.xs-text-center .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; -} - -/*!sc*/ - -@media (min-width:576px) { - .sm-text-left .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: start; - -webkit-justify-content: start; - -ms-flex-pack: start; - justify-content: start; - } - - .sm-text-center .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } -} - -/*!sc*/ - -@media (min-width:768px) { - .HlPFN { - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .md-text-left .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: start; - -webkit-justify-content: start; - -ms-flex-pack: start; - justify-content: start; - } - - .md-text-center .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .lg-text-left .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: start; - -webkit-justify-content: start; - -ms-flex-pack: start; - justify-content: start; - } - - .lg-text-center .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .xl-text-left .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: start; - -webkit-justify-content: start; - -ms-flex-pack: start; - justify-content: start; - } - - .xl-text-center .UiEmailSignupstyles__Form-sc-9nggyw-0 { - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - } -} - -/*!sc*/ - -data-styled.g75[id="UiEmailSignupstyles__Form-sc-9nggyw-0"] { - content: "HlPFN,"; -} - -/*!sc*/ - -.ZIPtJ { - display: none; - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; - border: 1px solid rgba(223,225,230,1); - border-radius: 0.3rem; - max-width: 300px; - padding-left: 0.75rem; - padding-right: 0.75rem; - -webkit-transition: 250ms ease-out; - transition: 250ms ease-out; - width: 376px; -} - -/*!sc*/ - -.ZIPtJ::-webkit-input-placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -.ZIPtJ::-moz-placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -.ZIPtJ:-ms-input-placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -.ZIPtJ::placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -@media (min-width:768px) { - .ZIPtJ { - display: block; - } -} - -/*!sc*/ - -.ZIOGU { - display: none; - font-size: 1rem; - padding: 0.7rem 1rem 0.8rem; - border: 1px solid rgba(223,225,230,1); - border-radius: 0.3rem; - max-width: 376px; - padding-left: 0.75rem; - padding-right: 0.75rem; - -webkit-transition: 250ms ease-out; - transition: 250ms ease-out; - width: 376px; -} - -/*!sc*/ - -.ZIOGU::-webkit-input-placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -.ZIOGU::-moz-placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -.ZIOGU:-ms-input-placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -.ZIOGU::placeholder { - color: rgba(151,160,175,1); - opacity: 1; -} - -/*!sc*/ - -@media (min-width:768px) { - .ZIOGU { - display: block; - } -} - -/*!sc*/ - -data-styled.g76[id="UiEmailSignupstyles__InputEmail-sc-9nggyw-1"] { - content: "ZIPtJ,ZIOGU,"; -} - -/*!sc*/ - -.oKpLa { - cursor: pointer; -} - -/*!sc*/ - -data-styled.g81[id="styled__ModalTrigger-sc-m8hkdo-4"] { - content: "oKpLa,"; -} - -/*!sc*/ - -.eYmxm { - max-width: 100%; - height: auto; -} - -/*!sc*/ - -data-styled.g82[id="Picture__Image-sc-1wdxyb4-0"] { - content: "eYmxm,"; -} - -/*!sc*/ - -.ioFJhv { - margin: 0 0 1rem; -} - -/*!sc*/ - -data-styled.g83[id="UiImage__Image-sc-1ti1qem-0"] { - content: "ioFJhv,"; -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .bnHhDv { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(178,212,255,1); - color: rgba(9,30,66,1); - } - - .bnHhDv a { - color: rgba(0,82,204,1); - } - - .bnHhDv a:hover { - color: rgba(7,71,166,1); - } - - .bnHhDv *:focus { - outline: 2px solid rgba(9,30,66,1); - } - - .bnHhDv *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .bnHhDv { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(178,212,255,1); - color: rgba(9,30,66,1); - } - - .bnHhDv a { - color: rgba(0,82,204,1); - } - - .bnHhDv a:hover { - color: rgba(7,71,166,1); - } - - .bnHhDv *:focus { - outline: 2px solid rgba(9,30,66,1); - } - - .bnHhDv *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .bnHhDv { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(178,212,255,1); - color: rgba(9,30,66,1); - } - - .bnHhDv a { - color: rgba(0,82,204,1); - } - - .bnHhDv a:hover { - color: rgba(7,71,166,1); - } - - .bnHhDv *:focus { - outline: 2px solid rgba(9,30,66,1); - } - - .bnHhDv *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .bnHhDv { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(178,212,255,1); - color: rgba(9,30,66,1); - } - - .bnHhDv a { - color: rgba(0,82,204,1); - } - - .bnHhDv a:hover { - color: rgba(7,71,166,1); - } - - .bnHhDv *:focus { - outline: 2px solid rgba(9,30,66,1); - } - - .bnHhDv *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .bnHhDv { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(178,212,255,1); - color: rgba(9,30,66,1); - } - - .bnHhDv a { - color: rgba(0,82,204,1); - } - - .bnHhDv a:hover { - color: rgba(7,71,166,1); - } - - .bnHhDv *:focus { - outline: 2px solid rgba(9,30,66,1); - } - - .bnHhDv *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -data-styled.g84[id="UiSectionGroupstyles__SectionGroup-sc-1nf7lnh-0"] { - content: "bnHhDv,"; -} - -/*!sc*/ - -@media (max-width:768px) { - .iXMLSU { - text-align: left; - } -} - -/*!sc*/ - -data-styled.g85[id="UiFeatureSectionstyles__TitlesContainer-sc-1sxbkhi-0"] { - content: "iXMLSU,"; -} - -/*!sc*/ - -.eqdYUU { - padding-bottom: 1rem; -} - -/*!sc*/ - -@media (max-width:768px) { - .eqdYUU { - padding-bottom: 0.5rem; - } -} - -/*!sc*/ - -data-styled.g86[id="UiFeatureSectionstyles__Title-sc-1sxbkhi-1"] { - content: "eqdYUU,"; -} - -/*!sc*/ - -.dAHVNT { - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1rem; - line-height: 1.25; - text-transform: uppercase; -} - -/*!sc*/ - -data-styled.g87[id="UiFeatureSectionstyles__Eyebrow-sc-1sxbkhi-2"] { - content: "dAHVNT,"; -} - -/*!sc*/ - -@media (max-width:768px) { - .hlCKXj p { - text-align: left; - } -} - -/*!sc*/ - -data-styled.g89[id="UiFeatureSectionstyles__BodyCopy-sc-1sxbkhi-4"] { - content: "hlCKXj,"; -} - -/*!sc*/ - -.gQBPsj { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 1rem; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; -} - -/*!sc*/ - -.fhfTgY { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 0; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; -} - -/*!sc*/ - -.dBwIbP { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 1rem; - height: 100%; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; -} - -/*!sc*/ - -.dBwIbP > .link-buttonstyles__BxpButton-sc-1utqn26-1:last-child, -.dBwIbP > .link-buttonstyles__BxpLink-sc-1utqn26-0:last-child { - margin-top: auto; - padding-top: 1rem; -} - -/*!sc*/ - -data-styled.g91[id="Stack-sc-98g4c-0"] { - content: "gQBPsj,fhfTgY,dBwIbP,"; -} - -/*!sc*/ - -.bROdbN { - background-color: transparent; - border: none; - cursor: pointer; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -webkit-justify-content: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0; -} - -/*!sc*/ - -.bROdbN svg { - fill: rgba(244,245,247,1); -} - -/*!sc*/ - -.bROdbN svg path { - stroke: rgba(122,134,154,1); -} - -/*!sc*/ - -.bROdbN:hover svg path { - stroke: rgba(0,184,217,1); -} - -/*!sc*/ - -data-styled.g92[id="ArrowControlsstyles__Arrow-sc-18q989d-0"] { - content: "bROdbN,"; -} - -/*!sc*/ - -.ctVlwv { - overflow: hidden; -} - -/*!sc*/ - -data-styled.g93[id="Carouselstyles__Mask-sc-z6wsqn-0"] { - content: "ctVlwv,"; -} - -/*!sc*/ - -.haFEVv { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 1.5rem; -} - -/*!sc*/ - -data-styled.g94[id="Carouselstyles__Frame-sc-z6wsqn-1"] { - content: "haFEVv,"; -} - -/*!sc*/ - -.hbIFpB { - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -/*!sc*/ - -data-styled.g95[id="Carouselstyles__Track-sc-z6wsqn-2"] { - content: "hbIFpB,"; -} - -/*!sc*/ - -.oQtLv { - box-sizing: content-box; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - width: 100%; -} - -/*!sc*/ - -.oQtLv img { - pointer-events: none; -} - -/*!sc*/ - -data-styled.g96[id="Carouselstyles__Slide-sc-z6wsqn-3"] { - content: "oQtLv,"; -} - -/*!sc*/ - -.htfiii { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: space-around; - -webkit-justify-content: space-around; - -ms-flex-pack: space-around; - justify-content: space-around; - gap: 1.5rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .htfiii { - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} - -/*!sc*/ - -data-styled.g97[id="Carouselstyles__Controls-sc-z6wsqn-4"] { - content: "htfiii,"; -} - -/*!sc*/ - -.dJUAhd { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; -} - -/*!sc*/ - -@media (min-width:992px) { - .dJUAhd { - display: none; - } -} - -/*!sc*/ - -data-styled.g98[id="Carouselstyles__MobileControls-sc-z6wsqn-5"] { - content: "dJUAhd,"; -} - -/*!sc*/ - -.cDXZEw { - display: none; -} - -/*!sc*/ - -@media (min-width:992px) { - .cDXZEw { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - } -} - -/*!sc*/ - -data-styled.g99[id="Carouselstyles__DesktopControls-sc-z6wsqn-6"] { - content: "cDXZEw,"; -} - -/*!sc*/ - -.ikFpyC { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - gap: 0.5rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .ikFpyC { - display: none; - } -} - -/*!sc*/ - -.ikMFNv { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - gap: 0.5rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .ikMFNv { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - } -} - -/*!sc*/ - -data-styled.g100[id="Carouselstyles__Dots-sc-z6wsqn-7"] { - content: "ikFpyC,ikMFNv,"; -} - -/*!sc*/ - -.foFyjH { - background-color: currentcolor; - border: 0; - border-radius: 0.25rem; - color: inherit; - cursor: pointer; - display: block; - height: 0.5rem; - padding: 0; - -webkit-transition: all 0.3s ease; - transition: all 0.3s ease; - width: 0.5rem; -} - -/*!sc*/ - -.foFyjH:hover, -.foFyjH:focus, -.foFyjH[data-selected='true'] { - background-color: currentcolor; - opacity: 50%; -} - -/*!sc*/ - -.foFyjH[data-selected='true'] { - width: 3.75rem; -} - -/*!sc*/ - -data-styled.g101[id="Carouselstyles__Dot-sc-z6wsqn-8"] { - content: "foFyjH,"; -} - -/*!sc*/ - -.ccNjxt { - background-color: rgba(255,255,255,1); - color: rgba(9,30,66,1); - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); - border-radius: 0.3rem; - border: 0; - height: 100%; - padding: 1rem; - padding-left: 1.5rem; - position: relative; - text-align: left; -} - -/*!sc*/ - -.ccNjxt a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -.ccNjxt a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -.ccNjxt *:focus { - outline: 2px solid rgba(9,30,66,1); -} - -/*!sc*/ - -.ccNjxt *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -.ccNjxt:after { - background-color: rgba(0,199,229,1); - border-radius: 0.3rem 0 0 0.3rem; - bottom: 0; - content: ''; - left: 0; - position: absolute; - top: 0; - width: 0.5rem; -} - -/*!sc*/ - -.ccNjxt h1, -.ccNjxt h2, -.ccNjxt h3, -.ccNjxt p { - font-size: 1rem; -} - -/*!sc*/ - -.ccNjxt *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ccNjxt > div { - height: 100%; -} - -/*!sc*/ - -.dplfCp { - background-color: transparent; - color: inherit; - border-radius: 0.3rem; - border: 0; - height: 100%; - padding: 1rem; - padding-left: 1.5rem; - position: relative; - text-align: left; -} - -/*!sc*/ - -.dplfCp h1, -.dplfCp h2, -.dplfCp h3, -.dplfCp p { - font-size: 1rem; -} - -/*!sc*/ - -.dplfCp *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.dplfCp > div { - height: 100%; -} - -/*!sc*/ - -data-styled.g102[id="UiListCarouselstyles__LinkItem-sc-xa0ove-0"] { - content: "ccNjxt,dplfCp,"; -} - -/*!sc*/ - -.gdYPRl { - padding: 1rem 0; -} - -/*!sc*/ - -data-styled.g103[id="UiListCarouselstyles__StackPadding-sc-xa0ove-1"] { - content: "gdYPRl,"; -} - -/*!sc*/ - -.envePj input, -.envePj textarea, -.envePj select { - background: rgba(255,255,255,1); -} - -/*!sc*/ - -.envePj h3 { - border: none; -} - -/*!sc*/ - -.envePj .mktoButton { - margin-bottom: 0; -} - -/*!sc*/ - -.envePj > * { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -/*!sc*/ - -.envePj *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.ePkMgG { - padding: 1.5rem; - height: 100%; - background-color: rgba(250,251,252,1); - color: rgba(9,30,66,1); - border-radius: 0.5rem; - overflow: hidden; -} - -/*!sc*/ - -.ePkMgG a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -.ePkMgG a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -.ePkMgG *:focus { - outline: 2px solid rgba(9,30,66,1); -} - -/*!sc*/ - -.ePkMgG *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -.ePkMgG input, -.ePkMgG textarea, -.ePkMgG select { - background: rgba(255,255,255,1); -} - -/*!sc*/ - -.ePkMgG h3 { - border: none; -} - -/*!sc*/ - -.ePkMgG .mktoButton { - margin-bottom: 0; -} - -/*!sc*/ - -.ePkMgG > * { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -/*!sc*/ - -.ePkMgG *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -.eDeYK { - padding: 1.5rem; - height: 100%; - background-color: rgba(250,251,252,1); - color: rgba(9,30,66,1); -} - -/*!sc*/ - -.eDeYK a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -.eDeYK a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -.eDeYK *:focus { - outline: 2px solid rgba(9,30,66,1); -} - -/*!sc*/ - -.eDeYK *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -.eDeYK input, -.eDeYK textarea, -.eDeYK select { - background: rgba(255,255,255,1); -} - -/*!sc*/ - -.eDeYK h3 { - border: none; -} - -/*!sc*/ - -.eDeYK .mktoButton { - margin-bottom: 0; -} - -/*!sc*/ - -.eDeYK > * { - -webkit-box-flex: 1; - -webkit-flex-grow: 1; - -ms-flex-positive: 1; - flex-grow: 1; -} - -/*!sc*/ - -.eDeYK *:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g104[id="UiBlockstyles__Block-sc-1xmll5s-0"] { - content: "envePj,ePkMgG,eDeYK,"; -} - -/*!sc*/ - -.hkvOqv { - padding-bottom: 2rem; -} - -/*!sc*/ - -data-styled.g105[id="UiTemplateGallerystyles__Section-sc-s9602e-0"] { - content: "hkvOqv,"; -} - -/*!sc*/ - -.itOKSq { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: space-around; - -webkit-justify-content: space-around; - -ms-flex-pack: space-around; - justify-content: space-around; - display: none; - gap: 1.5rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .itOKSq { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: end; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; - } -} - -/*!sc*/ - -data-styled.g106[id="FullWidthCarouselstyles__Controls-sc-16jty68-0"] { - content: "itOKSq,"; -} - -/*!sc*/ - -.fwSgiY { - overflow-x: hidden; -} - -/*!sc*/ - -.fwSgiY .grid__Row-sc-p40pqe-1 { - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - padding-bottom: 1rem; - width: calc(100% + 2rem); -} - -/*!sc*/ - -data-styled.g107[id="FullWidthCarouselstyles__DraggableContainer-sc-16jty68-1"] { - content: "fwSgiY,"; -} - -/*!sc*/ - -.hQDEpm { - background-color: rgba(244,245,247,1); - border-radius: 0.5rem; - height: 1rem; - margin-top: 1rem; - position: relative; -} - -/*!sc*/ - -@media (min-width:992px) { - .hQDEpm { - display: none; - } -} - -/*!sc*/ - -data-styled.g108[id="FullWidthCarouselstyles__ScrollBar-sc-16jty68-2"] { - content: "hQDEpm,"; -} - -/*!sc*/ - -.dVEYRI { - background-color: rgba(151,160,175,1); - border-radius: 0.5rem; - height: 1rem; - position: absolute; - -webkit-transition: left 0.6s ease; - transition: left 0.6s ease; -} - -/*!sc*/ - -data-styled.g109[id="FullWidthCarouselstyles__ScrollPosition-sc-16jty68-3"] { - content: "dVEYRI,"; -} - -/*!sc*/ - -.rogGT { - border-radius: 0.5rem; - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); - color: inherit; - display: block; - height: 100%; - margin: 0; - overflow: hidden; - text-align: left; - -webkit-text-decoration: none; - text-decoration: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - white-space: normal; - width: auto; -} - -/*!sc*/ - -.rogGT:hover, -.rogGT:focus { - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.25); - color: inherit; -} - -/*!sc*/ - -data-styled.g110[id="TrelloTemplatestyles__Template-sc-86cugx-0"] { - content: "rogGT,"; -} - -/*!sc*/ - -.hNWOlT { - height: 2rem; - background-size: cover; - background: rgba(255,116,82,1); -} - -/*!sc*/ - -@media (min-width:576px) { - .hNWOlT { - height: 3rem; - } -} - -/*!sc*/ - -.grqWLk { - height: 2rem; - background-size: cover; - background: rgba(38,132,255,1); -} - -/*!sc*/ - -@media (min-width:576px) { - .grqWLk { - height: 3rem; - } -} - -/*!sc*/ - -.cELStS { - height: 2rem; - background-size: cover; - background: rgba(87,217,163,1); -} - -/*!sc*/ - -@media (min-width:576px) { - .cELStS { - height: 3rem; - } -} - -/*!sc*/ - -.bxLzQJ { - height: 2rem; - background-size: cover; - background: rgba(255,196,0,1); -} - -/*!sc*/ - -@media (min-width:576px) { - .bxLzQJ { - height: 3rem; - } -} - -/*!sc*/ - -.lnQKVZ { - height: 2rem; - background-size: cover; - background: rgba(0,199,229,1); -} - -/*!sc*/ - -@media (min-width:576px) { - .lnQKVZ { - height: 3rem; - } -} - -/*!sc*/ - -.kgNiiW { - height: 2rem; - background-size: cover; - background: rgba(249,156,219,1); -} - -/*!sc*/ - -@media (min-width:576px) { - .kgNiiW { - height: 3rem; - } -} - -/*!sc*/ - -data-styled.g112[id="TrelloTemplatestyles__ReducedTemplateHero-sc-86cugx-2"] { - content: "hNWOlT,grqWLk,cELStS,bxLzQJ,lnQKVZ,kgNiiW,"; -} - -/*!sc*/ - -.bgvUWO { - background-color: rgba(255,255,255,1); - background-image: url(//images.ctfassets.net/rz1oowkt5gyp/5Oc1c9iIDmXtUFHs0uWuLQ/cef21b3212ac080d9d0adad649dc31e9/icon-content-folder_2x.png); - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - border-color: rgba(255,255,255,1); - border-radius: 0.5rem; - border-style: solid; - border-width: 8px; - height: 3rem; - left: 1rem; - position: absolute; - top: -1.5rem; - width: 3rem; -} - -/*!sc*/ - -.eUOZOn { - background-color: rgba(255,255,255,1); - background-image: url(//images.ctfassets.net/rz1oowkt5gyp/5j0J5BEzFktzLYnsszcJWc/be9270f9ea1e9bb3c69a799e54ef9fea/icon-object-megaphone_2x.png); - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - border-color: rgba(255,255,255,1); - border-radius: 0.5rem; - border-style: solid; - border-width: 8px; - height: 3rem; - left: 1rem; - position: absolute; - top: -1.5rem; - width: 3rem; -} - -/*!sc*/ - -.gRxMAA { - background-color: rgba(255,255,255,1); - background-image: url(//images.ctfassets.net/rz1oowkt5gyp/5JwPiAFuOJCWEdYiTqlfs3/ca86f7f918d09a1782284ba4578a28ec/icon-object-leaf_2x.png); - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - border-color: rgba(255,255,255,1); - border-radius: 0.5rem; - border-style: solid; - border-width: 8px; - height: 3rem; - left: 1rem; - position: absolute; - top: -1.5rem; - width: 3rem; -} - -/*!sc*/ - -.iRWtjz { - background-color: rgba(255,255,255,1); - background-image: url(//images.ctfassets.net/rz1oowkt5gyp/4Mgm4SG6P6bD673rMtNpXP/9f8798510480b30d296550be747b9624/icon-content-checklists_2x.png); - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - border-color: rgba(255,255,255,1); - border-radius: 0.5rem; - border-style: solid; - border-width: 8px; - height: 3rem; - left: 1rem; - position: absolute; - top: -1.5rem; - width: 3rem; -} - -/*!sc*/ - -.kIYtDi { - background-color: rgba(255,255,255,1); - background-image: url(//images.ctfassets.net/rz1oowkt5gyp/x2AI5JZPTDVY7BxKbvClM/dc65b20bf0914caa72bcaf2ddbb05d9b/UseCasesBrainstorming.svg); - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - border-color: rgba(255,255,255,1); - border-radius: 0.5rem; - border-style: solid; - border-width: 8px; - height: 3rem; - left: 1rem; - position: absolute; - top: -1.5rem; - width: 3rem; -} - -/*!sc*/ - -.gAonen { - background-color: rgba(255,255,255,1); - background-image: url(//images.ctfassets.net/rz1oowkt5gyp/5rv4eidOfMf1vdEzVpHNlA/bb102f380f9cfd3d1761858d8910963d/icon-object-book_2x.png); - background-position: center center; - background-repeat: no-repeat; - background-size: contain; - border-color: rgba(255,255,255,1); - border-radius: 0.5rem; - border-style: solid; - border-width: 8px; - height: 3rem; - left: 1rem; - position: absolute; - top: -1.5rem; - width: 3rem; -} - -/*!sc*/ - -data-styled.g113[id="TrelloTemplatestyles__TemplateAvatar-sc-86cugx-3"] { - content: "bgvUWO,eUOZOn,gRxMAA,iRWtjz,kIYtDi,gAonen,"; -} - -/*!sc*/ - -.fzULwq { - padding: 2.25rem 1.5rem 1.5rem 1.5rem; - position: relative; -} - -/*!sc*/ - -.fzULwq p { - font-size: 1rem; - margin: 0; -} - -/*!sc*/ - -.fzULwq p.muted { - color: rgba(94,108,132,1); -} - -/*!sc*/ - -.fzULwq p + p { - margin-top: 0.5rem; -} - -/*!sc*/ - -data-styled.g114[id="TrelloTemplatestyles__TemplateContent-sc-86cugx-4"] { - content: "fzULwq,"; -} - -/*!sc*/ - -.dfJOzH { - background-color: rgba(255,255,255,1); - color: rgba(9,30,66,1); - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.5rem; - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 2rem; - padding: 1.5rem; - text-align: left; -} - -/*!sc*/ - -.dfJOzH a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -.dfJOzH a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -.dfJOzH *:focus { - outline: 2px solid rgba(9,30,66,1); -} - -/*!sc*/ - -.dfJOzH *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .dfJOzH { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - padding: 2rem; - } -} - -/*!sc*/ - -.cDDCse { - background-color: rgba(255,255,255,1); - color: rgba(9,30,66,1); - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 0.5rem; - box-shadow: 0 0.5rem 1rem 0 rgba(9,30,66,0.15); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - gap: 2rem; - padding: 1.5rem; - text-align: left; -} - -/*!sc*/ - -.cDDCse a { - color: rgba(0,82,204,1); -} - -/*!sc*/ - -.cDDCse a:hover { - color: rgba(7,71,166,1); -} - -/*!sc*/ - -.cDDCse *:focus { - outline: 2px solid rgba(9,30,66,1); -} - -/*!sc*/ - -.cDDCse *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .cDDCse { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - padding: 2rem; - -webkit-flex-direction: row-reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - } -} - -/*!sc*/ - -data-styled.g115[id="UiCalloutstyles__Callout-sc-180dw8j-0"] { - content: "dfJOzH,cDDCse,"; -} - -/*!sc*/ - -@media (min-width:992px) { - .hdEKPe { - width: 55%; - } -} - -/*!sc*/ - -data-styled.g116[id="UiCalloutstyles__CalloutMedia-sc-180dw8j-1"] { - content: "hdEKPe,"; -} - -/*!sc*/ - -.bCPqeC { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - gap: 1rem; - margin-bottom: 1.5rem; -} - -/*!sc*/ - -.bCPqeC svg { - display: block; - height: auto; - width: 2rem; -} - -/*!sc*/ - -.bCPqeC h3 { - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1rem; - line-height: 1.25; - text-transform: uppercase; - margin: 0; -} - -/*!sc*/ - -data-styled.g117[id="UiCalloutstyles__CalloutHeading-sc-180dw8j-2"] { - content: "bCPqeC,"; -} - -/*!sc*/ - -.goUWGk { - display: none; -} - -/*!sc*/ - -@media (min-width:992px) { - .goUWGk { - color: rgba(135,119,217,1); - display: block; - } -} - -/*!sc*/ - -.iBAnpS { - display: none; -} - -/*!sc*/ - -@media (min-width:992px) { - .iBAnpS { - color: rgba(0,199,229,1); - display: block; - } -} - -/*!sc*/ - -data-styled.g118[id="UiCalloutstyles__CalloutIcon-sc-180dw8j-3"] { - content: "goUWGk,iBAnpS,"; -} - -/*!sc*/ - -.fwfPWX p:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .fwfPWX { - padding: 0 2rem; - width: 45%; - } -} - -/*!sc*/ - -data-styled.g119[id="UiCalloutstyles__CalloutText-sc-180dw8j-4"] { - content: "fwfPWX,"; -} - -/*!sc*/ - -.bSQGqD { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - height: 100%; - margin: 0; - padding: 2rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .bSQGqD { - padding: 2.5rem 2rem; - } -} - -/*!sc*/ - -@media (min-width:0px) and (max-width:575px) { - .bSQGqD { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(101,84,192,1),rgba(249,156,219,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(101,84,192,1); - color: rgba(255,255,255,1); - } - - .bSQGqD a { - color: rgba(255,255,255,0.8); - } - - .bSQGqD a:hover { - color: rgba(255,255,255,1); - } - - .bSQGqD *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bSQGqD *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:576px) and (max-width:767px) { - .bSQGqD { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(101,84,192,1),rgba(249,156,219,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(101,84,192,1); - color: rgba(255,255,255,1); - } - - .bSQGqD a { - color: rgba(255,255,255,0.8); - } - - .bSQGqD a:hover { - color: rgba(255,255,255,1); - } - - .bSQGqD *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bSQGqD *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:768px) and (max-width:991px) { - .bSQGqD { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(101,84,192,1),rgba(249,156,219,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(101,84,192,1); - color: rgba(255,255,255,1); - } - - .bSQGqD a { - color: rgba(255,255,255,0.8); - } - - .bSQGqD a:hover { - color: rgba(255,255,255,1); - } - - .bSQGqD *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bSQGqD *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:992px) and (max-width:1199px) { - .bSQGqD { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(101,84,192,1),rgba(249,156,219,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(101,84,192,1); - color: rgba(255,255,255,1); - } - - .bSQGqD a { - color: rgba(255,255,255,0.8); - } - - .bSQGqD a:hover { - color: rgba(255,255,255,1); - } - - .bSQGqD *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bSQGqD *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -@media (min-width:1200px) { - .bSQGqD { - background-attachment: scroll; - background-blend-mode: normal; - background-clip: border-box; - background-image: linear-gradient(60deg,rgba(101,84,192,1),rgba(249,156,219,1)); - background-origin: padding-box; - background-position: 0% 0%; - background-repeat: repeat; - background-size: auto; - background-color: rgba(101,84,192,1); - color: rgba(255,255,255,1); - } - - .bSQGqD a { - color: rgba(255,255,255,0.8); - } - - .bSQGqD a:hover { - color: rgba(255,255,255,1); - } - - .bSQGqD *:focus { - outline: 2px solid rgba(255,255,255,1); - } - - .bSQGqD *:focus:not(:focus-visible) { - outline: 0; - } -} - -/*!sc*/ - -.bSQGqD h3 { - font-weight: 500; - margin-bottom: 0.5rem; - margin-top: 0; - font-size: 1.5rem; - line-height: 1.33333333; - margin: 0; -} - -/*!sc*/ - -@media (min-width:768px) { - .bSQGqD h3 { - font-size: 2.25rem; - line-height: 1.33333333; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .bSQGqD { - width: 33.3333%; - } -} - -/*!sc*/ - -data-styled.g121[id="UiSocialProofstyles__ProductFact-sc-fym1cs-0"] { - content: "bSQGqD,"; -} - -/*!sc*/ - -.cwasVy { - margin-top: auto; - padding-top: 1rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .cwasVy { - padding-top: 2rem; - } -} - -/*!sc*/ - -data-styled.g122[id="UiSocialProofstyles__ProductFactLink-sc-fym1cs-1"] { - content: "cwasVy,"; -} - -/*!sc*/ - -.bvDpov { - font-size: 1.5rem; - margin: 0; -} - -/*!sc*/ - -.bvDpov > div p:last-child { - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g123[id="UiSocialProofstyles__Quote-sc-fym1cs-2"] { - content: "bvDpov,"; -} - -/*!sc*/ - -.enZpLY { - margin-top: auto; - padding-top: 1rem; -} - -/*!sc*/ - -.enZpLY:before { - background-color: currentColor; - content: ''; - display: block; - height: 1px; - margin-bottom: 1rem; - max-width: 9rem; -} - -/*!sc*/ - -.enZpLY p { - margin: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .enZpLY { - padding-top: 3.25rem; - } -} - -/*!sc*/ - -data-styled.g124[id="UiSocialProofstyles__QuoteCaption-sc-fym1cs-3"] { - content: "enZpLY,"; -} - -/*!sc*/ - -.gZpdPi { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - height: 100%; - margin: 0; - padding: 2rem; - background-image: url("data:image/svg+xml,%3Csvg fill='none' height='272' width='773' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M351.53 186.369c0-53.88-28.777-83.707-84.412-83.707h-.96c11.511-29.826 48.921-45.22 97.842-48.107V-33c-126.619 6.735-196.643 77.934-196.643 185.694 0 85.631 40.288 119.306 94.964 119.306 54.677 0 89.209-32.713 89.209-85.631Zm-203.357 0c0-53.88-28.777-83.707-84.413-83.707h-.959c11.51-29.826 48.921-45.22 97.842-48.107V-33C34.024-26.265-36 44.934-36 152.694-36 238.325 4.288 272 58.964 272s89.209-32.713 89.209-85.631Z' fill='url(%23b)' opacity='.15' /%3E%3Cdefs%3E%3ClinearGradient id='b' x1='290.667' y1='-33' x2='141.42' y2='307.405' gradientUnits='userSpaceOnUse' %3E%3Cstop stop-color='%23f99cdb' /%3E%3Cstop stop-color='%236554c0' offset='1' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E"); - background-repeat: no-repeat; -} - -/*!sc*/ - -@media (min-width:992px) { - .gZpdPi { - padding: 2.5rem 2rem; - } -} - -/*!sc*/ - -@media (min-width:992px) { - .gZpdPi { - width: 66.6666%; - } -} - -/*!sc*/ - -data-styled.g125[id="UiSocialProofstyles__QuoteFigure-sc-fym1cs-4"] { - content: "gZpdPi,"; -} - -/*!sc*/ - -.dbZHYD { - margin-top: auto; -} - -/*!sc*/ - -.dbZHYD a, -.dbZHYD img { - display: block; - margin-top: 1rem; -} - -/*!sc*/ - -.dbZHYD img { - max-height: 2.25rem; - max-width: 100%; - width: auto; -} - -/*!sc*/ - -@media (min-width:992px) { - .dbZHYD { - -webkit-align-items: baseline; - -webkit-box-align: baseline; - -ms-flex-align: baseline; - align-items: baseline; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - } - - .dbZHYD a, - .dbZHYD img { - margin-top: 1.5rem; - } -} - -/*!sc*/ - -data-styled.g126[id="UiSocialProofstyles__QuoteImageLink-sc-fym1cs-5"] { - content: "dbZHYD,"; -} - -/*!sc*/ - -.iUJVel { - background-color: rgba(255,255,255,1); - border-radius: 0.5rem; - box-shadow: 0px 3px 5px rgba(9,30,66,0.2),0px 0px 1px rgba(9,30,66,0.31); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - font-size: 1rem; - height: 100%; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - overflow: hidden; - text-align: left; -} - -/*!sc*/ - -@media (min-width:992px) { - .iUJVel { - -webkit-flex-direction: row; - -ms-flex-direction: row; - flex-direction: row; - } -} - -/*!sc*/ - -data-styled.g127[id="UiSocialProofstyles__SocialProof-sc-fym1cs-6"] { - content: "iUJVel,"; -} - -/*!sc*/ - -.icRVlm { - height: 100%; - padding: 1px 0.5rem 0.5rem; -} - -/*!sc*/ - -data-styled.g128[id="UiSocialProofstyles__ShadowWrapper-sc-fym1cs-7"] { - content: "icRVlm,"; -} - -/*!sc*/ - -.imZYgE { - display: grid; - grid-template-columns: 1fr; -} - -/*!sc*/ - -@media (min-width:992px) { - .imZYgE { - grid-template-columns: repeat(4,minmax(0,1fr)); - } -} - -/*!sc*/ - -data-styled.g129[id="UiPricingGridstyles__Grid-sc-e5wr9-0"] { - content: "imZYgE,"; -} - -/*!sc*/ - -.fgKJDM { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); - border-top: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .fgKJDM { - margin-bottom: 0; - -webkit-order: 1; - -ms-flex-order: 1; - order: 1; - } -} - -/*!sc*/ - -.ekisZW { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .ekisZW { - margin-bottom: 0; - -webkit-order: 5; - -ms-flex-order: 5; - order: 5; - } -} - -/*!sc*/ - -.jqYxxe { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .jqYxxe { - margin-bottom: 0; - -webkit-order: 9; - -ms-flex-order: 9; - order: 9; - } -} - -/*!sc*/ - -.kUqhtV { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .kUqhtV { - margin-bottom: 0; - -webkit-order: 13; - -ms-flex-order: 13; - order: 13; - } -} - -/*!sc*/ - -.hGhOSQ { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); - padding-bottom: 2rem; - border-bottom: 1px solid rgba(223,225,230,1); - margin-bottom: 1rem; - padding-top: 1rem; -} - -/*!sc*/ - -.hGhOSQ a { - padding: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .hGhOSQ { - margin-bottom: 0; - -webkit-order: 21; - -ms-flex-order: 21; - order: 21; - } -} - -/*!sc*/ - -.oOjOc { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); - border-top: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .oOjOc { - margin-bottom: 0; - border-left: 0; - -webkit-order: 2; - -ms-flex-order: 2; - order: 2; - } -} - -/*!sc*/ - -.gErUgm { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .gErUgm { - margin-bottom: 0; - border-left: 0; - -webkit-order: 6; - -ms-flex-order: 6; - order: 6; - } -} - -/*!sc*/ - -.ccMAGt { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .ccMAGt { - margin-bottom: 0; - border-left: 0; - -webkit-order: 10; - -ms-flex-order: 10; - order: 10; - } -} - -/*!sc*/ - -.eexPWN { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .eexPWN { - margin-bottom: 0; - border-left: 0; - -webkit-order: 14; - -ms-flex-order: 14; - order: 14; - } -} - -/*!sc*/ - -.jXwZWI { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); - padding-bottom: 2rem; - border-bottom: 1px solid rgba(223,225,230,1); - margin-bottom: 1rem; - padding-top: 1rem; -} - -/*!sc*/ - -.jXwZWI a { - padding: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .jXwZWI { - margin-bottom: 0; - border-left: 0; - -webkit-order: 22; - -ms-flex-order: 22; - order: 22; - } -} - -/*!sc*/ - -.iZSnGf { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 2px solid rgba(0,184,217,1); - border-right: 2px solid rgba(0,184,217,1); - border-top: 2px solid rgba(0,184,217,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .iZSnGf { - margin-bottom: 0; - -webkit-order: 3; - -ms-flex-order: 3; - order: 3; - } -} - -/*!sc*/ - -.gRdmkM { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 2px solid rgba(0,184,217,1); - border-right: 2px solid rgba(0,184,217,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .gRdmkM { - margin-bottom: 0; - -webkit-order: 7; - -ms-flex-order: 7; - order: 7; - } -} - -/*!sc*/ - -.blapgr { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 2px solid rgba(0,184,217,1); - border-right: 2px solid rgba(0,184,217,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .blapgr { - margin-bottom: 0; - -webkit-order: 11; - -ms-flex-order: 11; - order: 11; - } -} - -/*!sc*/ - -.dmLEwL { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 2px solid rgba(0,184,217,1); - border-right: 2px solid rgba(0,184,217,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .dmLEwL { - margin-bottom: 0; - -webkit-order: 15; - -ms-flex-order: 15; - order: 15; - } -} - -/*!sc*/ - -.cCrBET { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 2px solid rgba(0,184,217,1); - border-right: 2px solid rgba(0,184,217,1); - padding-bottom: 2rem; - border-bottom: 2px solid rgba(0,184,217,1); - margin-bottom: 1rem; - padding-top: 1rem; -} - -/*!sc*/ - -.cCrBET a { - padding: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .cCrBET { - margin-bottom: 0; - -webkit-order: 23; - -ms-flex-order: 23; - order: 23; - } -} - -/*!sc*/ - -.gqgBMm { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); - border-top: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .gqgBMm { - margin-bottom: 0; - border-left: 0; - -webkit-order: 4; - -ms-flex-order: 4; - order: 4; - } -} - -/*!sc*/ - -.dmssUY { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .dmssUY { - margin-bottom: 0; - border-left: 0; - -webkit-order: 8; - -ms-flex-order: 8; - order: 8; - } -} - -/*!sc*/ - -.dxLaqX { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .dxLaqX { - margin-bottom: 0; - border-left: 0; - -webkit-order: 12; - -ms-flex-order: 12; - order: 12; - } -} - -/*!sc*/ - -.fzwpHr { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); -} - -/*!sc*/ - -@media (min-width:992px) { - .fzwpHr { - margin-bottom: 0; - border-left: 0; - -webkit-order: 16; - -ms-flex-order: 16; - order: 16; - } -} - -/*!sc*/ - -.dCmExi { - background-color: rgba(255,255,255,1); - padding: 1.5rem 1rem 0; - text-align: left; - border-left: 1px solid rgba(223,225,230,1); - border-right: 1px solid rgba(223,225,230,1); - padding-bottom: 2rem; - border-bottom: 1px solid rgba(223,225,230,1); - margin-bottom: 1rem; - padding-top: 1rem; -} - -/*!sc*/ - -.dCmExi a { - padding: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .dCmExi { - margin-bottom: 0; - border-left: 0; - -webkit-order: 24; - -ms-flex-order: 24; - order: 24; - } -} - -/*!sc*/ - -data-styled.g130[id="UiPricingGridstyles__Item-sc-e5wr9-1"] { - content: "fgKJDM,ekisZW,jqYxxe,kUqhtV,hGhOSQ,oOjOc,gErUgm,ccMAGt,eexPWN,jXwZWI,iZSnGf,gRdmkM,blapgr,dmLEwL,cCrBET,gqgBMm,dmssUY,dxLaqX,fzwpHr,dCmExi,"; -} - -/*!sc*/ - -.cNVWyU { - font-size: 1rem; - text-transform: uppercase; - margin: 0; -} - -/*!sc*/ - -data-styled.g131[id="UiPricingGridstyles__Title-sc-e5wr9-2"] { - content: "cNVWyU,"; -} - -/*!sc*/ - -.flOKMi { - font-size: 1rem; - margin-bottom: 0; -} - -/*!sc*/ - -data-styled.g132[id="UiPricingGridstyles__Description-sc-e5wr9-3"] { - content: "flOKMi,"; -} - -/*!sc*/ - -.dkqzUB { - font-size: 3rem; - line-height: 1; - margin-bottom: 0.5rem; -} - -/*!sc*/ - -data-styled.g133[id="UiPricingGridstyles__Price-sc-e5wr9-4"] { - content: "dkqzUB,"; -} - -/*!sc*/ - -.ggkZLA { - font-size: 1rem; -} - -/*!sc*/ - -data-styled.g134[id="UiPricingGridstyles__PriceAppend-sc-e5wr9-5"] { - content: "ggkZLA,"; -} - -/*!sc*/ - -.tOUDm { - color: rgba(80,95,121,1); - font-size: 0.75rem; - margin: 0; -} - -/*!sc*/ - -data-styled.g135[id="UiPricingGridstyles__PriceDetail-sc-e5wr9-6"] { - content: "tOUDm,"; -} - -/*!sc*/ - -.euqAgV { - font-size: 1rem; - margin-top: 1rem; -} - -/*!sc*/ - -.euqAgV input[type='number'] { - -webkit-appearance: textfield; - -moz-appearance: textfield; - appearance: textfield; - border-color: rgba(9,30,66,1); - border-radius: 0; - border-style: solid; - border-width: 0 0 1px; - color: rgba(9,30,66,1); - font-size: 1.5rem; - font-weight: 500; - margin: 0 0.25rem; - padding: 0; - text-align: center; - width: 4.5rem; -} - -/*!sc*/ - -.euqAgV input[type='number']::-webkit-outer-spin-button, -.euqAgV input[type='number']::-webkit-inner-spin-button { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - margin: 0; -} - -/*!sc*/ - -.euqAgV input[type='range'] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - margin: 1.75rem 0 0.75rem; - width: 100%; -} - -/*!sc*/ - -.euqAgV input[type='range']::-webkit-slider-runnable-track { - background-color: rgba(223,225,230,1); - border-radius: 4px; - border: 0; - cursor: pointer; - height: 8px; - width: 100%; -} - -/*!sc*/ - -.euqAgV input[type='range']::-webkit-slider-thumb { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: rgba(255,255,255,1); - border-radius: 50%; - border: 1px solid rgba(235,236,250,1); - box-shadow: 0px 2px 4px rgba(0,0,0,0.25); - cursor: pointer; - height: 24px; - margin-top: -8px; - width: 24px; -} - -/*!sc*/ - -.euqAgV input[type='range']::-moz-range-track { - background-color: rgba(223,225,230,1); - border-radius: 4px; - border: 0; - cursor: pointer; - height: 8px; - width: 100%; -} - -/*!sc*/ - -.euqAgV input[type='range']::-moz-range-thumb { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: rgba(255,255,255,1); - border-radius: 50%; - border: 1px solid rgba(235,236,250,1); - box-shadow: 0px 2px 4px rgba(0,0,0,0.25); - cursor: pointer; - height: 24px; - margin-top: -8px; - width: 24px; -} - -/*!sc*/ - -.euqAgV input:focus { - outline: none; -} - -/*!sc*/ - -.euqAgV input:focus::-webkit-slider-thumb { - background-color: rgba(23,43,77,1); -} - -/*!sc*/ - -.euqAgV input:focus::-moz-range-thumb { - background-color: rgba(23,43,77,1); -} - -/*!sc*/ - -.euqAgV input:focus:not(:focus-visible)::-webkit-slider-thumb { - background-color: rgba(255,255,255,1); -} - -/*!sc*/ - -.euqAgV input:focus:not(:focus-visible)::-moz-range-thumb { - background-color: rgba(255,255,255,1); -} - -/*!sc*/ - -data-styled.g138[id="UiPricingGridstyles__UserInputWrapper-sc-e5wr9-9"] { - content: "euqAgV,"; -} - -/*!sc*/ - -.eSGOHD { - display: inline-block; - max-width: 100%; - min-height: 20px; - padding-left: 2rem; - position: relative; -} - -/*!sc*/ - -.eSGOHD select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: transparent; - background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' height='8' viewBox='0 0 13 8' width='13' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='m11.7305.59279c.3626.362629.3885.93447.0777 1.32699l-.0777.08722-4.99999 4.99999c-.36263.36263-.93446.38853-1.32697.0777l-.08725-.0777-4.999959-4.99997c-.3905249-.39052-.3905242-1.023685 0-1.414209.362629-.36263.934469-.388553 1.326989-.077728l.08722.077728 4.29292 4.292139 4.29284-4.29216c.3626-.36263.9345-.388532 1.327-.077707z' /%3E%3C/svg%3E"); - background-position: center right; - background-repeat: no-repeat; - border: 0; - color: inherit; - cursor: pointer; - display: block; - font-family: inherit; - font-size: 1rem; - padding-right: 1rem; - position: relative; - max-width: 100%; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; -} - -/*!sc*/ - -.eSGOHD::before { - background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' width='25px' height='24px' viewBox='0 0 25 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M2.33514634,13.0909091 C2.80456741,17.1674997 5.87382928,20.4918664 9.91593939,21.5020963 C8.18760918,19.0069673 7.13798566,16.119686 6.87807529,13.0909091 L2.33514634,13.0909091 Z M2.33514634,10.9090909 L6.8751035,10.9090909 C7.12988231,7.89470494 8.18079774,5.00118821 9.91557751,2.49799419 C5.87364609,3.50833206 2.8045534,6.83262197 2.33514634,10.9090909 Z M22.6648537,10.9090909 C22.1954326,6.83250032 19.1261707,3.50813364 15.0840606,2.49790374 C16.8123908,4.99303266 17.8620143,7.88031403 18.1219247,10.9090909 L22.6648537,10.9090909 Z M22.6648537,13.0909091 L18.1248965,13.0909091 C17.8701177,16.1052951 16.8192023,18.9988118 15.0844225,21.5020058 C19.1263539,20.4916679 22.1954466,17.167378 22.6648537,13.0909091 Z M9.15315078,10.9090909 L15.843646,10.9090909 C15.5581939,7.94925479 14.3973512,5.12935736 12.4999751,2.78265622 C10.595448,5.13778492 9.43302782,7.96652031 9.15315078,10.9090909 Z M15.8468492,13.0909091 L9.15635402,13.0909091 C9.44180608,16.0507452 10.6026488,18.8706426 12.5000249,21.2173438 C14.404552,18.8622151 15.5669722,16.0334797 15.8468492,13.0909091 Z M12.5,24 C5.59644063,24 0,18.627417 0,12 C0,5.372583 5.59644063,0 12.5,0 C19.4035594,0 25,5.372583 25,12 C25,18.627417 19.4035594,24 12.5,24 Z' %3E%3C/path%3E%3C/svg%3E%0A"); - background-position: center left; - background-repeat: no-repeat; - background-size: 20px; - bottom: 0; - content: ''; - left: 0; - min-height: 20px; - min-width: 20px; - position: absolute; - top: 0; -} - -/*!sc*/ - -data-styled.g139[id="LanguageSelectFormstyles__LanguageForm-sc-5xddw4-0"] { - content: "eSGOHD,"; -} - -/*!sc*/ - -.bLomOy { - background-color: rgba(23,43,77,1); - color: rgba(255,255,255,1); -} - -/*!sc*/ - -.bLomOy a { - color: rgba(255,255,255,0.8); -} - -/*!sc*/ - -.bLomOy a:hover { - color: rgba(255,255,255,1); -} - -/*!sc*/ - -.bLomOy *:focus { - outline: 2px solid rgba(255,255,255,1); -} - -/*!sc*/ - -.bLomOy *:focus:not(:focus-visible) { - outline: 0; -} - -/*!sc*/ - -.bLomOy section { - color: rgba(255,255,255,1); -} - -/*!sc*/ - -.bLomOy section span { - font-size: 1rem; -} - -/*!sc*/ - -.bLomOy section svg { - max-width: 125px; -} - -/*!sc*/ - -.bLomOy section a, -.bLomOy section button { - color: rgba(255,255,255,1); - -webkit-text-decoration: none; - text-decoration: none; -} - -/*!sc*/ - -.bLomOy section a:hover, -.bLomOy section button:hover { - color: rgba(255,255,255,1); - -webkit-text-decoration: underline; - text-decoration: underline; -} - -/*!sc*/ - -.bLomOy section ul { - text-align: left; - list-style-type: none; - padding: 0; -} - -/*!sc*/ - -@media (max-width:991.98px) { - .bLomOy section form { - margin-left: 1rem; - } -} - -/*!sc*/ - -data-styled.g140[id="UiFooterNavstyles__Footer-sc-15b6nfk-0"] { - content: "bLomOy,"; -} - -/*!sc*/ - -.hvzEcp { - margin: 1.5rem 1rem 0 1rem; - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - gap: 1.75rem; -} - -/*!sc*/ - -.hvzEcp a { - padding: 0; - margin: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .hvzEcp { - -webkit-flex-direction: column; - -ms-flex-direction: column; - flex-direction: column; - -webkit-align-items: stretch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - margin: 1rem 1rem 0 0; - gap: 1rem; - } -} - -/*!sc*/ - -data-styled.g141[id="UiFooterNavstyles__LogoAndLoginContainer-sc-15b6nfk-1"] { - content: "hvzEcp,"; -} - -/*!sc*/ - -.fbsRKz { - margin: 0 0 0 1rem; -} - -/*!sc*/ - -.fbsRKz h4, -.fbsRKz p { - color: rgba(255,255,255,1); - width: 60%; - margin: 0; - padding: 0; -} - -/*!sc*/ - -.fbsRKz div > p { - color: rgba(255,255,255,1); -} - -/*!sc*/ - -.fbsRKz a { - margin: 0; - padding: 0; -} - -/*!sc*/ - -.fbsRKz li { - border-bottom: 1px solid rgba(80,95,121,1); - padding: 0 0 1rem 0; - margin: 0 0 1rem 0; -} - -/*!sc*/ - -.fbsRKz li:first-child { - border-top: 1px solid rgba(80,95,121,1); - margin-top: 1rem; - padding: 1rem 0 1rem 0; -} - -/*!sc*/ - -.fbsRKz li:last-child { - margin: 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .fbsRKz { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin: 0; - } - - .fbsRKz h4, - .fbsRKz p { - width: 100%; - } - - .fbsRKz a { - padding: 1rem; - gap: 0.25rem; - height: 100%; - } - - .fbsRKz a:hover { - -webkit-text-decoration: none; - text-decoration: none; - background-color: rgba(52,69,99,1); - } - - .fbsRKz li { - border: none; - padding: 0; - margin: 0; - width: 25%; - } - - .fbsRKz li:first-child { - border: none; - padding: 0; - margin: 0; - } -} - -/*!sc*/ - -data-styled.g142[id="UiFooterNavstyles__TabsList-sc-15b6nfk-2"] { - content: "fbsRKz,"; -} - -/*!sc*/ - -@media (min-width:992px) { - .kiNAmQ { - border-top: 1px solid rgba(80,95,121,1); - width: 98%; - margin: 0 auto; - } -} - -/*!sc*/ - -data-styled.g143[id="UiFooterNavstyles__Divider-sc-15b6nfk-3"] { - content: "kiNAmQ,"; -} - -/*!sc*/ - -.kctczK ul li { - margin-left: 1rem; -} - -/*!sc*/ - -.kctczK ul li a, -.kctczK ul li button, -.kctczK ul li span { - font-size: 0.75rem; -} - -/*!sc*/ - -@media (min-width:992px) { - .kctczK ul { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: nowrap; - -ms-flex-wrap: nowrap; - flex-wrap: nowrap; - } - - .kctczK ul li { - margin-right: 1.5rem; - margin-left: 0; - } - - .kctczK ul li:first-child { - margin-left: 1rem; - } -} - -/*!sc*/ - -data-styled.g144[id="UiFooterNavstyles__SubNav-sc-15b6nfk-4"] { - content: "kctczK,"; -} - -/*!sc*/ - -.rUSyQ { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - gap: 2rem; - margin: 3rem 1rem 0 1rem; - padding: 0 0 3rem 0; -} - -/*!sc*/ - -@media (min-width:992px) { - .rUSyQ { - -webkit-box-pack: justify; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; - gap: 0; - margin: 0; - padding: 0; - } -} - -/*!sc*/ - -.rUSyQ a { - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-radius: 50%; - border: 2px solid rgba(255,255,255,1); - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 24px; - margin: 0; - width: 24px; -} - -/*!sc*/ - -.rUSyQ a svg { - height: 60%; - margin: auto; - -webkit-transition: all 0.15s; - transition: all 0.15s; - width: 60%; -} - -/*!sc*/ - -.rUSyQ a svg path { - fill: rgba(255,255,255,1); -} - -/*!sc*/ - -.rUSyQ a:hover svg { - height: 50%; - width: 50%; -} - -/*!sc*/ - -.rUSyQ a:hover svg path { - fill: rgba(255,255,255,1); -} - -/*!sc*/ - -data-styled.g145[id="UiFooterNavstyles__SocialNavLinks-sc-15b6nfk-5"] { - content: "rUSyQ,"; -} - -/*!sc*/ \ No newline at end of file diff --git a/src/__fixtures__/trello-20231008.json b/src/__fixtures__/trello-20231008.json deleted file mode 100644 index 15cf0916..00000000 --- a/src/__fixtures__/trello-20231008.json +++ /dev/null @@ -1,11703 +0,0 @@ -{ - "stylesheet": { - "sourceLinesOfCode": 4978, - "linesOfCode": 9025, - "size": 150901, - "complexity": 15470, - "comments": { - "total": 912, - "size": 2736 - }, - "embeddedContent": { - "size": { - "total": 2736, - "ratio": 0.018131092570625774 - }, - "types": { - "total": 3, - "totalUnique": 1, - "uniquenessRatio": 0.3333333333333333, - "unique": { - "image/svg+xml": { - "count": 3, - "size": 2736 - } - } - } - } - }, - "atrules": { - "fontface": { - "total": 24, - "totalUnique": 24, - "unique": [ - { - "font-family": "'Charlie Display'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "100", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/6EnDcOBYnO67MYVJcpQLUc/85d36587de9855f3cd9f4e23f2119cf8/Charlie_Display-Thin.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/5Bpl6vErvLYCi1EdOqI2IK/b57fbec62ffab536b59e311837de9042/Charlie_Display-Thin.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "100", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/67WF3xGxF81QiZRksym42A/cf7c507569cbbee461ff241902706970/Charlie_Display-Thin_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/PanXvQtfIyAqIFbGpM8IM/b9b87b3c6ffee63861eb501a0cb160d1/Charlie_Display-Thin_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "200", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/8JLDocv5sujCQIY4WEZsz/ebe26b857bf93efe919a72c3697afa82/Charlie_Display-Light.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1rikelY7zYfVVcGF0ufCMx/5525e29555ebb0b403de182f334e7f2b/Charlie_Display-Light.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "200", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/8JLDocv5sujCQIY4WEZsz/ebe26b857bf93efe919a72c3697afa82/Charlie_Display-Light.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1rikelY7zYfVVcGF0ufCMx/5525e29555ebb0b403de182f334e7f2b/Charlie_Display-Light.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "400", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/6nq3flI8NfgICrz3jZjLyD/81918253d594b7bb77eb898a468d4328/Charlie_Display-Regular.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/2GTE85R9nfLI58KxINGukf/9d35203b2fe1d4a89031954f118b6c9f/Charlie_Display-Regular.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "400", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/6zBd9BZlMVg6Lzzo0c9JTB/d9954046ee355a5fdbf2c5212675e67e/Charlie_Display-Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/68hDvJoBF5iblYktO69b1g/7fd2a9f3582c8fc11d9d27fcfed38dd8/Charlie_Display-Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "500", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/3KRSiun937K2pXBPYiUwgB/17f578e7699c12924de360e09c018c7c/Charlie_Display-Semibold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/oQSiwcfMwyNafeeJ3DIku/364b1a7409856a36ab05c2b43a1f9bde/Charlie_Display-Semibold.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "500", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/65xdTmUlQXTZEebPv41QKG/d21f19bb0e731f88caa3be64700a49f0/Charlie_Display-Semibold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/T73q5xRByE5hy55AGMp54/67810084a3efdb1999b56f6542c85d01/Charlie_Display-Semibold_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "700", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/55uCHq9XzIzIG8yO7WRqfM/b62779fff17f06743e490f6d98a2001a/Charlie_Display-Bold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/7lMBcxnaE1rq1n9am4LaWV/b17259435611992f2a6ffe48ca213f84/Charlie_Display-Bold.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "700", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/2o3Zm0no6lPnln5cHb7JR6/55f0b66048535d78193f516062ff58e4/Charlie_Display-Bold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/2hEATjlHYKgFNGG3XEE8FL/e5e32f1fdd86414237477cc7130acf13/Charlie_Display-Bold_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "800", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/2QtjA2B9aCIa8HvyZcNWqL/886e02c2b15732bc62dc9550078d991c/Charlie_Display-Black.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/7mOCTVLMRdYynIubPDry0Y/85324db781253d544cf91d5c9078a820/Charlie_Display-Black.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "800", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/42ZnX9r0FEEC9i6aTjhGvx/9928d2d161b763db60a50c3edf0bfe78/Charlie_Display-Black_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/7J5fycblWMmgmMrC850GL9/610d735e3d4680bb111cfb40507beab7/Charlie_Display-Black_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Display'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "900", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/2aGTtufjwlwNeuEifuVsDA/933ed19de4d808d8c9618a0a96f282f0/Charlie_Display-Ultra.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/61USbw5Es8ifbW4QjjYATl/19979d7f1ff46dfe7c7b79e15aacc4bc/Charlie_Display-Ultra.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "100", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/1vzZOZUcRsW8G3dlrVRc9E/6b8b429a3a35eeda98227874727af9ef/Charlie_Text-Thin.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/csqcs1t6l1ByKLqji08Sd/7354daf990b1232c01f11b79c86b8b73/Charlie_Text-Thin.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "100", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/7JQoYrWJG8qtt0hqnGgei9/6d94ac079ded70cdced3b8b448890c3e/Charlie_Text-Thin_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/XA1kYory8Dhr5QrsKMlYY/df361dee9663b39de9eb21a1279b9399/Charlie_Text-Thin_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "200", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/1rfmGoSYAfdBOsdsg9qKLL/9ea188cbd87592d6ab6012f191958252/Charlie_Text-Light.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1XWcCzbf5viNQnIbOqfeI4/8ccdfc8336f9ecb15e2f849c3fc51340/Charlie_Text-Light.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "200", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/6S05s3tlC46wX9fKFizj1K/2cfa443b8c44adce54d1159035e38b23/Charlie_Text-Light_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3kW42zdybmQkfndtF54bd1/910ddde712b570829f385b62476b2ea9/Charlie_Text-Light_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "400", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/41EruTPEOU9hcBwH94UVuZ/73ac40404d750278b451bf2adf186b1b/Charlie_Text-Regular.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/6h4LgfzSDGYFyOvrNTr21p/99d04355f5ef0b92b882013bb0857cf9/Charlie_Text-Regular.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "500", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/2d4nxzJwX8hfIqUN71D4OD/5e2c0c2a3677d935e91dd46635d5149d/Charlie_Text-Semibold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/4Y73c86mEJg3PJBgQe0L8t/a5d27d39320e9703ed48dd3bdb308408/Charlie_Text-Semibold.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "500", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/6oQuHbLiijMuGvWxuUyHsz/62fe2908bcad6b7e9fef8ca4db7f0f53/Charlie_Text-Semibold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3pI1pIJKtGUJG42qu4eZSU/56114eff490f7cc794552a7c9b4c8c8b/Charlie_Text-Semibold_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "700", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/6fvn66mVrRz4Yw3gQoPaJJ/458e6a69f0036d1e566e028fcbc26a50/Charlie_Text-Bold.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3JvzHM3Atfe3nL2nvb4AqL/5bb9a76be7a4b053dbb276d9ffc6654a/Charlie_Text-Bold.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "700", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/3nA8vWk7MPMalamC0inRjz/11825f8df63da9f9b792cb5478e32bd5/Charlie_Text-Bold_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/5Ba4myVpyls8UQB3g5MPQj/86da6172a058cc143a707f21f5e5d058/Charlie_Text-Bold_Italic.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "normal", - "font-display": "swap", - "font-weight": "800", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/2AZXOOAKgaXV55fqGI098Y/bb085d34b97c542aedea66d5e4d9bc95/Charlie_Text-Black.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/3czBeZah9GZg8dI5cMd2er/7a13c24355717ba63712c3550921339f/Charlie_Text-Black.woff) format('woff')" - }, - { - "font-family": "'Charlie Text'", - "font-style": "italic", - "font-display": "swap", - "font-weight": "800", - "src": "url(//assets.ctfassets.net/rz1oowkt5gyp/59WTxSNNVWGolxmuwpW2j4/87fd7ad49eedaf1949839a7395399b6a/Charlie_Text-Black_Italic.woff2) format('woff2'),url(//assets.ctfassets.net/rz1oowkt5gyp/1UikYvlUIsLZk1JeznIrD8/87bd38612d2caae1f6ebd621027cbc4e/Charlie_Text-Black_Italic.woff) format('woff')" - } - ], - "uniquenessRatio": 1 - }, - "import": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "media": { - "total": 168, - "totalUnique": 13, - "unique": { - "(min-width:768px)": 26, - "(min-width:992px)": 79, - "(min-width:1200px)": 14, - "(max-width:992px)": 1, - "(min-width:576px)": 11, - "(min-width:992px) and (max-width:1199px)": 7, - "(min-width:0px) and (max-width:575px)": 7, - "(min-width:576px) and (max-width:767px)": 7, - "(min-width:768px) and (max-width:991px)": 7, - "(max-width:576px)": 4, - "(max-width:767.98px)": 1, - "(max-width:768px)": 3, - "(max-width:991.98px)": 1 - }, - "uniquenessRatio": 0.07738095238095238, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "charset": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "supports": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - } - }, - "keyframes": { - "total": 2, - "totalUnique": 2, - "unique": { - "@-webkit-keyframes iNVpcP": 1, - "@keyframes iNVpcP": 1 - }, - "uniquenessRatio": 1, - "prefixed": { - "total": 1, - "totalUnique": 1, - "unique": { - "@-webkit-keyframes iNVpcP": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.5 - } - }, - "container": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "layer": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "property": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "total": 194, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0051546391752577, - "mode": 1, - "range": 1, - "sum": 195 - } - }, - "rules": { - "total": 1003, - "empty": { - "total": 0, - "ratio": 0 - }, - "sizes": { - "min": 2, - "max": 26, - "mean": 4.650049850448654, - "mode": 2, - "range": 24, - "sum": 4664, - "items": [ - 4, - 11, - 2, - 2, - 2, - 2, - 6, - 2, - 3, - 7, - 4, - 3, - 5, - 5, - 2, - 3, - 2, - 3, - 2, - 6, - 2, - 2, - 2, - 2, - 3, - 6, - 6, - 4, - 4, - 2, - 6, - 4, - 2, - 2, - 3, - 2, - 6, - 2, - 3, - 2, - 9, - 3, - 3, - 2, - 2, - 5, - 5, - 3, - 5, - 3, - 5, - 7, - 3, - 2, - 3, - 3, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 2, - 4, - 4, - 2, - 9, - 5, - 8, - 5, - 2, - 8, - 4, - 4, - 8, - 4, - 8, - 4, - 8, - 4, - 9, - 7, - 2, - 3, - 2, - 2, - 2, - 2, - 4, - 2, - 11, - 6, - 2, - 2, - 9, - 4, - 2, - 12, - 2, - 22, - 2, - 2, - 23, - 2, - 3, - 2, - 2, - 6, - 2, - 7, - 2, - 12, - 3, - 2, - 6, - 7, - 2, - 3, - 2, - 5, - 2, - 16, - 3, - 2, - 10, - 2, - 2, - 2, - 5, - 2, - 5, - 3, - 2, - 3, - 2, - 10, - 2, - 2, - 9, - 2, - 11, - 2, - 10, - 2, - 11, - 3, - 2, - 2, - 5, - 3, - 2, - 3, - 3, - 2, - 5, - 2, - 13, - 2, - 2, - 26, - 3, - 11, - 7, - 6, - 7, - 5, - 3, - 2, - 26, - 3, - 11, - 7, - 6, - 7, - 5, - 3, - 2, - 20, - 3, - 11, - 7, - 2, - 26, - 3, - 11, - 7, - 6, - 7, - 5, - 3, - 2, - 26, - 3, - 11, - 7, - 6, - 6, - 4, - 3, - 2, - 21, - 3, - 11, - 7, - 2, - 2, - 24, - 2, - 10, - 5, - 4, - 4, - 3, - 2, - 2, - 19, - 2, - 2, - 9, - 2, - 10, - 3, - 6, - 2, - 2, - 4, - 2, - 6, - 3, - 2, - 20, - 2, - 2, - 15, - 2, - 2, - 2, - 2, - 2, - 19, - 2, - 6, - 2, - 2, - 2, - 2, - 6, - 2, - 3, - 3, - 2, - 2, - 2, - 2, - 2, - 14, - 2, - 2, - 11, - 2, - 10, - 14, - 5, - 5, - 5, - 2, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 4, - 6, - 2, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 3, - 3, - 2, - 7, - 2, - 8, - 2, - 5, - 2, - 20, - 3, - 2, - 21, - 2, - 5, - 2, - 2, - 5, - 7, - 2, - 2, - 8, - 2, - 3, - 5, - 2, - 10, - 17, - 3, - 2, - 3, - 2, - 2, - 2, - 2, - 6, - 2, - 2, - 2, - 2, - 2, - 18, - 18, - 18, - 2, - 11, - 2, - 2, - 2, - 9, - 12, - 2, - 2, - 2, - 4, - 12, - 12, - 2, - 2, - 2, - 10, - 11, - 2, - 2, - 2, - 14, - 2, - 2, - 2, - 9, - 11, - 2, - 2, - 2, - 11, - 13, - 2, - 2, - 2, - 2, - 14, - 2, - 2, - 2, - 6, - 10, - 2, - 2, - 2, - 2, - 2, - 9, - 12, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 13, - 2, - 2, - 2, - 3, - 7, - 11, - 2, - 2, - 2, - 3, - 12, - 2, - 2, - 2, - 10, - 2, - 2, - 2, - 6, - 6, - 10, - 2, - 2, - 2, - 7, - 7, - 9, - 2, - 2, - 2, - 13, - 2, - 2, - 2, - 11, - 7, - 11, - 2, - 2, - 2, - 3, - 12, - 2, - 2, - 2, - 2, - 6, - 7, - 11, - 2, - 2, - 2, - 2, - 13, - 2, - 2, - 2, - 7, - 11, - 12, - 2, - 2, - 2, - 6, - 9, - 2, - 2, - 2, - 6, - 12, - 2, - 2, - 2, - 8, - 11, - 2, - 2, - 2, - 9, - 9, - 2, - 2, - 2, - 9, - 2, - 5, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 5, - 10, - 10, - 10, - 10, - 10, - 5, - 10, - 10, - 10, - 10, - 10, - 5, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 3, - 3, - 5, - 4, - 4, - 7, - 3, - 2, - 3, - 3, - 5, - 4, - 4, - 7, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 10, - 5, - 7, - 5, - 5, - 5, - 5, - 4, - 5, - 5, - 5, - 5, - 5, - 5, - 2, - 12, - 3, - 3, - 3, - 3, - 2, - 12, - 3, - 3, - 3, - 3, - 2, - 2, - 2, - 2, - 3, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 7, - 2, - 2, - 2, - 13, - 13, - 14, - 4, - 2, - 13, - 2, - 2, - 2, - 2, - 2, - 2, - 9, - 2, - 9, - 2, - 7, - 2, - 2, - 10, - 5, - 2, - 5, - 2, - 2, - 2, - 5, - 2, - 10, - 2, - 10, - 5, - 2, - 12, - 5, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 9, - 5, - 2, - 2, - 10, - 5, - 2, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 5, - 2, - 7, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 5, - 2, - 5, - 2, - 2, - 2, - 2, - 4, - 2, - 2, - 5, - 2, - 2, - 2, - 2, - 11, - 9, - 2, - 2, - 6, - 2, - 6, - 2, - 2, - 7, - 2, - 17, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 4, - 2, - 2, - 15, - 15, - 15, - 15, - 15, - 15, - 2, - 3, - 3, - 2, - 2, - 2, - 19, - 2, - 2, - 2, - 2, - 5, - 19, - 2, - 2, - 2, - 2, - 8, - 2, - 2, - 2, - 11, - 4, - 8, - 2, - 2, - 3, - 2, - 3, - 2, - 2, - 3, - 2, - 11, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 11, - 2, - 2, - 2, - 2, - 7, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 2, - 2, - 3, - 7, - 2, - 2, - 2, - 13, - 2, - 2, - 2, - 2, - 4, - 4, - 13, - 3, - 2, - 19, - 4, - 2, - 3, - 2, - 3, - 2, - 2, - 7, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 10, - 2, - 5, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 10, - 2, - 6, - 7, - 5, - 6, - 5, - 6, - 5, - 6, - 5, - 10, - 2, - 5, - 7, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 10, - 2, - 6, - 2, - 4, - 2, - 3, - 2, - 4, - 2, - 2, - 2, - 4, - 2, - 3, - 15, - 6, - 6, - 7, - 12, - 7, - 12, - 2, - 2, - 2, - 2, - 2, - 2, - 6, - 20, - 12, - 2, - 3, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 5, - 5, - 4, - 2, - 2, - 14, - 3, - 10, - 2, - 2, - 6, - 2, - 3, - 4, - 4, - 2, - 9, - 3, - 4, - 4, - 5, - 4, - 2, - 4, - 2, - 2, - 4, - 8, - 3, - 2, - 2, - 11, - 8, - 14, - 6, - 2, - 3, - 2, - 2 - ], - "total": 1003, - "totalUnique": 24, - "unique": { - "2": 510, - "3": 92, - "4": 56, - "5": 68, - "6": 61, - "7": 38, - "8": 12, - "9": 19, - "10": 31, - "11": 51, - "12": 16, - "13": 10, - "14": 7, - "15": 8, - "16": 1, - "17": 2, - "18": 3, - "19": 5, - "20": 4, - "21": 2, - "22": 1, - "23": 1, - "24": 1, - "26": 4 - }, - "uniquenessRatio": 0.023928215353938187 - }, - "selectors": { - "min": 1, - "max": 5, - "mean": 1.151545363908275, - "mode": 1, - "range": 4, - "sum": 1155, - "items": [ - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 2, - 2, - 1, - 1, - 4, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 1, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 1, - 2, - 2, - 2, - 4, - 1, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 1, - 2, - 2, - 2, - 4, - 4, - 4, - 2, - 2, - 1, - 2, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "total": 1003, - "totalUnique": 5, - "unique": { - "1": 905, - "2": 68, - "3": 7, - "4": 22, - "5": 1 - }, - "uniquenessRatio": 0.004985044865403789 - }, - "declarations": { - "min": 1, - "max": 24, - "mean": 3.4985044865403787, - "mode": 1, - "range": 23, - "sum": 3509, - "items": [ - 1, - 10, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 5, - 3, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 2, - 5, - 3, - 3, - 1, - 5, - 3, - 1, - 1, - 2, - 1, - 5, - 1, - 2, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 2, - 4, - 6, - 2, - 1, - 2, - 2, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 1, - 3, - 3, - 1, - 8, - 1, - 7, - 4, - 1, - 6, - 2, - 2, - 6, - 2, - 6, - 2, - 6, - 2, - 7, - 5, - 1, - 2, - 1, - 1, - 1, - 1, - 3, - 1, - 10, - 5, - 1, - 1, - 8, - 2, - 1, - 11, - 1, - 21, - 1, - 1, - 22, - 1, - 2, - 1, - 1, - 5, - 1, - 6, - 1, - 11, - 2, - 1, - 5, - 6, - 1, - 2, - 1, - 4, - 1, - 15, - 2, - 1, - 9, - 1, - 1, - 1, - 4, - 1, - 4, - 2, - 1, - 2, - 1, - 9, - 1, - 1, - 8, - 1, - 10, - 1, - 9, - 1, - 10, - 1, - 1, - 1, - 4, - 2, - 1, - 2, - 2, - 1, - 4, - 1, - 12, - 1, - 1, - 24, - 1, - 9, - 3, - 2, - 3, - 3, - 1, - 1, - 24, - 1, - 9, - 3, - 2, - 3, - 3, - 1, - 1, - 18, - 1, - 9, - 3, - 1, - 24, - 1, - 9, - 3, - 2, - 3, - 3, - 1, - 1, - 24, - 1, - 9, - 3, - 2, - 2, - 2, - 1, - 1, - 19, - 1, - 9, - 3, - 1, - 1, - 23, - 1, - 9, - 3, - 2, - 2, - 2, - 1, - 1, - 18, - 1, - 1, - 8, - 1, - 9, - 2, - 5, - 1, - 1, - 3, - 1, - 5, - 2, - 1, - 19, - 1, - 1, - 14, - 1, - 1, - 1, - 1, - 1, - 18, - 1, - 4, - 1, - 1, - 1, - 1, - 5, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 13, - 1, - 1, - 10, - 1, - 9, - 13, - 4, - 4, - 4, - 1, - 5, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 1, - 1, - 3, - 5, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 6, - 1, - 7, - 1, - 4, - 1, - 19, - 2, - 1, - 20, - 1, - 4, - 1, - 1, - 4, - 6, - 1, - 1, - 7, - 1, - 2, - 4, - 1, - 9, - 16, - 2, - 1, - 2, - 1, - 1, - 1, - 1, - 5, - 1, - 1, - 1, - 1, - 1, - 17, - 17, - 17, - 1, - 10, - 1, - 1, - 1, - 8, - 11, - 1, - 1, - 1, - 3, - 11, - 11, - 1, - 1, - 1, - 9, - 10, - 1, - 1, - 1, - 13, - 1, - 1, - 1, - 8, - 10, - 1, - 1, - 1, - 10, - 12, - 1, - 1, - 1, - 1, - 13, - 1, - 1, - 1, - 5, - 9, - 1, - 1, - 1, - 1, - 1, - 8, - 11, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 12, - 1, - 1, - 1, - 2, - 6, - 10, - 1, - 1, - 1, - 2, - 11, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 5, - 5, - 9, - 1, - 1, - 1, - 6, - 6, - 8, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 10, - 6, - 10, - 1, - 1, - 1, - 2, - 11, - 1, - 1, - 1, - 1, - 5, - 6, - 10, - 1, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 6, - 10, - 11, - 1, - 1, - 1, - 5, - 8, - 1, - 1, - 1, - 5, - 11, - 1, - 1, - 1, - 7, - 10, - 1, - 1, - 1, - 8, - 8, - 1, - 1, - 1, - 8, - 1, - 4, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 4, - 4, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 4, - 9, - 9, - 9, - 9, - 9, - 4, - 9, - 9, - 9, - 9, - 9, - 4, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 3, - 3, - 6, - 2, - 1, - 1, - 1, - 4, - 3, - 3, - 6, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 9, - 4, - 5, - 4, - 4, - 4, - 4, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 11, - 2, - 2, - 2, - 2, - 1, - 11, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 2, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 6, - 1, - 1, - 1, - 12, - 12, - 13, - 2, - 1, - 12, - 1, - 1, - 1, - 1, - 1, - 1, - 8, - 1, - 8, - 1, - 6, - 1, - 1, - 9, - 4, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 9, - 1, - 9, - 4, - 1, - 11, - 2, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 8, - 1, - 1, - 1, - 9, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 10, - 8, - 1, - 1, - 5, - 1, - 5, - 1, - 1, - 6, - 1, - 16, - 2, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 14, - 14, - 14, - 14, - 14, - 14, - 1, - 2, - 2, - 1, - 1, - 1, - 18, - 1, - 1, - 1, - 1, - 4, - 18, - 1, - 1, - 1, - 1, - 7, - 1, - 1, - 1, - 10, - 3, - 7, - 1, - 1, - 2, - 1, - 2, - 1, - 1, - 2, - 1, - 10, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 10, - 1, - 1, - 1, - 1, - 6, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 1, - 1, - 2, - 6, - 1, - 1, - 1, - 12, - 1, - 1, - 1, - 1, - 2, - 3, - 12, - 1, - 1, - 18, - 3, - 1, - 2, - 1, - 2, - 1, - 1, - 6, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 9, - 1, - 4, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 9, - 1, - 5, - 6, - 4, - 5, - 4, - 5, - 4, - 5, - 4, - 9, - 1, - 4, - 6, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 9, - 1, - 5, - 1, - 3, - 1, - 2, - 1, - 3, - 1, - 1, - 1, - 3, - 1, - 2, - 14, - 4, - 5, - 6, - 11, - 6, - 11, - 1, - 1, - 1, - 1, - 1, - 1, - 5, - 19, - 11, - 1, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 1, - 1, - 13, - 2, - 9, - 1, - 1, - 4, - 1, - 2, - 3, - 3, - 1, - 8, - 1, - 3, - 3, - 4, - 3, - 1, - 3, - 1, - 1, - 1, - 7, - 2, - 1, - 1, - 10, - 7, - 13, - 5, - 1, - 2, - 1, - 1 - ], - "total": 1003, - "totalUnique": 24, - "unique": { - "1": 548, - "2": 86, - "3": 54, - "4": 58, - "5": 54, - "6": 30, - "7": 9, - "8": 17, - "9": 37, - "10": 45, - "11": 16, - "12": 10, - "13": 7, - "14": 8, - "15": 1, - "16": 2, - "17": 3, - "18": 6, - "19": 4, - "20": 1, - "21": 1, - "22": 1, - "23": 1, - "24": 4 - }, - "uniquenessRatio": 0.023928215353938187 - } - }, - "selectors": { - "total": 1153, - "totalUnique": 861, - "uniquenessRatio": 0.7467476149176062, - "specificity": { - "min": [ - 0, - 0, - 0 - ], - "max": [ - 1, - 2, - 0 - ], - "sum": [ - 4, - 1669, - 697 - ], - "mean": [ - 0.003469210754553339, - 1.4475281873373806, - 0.6045099739809193 - ], - "mode": [ - 0, - 1, - 0 - ], - "items": [ - [ - 0, - 0, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 0, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 4, - 0 - ], - [ - 1, - 1, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 1, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 4, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 3, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 0 - ], - [ - 0, - 3, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 1 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 0 - ], - [ - 0, - 1, - 1 - ], - [ - 0, - 1, - 2 - ], - [ - 0, - 1, - 3 - ], - [ - 0, - 2, - 2 - ], - [ - 0, - 2, - 3 - ], - [ - 0, - 2, - 1 - ] - ], - "total": 1153, - "totalUnique": 16, - "unique": { - "0,0,0": 1, - "0,0,1": 76, - "0,0,2": 8, - "0,1,2": 60, - "0,1,1": 161, - "0,2,1": 223, - "0,1,0": 362, - "0,2,0": 118, - "0,2,2": 41, - "0,3,0": 65, - "0,4,0": 27, - "1,1,0": 1, - "1,2,0": 3, - "0,3,2": 2, - "0,1,3": 4, - "0,2,3": 1 - }, - "uniquenessRatio": 0.013876843018213356 - }, - "complexity": { - "min": 1, - "max": 10, - "mean": 3.0685169124024285, - "mode": 1, - "range": 9, - "sum": 3538, - "total": 1153, - "totalUnique": 9, - "unique": { - "1": 423, - "2": 43, - "3": 196, - "4": 294, - "5": 64, - "6": 67, - "7": 37, - "8": 3, - "10": 26 - }, - "uniquenessRatio": 0.007805724197745013, - "items": [ - 1, - 2, - 2, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 1, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 3, - 4, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 3, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 2, - 2, - 2, - 3, - 4, - 4, - 4, - 2, - 3, - 3, - 3, - 3, - 1, - 1, - 1, - 1, - 1, - 2, - 2, - 2, - 2, - 2, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 2, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 5, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 3, - 4, - 4, - 1, - 4, - 1, - 3, - 1, - 4, - 1, - 3, - 2, - 4, - 1, - 4, - 1, - 2, - 4, - 1, - 2, - 3, - 3, - 4, - 1, - 4, - 1, - 4, - 1, - 2, - 4, - 1, - 3, - 4, - 1, - 4, - 1, - 1, - 3, - 3, - 4, - 1, - 3, - 6, - 4, - 1, - 1, - 3, - 3, - 5, - 3, - 4, - 1, - 4, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 3, - 3, - 2, - 4, - 1, - 3, - 4, - 1, - 3, - 4, - 1, - 4, - 1, - 4, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 6, - 6, - 4, - 1, - 3, - 5, - 5, - 6, - 6, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 3, - 4, - 1, - 4, - 1, - 3, - 3, - 1, - 4, - 1, - 4, - 1, - 3, - 4, - 1, - 2, - 4, - 1, - 1, - 4, - 1, - 3, - 4, - 1, - 3, - 3, - 3, - 4, - 3, - 3, - 4, - 1, - 4, - 1, - 3, - 3, - 4, - 4, - 3, - 4, - 1, - 4, - 1, - 3, - 4, - 1, - 3, - 5, - 5, - 5, - 4, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 2, - 1, - 2, - 3, - 2, - 1, - 4, - 1, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 1, - 3, - 5, - 5, - 4, - 1, - 4, - 1, - 4, - 3, - 4, - 1, - 1, - 2, - 1, - 4, - 3, - 5, - 4, - 1, - 1, - 4, - 1, - 3, - 4, - 1, - 1, - 4, - 7, - 3, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 1, - 4, - 7, - 10, - 1, - 4, - 1, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 4, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 4, - 4, - 1, - 3, - 3, - 5, - 5, - 3, - 5, - 5, - 4, - 4, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 5, - 5, - 3, - 3, - 3, - 3, - 1, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 3, - 3, - 2, - 1, - 1, - 3, - 3, - 3, - 2, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 4, - 1, - 4, - 1, - 1, - 4, - 1, - 4, - 3, - 4, - 1, - 1, - 1, - 4, - 4, - 4, - 1, - 3, - 5, - 6, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 3, - 4, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 4, - 1, - 2, - 2, - 3, - 3, - 4, - 1, - 3, - 4, - 4, - 6, - 2, - 3, - 3, - 3, - 3, - 4, - 3, - 1, - 3, - 3, - 3, - 3, - 4, - 3, - 4, - 1, - 4, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 4, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 1, - 3, - 4, - 4, - 6, - 3, - 3, - 3, - 3, - 3, - 3, - 4, - 4, - 1, - 4, - 1, - 1, - 4, - 1, - 3, - 4, - 1, - 1, - 4, - 1, - 4, - 1, - 2, - 2, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 4, - 1, - 3, - 4, - 5, - 4, - 1, - 3, - 4, - 4, - 6, - 1, - 1, - 3, - 4, - 4, - 6, - 1, - 4, - 1, - 4, - 1, - 3, - 3, - 4, - 1, - 1, - 1, - 1, - 4, - 4, - 1, - 4, - 1, - 1, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 1, - 3, - 4, - 4, - 6, - 3, - 3, - 1, - 4, - 1, - 1, - 4, - 1, - 6, - 4, - 1, - 2, - 3, - 1, - 4, - 1, - 1, - 1, - 4, - 1, - 3, - 3, - 3, - 1, - 3, - 3, - 4, - 1, - 1, - 4, - 1, - 4, - 1, - 1, - 4, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 3, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 4, - 1, - 5, - 7, - 7, - 5, - 7, - 7, - 7, - 7, - 4, - 6, - 6, - 8, - 8, - 4, - 1, - 3, - 2, - 4, - 1, - 3, - 4, - 4, - 6, - 3, - 5, - 5, - 5, - 5, - 6, - 6, - 5, - 5, - 4, - 1, - 3, - 1, - 4, - 1, - 3, - 3, - 5, - 3, - 3, - 4, - 4, - 1, - 3, - 3, - 3, - 4, - 3, - 4, - 4, - 1, - 4, - 5, - 7, - 7, - 7, - 3, - 5, - 6, - 4, - 1, - 1, - 3, - 5, - 7, - 6, - 8, - 4 - ] - }, - "id": { - "total": 4, - "totalUnique": 4, - "unique": { - ".BYsQb #skip-to-content": 1, - ".BYsQb #skip-to-content:hover": 1, - ".BYsQb #skip-to-content:focus": 1, - ".BYsQb #skip-to-content:active": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.003469210754553339 - }, - "pseudoClasses": { - "total": 493, - "totalUnique": 14, - "unique": { - "hover": 85, - "focus": 120, - "not": 44, - "focus-visible": 40, - "disabled": 4, - "root": 1, - "last-child": 170, - "active": 17, - "last-of-type": 2, - "nth-child": 3, - "-ms-input-placeholder": 2, - "after": 1, - "before": 1, - "first-child": 3 - }, - "uniquenessRatio": 0.028397565922920892 - }, - "accessibility": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "keyframes": { - "total": 2, - "totalUnique": 1, - "unique": { - "50%": 2 - }, - "uniquenessRatio": 0.5 - }, - "prefixed": { - "total": 22, - "totalUnique": 22, - "unique": { - "[list]::-webkit-calendar-picker-indicator": 1, - "::-moz-focus-inner": 1, - "::-webkit-datetime-edit": 1, - "::-webkit-search-decoration": 1, - "::-webkit-color-swatch-wrapper": 1, - "::-webkit-file-upload-button": 1, - ".ZIPtJ::-webkit-input-placeholder": 1, - ".ZIPtJ::-moz-placeholder": 1, - ".ZIPtJ:-ms-input-placeholder": 1, - ".ZIOGU::-webkit-input-placeholder": 1, - ".ZIOGU::-moz-placeholder": 1, - ".ZIOGU:-ms-input-placeholder": 1, - ".euqAgV input[type='number']::-webkit-outer-spin-button": 1, - ".euqAgV input[type='number']::-webkit-inner-spin-button": 1, - ".euqAgV input[type='range']::-webkit-slider-runnable-track": 1, - ".euqAgV input[type='range']::-webkit-slider-thumb": 1, - ".euqAgV input[type='range']::-moz-range-track": 1, - ".euqAgV input[type='range']::-moz-range-thumb": 1, - ".euqAgV input:focus::-webkit-slider-thumb": 1, - ".euqAgV input:focus::-moz-range-thumb": 1, - ".euqAgV input:focus:not(:focus-visible)::-webkit-slider-thumb": 1, - ".euqAgV input:focus:not(:focus-visible)::-moz-range-thumb": 1 - }, - "uniquenessRatio": 1, - "ratio": 0.019080659150043366 - }, - "combinators": { - "total": 711, - "totalUnique": 3, - "unique": { - " ": 467, - ">": 243, - "+": 1 - }, - "uniquenessRatio": 0.004219409282700422 - } - }, - "declarations": { - "total": 3629, - "totalUnique": 864, - "uniquenessRatio": 0.2380821162854781, - "importants": { - "total": 0, - "ratio": 0, - "inKeyframes": { - "total": 0, - "ratio": 0 - } - }, - "complexity": { - "min": 1, - "max": 1, - "mean": 1, - "mode": 1, - "range": 0, - "sum": 3629 - } - }, - "properties": { - "total": 3629, - "totalUnique": 147, - "unique": { - "font-family": 38, - "font-style": 25, - "font-display": 24, - "font-weight": 43, - "src": 24, - "box-sizing": 2, - "background-color": 143, - "color": 165, - "margin": 52, - "font-size": 75, - "line-height": 30, - "-webkit-text-size-adjust": 1, - "text-size-adjust": 1, - "-webkit-tap-highlight-color": 1, - "outline": 66, - "border": 32, - "opacity": 20, - "height": 75, - "margin-top": 55, - "margin-bottom": 174, - "-webkit-text-decoration": 27, - "text-decoration": 27, - "cursor": 25, - "-webkit-text-decoration-skip-ink": 1, - "text-decoration-skip-ink": 1, - "padding-left": 8, - "margin-left": 32, - "position": 54, - "vertical-align": 4, - "bottom": 5, - "top": 17, - "display": 335, - "overflow": 16, - "word-break": 1, - "word-wrap": 2, - "padding": 123, - "border-radius": 38, - "border-collapse": 1, - "padding-top": 25, - "padding-bottom": 37, - "text-align": 93, - "caption-side": 1, - "text-transform": 6, - "-webkit-appearance": 12, - "border-style": 8, - "resize": 1, - "min-width": 2, - "width": 120, - "white-space": 4, - "outline-offset": 1, - "font": 1, - "--font-family-text": 2, - "--font-family-display": 1, - "min-height": 6, - "-webkit-flex-direction": 20, - "-ms-flex-direction": 20, - "flex-direction": 20, - "-webkit-box-flex": 6, - "-webkit-flex-grow": 6, - "-ms-flex-positive": 6, - "flex-grow": 6, - "-webkit-flex-shrink": 1, - "-ms-flex-negative": 1, - "flex-shrink": 1, - "max-width": 15, - "content": 125, - "-webkit-transition": 47, - "transition": 40, - "left": 15, - "right": 1, - "z-index": 8, - "box-shadow": 18, - "-webkit-align-items": 32, - "-webkit-box-align": 32, - "-ms-flex-align": 32, - "align-items": 32, - "-webkit-align-self": 3, - "-ms-flex-item-align": 3, - "align-self": 3, - "-webkit-user-select": 10, - "-moz-user-select": 10, - "-ms-user-select": 10, - "user-select": 10, - "gap": 27, - "border-bottom": 7, - "-webkit-flex-wrap": 12, - "-ms-flex-wrap": 12, - "flex-wrap": 12, - "border-bottom-color": 1, - "-webkit-animation-duration": 2, - "animation-duration": 2, - "-webkit-animation-iteration-count": 2, - "animation-iteration-count": 2, - "-webkit-animation-name": 2, - "animation-name": 2, - "-webkit-transform": 15, - "-ms-transform": 15, - "transform": 15, - "border-color": 17, - "-moz-appearance": 7, - "appearance": 7, - "background": 14, - "-webkit-transition-delay": 3, - "transition-delay": 3, - "-webkit-box-pack": 32, - "-webkit-justify-content": 32, - "-ms-flex-pack": 32, - "justify-content": 32, - "border-top": 7, - "-webkit-transform-origin": 3, - "-ms-transform-origin": 3, - "transform-origin": 3, - "fill": 8, - "padding-right": 6, - "margin-right": 8, - "-webkit-clip": 1, - "clip": 1, - "-webkit-clip-path": 1, - "clip-path": 1, - "-webkit-scroll-margin-top": 32, - "-moz-scroll-margin-top": 32, - "-ms-scroll-margin-top": 32, - "scroll-margin-top": 32, - "-webkit-flex": 25, - "-ms-flex": 25, - "flex": 25, - "-webkit-order": 25, - "-ms-flex-order": 25, - "order": 25, - "background-attachment": 35, - "background-blend-mode": 35, - "background-clip": 35, - "background-image": 44, - "background-origin": 35, - "background-position": 43, - "background-repeat": 44, - "background-size": 48, - "overflow-x": 2, - "stroke": 2, - "pointer-events": 1, - "border-width": 7, - "max-height": 1, - "grid-template-columns": 2, - "border-left": 30, - "border-right": 20, - "text-overflow": 1, - "list-style-type": 1 - }, - "uniquenessRatio": 0.04050702672912648, - "prefixed": { - "total": 651, - "totalUnique": 44, - "unique": { - "-webkit-text-size-adjust": 1, - "-webkit-tap-highlight-color": 1, - "-webkit-text-decoration": 27, - "-webkit-text-decoration-skip-ink": 1, - "-webkit-appearance": 12, - "-webkit-flex-direction": 20, - "-ms-flex-direction": 20, - "-webkit-box-flex": 6, - "-webkit-flex-grow": 6, - "-ms-flex-positive": 6, - "-webkit-flex-shrink": 1, - "-ms-flex-negative": 1, - "-webkit-transition": 47, - "-webkit-align-items": 32, - "-webkit-box-align": 32, - "-ms-flex-align": 32, - "-webkit-align-self": 3, - "-ms-flex-item-align": 3, - "-webkit-user-select": 10, - "-moz-user-select": 10, - "-ms-user-select": 10, - "-webkit-flex-wrap": 12, - "-ms-flex-wrap": 12, - "-webkit-animation-duration": 2, - "-webkit-animation-iteration-count": 2, - "-webkit-animation-name": 2, - "-webkit-transform": 15, - "-ms-transform": 15, - "-moz-appearance": 7, - "-webkit-transition-delay": 3, - "-webkit-box-pack": 32, - "-webkit-justify-content": 32, - "-ms-flex-pack": 32, - "-webkit-transform-origin": 3, - "-ms-transform-origin": 3, - "-webkit-clip": 1, - "-webkit-clip-path": 1, - "-webkit-scroll-margin-top": 32, - "-moz-scroll-margin-top": 32, - "-ms-scroll-margin-top": 32, - "-webkit-flex": 25, - "-ms-flex": 25, - "-webkit-order": 25, - "-ms-flex-order": 25 - }, - "uniquenessRatio": 0.06758832565284179, - "ratio": 0.1793882612289887 - }, - "custom": { - "total": 3, - "totalUnique": 2, - "unique": { - "--font-family-text": 2, - "--font-family-display": 1 - }, - "uniquenessRatio": 0.6666666666666666, - "ratio": 0.0008266740148801323, - "importants": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - } - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0, - "ratio": 0 - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.180214935243869, - "mode": 1, - "range": 1, - "sum": 4283 - } - }, - "values": { - "colors": { - "total": 530, - "totalUnique": 60, - "unique": { - "rgba(255,255,255,1)": 145, - "rgba(9,30,66,1)": 25, - "rgba(0,0,0,0)": 1, - "rgba(0,82,204,1)": 16, - "rgba(7,71,166,1)": 16, - "currentColor": 2, - "rgba(134,36,67,1)": 1, - "rgba(122,134,154,1)": 6, - "rgba(255,250,229,1)": 4, - "rgba(9,30,66,0)": 1, - "rgba(9,30,66,0.5)": 1, - "rgba(9,30,66,0.15)": 9, - "rgba(23,43,77,1)": 27, - "rgba(0,101,255,1)": 20, - "transparent": 19, - "rgba(223,225,230,1)": 43, - "rgba(234,230,255,0.4)": 2, - "rgba(80,95,121,1)": 12, - "rgba(153,141,217,1)": 1, - "currentcolor": 4, - "rgba(101,84,192,1)": 12, - "rgba(234,230,255,1)": 3, - "rgba(153,141,217,0.5)": 1, - "rgba(255,171,0,1)": 2, - "rgba(255,227,128,0.5)": 1, - "rgba(222,235,255,1)": 3, - "rgba(122,134,154,0.5)": 3, - "rgba(227,252,239,0.5)": 3, - "rgba(230,252,255,0.5)": 3, - "rgba(255,250,229,0.5)": 3, - "rgba(255,242,251,0.5)": 3, - "rgba(222,235,255,0.5)": 3, - "rgba(255,235,229,0.5)": 3, - "rgba(121,226,242,1)": 1, - "rgba(249,156,219,1)": 7, - "rgba(76,154,255,1)": 1, - "rgba(255,250,229,0.4)": 1, - "rgba(255,196,0,1)": 2, - "rgba(82,67,170,1)": 20, - "rgba(237,80,180,1)": 10, - "rgba(255,255,255,0.8)": 21, - "rgba(0,184,217,1)": 18, - "rgba(230,252,255,1)": 15, - "rgba(0,163,191,1)": 2, - "rgba(151,160,175,1)": 9, - "rgba(178,212,255,1)": 5, - "rgba(244,245,247,1)": 2, - "rgba(0,199,229,1)": 3, - "rgba(250,251,252,1)": 2, - "rgba(9,30,66,0.25)": 1, - "rgba(255,116,82,1)": 1, - "rgba(38,132,255,1)": 1, - "rgba(87,217,163,1)": 1, - "rgba(94,108,132,1)": 1, - "rgba(135,119,217,1)": 1, - "rgba(9,30,66,0.2)": 1, - "rgba(9,30,66,0.31)": 1, - "rgba(235,236,250,1)": 2, - "rgba(0,0,0,0.25)": 2, - "rgba(52,69,99,1)": 1 - }, - "uniquenessRatio": 0.11320754716981132, - "itemsPerContext": { - "background-color": { - "total": 143, - "totalUnique": 31, - "unique": { - "rgba(255,255,255,1)": 45, - "currentColor": 2, - "rgba(9,30,66,1)": 1, - "rgba(255,250,229,1)": 3, - "rgba(9,30,66,0)": 1, - "rgba(9,30,66,0.5)": 1, - "transparent": 17, - "rgba(0,101,255,1)": 8, - "rgba(234,230,255,0.4)": 2, - "currentcolor": 4, - "rgba(234,230,255,1)": 2, - "rgba(222,235,255,1)": 2, - "rgba(7,71,166,1)": 2, - "rgba(0,82,204,1)": 2, - "rgba(23,43,77,1)": 4, - "rgba(227,252,239,0.5)": 3, - "rgba(230,252,255,0.5)": 3, - "rgba(255,250,229,0.5)": 3, - "rgba(255,242,251,0.5)": 3, - "rgba(222,235,255,0.5)": 3, - "rgba(255,235,229,0.5)": 3, - "rgba(255,250,229,0.4)": 1, - "rgba(82,67,170,1)": 10, - "rgba(178,212,255,1)": 5, - "rgba(0,199,229,1)": 1, - "rgba(250,251,252,1)": 2, - "rgba(244,245,247,1)": 1, - "rgba(151,160,175,1)": 1, - "rgba(101,84,192,1)": 5, - "rgba(223,225,230,1)": 2, - "rgba(52,69,99,1)": 1 - }, - "uniquenessRatio": 0.21678321678321677 - }, - "color": { - "total": 155, - "totalUnique": 15, - "unique": { - "rgba(9,30,66,1)": 12, - "rgba(0,82,204,1)": 12, - "rgba(7,71,166,1)": 12, - "rgba(134,36,67,1)": 1, - "rgba(255,255,255,1)": 52, - "rgba(122,134,154,1)": 1, - "rgba(23,43,77,1)": 21, - "rgba(0,101,255,1)": 3, - "rgba(80,95,121,1)": 7, - "rgba(255,255,255,0.8)": 21, - "rgba(0,163,191,1)": 2, - "rgba(151,160,175,1)": 8, - "rgba(94,108,132,1)": 1, - "rgba(135,119,217,1)": 1, - "rgba(0,199,229,1)": 1 - }, - "uniquenessRatio": 0.0967741935483871 - }, - "-webkit-tap-highlight-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(0,0,0,0)": 1 - }, - "uniquenessRatio": 1 - }, - "outline": { - "total": 33, - "totalUnique": 3, - "unique": { - "rgba(9,30,66,1)": 11, - "rgba(122,134,154,1)": 1, - "rgba(255,255,255,1)": 21 - }, - "uniquenessRatio": 0.09090909090909091 - }, - "box-shadow": { - "total": 19, - "totalUnique": 8, - "unique": { - "rgba(9,30,66,0.15)": 9, - "rgba(153,141,217,0.5)": 1, - "rgba(255,227,128,0.5)": 1, - "rgba(122,134,154,0.5)": 3, - "rgba(9,30,66,0.25)": 1, - "rgba(9,30,66,0.2)": 1, - "rgba(9,30,66,0.31)": 1, - "rgba(0,0,0,0.25)": 2 - }, - "uniquenessRatio": 0.42105263157894735 - }, - "border-bottom": { - "total": 7, - "totalUnique": 3, - "unique": { - "rgba(223,225,230,1)": 5, - "rgba(0,184,217,1)": 1, - "rgba(80,95,121,1)": 1 - }, - "uniquenessRatio": 0.42857142857142855 - }, - "border-bottom-color": { - "total": 1, - "totalUnique": 1, - "unique": { - "rgba(153,141,217,1)": 1 - }, - "uniquenessRatio": 1 - }, - "border": { - "total": 13, - "totalUnique": 9, - "unique": { - "rgba(101,84,192,1)": 1, - "rgba(255,171,0,1)": 1, - "rgba(0,101,255,1)": 3, - "rgba(23,43,77,1)": 1, - "rgba(80,95,121,1)": 1, - "rgba(122,134,154,1)": 1, - "rgba(223,225,230,1)": 2, - "rgba(235,236,250,1)": 2, - "rgba(255,255,255,1)": 1 - }, - "uniquenessRatio": 0.6923076923076923 - }, - "border-color": { - "total": 17, - "totalUnique": 10, - "unique": { - "rgba(101,84,192,1)": 1, - "rgba(234,230,255,1)": 1, - "rgba(255,171,0,1)": 1, - "rgba(255,250,229,1)": 1, - "rgba(0,101,255,1)": 1, - "rgba(222,235,255,1)": 1, - "rgba(7,71,166,1)": 2, - "rgba(0,82,204,1)": 2, - "rgba(255,255,255,1)": 6, - "rgba(9,30,66,1)": 1 - }, - "uniquenessRatio": 0.5882352941176471 - }, - "background": { - "total": 14, - "totalUnique": 11, - "unique": { - "transparent": 2, - "rgba(23,43,77,1)": 1, - "rgba(80,95,121,1)": 1, - "rgba(122,134,154,1)": 1, - "rgba(255,255,255,1)": 3, - "rgba(255,116,82,1)": 1, - "rgba(38,132,255,1)": 1, - "rgba(87,217,163,1)": 1, - "rgba(255,196,0,1)": 1, - "rgba(0,199,229,1)": 1, - "rgba(249,156,219,1)": 1 - }, - "uniquenessRatio": 0.7857142857142857 - }, - "border-top": { - "total": 7, - "totalUnique": 3, - "unique": { - "rgba(223,225,230,1)": 4, - "rgba(0,184,217,1)": 1, - "rgba(80,95,121,1)": 2 - }, - "uniquenessRatio": 0.42857142857142855 - }, - "fill": { - "total": 8, - "totalUnique": 7, - "unique": { - "rgba(122,134,154,1)": 1, - "rgba(121,226,242,1)": 1, - "rgba(249,156,219,1)": 1, - "rgba(76,154,255,1)": 1, - "rgba(255,196,0,1)": 1, - "rgba(244,245,247,1)": 1, - "rgba(255,255,255,1)": 2 - }, - "uniquenessRatio": 0.875 - }, - "background-image": { - "total": 70, - "totalUnique": 8, - "unique": { - "rgba(82,67,170,1)": 10, - "rgba(237,80,180,1)": 10, - "rgba(0,184,217,1)": 5, - "rgba(0,101,255,1)": 5, - "rgba(230,252,255,1)": 15, - "rgba(255,255,255,1)": 15, - "rgba(101,84,192,1)": 5, - "rgba(249,156,219,1)": 5 - }, - "uniquenessRatio": 0.11428571428571428 - }, - "stroke": { - "total": 2, - "totalUnique": 2, - "unique": { - "rgba(122,134,154,1)": 1, - "rgba(0,184,217,1)": 1 - }, - "uniquenessRatio": 1 - }, - "border-left": { - "total": 20, - "totalUnique": 2, - "unique": { - "rgba(223,225,230,1)": 15, - "rgba(0,184,217,1)": 5 - }, - "uniquenessRatio": 0.1 - }, - "border-right": { - "total": 20, - "totalUnique": 2, - "unique": { - "rgba(223,225,230,1)": 15, - "rgba(0,184,217,1)": 5 - }, - "uniquenessRatio": 0.1 - } - }, - "formats": { - "total": 530, - "totalUnique": 3, - "unique": { - "rgba": 505, - "currentcolor": 6, - "transparent": 19 - }, - "uniquenessRatio": 0.005660377358490566 - } - }, - "gradients": { - "total": 35, - "totalUnique": 5, - "unique": { - "linear-gradient(60deg,rgba(82,67,170,1),rgba(237,80,180,1))": 10, - "linear-gradient(240deg,rgba(0,184,217,1),rgba(0,101,255,1))": 5, - "linear-gradient(0deg,rgba(230,252,255,1),rgba(255,255,255,1))": 10, - "linear-gradient(180deg,rgba(230,252,255,1),rgba(255,255,255,1))": 5, - "linear-gradient(60deg,rgba(101,84,192,1),rgba(249,156,219,1))": 5 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "fontFamilies": { - "total": 46, - "totalUnique": 8, - "unique": { - "'Charlie Display'": 13, - "'Charlie Text'": 11, - "-apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu','Fira Sans','Droid Sans','Helvetica Neue',sans-serif": 1, - "'SFMono-Medium','SF Mono','Segoe UI Mono','Roboto Mono','Ubuntu Mono',Menlo,Consolas,Courier,monospace": 1, - "var(--font-family-text,'Charlie Text',sans-serif)": 5, - "'Charlie Text',sans-serif": 5, - "var(--font-family-display,'Charlie Display',sans-serif)": 5, - "'Charlie Display',sans-serif": 5 - }, - "uniquenessRatio": 0.17391304347826086 - }, - "fontSizes": { - "total": 73, - "totalUnique": 14, - "unique": { - "1rem": 36, - "0.875em": 4, - "0.75em": 1, - "1em": 2, - "1.5rem": 8, - "16px": 1, - "1.25rem": 3, - "2rem": 1, - "2.75rem": 1, - "3rem": 2, - "2.25rem": 2, - "0.75rem": 8, - "6.5rem": 2, - "5.5rem": 2 - }, - "uniquenessRatio": 0.1917808219178082 - }, - "lineHeights": { - "total": 27, - "totalUnique": 10, - "unique": { - "0": 2, - "1": 1, - "1.5": 3, - "1.25": 6, - "1.18181818": 1, - "1.33333333": 5, - "1.2": 3, - "1rem": 4, - "1.5rem": 1, - "1.25rem": 1 - }, - "uniquenessRatio": 0.37037037037037035 - }, - "zindexes": { - "total": 8, - "totalUnique": 4, - "unique": { - "1": 3, - "90": 2, - "100": 2, - "1000": 1 - }, - "uniquenessRatio": 0.5 - }, - "textShadows": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "boxShadows": { - "total": 18, - "totalUnique": 8, - "unique": { - "0 0.5rem 1rem 0 rgba(9,30,66,0.15)": 7, - "inset 0 1.5rem 1rem -1rem rgba(9,30,66,0.15)": 2, - "0 0 0 0.2rem rgba(153,141,217,0.5)": 1, - "0 0 0 0.2rem rgba(255,227,128,0.5)": 1, - "0 0 0 0.2rem rgba(122,134,154,0.5)": 3, - "0 0.5rem 1rem 0 rgba(9,30,66,0.25)": 1, - "0px 3px 5px rgba(9,30,66,0.2),0px 0px 1px rgba(9,30,66,0.31)": 1, - "0px 2px 4px rgba(0,0,0,0.25)": 2 - }, - "uniquenessRatio": 0.4444444444444444 - }, - "borderRadiuses": { - "total": 38, - "totalUnique": 10, - "unique": { - "0": 2, - "0.2rem": 1, - "0.3rem": 13, - "0.3rem 0.3rem 0 0": 1, - "3px": 1, - "0.25rem": 1, - "0.3rem 0 0 0.3rem": 1, - "0.5rem": 13, - "4px": 2, - "50%": 3 - }, - "uniquenessRatio": 0.2631578947368421, - "itemsPerContext": { - "border-radius": { - "total": 38, - "totalUnique": 10, - "unique": { - "0": 2, - "0.2rem": 1, - "0.3rem": 13, - "0.3rem 0.3rem 0 0": 1, - "3px": 1, - "0.25rem": 1, - "0.3rem 0 0 0.3rem": 1, - "0.5rem": 13, - "4px": 2, - "50%": 3 - }, - "uniquenessRatio": 0.2631578947368421 - } - } - }, - "animations": { - "durations": { - "total": 107, - "totalUnique": 10, - "unique": { - "0.3s": 36, - "0.6s": 8, - "0s": 4, - "0.5s": 4, - "0.2s": 2, - "2s": 4, - "250ms": 41, - "0.1s": 4, - "0.4s": 2, - "0.15s": 2 - }, - "uniquenessRatio": 0.09345794392523364 - }, - "timingFunctions": { - "total": 101, - "totalUnique": 3, - "unique": { - "ease": 44, - "linear": 16, - "ease-out": 41 - }, - "uniquenessRatio": 0.0297029702970297 - } - }, - "prefixes": { - "total": 186, - "totalUnique": 8, - "unique": { - "-apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Oxygen','Ubuntu','Fira Sans','Droid Sans','Helvetica Neue',sans-serif": 2, - "-webkit-box": 52, - "-webkit-flex": 52, - "-ms-flexbox": 52, - "-webkit-inline-box": 7, - "-webkit-inline-flex": 7, - "-ms-inline-flexbox": 7, - "-webkit-transform 250ms ease-out": 7 - }, - "uniquenessRatio": 0.043010752688172046 - }, - "browserhacks": { - "total": 0, - "totalUnique": 0, - "unique": {}, - "uniquenessRatio": 0 - }, - "units": { - "total": 1100, - "totalUnique": 9, - "unique": { - "rem": 553, - "px": 366, - "em": 10, - "vh": 3, - "s": 80, - "vw": 7, - "ms": 41, - "deg": 38, - "fr": 2 - }, - "uniquenessRatio": 0.008181818181818182, - "itemsPerContext": { - "font-size": { - "total": 73, - "totalUnique": 3, - "unique": { - "rem": 65, - "em": 7, - "px": 1 - }, - "uniquenessRatio": 0.0410958904109589 - }, - "outline": { - "total": 33, - "totalUnique": 1, - "unique": { - "px": 33 - }, - "uniquenessRatio": 0.030303030303030304 - }, - "margin": { - "total": 32, - "totalUnique": 2, - "unique": { - "rem": 28, - "px": 4 - }, - "uniquenessRatio": 0.0625 - }, - "height": { - "total": 52, - "totalUnique": 3, - "unique": { - "px": 15, - "vh": 1, - "rem": 36 - }, - "uniquenessRatio": 0.057692307692307696 - }, - "margin-bottom": { - "total": 37, - "totalUnique": 1, - "unique": { - "rem": 37 - }, - "uniquenessRatio": 0.02702702702702703 - }, - "padding-left": { - "total": 7, - "totalUnique": 1, - "unique": { - "rem": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "bottom": { - "total": 1, - "totalUnique": 1, - "unique": { - "em": 1 - }, - "uniquenessRatio": 1 - }, - "top": { - "total": 12, - "totalUnique": 3, - "unique": { - "em": 1, - "px": 4, - "rem": 7 - }, - "uniquenessRatio": 0.25 - }, - "padding": { - "total": 163, - "totalUnique": 3, - "unique": { - "rem": 161, - "em": 1, - "px": 1 - }, - "uniquenessRatio": 0.018404907975460124 - }, - "border-radius": { - "total": 35, - "totalUnique": 2, - "unique": { - "rem": 32, - "px": 3 - }, - "uniquenessRatio": 0.05714285714285714 - }, - "padding-top": { - "total": 20, - "totalUnique": 1, - "unique": { - "rem": 20 - }, - "uniquenessRatio": 0.05 - }, - "padding-bottom": { - "total": 32, - "totalUnique": 1, - "unique": { - "rem": 32 - }, - "uniquenessRatio": 0.03125 - }, - "outline-offset": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "min-height": { - "total": 6, - "totalUnique": 3, - "unique": { - "vh": 2, - "rem": 1, - "px": 3 - }, - "uniquenessRatio": 0.5 - }, - "-webkit-transition": { - "total": 59, - "totalUnique": 2, - "unique": { - "s": 35, - "ms": 24 - }, - "uniquenessRatio": 0.03389830508474576 - }, - "transition": { - "total": 52, - "totalUnique": 2, - "unique": { - "s": 35, - "ms": 17 - }, - "uniquenessRatio": 0.038461538461538464 - }, - "width": { - "total": 39, - "totalUnique": 3, - "unique": { - "vw": 5, - "rem": 14, - "px": 20 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "box-shadow": { - "total": 39, - "totalUnique": 2, - "unique": { - "rem": 27, - "px": 12 - }, - "uniquenessRatio": 0.05128205128205128 - }, - "max-width": { - "total": 9, - "totalUnique": 2, - "unique": { - "px": 8, - "rem": 1 - }, - "uniquenessRatio": 0.2222222222222222 - }, - "gap": { - "total": 25, - "totalUnique": 1, - "unique": { - "rem": 25 - }, - "uniquenessRatio": 0.04 - }, - "border-bottom": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "-webkit-animation-duration": { - "total": 2, - "totalUnique": 1, - "unique": { - "s": 2 - }, - "uniquenessRatio": 0.5 - }, - "animation-duration": { - "total": 2, - "totalUnique": 1, - "unique": { - "s": 2 - }, - "uniquenessRatio": 0.5 - }, - "border": { - "total": 13, - "totalUnique": 1, - "unique": { - "px": 13 - }, - "uniquenessRatio": 0.07692307692307693 - }, - "margin-left": { - "total": 19, - "totalUnique": 2, - "unique": { - "rem": 18, - "px": 1 - }, - "uniquenessRatio": 0.10526315789473684 - }, - "margin-top": { - "total": 24, - "totalUnique": 2, - "unique": { - "px": 9, - "rem": 15 - }, - "uniquenessRatio": 0.08333333333333333 - }, - "-webkit-transform": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "deg": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "-ms-transform": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "deg": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "transform": { - "total": 15, - "totalUnique": 2, - "unique": { - "px": 14, - "deg": 1 - }, - "uniquenessRatio": 0.13333333333333333 - }, - "-webkit-transition-delay": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "transition-delay": { - "total": 3, - "totalUnique": 1, - "unique": { - "s": 3 - }, - "uniquenessRatio": 0.3333333333333333 - }, - "left": { - "total": 9, - "totalUnique": 2, - "unique": { - "vw": 2, - "rem": 7 - }, - "uniquenessRatio": 0.2222222222222222 - }, - "border-top": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "line-height": { - "total": 6, - "totalUnique": 1, - "unique": { - "rem": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "padding-right": { - "total": 6, - "totalUnique": 1, - "unique": { - "rem": 6 - }, - "uniquenessRatio": 0.16666666666666666 - }, - "margin-right": { - "total": 7, - "totalUnique": 1, - "unique": { - "rem": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "-webkit-scroll-margin-top": { - "total": 32, - "totalUnique": 1, - "unique": { - "px": 32 - }, - "uniquenessRatio": 0.03125 - }, - "-moz-scroll-margin-top": { - "total": 32, - "totalUnique": 1, - "unique": { - "px": 32 - }, - "uniquenessRatio": 0.03125 - }, - "-ms-scroll-margin-top": { - "total": 32, - "totalUnique": 1, - "unique": { - "px": 32 - }, - "uniquenessRatio": 0.03125 - }, - "scroll-margin-top": { - "total": 32, - "totalUnique": 1, - "unique": { - "px": 32 - }, - "uniquenessRatio": 0.03125 - }, - "background-image": { - "total": 35, - "totalUnique": 1, - "unique": { - "deg": 35 - }, - "uniquenessRatio": 0.02857142857142857 - }, - "background-position": { - "total": 5, - "totalUnique": 1, - "unique": { - "px": 5 - }, - "uniquenessRatio": 0.2 - }, - "border-width": { - "total": 7, - "totalUnique": 1, - "unique": { - "px": 7 - }, - "uniquenessRatio": 0.14285714285714285 - }, - "max-height": { - "total": 1, - "totalUnique": 1, - "unique": { - "rem": 1 - }, - "uniquenessRatio": 1 - }, - "grid-template-columns": { - "total": 2, - "totalUnique": 1, - "unique": { - "fr": 2 - }, - "uniquenessRatio": 0.5 - }, - "border-left": { - "total": 20, - "totalUnique": 1, - "unique": { - "px": 20 - }, - "uniquenessRatio": 0.05 - }, - "border-right": { - "total": 20, - "totalUnique": 1, - "unique": { - "px": 20 - }, - "uniquenessRatio": 0.05 - }, - "background-size": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - }, - "min-width": { - "total": 1, - "totalUnique": 1, - "unique": { - "px": 1 - }, - "uniquenessRatio": 1 - } - } - }, - "complexity": { - "min": 1, - "max": 2, - "mean": 1.0511129431162407, - "mode": 1, - "range": 1, - "sum": 3825 - }, - "keywords": { - "total": 300, - "totalUnique": 3, - "unique": { - "inherit": 19, - "none": 141, - "auto": 140 - }, - "uniquenessRatio": 0.01 - } - } -} \ No newline at end of file diff --git a/src/aggregate-collection.test.js b/src/aggregate-collection.test.ts similarity index 59% rename from src/aggregate-collection.test.js rename to src/aggregate-collection.test.ts index 3cfdce8e..cacea791 100644 --- a/src/aggregate-collection.test.js +++ b/src/aggregate-collection.test.ts @@ -1,10 +1,7 @@ -import { suite } from 'uvu'; -import * as assert from 'uvu/assert'; +import { test, expect } from 'vitest' import { AggregateCollection } from './aggregate-collection.js' -const CollectionSuite = suite('AggregateCollection') - -CollectionSuite('aggregates correctly', () => { +test('aggregates correctly', () => { const fixture = new AggregateCollection() fixture.push(1) fixture.push(2) @@ -22,16 +19,16 @@ CollectionSuite('aggregates correctly', () => { sum: 39, } - assert.equal(actual, expected) - assert.equal(fixture.toArray(), [1, 2, 25, 3, 4, 4]) + expect(actual).toEqual(expected) + expect(fixture.toArray()).toEqual([1, 2, 25, 3, 4, 4]) }) -CollectionSuite('handles collections without values', () => { +test('handles collections without values', () => { const fixture = new AggregateCollection() const aggregate = fixture.aggregate() const items = fixture.toArray() - assert.equal(aggregate, { + expect(aggregate).toEqual({ max: 0, min: 0, range: 0, @@ -39,7 +36,5 @@ CollectionSuite('handles collections without values', () => { mode: 0, sum: 0, }) - assert.equal(items, []) + expect(items).toEqual([]) }) - -CollectionSuite.run() \ No newline at end of file diff --git a/src/aggregate-collection.js b/src/aggregate-collection.ts similarity index 78% rename from src/aggregate-collection.js rename to src/aggregate-collection.ts index 190cae8a..8b91628a 100644 --- a/src/aggregate-collection.js +++ b/src/aggregate-collection.ts @@ -3,10 +3,8 @@ * Takes the mean/average of multiple values if multiple values occur the same amount of times. * * @see https://github.com/angus-c/just/blob/684af9ca0c7808bc78543ec89379b1fdfce502b1/packages/array-mode/index.js - * @param {Array} arr - Array to find the mode value for - * @returns {Number} mode - The `mode` value of `arr` */ -function Mode(arr) { +function get_mode(arr: number[]): number { let frequencies = new Map() let maxOccurrences = -1 let maxOccurenceCount = 0 @@ -14,7 +12,7 @@ function Mode(arr) { let len = arr.length for (let i = 0; i < len; i++) { - let element = arr[i] + let element = arr[i]! let updatedCount = (frequencies.get(element) || 0) + 1 frequencies.set(element, updatedCount) @@ -34,17 +32,15 @@ function Mode(arr) { } class AggregateCollection { + _items: number[] + _sum: number + constructor() { - /** @type number[] */ this._items = [] this._sum = 0 } - /** - * Add a new Integer at the end of this AggregateCollection - * @param {number} item - The item to add - */ - push(item) { + push(item: number) { this._items.push(item) this._sum += item } @@ -68,12 +64,11 @@ class AggregateCollection { } // TODO: can we avoid this sort()? It's slow - /** @type Number[] */ let sorted = this._items.slice().sort((a, b) => a - b) - let min = sorted[0] - let max = sorted[len - 1] + let min = sorted.at(0)! + let max = sorted.at(-1)! - let mode = Mode(sorted) + let mode = get_mode(sorted) let sum = this._sum return { diff --git a/src/collection.js b/src/collection.js deleted file mode 100644 index f67135b8..00000000 --- a/src/collection.js +++ /dev/null @@ -1,111 +0,0 @@ -export class Collection { - /** @param {boolean} useLocations */ - constructor(useLocations = false) { - /** @type {Map} */ - this._items = new Map() - this._total = 0 - - if (useLocations) { - /** @type {number[]} */ - this._nodes = [] - } - - /** @type {boolean} */ - this._useLocations = useLocations - } - - /** - * @param {string | number} item - * @param {import('css-tree').CssLocation} node_location - */ - p(item, node_location) { - let index = this._total - - if (this._useLocations) { - let start = node_location.start - let start_offset = start.offset - let position = index * 4 - - this._nodes[position] = start.line - this._nodes[position + 1] = start.column - this._nodes[position + 2] = start_offset - this._nodes[position + 3] = node_location.end.offset - start_offset - } - - if (this._items.has(item)) { - /** @type number[] */ - let list = this._items.get(item) - list.push(index) - this._total++ - return - } - - this._items.set(item, [index]) - this._total++ - } - - size() { - return this._total - } - - /** - * @typedef CssLocation - * @property {number} line - * @property {number} column - * @property {number} offset - * @property {number} length - * - * @returns {{ - * total: number; - * totalUnique: number; - * uniquenessRatio: number; - * unique: Record; - * } & ({ - * uniqueWithLocations: Record - * } | { - * uniqueWithLocations?: undefined - * })} - */ - c() { - /** @type {Map} */ - let uniqueWithLocations = new Map() - /** @type {Record} */ - let unique = {} - let useLocations = this._useLocations - let items = this._items - let _nodes = this._nodes - let size = items.size - - items.forEach((list, key) => { - if (useLocations) { - let nodes = list.map(function (index) { - let position = index * 4 - /** @type {CssLocation} */ - return { - line: _nodes[position], - column: _nodes[position + 1], - offset: _nodes[position + 2], - length: _nodes[position + 3], - } - }) - uniqueWithLocations.set(key, nodes) - } else { - unique[key] = list.length - } - }) - - let total = this._total - let data = { - total, - totalUnique: size, - unique, - uniquenessRatio: total === 0 ? 0 : size / total, - } - - if (useLocations) { - data.uniqueWithLocations = Object.fromEntries(uniqueWithLocations) - } - - return data - } -} diff --git a/src/collection.test.ts b/src/collection.test.ts new file mode 100644 index 00000000..70dae342 --- /dev/null +++ b/src/collection.test.ts @@ -0,0 +1,126 @@ +import { expect, test } from 'vitest' +import { Collection } from './collection.js' + +test('simple count', () => { + const collection = new Collection() + const loc = { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } } + collection.add('one', loc) + collection.add('one', loc) + collection.add('two', loc) + collection.add('two', loc) + collection.add('three', loc) + + const result = Array.from(collection.list()) + expect(result).toEqual([ + { name: 'one', count: 2 }, + { name: 'two', count: 2 }, + { name: 'three', count: 1 } + ]) +}) + +test('counts "0" as a string', () => { + const collection = new Collection() + const loc = { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } } + collection.add('0', loc) + + const result = Array.from(collection.list()) + expect(result).toEqual([ + { name: '0', count: 1 } + ]) + expect(collection.total).toBe(1) + expect(collection.has('0')).toBeTruthy() +}) + +test('empty list', () => { + const collection = new Collection() + const result = Array.from(collection.list()) + expect(result).toEqual([]) +}) + +test('unique', () => { + const collection = new Collection() + const loc = { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } } + collection.add('one', loc) + collection.add('one', loc) + collection.add('two', loc) + collection.add('two', loc) + collection.add('three', loc) + + expect(collection.total_unique).toBe(3) +}) + +test('empty unique', () => { + const collection = new Collection() + expect(collection.total_unique).toBe(0) +}) + +test('locations', () => { + const collection = new Collection() + collection.add('one', { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } }) + collection.add('one', { start: { offset: 3, line: 2, column: 1 }, end: { offset: 4, line: 2, column: 2 } }) + + const result = Array.from(collection.locations('one')) + expect(result).toEqual([ + { start: 1, end: 2, line: 1, column: 1 }, + { start: 3, end: 4, line: 2, column: 1 } + ]) +}) + +test('has', () => { + const collection = new Collection() + collection.add('one', { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } }) + expect(collection.has('one')).toBeTruthy() + expect(collection.has('two')).toBeFalsy() +}) + +test('JSON.stringify', () => { + const collection = new Collection() + collection.add('one', { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } }) + collection.add('one', { start: { offset: 3, line: 2, column: 1 }, end: { offset: 4, line: 2, column: 2 } }) + collection.add('two', { start: { offset: 5, line: 3, column: 1 }, end: { offset: 6, line: 3, column: 2 } }) + + const result = JSON.stringify(collection) + expect(result).toBe('[{"name":"one","count":2,"locations":[{"line":1,"column":1,"start":1,"end":2},{"line":2,"column":1,"start":3,"end":4}]},{"name":"two","count":1,"locations":[{"line":3,"column":1,"start":5,"end":6}]}]') +}) + +test('toJSON', () => { + const collection = new Collection() + collection.add('one', { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } }) + collection.add('one', { start: { offset: 3, line: 2, column: 1 }, end: { offset: 4, line: 2, column: 2 } }) + collection.add('two', { start: { offset: 5, line: 3, column: 1 }, end: { offset: 6, line: 3, column: 2 } }) + + const result = collection.toJSON() + expect(result).toEqual([ + { name: 'one', count: 2, locations: [{ start: 1, end: 2, line: 1, column: 1 }, { start: 3, end: 4, line: 2, column: 1 }] }, + { name: 'two', count: 1, locations: [{ start: 5, end: 6, line: 3, column: 1 }] } + ]) +}) + +test('total', () => { + const collection = new Collection() + collection.add('one', { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } }) + collection.add('one', { start: { offset: 3, line: 2, column: 1 }, end: { offset: 4, line: 2, column: 2 } }) + collection.add('two', { start: { offset: 5, line: 3, column: 1 }, end: { offset: 6, line: 3, column: 2 } }) + + expect(collection.total).toBe(3) +}) + +test('empty total', () => { + const collection = new Collection() + expect(collection.total).toBe(0) +}) + +test('unique ratio', () => { + const collection = new Collection() + collection.add('one', { start: { offset: 1, line: 1, column: 1 }, end: { offset: 2, line: 1, column: 2 } }) + collection.add('one', { start: { offset: 3, line: 2, column: 1 }, end: { offset: 4, line: 2, column: 2 } }) + collection.add('two', { start: { offset: 5, line: 3, column: 1 }, end: { offset: 6, line: 3, column: 2 } }) + + expect(collection.uniqueness_ratio).toBe(2 / 3) +}) + +test('empty unique ratio', () => { + const collection = new Collection() + expect(collection.uniqueness_ratio).toBe(0) +}) + diff --git a/src/collection.ts b/src/collection.ts new file mode 100644 index 00000000..04e8333e --- /dev/null +++ b/src/collection.ts @@ -0,0 +1,107 @@ +type CssLocation = { + source?: string + start: { + offset: number + line: number + column: number + } + end: { + offset: number + line?: number + column?: number + } +} + +type CssLocationArray = Uint32Array + +type Item = string | number + +function location_to_array(location: CssLocation) { + return new Uint32Array([ + location.start.line, + location.start.column, + location.start.offset, + location.end.offset + ]) +} + +function array_to_location(array: CssLocationArray) { + return { + line: array[0], + column: array[1], + start: array[2], + end: array[3], + } +} + +export class Collection { + #collection: Map> + #total: number + + constructor() { + this.#collection = new Map() + this.#total = 0 + } + + add(item: Item, location: CssLocation) { + let match = this.#collection.get(item) + let location_as_array = location_to_array(location) + if (match) { + match.push(location_as_array) + } else { + this.#collection.set(item, [location_as_array]) + } + this.#total++ + } + + *[Symbol.iterator]() { + for (let [key, value] of this.#collection) { + yield { + name: key, + count: value.length, + locations: value.map(array_to_location) + } + } + } + + * list() { + for (let [key, value] of this.#collection) { + yield { + name: key, + count: value.length + } + } + } + + * locations(name: string) { + let match = this.#collection.get(name) + if (match) { + for (let location of match) { + yield array_to_location(location) + } + } + } + + has(name: string) { + return this.#collection.has(name) + } + + get total_unique() { + return this.#collection.size + } + + get total() { + return this.#total + } + + get uniqueness_ratio() { + if (this.total === 0) { + return 0 + } + return this.total_unique / this.total + } + + toJSON() { + return Array.from(this) + } +} \ No newline at end of file diff --git a/src/context-collection.js b/src/context-collection.js index 35495408..bb6966a1 100644 --- a/src/context-collection.js +++ b/src/context-collection.js @@ -1,13 +1,10 @@ import { Collection } from './collection.js' class ContextCollection { - /** @param {boolean} useLocations */ - constructor(useLocations) { - this._list = new Collection(useLocations) + constructor() { + this._list = new Collection() /** @type {Map} */ this._contexts = new Map() - /** @type {boolean} */ - this._useLocations = useLocations } /** @@ -17,33 +14,15 @@ class ContextCollection { * @param {import('css-tree').CssLocation} node_location */ push(item, context, node_location) { - this._list.p(item, node_location) + this._list.add(item, node_location) + let match = this._contexts.get(context) - if (!this._contexts.has(context)) { - this._contexts.set(context, new Collection(this._useLocations)) + if (!match) { + match = new Collection() + this._contexts.set(context, match) } - this._contexts.get(context).p(item, node_location) - } - - count() { - /** - * @type {Map, - * uniquenessRatio: number - * }>} - */ - let itemsPerContext = new Map() - - for (let [context, value] of this._contexts.entries()) { - itemsPerContext.set(context, value.c()) - } - - return Object.assign(this._list.c(), { - itemsPerContext: Object.fromEntries(itemsPerContext) - }) + match.add(item, node_location) } } diff --git a/src/index.js b/src/index.js index 7b4438b7..b95cb90c 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,6 @@ import parse from 'css-tree/parser' import walk from 'css-tree/walker' -import { calculateForAST } from '@bramus/specificity/core' +import { calculateForAST } from '@bramus/specificity' import { isSupportsBrowserhack, isMediaBrowserhack } from './atrules/atrules.js' import { getCombinators, getComplexity, isAccessibility, isPrefixed, hasPseudoClass } from './selectors/utils.js' import { colorFunctions, colorKeywords, namedColors, systemColors } from './values/colors.js' @@ -46,30 +46,22 @@ let border_radius_properties = new KeywordSet([ 'border-end-start-radius', ]) +/** + * Calculate the ratio of part to total (safe division) + * @param {number} part + * @param {number} total + * @returns + */ function ratio(part, total) { if (total === 0) return 0 return part / total } -let defaults = { - useLocations: false -} - -/** - * @typedef Options - * @property {boolean} useLocations Use Locations (`{ 'item': [{ line, column, offset, length }] }`) instead of a regular count per occurrence (`{ 'item': 3 }`) - */ - /** * Analyze CSS * @param {string} css - * @param {Options} options */ -export function analyze(css, options = {}) { - let settings = Object.assign({}, defaults, options) - let useLocations = settings.useLocations === true - let start = Date.now() - +export function analyze(css) { /** * Recreate the authored CSS from a CSSTree node * @param {import('css-tree').CssNode} node - Node from CSSTree AST to stringify @@ -79,8 +71,12 @@ export function analyze(css, options = {}) { return stringifyNodePlain(node).trim() } + /** @param {import('css-tree').CssNode} node */ function stringifyNodePlain(node) { let loc = node.loc + if (!loc) { + return '' + } return css.substring(loc.start.offset, loc.end.offset) } @@ -94,8 +90,6 @@ export function analyze(css, options = {}) { unique: new Map() } - let startParse = Date.now() - let ast = parse(css, { parseCustomProperty: true, // To find font-families, colors, etc. positions: true, // So we can use stringifyNode() @@ -106,26 +100,25 @@ export function analyze(css, options = {}) { }, }) - let startAnalysis = Date.now() - let linesOfCode = ast.loc.end.line - ast.loc.start.line + 1 + let linesOfCode = ast.loc ? ast.loc.end.line - ast.loc.start.line + 1 : 0 // Atrules let totalAtRules = 0 let atRuleComplexities = new AggregateCollection() /** @type {Record[]} */ let fontfaces = [] - let fontfaces_with_loc = new Collection(useLocations) - let layers = new Collection(useLocations) - let imports = new Collection(useLocations) - let medias = new Collection(useLocations) - let mediaBrowserhacks = new Collection(useLocations) - let charsets = new Collection(useLocations) - let supports = new Collection(useLocations) - let supportsBrowserhacks = new Collection(useLocations) - let keyframes = new Collection(useLocations) - let prefixedKeyframes = new Collection(useLocations) - let containers = new Collection(useLocations) - let registeredProperties = new Collection(useLocations) + let fontfaces_with_loc = new Collection() + let layers = new Collection() + let imports = new Collection() + let medias = new Collection() + let mediaBrowserhacks = new Collection() + let charsets = new Collection() + let supports = new Collection() + let supportsBrowserhacks = new Collection() + let keyframes = new Collection() + let prefixedKeyframes = new Collection() + let containers = new Collection() + let registeredProperties = new Collection() // Rules let totalRules = 0 @@ -133,14 +126,14 @@ export function analyze(css, options = {}) { let ruleSizes = new AggregateCollection() let selectorsPerRule = new AggregateCollection() let declarationsPerRule = new AggregateCollection() - let uniqueRuleSize = new Collection(useLocations) - let uniqueSelectorsPerRule = new Collection(useLocations) - let uniqueDeclarationsPerRule = new Collection(useLocations) + let uniqueRuleSize = new Collection() + let uniqueSelectorsPerRule = new Collection() + let uniqueDeclarationsPerRule = new Collection() // Selectors - let keyframeSelectors = new Collection(useLocations) + let keyframeSelectors = new Collection() let uniqueSelectors = new Set() - let prefixedSelectors = new Collection(useLocations) + let prefixedSelectors = new Collection() /** @type {Specificity} */ let maxSpecificity /** @type {Specificity} */ @@ -148,15 +141,15 @@ export function analyze(css, options = {}) { let specificityA = new AggregateCollection() let specificityB = new AggregateCollection() let specificityC = new AggregateCollection() - let uniqueSpecificities = new Collection(useLocations) + let uniqueSpecificities = new Collection() let selectorComplexities = new AggregateCollection() - let uniqueSelectorComplexities = new Collection(useLocations) + let uniqueSelectorComplexities = new Collection() /** @type {Specificity[]} */ let specificities = [] - let ids = new Collection(useLocations) - let a11y = new Collection(useLocations) - let pseudoClasses = new Collection(useLocations) - let combinators = new Collection(useLocations) + let ids = new Collection() + let a11y = new Collection() + let pseudoClasses = new Collection() + let combinators = new Collection() // Declarations let uniqueDeclarations = new Set() @@ -164,33 +157,33 @@ export function analyze(css, options = {}) { let declarationComplexities = new AggregateCollection() let importantDeclarations = 0 let importantsInKeyframes = 0 - let importantCustomProperties = new Collection(useLocations) + let importantCustomProperties = new Collection() // Properties - let properties = new Collection(useLocations) - let propertyHacks = new Collection(useLocations) - let propertyVendorPrefixes = new Collection(useLocations) - let customProperties = new Collection(useLocations) + let properties = new Collection() + let propertyHacks = new Collection() + let propertyVendorPrefixes = new Collection() + let customProperties = new Collection() let propertyComplexities = new AggregateCollection() // Values let valueComplexities = new AggregateCollection() - let vendorPrefixedValues = new Collection(useLocations) - let valueBrowserhacks = new Collection(useLocations) - let zindex = new Collection(useLocations) - let textShadows = new Collection(useLocations) - let boxShadows = new Collection(useLocations) - let fontFamilies = new Collection(useLocations) - let fontSizes = new Collection(useLocations) - let lineHeights = new Collection(useLocations) - let timingFunctions = new Collection(useLocations) - let durations = new Collection(useLocations) - let colors = new ContextCollection(useLocations) - let colorFormats = new Collection(useLocations) - let units = new ContextCollection(useLocations) - let gradients = new Collection(useLocations) - let valueKeywords = new Collection(useLocations) - let borderRadiuses = new ContextCollection(useLocations) + let vendorPrefixedValues = new Collection() + let valueBrowserhacks = new Collection() + let zindex = new Collection() + let textShadows = new Collection() + let boxShadows = new Collection() + let fontFamilies = new Collection() + let fontSizes = new Collection() + let lineHeights = new Collection() + let timingFunctions = new Collection() + let durations = new Collection() + let colors = new ContextCollection() + let colorFormats = new Collection() + let units = new ContextCollection() + let gradients = new Collection() + let valueKeywords = new Collection() + let borderRadiuses = new ContextCollection() walk(ast, function (node) { switch (node.type) { @@ -201,10 +194,7 @@ export function analyze(css, options = {}) { if (atRuleName === 'font-face') { let descriptors = {} - - if (useLocations) { - fontfaces_with_loc.p(node.loc.start.offset, node.loc) - } + fontfaces_with_loc.add(node.loc.start.offset, node.loc) node.block.children.forEach(descriptor => { // Ignore 'Raw' nodes in case of CSS syntax errors @@ -227,46 +217,46 @@ export function analyze(css, options = {}) { let loc = prelude.loc if (atRuleName === 'media') { - medias.p(preludeStr, loc) + medias.add(preludeStr, loc) if (isMediaBrowserhack(prelude)) { - mediaBrowserhacks.p(preludeStr, loc) + mediaBrowserhacks.add(preludeStr, loc) complexity++ } } else if (atRuleName === 'supports') { - supports.p(preludeStr, loc) + supports.add(preludeStr, loc) // TODO: analyze vendor prefixes in @supports // TODO: analyze complexity of @supports 'declaration' if (isSupportsBrowserhack(prelude)) { - supportsBrowserhacks.p(preludeStr, loc) + supportsBrowserhacks.add(preludeStr, loc) complexity++ } } else if (endsWith('keyframes', atRuleName)) { let name = '@' + atRuleName + ' ' + preludeStr if (hasVendorPrefix(atRuleName)) { - prefixedKeyframes.p(name, loc) + prefixedKeyframes.add(name, loc) complexity++ } - keyframes.p(name, loc) + keyframes.add(name, loc) } else if (atRuleName === 'import') { - imports.p(preludeStr, loc) + imports.add(preludeStr, loc) // TODO: analyze complexity of media queries, layers and supports in @import // see https://github.com/projectwallace/css-analyzer/issues/326 } else if (atRuleName === 'charset') { - charsets.p(preludeStr, loc) + charsets.add(preludeStr, loc) } else if (atRuleName === 'container') { - containers.p(preludeStr, loc) + containers.add(preludeStr, loc) // TODO: calculate complexity of container 'declaration' } else if (atRuleName === 'layer') { preludeStr .split(',') - .forEach(name => layers.p(name.trim(), loc)) + .forEach(name => layers.add(name.trim(), loc)) } else if (atRuleName === 'property') { - registeredProperties.p(preludeStr, loc) + registeredProperties.add(preludeStr, loc) // TODO: add complexity for descriptors } } else { if (atRuleName === 'layer') { - layers.p('', node.loc) + layers.add('', node.loc) complexity++ } } @@ -282,11 +272,11 @@ export function analyze(css, options = {}) { let numDeclarations = blockChildren ? blockChildren.size : 0 ruleSizes.push(numSelectors + numDeclarations) - uniqueRuleSize.p(numSelectors + numDeclarations, node.loc) + uniqueRuleSize.add(numSelectors + numDeclarations, node.loc) selectorsPerRule.push(numSelectors) - uniqueSelectorsPerRule.p(numSelectors, prelude.loc) + uniqueSelectorsPerRule.add(numSelectors, prelude.loc) declarationsPerRule.push(numDeclarations) - uniqueDeclarationsPerRule.p(numDeclarations, block.loc) + uniqueDeclarationsPerRule.add(numDeclarations, block.loc) totalRules++ @@ -299,36 +289,36 @@ export function analyze(css, options = {}) { let selector = stringifyNode(node) if (this.atrule && endsWith('keyframes', this.atrule.name)) { - keyframeSelectors.p(selector, node.loc) + keyframeSelectors.add(selector, node.loc) return this.skip } if (isAccessibility(node)) { - a11y.p(selector, node.loc) + a11y.add(selector, node.loc) } let pseudos = hasPseudoClass(node) if (pseudos !== false) { for (let pseudo of pseudos) { - pseudoClasses.p(pseudo, node.loc) + pseudoClasses.add(pseudo, node.loc) } } let complexity = getComplexity(node) if (isPrefixed(node)) { - prefixedSelectors.p(selector, node.loc) + prefixedSelectors.add(selector, node.loc) } uniqueSelectors.add(selector) selectorComplexities.push(complexity) - uniqueSelectorComplexities.p(complexity, node.loc) + uniqueSelectorComplexities.add(complexity, node.loc) // #region specificity let specificity = calculateForAST(node).toArray() let [sa, sb, sc] = specificity - uniqueSpecificities.p(specificity.toString(), node.loc) + uniqueSpecificities.add(specificity.join(','), node.loc) specificityA.push(sa) specificityB.push(sb) @@ -354,11 +344,11 @@ export function analyze(css, options = {}) { // #endregion if (sa > 0) { - ids.p(selector, node.loc) + ids.add(selector, node.loc) } getCombinators(node, function onCombinator(combinator) { - combinators.p(combinator.name, combinator.loc) + combinators.add(combinator.name, combinator.loc) }) // Avoid deeper walking of selectors to not mess with @@ -407,19 +397,14 @@ export function analyze(css, options = {}) { let item = embedTypes.unique.get(type) item.count++ item.size += size + item.uniqueWithLocations.push(loc) embedTypes.unique.set(type, item) - if (useLocations) { - item.uniqueWithLocations.push(loc) - } } else { - let item = { + embedTypes.unique.set(type, { count: 1, - size - } - if (useLocations) { - item.uniqueWithLocations = [loc] - } - embedTypes.unique.set(type, item) + size, + uniqueWithLocations: [loc] + }) } } break @@ -427,7 +412,7 @@ export function analyze(css, options = {}) { case Value: { if (isValueKeyword(node)) { valueComplexities.push(1) - valueKeywords.p(stringifyNode(node), node.loc) + valueKeywords.add(stringifyNode(node), node.loc) break } @@ -437,19 +422,19 @@ export function analyze(css, options = {}) { // i.e. `background-image: -webkit-linear-gradient()` if (isValuePrefixed(node)) { - vendorPrefixedValues.p(stringifyNode(node), node.loc) + vendorPrefixedValues.add(stringifyNode(node), node.loc) complexity++ } // i.e. `property: value !ie` if (typeof important === 'string') { - valueBrowserhacks.p(stringifyNodePlain(node) + '!' + important, node.loc) + valueBrowserhacks.add(stringifyNodePlain(node) + '!' + important, node.loc) complexity++ } // i.e. `property: value\9` if (isIe9Hack(node)) { - valueBrowserhacks.p(stringifyNode(node), node.loc) + valueBrowserhacks.add(stringifyNode(node), node.loc) complexity++ } @@ -462,50 +447,50 @@ export function analyze(css, options = {}) { // Process properties first that don't have colors, // so we can avoid further walking them; if (isProperty('z-index', property)) { - zindex.p(stringifyNode(node), loc) + zindex.add(stringifyNode(node), loc) return this.skip } else if (isProperty('font', property)) { if (isSystemFont(node)) return let { font_size, line_height, font_family } = destructure(node, stringifyNode, function (item) { if (item.type === 'keyword') { - valueKeywords.p(item.value, loc) + valueKeywords.add(item.value, loc) } }) if (font_family) { - fontFamilies.p(font_family, loc) + fontFamilies.add(font_family, loc) } if (font_size) { - fontSizes.p(font_size, loc) + fontSizes.add(font_size, loc) } if (line_height) { - lineHeights.p(line_height, loc) + lineHeights.add(line_height, loc) } break } else if (isProperty('font-size', property)) { if (!isSystemFont(node)) { - fontSizes.p(stringifyNode(node), loc) + fontSizes.add(stringifyNode(node), loc) } break } else if (isProperty('font-family', property)) { if (!isSystemFont(node)) { - fontFamilies.p(stringifyNode(node), loc) + fontFamilies.add(stringifyNode(node), loc) } break } else if (isProperty('line-height', property)) { - lineHeights.p(stringifyNode(node), loc) + lineHeights.add(stringifyNode(node), loc) } else if (isProperty('transition', property) || isProperty('animation', property)) { analyzeAnimation(children, function (item) { if (item.type === 'fn') { - timingFunctions.p(stringifyNode(item.value), loc) + timingFunctions.add(stringifyNode(item.value), loc) } else if (item.type === 'duration') { - durations.p(stringifyNode(item.value), loc) + durations.add(stringifyNode(item.value), loc) } else if (item.type === 'keyword') { - valueKeywords.p(stringifyNode(item.value), loc) + valueKeywords.add(stringifyNode(item.value), loc) } }) break @@ -513,22 +498,22 @@ export function analyze(css, options = {}) { if (children && children.size > 1) { children.forEach(child => { if (child.type !== Operator) { - durations.p(stringifyNode(child), loc) + durations.add(stringifyNode(child), loc) } }) } else { - durations.p(stringifyNode(node), loc) + durations.add(stringifyNode(node), loc) } break } else if (isProperty('transition-timing-function', property) || isProperty('animation-timing-function', property)) { if (children && children.size > 1) { children.forEach(child => { if (child.type !== Operator) { - timingFunctions.p(stringifyNode(child), loc) + timingFunctions.add(stringifyNode(child), loc) } }) } else { - timingFunctions.p(stringifyNode(node), loc) + timingFunctions.add(stringifyNode(node), loc) } break } else if (border_radius_properties.has(basename(property))) { @@ -538,12 +523,12 @@ export function analyze(css, options = {}) { break } else if (isProperty('text-shadow', property)) { if (!isValueKeyword(node)) { - textShadows.p(stringifyNode(node), loc) + textShadows.add(stringifyNode(node), loc) } // no break here: potentially contains colors } else if (isProperty('box-shadow', property)) { if (!isValueKeyword(node)) { - boxShadows.p(stringifyNode(node), loc) + boxShadows.add(stringifyNode(node), loc) } // no break here: potentially contains colors } @@ -558,13 +543,13 @@ export function analyze(css, options = {}) { hexLength = hexLength - 2 } colors.push('#' + valueNode.value, property, loc) - colorFormats.p(`hex` + hexLength, loc) + colorFormats.add(`hex` + hexLength, loc) return this.skip } case Identifier: { if (keywords.has(nodeName)) { - valueKeywords.p(nodeName, loc) + valueKeywords.add(nodeName, loc) } // Bail out if it can't be a color name @@ -579,7 +564,7 @@ export function analyze(css, options = {}) { if (colorKeywords.has(nodeName)) { let stringified = stringifyNode(valueNode) colors.push(stringified, property, loc) - colorFormats.p(nodeName.toLowerCase(), loc) + colorFormats.add(nodeName.toLowerCase(), loc) return } @@ -587,7 +572,7 @@ export function analyze(css, options = {}) { if (namedColors.has(nodeName)) { let stringified = stringifyNode(valueNode) colors.push(stringified, property, loc) - colorFormats.p('named', loc) + colorFormats.add('named', loc) return } @@ -595,7 +580,7 @@ export function analyze(css, options = {}) { if (systemColors.has(nodeName)) { let stringified = stringifyNode(valueNode) colors.push(stringified, property, loc) - colorFormats.p('system', loc) + colorFormats.add('system', loc) return } return this.skip @@ -609,12 +594,12 @@ export function analyze(css, options = {}) { // rgb(a), hsl(a), color(), hwb(), lch(), lab(), oklab(), oklch() if (colorFunctions.has(nodeName)) { colors.push(stringifyNode(valueNode), property, valueNode.loc) - colorFormats.p(nodeName.toLowerCase(), valueNode.loc) + colorFormats.add(nodeName.toLowerCase(), valueNode.loc) return } if (endsWith('gradient', nodeName)) { - gradients.p(stringifyNode(valueNode), valueNode.loc) + gradients.add(stringifyNode(valueNode), valueNode.loc) return } // No this.skip here intentionally, @@ -660,20 +645,20 @@ export function analyze(css, options = {}) { } } - properties.p(property, propertyLoc) + properties.add(property, propertyLoc) if (hasVendorPrefix(property)) { - propertyVendorPrefixes.p(property, propertyLoc) + propertyVendorPrefixes.add(property, propertyLoc) propertyComplexities.push(2) } else if (isHack(property)) { - propertyHacks.p(property, propertyLoc) + propertyHacks.add(property, propertyLoc) propertyComplexities.push(2) } else if (isCustom(property)) { - customProperties.p(property, propertyLoc) + customProperties.add(property, propertyLoc) propertyComplexities.push(node.important ? 3 : 2) if (node.important === true) { - importantCustomProperties.p(property, propertyLoc) + importantCustomProperties.add(property, propertyLoc) } } else { propertyComplexities.push(1) @@ -702,7 +687,7 @@ export function analyze(css, options = {}) { return { stylesheet: { - sourceLinesOfCode: totalAtRules + totalSelectors + totalDeclarations + keyframeSelectors.size(), + sourceLinesOfCode: totalAtRules + totalSelectors + totalDeclarations + keyframeSelectors.total, linesOfCode, size: cssLen, complexity: atRuleComplexity.sum + selectorComplexity.sum + declarationComplexity.sum + propertyComplexity.sum + valueComplexity.sum, @@ -729,33 +714,31 @@ export function analyze(css, options = {}) { totalUnique: fontFacesCount, unique: fontfaces, uniquenessRatio: fontFacesCount === 0 ? 0 : 1, - }, useLocations ? { - uniqueWithLocations: fontfaces_with_loc.c().uniqueWithLocations, - } : {}), - import: imports.c(), + }, fontfaces_with_loc), + import: imports, media: assign( - medias.c(), + medias, { - browserhacks: mediaBrowserhacks.c(), + browserhacks: mediaBrowserhacks, } ), - charset: charsets.c(), + charset: charsets, supports: assign( - supports.c(), + supports, { - browserhacks: supportsBrowserhacks.c(), + browserhacks: supportsBrowserhacks, }, ), keyframes: assign( - keyframes.c(), { + keyframes, { prefixed: assign( - prefixedKeyframes.c(), { - ratio: ratio(prefixedKeyframes.size(), keyframes.size()) + prefixedKeyframes, { + ratio: ratio(prefixedKeyframes.total, keyframes.total) }), }), - container: containers.c(), - layer: layers.c(), - property: registeredProperties.c(), + container: containers, + layer: layers, + property: registeredProperties, total: totalAtRules, complexity: atRuleComplexity }, @@ -770,21 +753,21 @@ export function analyze(css, options = {}) { { items: ruleSizes.toArray(), }, - uniqueRuleSize.c(), + uniqueRuleSize, ), selectors: assign( selectorsPerRule.aggregate(), { items: selectorsPerRule.toArray(), }, - uniqueSelectorsPerRule.c(), + uniqueSelectorsPerRule, ), declarations: assign( declarationsPerRule.aggregate(), { items: declarationsPerRule.toArray(), }, - uniqueDeclarationsPerRule.c(), + uniqueDeclarationsPerRule, ), }, selectors: { @@ -806,32 +789,32 @@ export function analyze(css, options = {}) { /** @type Specificity */ items: specificities, }, - uniqueSpecificities.c(), + uniqueSpecificities, ), complexity: assign( selectorComplexity, - uniqueSelectorComplexities.c(), + uniqueSelectorComplexities, { items: selectorComplexities.toArray(), } ), id: assign( - ids.c(), { - ratio: ratio(ids.size(), totalSelectors), + ids, { + ratio: ratio(ids.total, totalSelectors), }), - pseudoClasses: pseudoClasses.c(), + pseudoClasses: pseudoClasses, accessibility: assign( - a11y.c(), { - ratio: ratio(a11y.size(), totalSelectors), + a11y, { + ratio: ratio(a11y.total, totalSelectors), }), - keyframes: keyframeSelectors.c(), + keyframes: keyframeSelectors, prefixed: assign( - prefixedSelectors.c(), + prefixedSelectors, { - ratio: ratio(prefixedSelectors.size(), totalSelectors), + ratio: ratio(prefixedSelectors.total, totalSelectors), }, ), - combinators: combinators.c(), + combinators: combinators, }, declarations: { total: totalDeclarations, @@ -848,62 +831,57 @@ export function analyze(css, options = {}) { complexity: declarationComplexity, }, properties: assign( - properties.c(), + properties, { prefixed: assign( - propertyVendorPrefixes.c(), + propertyVendorPrefixes, { - ratio: ratio(propertyVendorPrefixes.size(), properties.size()), + ratio: ratio(propertyVendorPrefixes.total, properties.total), }, ), custom: assign( - customProperties.c(), + customProperties, { - ratio: ratio(customProperties.size(), properties.size()), + ratio: ratio(customProperties.total, properties.total), importants: assign( - importantCustomProperties.c(), + importantCustomProperties, { - ratio: ratio(importantCustomProperties.size(), customProperties.size()), + ratio: ratio(importantCustomProperties.total, customProperties.total), } ), }, ), browserhacks: assign( - propertyHacks.c(), { - ratio: ratio(propertyHacks.size(), properties.size()), + propertyHacks, { + ratio: ratio(propertyHacks.total, properties.total), }), complexity: propertyComplexity, }), values: { colors: assign( - colors.count(), + colors, { - formats: colorFormats.c(), + formats: colorFormats, }, ), - gradients: gradients.c(), - fontFamilies: fontFamilies.c(), - fontSizes: fontSizes.c(), - lineHeights: lineHeights.c(), - zindexes: zindex.c(), - textShadows: textShadows.c(), - boxShadows: boxShadows.c(), - borderRadiuses: borderRadiuses.count(), + gradients: gradients, + fontFamilies: fontFamilies, + fontSizes: fontSizes, + lineHeights: lineHeights, + zindexes: zindex, + textShadows: textShadows, + boxShadows: boxShadows, + borderRadiuses: borderRadiuses, animations: { - durations: durations.c(), - timingFunctions: timingFunctions.c(), + durations: durations, + timingFunctions: timingFunctions, }, - prefixes: vendorPrefixedValues.c(), - browserhacks: valueBrowserhacks.c(), - units: units.count(), + prefixes: vendorPrefixedValues, + browserhacks: valueBrowserhacks, + units: units, complexity: valueComplexity, - keywords: valueKeywords.c(), + keywords: valueKeywords, }, - __meta__: { - parseTime: startAnalysis - startParse, - analyzeTime: Date.now() - startAnalysis, - total: Date.now() - start - } } } diff --git a/src/keyword-set.js b/src/keyword-set.ts similarity index 61% rename from src/keyword-set.js rename to src/keyword-set.ts index 9d33df53..29d66e49 100644 --- a/src/keyword-set.js +++ b/src/keyword-set.ts @@ -2,15 +2,13 @@ * @description A Set-like construct to search CSS keywords in a case-insensitive way */ export class KeywordSet { + set: Set - /** @param {string[]} items */ - constructor(items) { - /** @type {Set} */ + constructor(items: string[]) { this.set = new Set(items) } - /** @param {string} item */ - has(item) { + has(item: string): boolean { return this.set.has(item.toLowerCase()) } } \ No newline at end of file diff --git a/src/smoke.test.js b/src/smoke.test.js deleted file mode 100644 index 18561679..00000000 --- a/src/smoke.test.js +++ /dev/null @@ -1,42 +0,0 @@ -import { readFileSync, writeFileSync } from 'fs' -import { suite } from 'uvu'; -import * as assert from 'uvu/assert'; -import { analyze } from './index.js' - -const Smoke = suite('Smoke testing') - -Object.entries({ - 'Bol.com': 'bol-com-20231008', - 'Bootstrap v5.3.2': 'bootstrap-5.3.2', - 'CNN': 'cnn-20231008', - 'CSS Tricks': 'css-tricks-20231008', - 'Gazelle': 'gazelle-20231008', - 'GitHub': 'github-20231008', - 'India Times': 'indiatimes-20231008', - 'Smashing Magazine': 'smashing-magazine-20231008', - 'Trello': 'trello-20231008', -}).map(([name, fileName]) => { - const css = readFileSync(`./src/__fixtures__/${fileName}.css`, 'utf-8') - const json = readFileSync(`./src/__fixtures__/${fileName}.json`, 'utf-8') - return { - name, - fileName, - json, - css, - } -}).forEach(({ name, fileName, css, json }) => { - const actual = analyze(css) - delete actual.__meta__ - const expected = JSON.parse(json) - - // writeFileSync(`./src/__fixtures__/${fileName}.json`, JSON.stringify(actual, null, 2)) - Smoke(`${name} - Stylesheet`, () => assert.equal(actual.stylesheet, expected.stylesheet)) - Smoke(`${name} - Atrules`, () => assert.equal(actual.atrules, expected.atrules)) - Smoke(`${name} - Rules`, () => assert.equal(actual.rules, expected.rules)) - Smoke(`${name} - Selectors`, () => assert.equal(actual.selectors, expected.selectors)) - Smoke(`${name} - Declarations`, () => assert.equal(actual.declarations, expected.declarations)) - Smoke(`${name} - Properties`, () => assert.equal(actual.properties, expected.properties)) - Smoke(`${name} - Values`, () => assert.equal(actual.values, expected.values)) -}) - -Smoke.run() \ No newline at end of file diff --git a/src/string-utils.test.js b/src/string-utils.test.js deleted file mode 100644 index 73d2b74a..00000000 --- a/src/string-utils.test.js +++ /dev/null @@ -1,41 +0,0 @@ -import { suite } from 'uvu'; -import * as assert from 'uvu/assert'; -import { strEquals, endsWith, startsWith } from './string-utils.js' - -const StringUtils = suite('Public API') - -StringUtils('strEquals', () => { - assert.ok(strEquals('keyframes', 'keyframes')) - assert.ok(strEquals('blue', 'BLUE')) - assert.ok(strEquals('test-me', 'TEST-me')) - - assert.not.ok(strEquals('-webkit-keyframes', 'keyframes')) - assert.not.ok(strEquals('abc', 'abcd')) - assert.not.ok(strEquals('abc', '')) -}) - -StringUtils('endsWith', () => { - assert.ok(endsWith('keyframes', 'keyframes')) - assert.ok(endsWith('keyframes', '-webkit-keyframes')) - assert.ok(endsWith('keyframes', 'testkeyframes')) - assert.ok(endsWith('keyframes', 'testKeyframes')) - assert.ok(endsWith('test', 'test')) - - assert.not.ok(endsWith('keyframes', '')) - assert.not.ok(endsWith('keyframes', 'test')) - assert.not.ok(endsWith('keyframes', 'eyframes')) -}) - -StringUtils('startsWith', () => { - assert.ok(startsWith('data:', 'data:')) - assert.ok(startsWith('animation', 'animation')) - assert.ok(startsWith('animation', 'animation-duration')) - assert.ok(startsWith('animation', 'Animation')) - assert.ok(startsWith('test', 'test')) - - assert.not.ok(startsWith('data:', 'nope')) - assert.not.ok(startsWith('test', '')) - assert.not.ok(startsWith('test-test', 'test')) -}) - -StringUtils.run() \ No newline at end of file diff --git a/src/string-utils.test.ts b/src/string-utils.test.ts new file mode 100644 index 00000000..3bf90fc6 --- /dev/null +++ b/src/string-utils.test.ts @@ -0,0 +1,36 @@ +import { test, expect } from 'vitest' +import { strEquals, endsWith, startsWith } from './string-utils.js' + +test('strEquals', () => { + expect(strEquals('keyframes', 'keyframes')).toBe(true) + expect(strEquals('blue', 'BLUE')).toBe(true) + expect(strEquals('test-me', 'TEST-me')).toBe(true) + + expect(strEquals('-webkit-keyframes', 'keyframes')).toBe(false) + expect(strEquals('abc', 'abcd')).toBe(false) + expect(strEquals('abc', '')).toBe(false) +}) + +test('endsWith', () => { + expect(endsWith('keyframes', 'keyframes')).toBe(true) + expect(endsWith('keyframes', '-webkit-keyframes')).toBe(true) + expect(endsWith('keyframes', 'testkeyframes')).toBe(true) + expect(endsWith('keyframes', 'testKeyframes')).toBe(true) + expect(endsWith('test', 'test')).toBe(true) + + expect(endsWith('keyframes', '')).toBe(false) + expect(endsWith('keyframes', 'test')).toBe(false) + expect(endsWith('keyframes', 'eyframes')).toBe(false) +}) + +test('startsWith', () => { + expect(startsWith('data:', 'data:')).toBe(true) + expect(startsWith('animation', 'animation')).toBe(true) + expect(startsWith('animation', 'animation-duration')).toBe(true) + expect(startsWith('animation', 'Animation')).toBe(true) + expect(startsWith('test', 'test')).toBe(true) + + expect(startsWith('data:', 'nope')).toBe(false) + expect(startsWith('test', '')).toBe(false) + expect(startsWith('test-test', 'test')).toBe(false) +}) \ No newline at end of file diff --git a/src/string-utils.js b/src/string-utils.ts similarity index 89% rename from src/string-utils.js rename to src/string-utils.ts index 53e39f57..a47f0573 100644 --- a/src/string-utils.js +++ b/src/string-utils.ts @@ -1,10 +1,8 @@ /** * Case-insensitive compare two character codes - * @param {string} referenceCode - * @param {string} testCode * @see https://github.com/csstree/csstree/blob/41f276e8862d8223eeaa01a3d113ab70bb13d2d9/lib/tokenizer/utils.js#L22 */ -function compareChar(referenceCode, testCode) { +function compareChar(referenceCode: number, testCode: number): boolean { // if uppercase if (testCode >= 0x0041 && testCode <= 0x005A) { // shifting the 6th bit makes a letter lowercase @@ -25,7 +23,7 @@ function compareChar(referenceCode, testCode) { * @param {string} maybe The test string, possibly containing uppercased characters * @returns {boolean} true if the two strings are the same, false otherwise */ -export function strEquals(base, maybe) { +export function strEquals(base: string, maybe: string): boolean { if (base === maybe) return true let len = base.length; @@ -52,7 +50,7 @@ export function strEquals(base, maybe) { * @param {string} maybe e.g. 'transform' * @returns {boolean} true if `test` ends with `base`, false otherwise */ -export function endsWith(base, maybe) { +export function endsWith(base: string, maybe: string): boolean { if (base === maybe) return true let len = maybe.length @@ -83,7 +81,7 @@ export function endsWith(base, maybe) { * @param {string} maybe * @returns {boolean} true if `base` starts with `maybe`, false otherwise */ -export function startsWith(base, maybe) { +export function startsWith(base: string, maybe: string): boolean { if (base === maybe) return true let len = base.length diff --git a/src/values/animations.test.js b/src/values/animations.test.js deleted file mode 100644 index b2d44f5f..00000000 --- a/src/values/animations.test.js +++ /dev/null @@ -1,208 +0,0 @@ -import { suite } from 'uvu' -import * as assert from 'uvu/assert' -import { analyze } from '../index.js' - -const Animations = suite('Animations') - -Animations('finds simple durations', () => { - const fixture = ` - durations { - animation-duration: 1s; - animation-duration: 2ms; - transition-duration: 300ms; - --my-transition-duration: 0s; - } - ` - const actual = analyze(fixture).values.animations.durations - const expected = { - total: 3, - totalUnique: 3, - unique: { - '1s': 1, - '2ms': 1, - '300ms': 1, - }, - uniquenessRatio: 3 / 3 - } - assert.equal(actual, expected) -}) - -Animations('finds duration lists', () => { - const fixture = ` - durations { - animation-duration: 1s, 1s; - transition-duration: 300ms, 400ms; - } - ` - const actual = analyze(fixture).values.animations.durations - const expected = { - total: 4, - totalUnique: 3, - unique: { - '1s': 2, - '300ms': 1, - '400ms': 1, - }, - uniquenessRatio: 3 / 4 - } - assert.equal(actual, expected) -}) - -Animations('finds simple timing functions', () => { - const fixture = ` - timings { - animation-timing-function: linear; - animation-timing-function: cubic-bezier(0, 1, 0, 1); - - transition-timing-function: steps(3); - transition-timing-function: cubic-bezier(0, 1, 0, 1); - - --my-animation-timing-function: invalid; - --my-transition-timing-function: invalid; - } - ` - const actual = analyze(fixture).values.animations.timingFunctions - const expected = { - total: 4, - totalUnique: 3, - unique: { - 'linear': 1, - 'cubic-bezier(0, 1, 0, 1)': 2, - 'steps(3)': 1, - }, - uniquenessRatio: 3 / 4 - } - assert.equal(actual, expected) -}) - -Animations('finds timing functions in value lists', () => { - const fixture = ` - timings { - animation-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1, 0.1); - } - ` - const actual = analyze(fixture).values.animations.timingFunctions - const expected = { - total: 3, - totalUnique: 3, - unique: { - 'ease': 1, - 'step-start': 1, - 'cubic-bezier(0.1, 0.7, 1, 0.1)': 1, - }, - uniquenessRatio: 1 - } - assert.equal(actual, expected) -}) - -Animations('finds shorthand durations', () => { - const fixture = ` - durations { - animation: 1s ANIMATION_NAME linear; - animation: 2s ANIMATION_NAME cubic-bezier(0,1,0,1); - - transition: all 3s; - transition: all 4s cubic-bezier(0,1,0,1); - transition: all 5s linear 5000ms; - - --my-animation: invalid; - --my-transition: invalid; - } - ` - const actual = analyze(fixture).values.animations.durations - const expected = { - total: 5, - totalUnique: 5, - unique: { - '1s': 1, - '2s': 1, - '3s': 1, - '4s': 1, - '5s': 1, - }, - uniquenessRatio: 5 / 5 - } - assert.equal(actual, expected) -}) - -Animations('finds shorthand timing functions', () => { - const fixture = ` - durations { - animation: 1s ANIMATION_NAME linear; - animation: 2s ANIMATION_NAME cubic-bezier(0,1,0,1); - - transition: all 3s; - transition: all 4s cubic-bezier(0,1,0,1); - transition: all 5s linear 5000ms; - - transition: all 6s Cubic-Bezier(0,1,0,1); - - --my-animation: invalid; - --my-transition: invalid; - } - ` - const actual = analyze(fixture).values.animations.timingFunctions - const expected = { - total: 5, - totalUnique: 3, - unique: { - 'linear': 2, - 'cubic-bezier(0,1,0,1)': 2, - 'Cubic-Bezier(0,1,0,1)': 1, - }, - uniquenessRatio: 3 / 5 - } - assert.equal(actual, expected) -}) - -Animations('analyzes animations/transitions with value lists', () => { - const fixture = ` - multi-value { - animation: 1s ANIMATION_NAME linear, 2s ANIMATION_NAME linear; - animation: 3s ANIMATION_NAME ease 3ms, 4s ANIMATION_NAME ease-in-out 4ms; - transition: all 5s, color 6s; - transition: all 7s ease, all 8s linear; - transition: all 9s steps(4, step-end) 9ms, all 10s steps(2) 10ms; - transition: all 11s, font-size 12s 12ms, line-height 13ms, border 0.0014s; - } - ` - const actual = analyze(fixture).values.animations - const expected = { - durations: { - total: 14, - totalUnique: 14, - unique: { - '1s': 1, - '2s': 1, - '3s': 1, - '4s': 1, - '5s': 1, - '6s': 1, - '7s': 1, - '8s': 1, - '9s': 1, - '10s': 1, - '11s': 1, - '12s': 1, - '13ms': 1, - '0.0014s': 1, - }, - uniquenessRatio: 14 / 14 - }, - timingFunctions: { - total: 8, - totalUnique: 5, - unique: { - 'linear': 3, - 'ease': 2, - 'ease-in-out': 1, - 'steps(4, step-end)': 1, - 'steps(2)': 1, - }, - uniquenessRatio: 5 / 8 - } - } - assert.equal(actual, expected) -}) - -Animations.run() \ No newline at end of file diff --git a/src/values/animations.test.ts b/src/values/animations.test.ts new file mode 100644 index 00000000..49989276 --- /dev/null +++ b/src/values/animations.test.ts @@ -0,0 +1,170 @@ +import { describe, it, expect } from 'vitest' +import { analyze } from '../index.js' + +it('finds simple durations', () => { + const fixture = ` + durations { + animation-duration: 1s; + animation-duration: 2ms; + transition-duration: 300ms; + --my-transition-duration: 0s; + } + ` + const actual = analyze(fixture).values.animations.durations + expect(actual.total).toBe(3) + expect(actual.total_unique).toBe(3) + expect(Array.from(actual.list())).toEqual([ + { name: '1s', count: 1 }, + { name: '2ms', count: 1 }, + { name: '300ms', count: 1 }, + ]) +}) + +it('finds duration lists', () => { + const fixture = ` + durations { + animation-duration: 1s, 1s; + transition-duration: 300ms, 400ms; + } + ` + const actual = analyze(fixture).values.animations.durations + expect(actual.total).toBe(4) + expect(actual.total_unique).toBe(3) + expect(Array.from(actual.list())).toEqual([ + { name: '1s', count: 2 }, + { name: '300ms', count: 1 }, + { name: '400ms', count: 1 }, + ]) +}) + +it('finds simple timing functions', () => { + const fixture = ` + timings { + animation-timing-function: linear; + animation-timing-function: cubic-bezier(0, 1, 0, 1); + + transition-timing-function: steps(3); + transition-timing-function: cubic-bezier(0, 1, 0, 1); + + --my-animation-timing-function: invalid; + --my-transition-timing-function: invalid; + } + ` + const actual = analyze(fixture).values.animations.timingFunctions + expect(actual.total).toBe(4) + expect(actual.total_unique).toBe(3) + expect(Array.from(actual.list())).toEqual([ + { name: 'linear', count: 1 }, + { name: 'cubic-bezier(0, 1, 0, 1)', count: 2 }, + { name: 'steps(3)', count: 1 }, + ]) +}) + +it('finds timing functions in value lists', () => { + const fixture = ` + timings { + animation-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1, 0.1); + } + ` + const actual = analyze(fixture).values.animations.timingFunctions + expect(actual.total).toBe(3) + expect(actual.total_unique).toBe(3) + expect(Array.from(actual.list())).toEqual([ + { name: 'ease', count: 1 }, + { name: 'step-start', count: 1 }, + { name: 'cubic-bezier(0.1, 0.7, 1, 0.1)', count: 1 }, + ]) +}) + +it('finds shorthand durations', () => { + const fixture = ` + durations { + animation: 1s ANIMATION_NAME linear; + animation: 2s ANIMATION_NAME cubic-bezier(0,1,0,1); + + transition: all 3s; + transition: all 4s cubic-bezier(0,1,0,1); + transition: all 5s linear 5000ms; + + --my-animation: invalid; + --my-transition: invalid; + } + ` + const actual = analyze(fixture).values.animations.durations + expect(actual.total).toBe(5) + expect(actual.total_unique).toBe(5) + expect(Array.from(actual.list())).toEqual([ + { name: '1s', count: 1 }, + { name: '2s', count: 1 }, + { name: '3s', count: 1 }, + { name: '4s', count: 1 }, + { name: '5s', count: 1 }, + ]) +}) + +it('finds shorthand timing functions', () => { + const fixture = ` + durations { + animation: 1s ANIMATION_NAME linear; + animation: 2s ANIMATION_NAME cubic-bezier(0,1,0,1); + + transition: all 3s; + transition: all 4s cubic-bezier(0,1,0,1); + transition: all 5s linear 5000ms; + + transition: all 6s Cubic-Bezier(0,1,0,1); + + --my-animation: invalid; + --my-transition: invalid; + } + ` + const actual = analyze(fixture).values.animations.timingFunctions + expect(actual.total).toBe(5) + expect(actual.total_unique).toBe(3) + expect(Array.from(actual.list())).toEqual([ + { name: 'linear', count: 2 }, + { name: 'cubic-bezier(0,1,0,1)', count: 2 }, + { name: 'Cubic-Bezier(0,1,0,1)', count: 1 }, + ]) +}) + +it('analyzes animations/transitions with value lists', () => { + const fixture = ` + multi-value { + animation: 1s ANIMATION_NAME linear, 2s ANIMATION_NAME linear; + animation: 3s ANIMATION_NAME ease 3ms, 4s ANIMATION_NAME ease-in-out 4ms; + transition: all 5s, color 6s; + transition: all 7s ease, all 8s linear; + transition: all 9s steps(4, step-end) 9ms, all 10s steps(2) 10ms; + transition: all 11s, font-size 12s 12ms, line-height 13ms, border 0.0014s; + } + ` + const actual = analyze(fixture).values.animations + expect(actual.durations.total).toBe(14) + expect(actual.durations.total_unique).toBe(14) + expect(Array.from(actual.durations.list())).toEqual([ + { name: '1s', count: 1 }, + { name: '2s', count: 1 }, + { name: '3s', count: 1 }, + { name: '4s', count: 1 }, + { name: '5s', count: 1 }, + { name: '6s', count: 1 }, + { name: '7s', count: 1 }, + { name: '8s', count: 1 }, + { name: '9s', count: 1 }, + { name: '10s', count: 1 }, + { name: '11s', count: 1 }, + { name: '12s', count: 1 }, + { name: '13ms', count: 1 }, + { name: '0.0014s', count: 1 }, + ]) + expect(actual.timingFunctions.total).toBe(8) + expect(actual.timingFunctions.total_unique).toBe(5) + expect(Array.from(actual.timingFunctions.list())).toEqual([ + { name: 'linear', count: 3 }, + { name: 'ease', count: 2 }, + { name: 'ease-in-out', count: 1 }, + { name: 'steps(4, step-end)', count: 1 }, + { name: 'steps(2)', count: 1 }, + ]) +}) diff --git a/src/values/animations.js b/src/values/animations.ts similarity index 100% rename from src/values/animations.js rename to src/values/animations.ts diff --git a/src/values/box-shadows.test.js b/src/values/box-shadows.test.js deleted file mode 100644 index 401a97b1..00000000 --- a/src/values/box-shadows.test.js +++ /dev/null @@ -1,105 +0,0 @@ -import { suite } from 'uvu' -import * as assert from 'uvu/assert' -import { analyze } from '../index.js' - -const BoxShadows = suite('BoxShadows') - -BoxShadows('finds simple values', () => { - const fixture = ` - box-shadows-simple { - box-shadow: 1px 1px 2px black; - } - ` - const actual = analyze(fixture).values.boxShadows - const expected = { - total: 1, - unique: { - '1px 1px 2px black': 1, - }, - totalUnique: 1, - uniquenessRatio: 1 - } - - assert.equal(actual, expected) -}) - -BoxShadows('finds complex values', () => { - const fixture = ` - box-shadows-complex { - box-shadow: 1px 1px 1px black,inset 2px 3px 5px rgba(0,0,0,0.3),inset -2px -3px 5px rgba(255,255,255,0.5); - } - ` - const actual = analyze(fixture).values.boxShadows - const expected = { - total: 1, - unique: { - '1px 1px 1px black,inset 2px 3px 5px rgba(0,0,0,0.3),inset -2px -3px 5px rgba(255,255,255,0.5)': 1, - }, - totalUnique: 1, - uniquenessRatio: 1 - } - - assert.equal(actual, expected) -}) - -BoxShadows('finds vendor prefixed values', () => { - const fixture = ` - box-shadows-vendor-prefixed { - -webkit-box-shadow: 1px 1px 2px black; - } - ` - const actual = analyze(fixture).values.boxShadows - const expected = { - total: 1, - unique: { - '1px 1px 2px black': 1, - }, - totalUnique: 1, - uniquenessRatio: 1 - } - - assert.equal(actual, expected) -}) - -BoxShadows.skip('does not report var() fallback values as separate values', () => { - const fixture = ` - with-fallback { - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); - }` - const actual = analyze(fixture).values.boxShadows - const expected = { - total: 1, - unique: { - 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)': 1, - }, - totalUnique: 1, - uniquenessRatio: 1 - } - assert.equal(actual, expected) -}) - -BoxShadows('ignores keywords', () => { - const fixture = ` - box-shadows-keyword { - box-shadow: none; - - /* Global keywords */ - box-shadow: initial; - box-shadow: inherit; - box-shadow: revert; - box-shadow: revert-layer; - box-shadow: unset; - } - ` - const actual = analyze(fixture).values.boxShadows - const expected = { - total: 0, - unique: {}, - totalUnique: 0, - uniquenessRatio: 0 - } - - assert.equal(actual, expected) -}) - -BoxShadows.run() \ No newline at end of file diff --git a/src/values/box-shadows.test.ts b/src/values/box-shadows.test.ts new file mode 100644 index 00000000..70d61d06 --- /dev/null +++ b/src/values/box-shadows.test.ts @@ -0,0 +1,76 @@ +import { describe, it, expect } from 'vitest' +import { analyze } from '../index.js' + +it('finds simple values', () => { + const fixture = ` + box-shadows-simple { + box-shadow: 1px 1px 2px black; + } + ` + const actual = analyze(fixture).values.boxShadows + expect(actual.total).toBe(1) + expect(actual.total_unique).toBe(1) + expect(Array.from(actual.list())).toEqual([ + { name: '1px 1px 2px black', count: 1 } + ]) +}) + +it('finds complex values', () => { + const fixture = ` + box-shadows-complex { + box-shadow: 1px 1px 1px black,inset 2px 3px 5px rgba(0,0,0,0.3),inset -2px -3px 5px rgba(255,255,255,0.5); + } + ` + const actual = analyze(fixture).values.boxShadows + expect(actual.total).toBe(1) + expect(actual.total_unique).toBe(1) + expect(Array.from(actual.list())).toEqual([ + { name: '1px 1px 1px black,inset 2px 3px 5px rgba(0,0,0,0.3),inset -2px -3px 5px rgba(255,255,255,0.5)', count: 1 } + ]) +}) + +it('finds vendor prefixed values', () => { + const fixture = ` + box-shadows-vendor-prefixed { + -webkit-box-shadow: 1px 1px 2px black; + } + ` + const actual = analyze(fixture).values.boxShadows + expect(actual.total).toBe(1) + expect(actual.total_unique).toBe(1) + expect(Array.from(actual.list())).toEqual([ + { name: '1px 1px 2px black', count: 1 } + ]) +}) + +it.skip('does not report var() fallback values as separate values', () => { + const fixture = ` + with-fallback { + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + }` + const actual = analyze(fixture).values.boxShadows + expect(actual.total).toBe(1) + expect(actual.total_unique).toBe(1) + expect(Array.from(actual.list())).toEqual([ + { name: 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)', count: 1 } + ]) +}) + +it('ignores keywords', () => { + const fixture = ` + box-shadows-keyword { + box-shadow: none; + + /* Global keywords */ + box-shadow: initial; + box-shadow: inherit; + box-shadow: revert; + box-shadow: revert-layer; + box-shadow: unset; + } + ` + const actual = analyze(fixture).values.boxShadows + expect(actual.total).toBe(0) + expect(actual.total_unique).toBe(0) + expect(Array.from(actual.list())).toEqual([]) +}) diff --git a/src/values/browserhacks.test.js b/src/values/browserhacks.test.js deleted file mode 100644 index 2e18e3f5..00000000 --- a/src/values/browserhacks.test.js +++ /dev/null @@ -1,49 +0,0 @@ -import { suite } from 'uvu' -import * as assert from 'uvu/assert' -import { analyze } from '../index.js' - -const Browserhacks = suite('Values - Browserhacks') - -Browserhacks('finds hacks', () => { - const fixture = ` - value-browserhacks { - property: value !ie; - property: value !test; - property: value!nospace; - property: value\\9; - } - ` - const actual = analyze(fixture).values.browserhacks - const expected = { - total: 4, - totalUnique: 4, - unique: { - 'value !ie': 1, - 'value !test': 1, - 'value!nospace': 1, - "value\\9": 1, - }, - uniquenessRatio: 4 / 4 - } - assert.equal(actual, expected) -}) - -Browserhacks('reports no false positives', () => { - const fixture = ` - value-browserhacks { - property: value !important; - content: '!important'; - aspect-ratio: 16/9; - } - ` - const actual = analyze(fixture).values.browserhacks - const expected = { - total: 0, - totalUnique: 0, - unique: {}, - uniquenessRatio: 0, - } - assert.equal(actual, expected) -}) - -Browserhacks.run() \ No newline at end of file diff --git a/src/values/browserhacks.test.ts b/src/values/browserhacks.test.ts new file mode 100644 index 00000000..4e3f11b5 --- /dev/null +++ b/src/values/browserhacks.test.ts @@ -0,0 +1,36 @@ +import { describe, test, expect } from 'vitest' +import { analyze } from '../index.js' + +test('finds hacks', () => { + const fixture = ` + value-browserhacks { + property: value !ie; + property: value !test; + property: value!nospace; + property: value\\9; + } + ` + const actual = analyze(fixture).values.browserhacks + expect(actual.total).toBe(4) + expect(actual.total_unique).toBe(4) + expect(Array.from(actual.list())).toEqual([ + { name: 'value !ie', count: 1 }, + { name: 'value !test', count: 1 }, + { name: 'value!nospace', count: 1 }, + { name: 'value\\9', count: 1 }, + ]) +}) + +test('reports no false positives', () => { + const fixture = ` + value-browserhacks { + property: value !important; + content: '!important'; + aspect-ratio: 16/9; + } + ` + const actual = analyze(fixture).values.browserhacks + expect(actual.total).toBe(0) + expect(actual.total_unique).toBe(0) + expect(Array.from(actual.list())).toEqual([]) +}) diff --git a/src/values/browserhacks.js b/src/values/browserhacks.ts similarity index 53% rename from src/values/browserhacks.js rename to src/values/browserhacks.ts index 8e0d1d97..bb48255f 100644 --- a/src/values/browserhacks.js +++ b/src/values/browserhacks.ts @@ -1,16 +1,14 @@ import { endsWith } from "../string-utils.js" import { Identifier } from "../css-tree-node-types.js" +import type { Value } from "css-tree" -/** - * @param {import('css-tree').Value} node - */ -export function isIe9Hack(node) { +export function isIe9Hack(node: Value): boolean { let children = node.children if (children) { let last = children.last - return last - && last.type === Identifier - && endsWith('\\9', last.name) + if (last && last.type === Identifier) { + return endsWith('\\9', last.name) + } } return false } diff --git a/src/values/font-families.test.js b/src/values/font-families.test.ts similarity index 54% rename from src/values/font-families.test.js rename to src/values/font-families.test.ts index a4fac9be..d467a663 100644 --- a/src/values/font-families.test.js +++ b/src/values/font-families.test.ts @@ -1,10 +1,7 @@ -import { suite } from 'uvu'; -import * as assert from 'uvu/assert'; +import { describe, expect, test } from 'vitest' import { analyze } from '../index.js' -const FontFamilies = suite('FontFamilies') - -FontFamilies('recognizes a font-family', () => { +test('recognizes a font-family', () => { const fixture = ` test { font-family: "Droid Sans", serif; @@ -21,25 +18,20 @@ FontFamilies('recognizes a font-family', () => { } ` const actual = analyze(fixture).values.fontFamilies - const expected = { - total: 7, - totalUnique: 7, - unique: { - '"Droid Sans", serif': 1, - 'sans-serif': 1, - [`"Arial Black", 'Arial Bold', Gadget, sans-serif`]: 1, - 'Brush Script MT, cursive': 1, - 'monospace': 1, - 'Consolas, "Liberation Mono", Menlo, Courier, monospace': 1, - '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"': 1, - }, - uniquenessRatio: 7 / 7 - } - - assert.equal(actual, expected) + expect(actual.total).toBe(7) + expect(actual.total_unique).toBe(7) + expect(Array.from(actual.list())).toEqual([ + { name: '"Droid Sans", serif', count: 1 }, + { name: 'sans-serif', count: 1 }, + { name: `"Arial Black", 'Arial Bold', Gadget, sans-serif`, count: 1 }, + { name: 'Brush Script MT, cursive', count: 1 }, + { name: 'monospace', count: 1 }, + { name: 'Consolas, "Liberation Mono", Menlo, Courier, monospace', count: 1 }, + { name: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', count: 1 }, + ]) }) -FontFamilies('extracts the `font` shorthand', () => { +test('extracts the `font` shorthand', () => { const fixture = ` test { font: large 'Noto Sans'; @@ -61,37 +53,33 @@ FontFamilies('extracts the `font` shorthand', () => { } ` const actual = analyze(fixture).values.fontFamilies - const expected = { - total: 12, - totalUnique: 8, - unique: { - [`'Noto Sans'`]: 1, - '"Source Sans Pro", serif': 1, - 'serif': 5, - '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"': 1, - 'Consolas, "Liberation Mono", Menlo, Courier, monospace': 1, - 'a': 1, - 'var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace)': 1, - // This entry exists due to a ??bug?? in CSSTree, but it's better than not counting the value above this as well - 'ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace': 1, - }, - uniquenessRatio: 8 / 12 - } - assert.equal(actual, expected) + expect(actual.total).toBe(12) + expect(actual.total_unique).toBe(8) + expect(Array.from(actual.list())).toEqual([ + { name: `'Noto Sans'`, count: 1 }, + { name: `"Source Sans Pro", serif`, count: 1 }, + { name: 'serif', count: 5 }, + { name: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', count: 1 }, + { name: 'Consolas, "Liberation Mono", Menlo, Courier, monospace', count: 1 }, + { name: 'a', count: 1 }, + { name: 'var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace)', count: 1 }, + // This entry exists due to a ??bug?? in CSSTree, but it's better than not counting the value above this as well + { name: 'ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace', count: 1 }, + ]) }) -FontFamilies('does not crash on `12px var(...)', () => { +test('does not crash on `12px var(...)', () => { const fixture = ` test { font: 12px var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace); } ` - assert.not.throws(() => { + expect(() => { analyze(fixture).values.fontFamilies - }) + }).not.toThrow() }) -FontFamilies('handles system fonts', () => { +test('handles system fonts', () => { // Source: https://drafts.csswg.org/css-fonts-3/#font-prop const fixture = ` test { @@ -100,19 +88,14 @@ FontFamilies('handles system fonts', () => { } ` const actual = analyze(fixture).values.fontFamilies - const expected = { - total: 1, - totalUnique: 1, - unique: { - 'menu': 1 - }, - uniquenessRatio: 1 / 1 - } - - assert.equal(actual, expected) + expect(actual.total).toBe(1) + expect(actual.total_unique).toBe(1) + expect(Array.from(actual.list())).toEqual([ + { name: 'menu', count: 1 }, + ]) }) -FontFamilies('ignores keywords and global values', () => { +test('ignores keywords and global values', () => { const fixture = ` test { /* Global values */ @@ -130,14 +113,6 @@ FontFamilies('ignores keywords and global values', () => { } ` const actual = analyze(fixture).values.fontFamilies - const expected = { - total: 0, - totalUnique: 0, - unique: {}, - uniquenessRatio: 0 - } - - assert.equal(actual, expected) -}) - -FontFamilies.run() \ No newline at end of file + expect(actual.total).toBe(0) + expect(actual.total_unique).toBe(0) +}) \ No newline at end of file diff --git a/src/values/font-sizes.test.js b/src/values/font-sizes.test.js index 3ccf420e..6c195cdc 100644 --- a/src/values/font-sizes.test.js +++ b/src/values/font-sizes.test.js @@ -18,19 +18,14 @@ FontSizes('recognizes a font-size', () => { } ` const actual = analyze(fixture).values.fontSizes - const expected = { - total: 4, - totalUnique: 4, - unique: { - '10px': 1, - 'small': 1, - '1em': 1, - 'calc(3vw + 1em)': 1, - }, - uniquenessRatio: 4 / 4 - } - - assert.equal(actual, expected) + assert.equal(actual.total, 4) + assert.equal(actual.total_unique, 4) + assert.equal(Array.from(actual.list()), [ + { name: '10px', count: 1 }, + { name: 'small', count: 1 }, + { name: '1em', count: 1 }, + { name: 'calc(3vw + 1em)', count: 1 }, + ]) }) FontSizes('extracts the `font` shorthand', () => { @@ -56,23 +51,19 @@ FontSizes('extracts the `font` shorthand', () => { } ` const actual = analyze(fixture).values.fontSizes - const expected = { - total: 13, - totalUnique: 9, - unique: { - '0': 1, - 'large': 1, - '1em': 4, - '1.2em': 1, - '1.3em': 1, - '2em': 1, - '11px': 2, - '10PX': 1, - '12px': 1, - }, - uniquenessRatio: 9 / 13 - } - assert.equal(actual, expected) + assert.equal(actual.total, 13) + assert.equal(actual.total_unique, 9) + assert.equal(Array.from(actual.list()), [ + { name: 'large', count: 1 }, + { name: '1em', count: 4 }, + { name: '1.2em', count: 1 }, + { name: '1.3em', count: 1 }, + { name: '2em', count: 1 }, + { name: '11px', count: 2 }, + { name: '0', count: 1 }, + { name: '10PX', count: 1 }, + { name: '12px', count: 1 }, + ]) }) FontSizes('handles system fonts', () => { @@ -84,16 +75,11 @@ FontSizes('handles system fonts', () => { } ` const actual = analyze(fixture).values.fontSizes - const expected = { - total: 1, - totalUnique: 1, - unique: { - 'large': 1, - }, - uniquenessRatio: 1 - } - - assert.equal(actual, expected) + assert.equal(actual.total, 1) + assert.equal(actual.total_unique, 1) + assert.equal(Array.from(actual.list()), [ + { name: 'large', count: 1 }, + ]) }) FontSizes('ignores keywords and global values', () => { @@ -114,14 +100,7 @@ FontSizes('ignores keywords and global values', () => { } ` const actual = analyze(fixture).values.fontSizes - const expected = { - total: 0, - totalUnique: 0, - unique: {}, - uniquenessRatio: 0 - } - - assert.equal(actual, expected) + assert.equal(actual.total, 0) }) FontSizes.run() \ No newline at end of file diff --git a/src/values/vendor-prefix.test.js b/src/values/vendor-prefix.test.ts similarity index 50% rename from src/values/vendor-prefix.test.js rename to src/values/vendor-prefix.test.ts index 7d2adf56..640f7bdd 100644 --- a/src/values/vendor-prefix.test.js +++ b/src/values/vendor-prefix.test.ts @@ -1,10 +1,7 @@ -import { suite } from 'uvu' -import * as assert from 'uvu/assert' +import { describe, test, expect } from 'vitest' import { analyze } from '../index.js' -const VendorPrefix = suite('VendorPrefixedValue') - -VendorPrefix('finds simple prefixes', () => { +test('finds simple prefixes', () => { const fixture = ` value-vendor-prefix-simple { width: -moz-max-content; @@ -30,25 +27,20 @@ VendorPrefix('finds simple prefixes', () => { } ` const actual = analyze(fixture).values.prefixes - const expected = { - total: 9, - totalUnique: 7, - unique: { - '-moz-max-content': 1, - '-webkit-max-content': 1, - '0 0 0 3px -moz-mac-focusring': 1, - '-webkit-sticky': 2, - '-webkit-transform 0.3s ease-out': 1, - '-moz-transform 0.3s ease-out': 1, - '-o-transform 0.3s ease-out': 2, - }, - uniquenessRatio: 7 / 9, - } - - assert.equal(actual, expected) + expect(actual.total).toBe(9) + expect(actual.total_unique).toBe(7) + expect(Array.from(actual.list())).toEqual([ + { name: '-moz-max-content', count: 1 }, + { name: '-webkit-max-content', count: 1 }, + { name: '0 0 0 3px -moz-mac-focusring', count: 1 }, + { name: '-webkit-sticky', count: 2 }, + { name: '-webkit-transform 0.3s ease-out', count: 1 }, + { name: '-moz-transform 0.3s ease-out', count: 1 }, + { name: '-o-transform 0.3s ease-out', count: 2 }, + ]) }) -VendorPrefix('finds nested prefixes', () => { +test('finds nested prefixes', () => { const fixture = ` value-vendor-prefix-nested { background-image: -khtml-linear-gradient(90deg, red, green); @@ -62,37 +54,25 @@ VendorPrefix('finds nested prefixes', () => { } ` const actual = analyze(fixture).values.prefixes - const expected = { - total: 3, - totalUnique: 3, - unique: { - '-khtml-linear-gradient(90deg, red, green)': 1, - 'red,\n -webkit-linear-gradient(transparent, transparent),\n -moz-linear-gradient(transparent, transparent),\n -ms-linear-gradient(transparent, transparent),\n -o-linear-gradient(transparent, transparent)': 1, - 'repeat(3, max(-webkit-max-content, 100vw))': 1, - }, - uniquenessRatio: 1 - } - - assert.equal(actual, expected) + expect(actual.total).toBe(3) + expect(actual.total_unique).toBe(3) + expect(Array.from(actual.list())).toEqual([ + { name: '-khtml-linear-gradient(90deg, red, green)', count: 1 }, + { name: 'red,\n -webkit-linear-gradient(transparent, transparent),\n -moz-linear-gradient(transparent, transparent),\n -ms-linear-gradient(transparent, transparent),\n -o-linear-gradient(transparent, transparent)', count: 1 }, + { name: 'repeat(3, max(-webkit-max-content, 100vw))', count: 1 }, + ]) }) -VendorPrefix.skip('finds DEEPLY nested prefixes', () => { +test.skip('finds DEEPLY nested prefixes', () => { const fixture = ` value-vendor-prefix-deeply-nested { width: var(--test, -webkit-max-content); } ` const actual = analyze(fixture).values.prefixes - const expected = { - total: 1, - totalUnique: 1, - unique: { - 'var(--test, -webkit-max-content)': 1, - }, - uniquenessRatio: 1 - } - - assert.equal(actual, expected) -}) - -VendorPrefix.run() \ No newline at end of file + expect(actual.total).toBe(1) + expect(actual.total_unique).toBe(1) + expect(Array.from(actual.list())).toEqual([ + { name: 'var(--test, -webkit-max-content)', count: 1 }, + ]) +}) \ No newline at end of file diff --git a/src/values/z-index.test.js b/src/values/z-index.test.js deleted file mode 100644 index 39944120..00000000 --- a/src/values/z-index.test.js +++ /dev/null @@ -1,62 +0,0 @@ -import { suite } from 'uvu' -import * as assert from 'uvu/assert' -import { analyze } from '../index.js' - -const ZIndex = suite('Z-index') - -ZIndex('finds simple values', () => { - const fixture = ` - test { - z-index: 1; - z-index: 0; - z-index: -1; - z-index: 99999; - z-index: -100; - z-index: 0; - z-index: auto; - z-index: calc(var(--model-z-index) - 1); - } - ` - const actual = analyze(fixture).values.zindexes - const expected = { - total: 7, - totalUnique: 6, - unique: { - '0': 2, - '1': 1, - '99999': 1, - '-1': 1, - '-100': 1, - 'calc(var(--model-z-index) - 1)': 1, - }, - uniquenessRatio: 6 / 7 - } - - assert.equal(actual, expected) -}) - -ZIndex('ignores global CSS keywords', () => { - const fixture = ` - test { - z-index: auto; - - /* Global values */ - z-index: inherit; - z-index: initial; - z-index: revert; - z-index: revert-layer; - z-index: unset; - } - ` - const actual = analyze(fixture).values.zindexes - const expected = { - total: 0, - totalUnique: 0, - unique: {}, - uniquenessRatio: 0 - } - - assert.equal(actual, expected) -}) - -ZIndex.run() \ No newline at end of file diff --git a/src/values/z-index.test.ts b/src/values/z-index.test.ts new file mode 100644 index 00000000..3f3eec2f --- /dev/null +++ b/src/values/z-index.test.ts @@ -0,0 +1,45 @@ +import { describe, test, expect } from 'vitest' +import { analyze } from '../index.js' + +test('finds simple values', () => { + const fixture = ` + test { + z-index: 1; + z-index: 0; + z-index: -1; + z-index: 99999; + z-index: -100; + z-index: 0; + z-index: auto; + z-index: calc(var(--model-z-index) - 1); + } + ` + const actual = analyze(fixture).values.zindexes + expect(actual.total).toBe(7) + expect(actual.total_unique).toBe(6) + expect(Array.from(actual.list())).toEqual([ + { name: '1', count: 1 }, + { name: '0', count: 2 }, + { name: '-1', count: 1 }, + { name: '99999', count: 1 }, + { name: '-100', count: 1 }, + { name: 'calc(var(--model-z-index) - 1)', count: 1 }, + ]) +}) + +test('ignores global CSS keywords', () => { + const fixture = ` + test { + z-index: auto; + + /* Global values */ + z-index: inherit; + z-index: initial; + z-index: revert; + z-index: revert-layer; + z-index: unset; + } + ` + const actual = analyze(fixture).values.zindexes + expect(actual.total).toBe(0) +}) \ No newline at end of file diff --git a/src/vendor-prefix.js b/src/vendor-prefix.ts similarity index 71% rename from src/vendor-prefix.js rename to src/vendor-prefix.ts index 696ba3df..6e969cdf 100644 --- a/src/vendor-prefix.js +++ b/src/vendor-prefix.ts @@ -1,10 +1,6 @@ const HYPHENMINUS = 45; // '-'.charCodeAt() -/** - * @param {string} keyword - * @returns {boolean} - */ -function hasVendorPrefix(keyword) { +export function hasVendorPrefix(keyword: string): boolean { if (keyword.charCodeAt(0) === HYPHENMINUS && keyword.charCodeAt(1) !== HYPHENMINUS) { // String must have a 2nd occurrence of '-', at least at position 3 (offset=2) if (keyword.indexOf('-', 2) !== -1) { @@ -14,7 +10,3 @@ function hasVendorPrefix(keyword) { return false } - -export { - hasVendorPrefix -} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 31498cc8..c43dd330 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,7 @@ // Type checking, not transpiling "module": "ESNext", - "moduleResolution": "bundler", + "moduleResolution": "node", "allowSyntheticDefaultImports": true, "noEmit": true, @@ -22,7 +22,8 @@ "lib": ["ES2022", "DOM", "DOM.Iterable"], }, "include": [ - "src/index.js" + "src/index.js", + "app.d.ts" ], "exclude": ["node_modules"] } \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index d42cd6ab..c236853a 100644 --- a/vite.config.js +++ b/vite.config.js @@ -13,7 +13,11 @@ export default defineConfig({ rollupOptions: { // make sure to externalize deps that shouldn't be bundled // into your library - external: ["css-tree/parser", "css-tree/walker"], + external: [ + "css-tree/parser", + "css-tree/walker", + "@bramus/specificity/core" + ], }, }, plugins: [